/* FND Remodeling — DesignPro-Inspired Styles */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,400&family=Montserrat:wght@300;400;500;600;700;800;900&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --blue: #1E3A8A;
  --blue-dark: #172554;
  --blue-light: #DBEAFE;
  --blue-50: #EFF6FF;
  --red: #DC2626;
  --gold: #D4A853;
  --dark: #111827;
  --gray-900: #1F2937;
  --gray-700: #374151;
  --gray-500: #6B7280;
  --gray-300: #D1D5DB;
  --gray-100: #F3F4F6;
  --gray-bg: #f0f0f0;
  --white: #FFFFFF;
  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --font-alt: 'Lato', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow-md: 0 4px 14px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 36px rgba(0,0,0,.12);
  --shadow-xl: 0 20px 50px rgba(0,0,0,.16);
  --radius: 0px;
  --radius-lg: 0px;
  --radius-sm: 4px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
  --transition-slow: .5s cubic-bezier(.4,0,.2,1);
  --transition-fast: .2s cubic-bezier(.4,0,.2,1);
  --nav-height: 80px;
}

/* ========================================
   RESET
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ========================================
   UTILITY
   ======================================== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.text-center { text-align: center; }
.bg-white { background: var(--white); }
.bg-light { background: var(--gray-bg); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }
.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 640px;
  margin: 16px auto 0;
  line-height: 1.7;
}
.section-header { margin-bottom: 48px; }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 14px 32px;
  transition: all var(--transition);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.1);
  transform: translateX(-100%);
  transition: transform var(--transition);
}
.btn:hover::after { transform: translateX(0); }
.btn-primary { background: var(--dark); color: var(--white); border: 2px solid var(--dark); }
.btn-primary:hover { background: var(--gray-700); border-color: var(--gray-700); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--dark); border: 2px solid var(--dark); }
.btn-outline:hover { background: var(--dark); color: var(--white); transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--dark); transform: translateY(-1px); }
.btn-blue { background: var(--blue); color: var(--white); border: 2px solid var(--blue); }
.btn-blue:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-sm { padding: 10px 20px; font-size: 0.8125rem; }
.btn-lg { padding: 18px 44px; font-size: 1rem; }
.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  height: var(--nav-height);
  transition: all var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo .logo-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}
.nav-logo:hover .logo-icon { transform: scale(1.05); }
.nav-logo .logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
}
.nav-logo .logo-text .red { color: var(--red); }
.nav-logo .logo-text .blue { color: var(--blue); }
.nav-logo .logo-text small {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-align: center;
  margin-top: 2px;
  padding: 0 2px;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a, .nav-dropdown > span {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.8125rem;
  padding: 8px 14px;
  transition: color var(--transition-fast);
  color: var(--gray-700);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links a:hover, .nav-dropdown:hover > span { color: var(--blue); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown .dropdown-arrow { font-size: 0.65rem; transition: transform var(--transition); }
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all var(--transition);
  border: 1px solid var(--gray-100);
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; pointer-events: all; transform: translateY(0); }
.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 0.8125rem;
  border-radius: var(--radius-sm);
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover { background: var(--blue-50); color: var(--blue); }

/* Nav CTA */
.nav-cta .btn { padding: 10px 24px; font-size: 0.8125rem; }

/* Mobile CTA inside nav-links — hidden on desktop */
.btn-mobile-cta { display: none; }

/* Hamburger toggle with X transform */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all var(--transition);
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Form field error */
.field-error { border-color: #e53e3e !important; box-shadow: 0 0 0 2px rgba(229,62,62,.15); }

/* ========================================
   HERO CAROUSEL
   ======================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  margin-top: var(--nav-height);
  overflow: hidden;
}
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(.4,0,.2,1);
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.50) 0%, rgba(0,0,0,.25) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-content { max-width: 900px; padding: 0 24px; }
.hero-content h1 {
  color: var(--white);
  margin-bottom: 36px;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
}
.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  transition: all var(--transition);
  border: 2px solid transparent;
}
.hero-dots button.active {
  background: var(--white);
  width: 36px;
  border-radius: 6px;
}
.hero-dots button:hover { background: rgba(255,255,255,.7); }

/* ========================================
   TRUST BAR
   ======================================== */
.trust-bar { background: var(--gray-bg); padding: 60px 0; text-align: center; }
.trust-bar h2 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); margin-bottom: 16px; }
.trust-bar h2 .highlight { color: var(--blue); }
.trust-bar h2 .brand-f { color: var(--red); }
.trust-bar h2 .brand-n { color: var(--blue); }
.trust-bar h2 .brand-d { color: var(--red); }
.trust-bar h2 .brand-r { color: var(--red); }
.trust-bar p {
  max-width: 800px;
  margin: 0 auto;
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.7;
}

/* ========================================
   FEATURED PROJECTS
   ======================================== */
.featured-projects { background: var(--gray-bg); padding: 80px 0; }
.project-tile { display: block; }
.project-tile-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--gray-300);
}
.project-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.project-tile:hover .project-tile-img img { transform: scale(1.06); }
.project-label {
  display: block;
  padding: 16px 20px;
  border: 2px solid var(--dark);
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--white);
  transition: all var(--transition);
  margin-top: -1px;
}
.project-tile:hover .project-label { background: var(--dark); color: var(--white); }

/* ========================================
   CURATED DESIGNS
   ======================================== */
/* Full-width banner */
.curated-banner { position: relative; width: 100%; overflow: hidden; }
.curated-banner-inner { position: relative; width: 100%; aspect-ratio: 16/7; overflow: hidden; }
.curated-banner-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.curated-banner:hover .curated-banner-inner img { transform: scale(1.04); }
.curated-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 60px 24px;
}
.curated-banner-overlay h3 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* 3-column strip */
.curated-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.curated-strip-item { position: relative; overflow: hidden; aspect-ratio: 1; }
.curated-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.curated-strip-item:hover img { transform: scale(1.06); }
.curated-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  transition: background var(--transition);
}
.curated-strip-item:hover .curated-strip-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 60%);
}
.curated-strip-overlay h3 { color: var(--white); font-size: clamp(1rem, 2vw, 1.5rem); }

/* ========================================
   COMMUNITY BLOCK
   ======================================== */
.community-block { background: var(--white); padding: 80px 0; text-align: center; }
.community-block h2 { margin-bottom: 32px; }
.community-block .community-img {
  max-width: 700px;
  margin: 0 auto 32px;
  overflow: hidden;
}
.community-block .community-img img { width: 100%; object-fit: cover; }
.community-block p {
  max-width: 700px;
  margin: 0 auto 24px;
  color: var(--gray-500);
  font-size: 1rem;
  line-height: 1.7;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-section {
  position: relative;
  padding: 100px 0;
  background: url('../images/chefs-retreat-hero.jpg') center/cover no-repeat;
}
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.75);
}
.testimonials-section * { position: relative; z-index: 1; }
.testimonials-section h2 { color: var(--white); text-align: center; margin-bottom: 48px; }
.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
  padding: 0 56px;
}
.testimonial-slide {
  display: block;
  opacity: 0;
  position: absolute;
  width: 100%;
  transition: opacity .5s ease, transform .5s ease;
  pointer-events: none;
  transform: translateY(8px);
}
.testimonial-slide.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
  transform: translateY(0);
}
.testimonial-slide blockquote {
  color: rgba(255,255,255,.9);
  font-family: var(--font-alt);
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 24px;
}
.testimonial-slide .reviewer {
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

/* Testimonial nav arrows - always visible */
.t-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 5;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.t-nav:hover {
  background: rgba(255,255,255,.3);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-50%) scale(1.08);
}
.t-prev { left: 0; }
.t-next { right: 0; }

/* ========================================
   ESTIMATE FORM
   ======================================== */
.estimate-section { background: var(--gray-bg); padding: 80px 0; }
.estimate-section h2 { text-align: center; margin-bottom: 8px; }
.estimate-subheading {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 2vw, 1.4rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark);
  margin-bottom: 40px;
  line-height: 1.5;
}
.estimate-subheading a { color: var(--blue); transition: color var(--transition-fast); }
.estimate-subheading a:hover { color: var(--blue-dark); }
.estimate-form { max-width: 900px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8125rem;
  margin-bottom: 8px;
  color: var(--dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input, .form-group textarea, .form-group select {
  padding: 14px 16px;
  border: 2px solid var(--gray-300);
  background: var(--white);
  color: var(--dark);
  font-size: 0.9375rem;
  transition: all var(--transition);
  outline: none;
  font-family: var(--font-body);
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: var(--gray-500);
  font-family: var(--font-body);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.form-group input:hover, .form-group textarea:hover, .form-group select:hover {
  border-color: var(--gray-500);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--white); }
.form-submit-btn {
  display: block;
  margin: 32px auto 0;
  background: var(--dark);
  color: var(--white);
  border: 2px solid var(--dark);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 16px 48px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.form-submit-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.1), transparent);
  transform: translateX(-100%);
  transition: transform .6s ease;
}
.form-submit-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.form-submit-btn:hover::after { transform: translateX(100%); }
.form-submit-btn:active { transform: translateY(0); }
.sms-consent {
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 16px auto 0;
  line-height: 1.5;
}

/* ========================================
   FOOTER
   ======================================== */
.footer { background: var(--dark); color: rgba(255,255,255,.7); padding: 40px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo .f-icon {
  width: 44px;
  height: 44px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--white);
}
.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  color: white;
}
.footer-logo-text .red { color: #EF4444; }
.footer-logo-text .blue { color: #60A5FA; }
.footer-logo-text small {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  color: #60A5FA;
  letter-spacing: 0.28em;
  text-align: center;
  margin-top: 2px;
  text-transform: uppercase;
}
.footer-copy { font-size: 0.875rem; color: rgba(255,255,255,.5); }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  transition: all var(--transition);
}
.footer-socials a:hover { background: var(--blue); transform: translateY(-2px); }

/* ========================================
   FLOATING CTA
   ======================================== */
.floating-cta {
  display: none !important;
}
.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition);
}
.floating-btn.call { background: var(--blue); }
.floating-btn.text { background: var(--red); }
.floating-btn:hover { transform: scale(1.12); box-shadow: var(--shadow-xl); }

/* ========================================
   PAGE HERO (subpages)
   ======================================== */
.page-hero {
  position: relative;
  height: 400px;
  margin-top: var(--nav-height);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--blue-dark, #172554) 0%, var(--blue, #1E3A8A) 100%);
}
.page-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero .page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37,99,235,.7) 0%, rgba(17,24,39,.6) 100%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 640px; padding: 0 24px; }
.page-hero-content h1 { color: var(--white); margin-bottom: 12px; }
.page-hero-content p {
  color: rgba(255,255,255,.85);
  font-size: 1.125rem;
  text-transform: none;
  letter-spacing: 0;
}

/* ========================================
   5-STEP PROCESS
   ======================================== */
.process-steps { display: flex; gap: 24px; counter-reset: step; }
.process-step {
  flex: 1;
  position: relative;
  padding: 28px 24px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}
.process-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
  transition: all var(--transition);
}
.process-step:hover::before { background: var(--blue-dark); transform: scale(1.1); }
.process-step h4 { margin-bottom: 8px; font-size: 1rem; }
.process-step p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
  text-transform: none;
  letter-spacing: 0;
}

/* ========================================
   SERVICES CHIPS
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.service-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all var(--transition);
  text-transform: none;
  letter-spacing: 0;
}
.service-chip:hover {
  border-color: var(--blue);
  background: var(--blue-50);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.service-chip .chip-icon { font-size: 1.25rem; }

/* ========================================
   TEAM
   ======================================== */
.team-card { text-align: center; transition: transform var(--transition); }
.team-card:hover { transform: translateY(-4px); }
.team-card .team-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: var(--gray-100);
  overflow: hidden;
  border: 4px solid var(--blue-light);
  transition: border-color var(--transition);
}
.team-card:hover .team-photo { border-color: var(--blue); }
.team-card .team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h4 { margin-bottom: 4px; }
.team-card p { font-size: 0.875rem; color: var(--gray-500); text-transform: none; letter-spacing: 0; }

/* ========================================
   WHY CHOOSE US
   ======================================== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.why-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: all var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}
.why-card .why-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all var(--transition);
}
.why-card:hover .why-icon { background: var(--blue); color: var(--white); transform: scale(1.1); }
.why-card h4 { margin-bottom: 8px; }
.why-card p { font-size: 0.875rem; color: var(--gray-500); text-transform: none; letter-spacing: 0; }

/* ========================================
   REFERRAL TIERS
   ======================================== */
.referral-tiers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}
.referral-tier {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border: 2px solid var(--gray-100);
  transition: all var(--transition);
}
.referral-tier:hover { border-color: var(--blue); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.referral-tier .tier-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.referral-tier .tier-label {
  font-family: var(--font-display);
  font-weight: 600;
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.referral-tier .tier-desc { font-size: 0.875rem; color: var(--gray-500); margin-top: 4px; }

/* ========================================
   REVIEW LINKS
   ======================================== */
.review-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.review-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 2px solid var(--gray-300);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all var(--transition);
  background: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.review-link:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ========================================
   PORTFOLIO TILES
   ======================================== */
.portfolio-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.portfolio-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.portfolio-tile:hover img { transform: scale(1.06); }
.portfolio-tile .ptile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,24,39,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.portfolio-tile:hover .ptile-overlay { background: rgba(37,99,235,.6); }
.portfolio-tile .ptile-overlay h3 { color: var(--white); font-size: 1.5rem; font-weight: 700; }

/* ========================================
   CURATED CARD (portfolio pages)
   ======================================== */
.curated-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
  cursor: pointer;
}
.curated-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.curated-card:hover img { transform: scale(1.06); }
.curated-card .curated-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background var(--transition);
}
.curated-card:hover .curated-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 70%);
}
.curated-card .curated-overlay h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 4px; }
.curated-card .curated-overlay span {
  color: rgba(255,255,255,.7);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Light form variant for service pages */
.form-light .form-group label { color: var(--gray-700); }
.form-light .form-group input, .form-light .form-group textarea, .form-light .form-group select {
  background: var(--white);
  color: var(--dark);
  border-color: var(--gray-300);
}
.form-light .form-group input:focus, .form-light .form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

/* ========================================
   SOCIAL LINKS (service pages)
   ======================================== */
.social-links { display: flex; gap: 16px; justify-content: center; margin-top: 32px; }
.social-links a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  transition: all var(--transition);
}
.social-links a:hover { background: var(--blue-dark); transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }
.fade-up:nth-child(5) { transition-delay: .4s; }

/* ========================================
   ACCENT DIVIDER — decorative line between sections
   ======================================== */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 0;
}
.section-divider::before,
.section-divider::after {
  content: '';
  height: 1px;
  width: 60px;
  background: var(--blue);
  opacity: .4;
}
.section-divider .diamond {
  width: 8px;
  height: 8px;
  background: var(--blue);
  transform: rotate(45deg);
  opacity: .5;
}

/* ========================================
   ENHANCED HOVER STATES — subtle depth
   ======================================== */
.project-tile-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.3) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}
.project-tile:hover .project-tile-img::after { opacity: 1; }

/* Smooth image loading */
img {
  background: var(--gray-100);
}

/* ========================================
   BLOG
   ======================================== */

.blog-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.blog-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  overflow: hidden;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 24px;
}

.blog-card-date {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.blog-card-body h3 {
  margin: 8px 0 12px;
  font-size: 1.125rem;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: 0.02em;
}

.blog-card-body p {
  font-size: 0.9375rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-card-link {
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.blog-card:hover .blog-card-link {
  gap: 10px;
}

.blog-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

.blog-breadcrumb {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 32px;
}

.blog-breadcrumb a {
  color: var(--blue);
}

.blog-breadcrumb a:hover {
  text-decoration: underline;
}

.blog-article h1 {
  text-transform: none;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.blog-meta {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-100);
}

.blog-article h2 {
  text-transform: none;
  letter-spacing: 0.02em;
  margin: 48px 0 16px;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

.blog-article p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 20px;
}

.blog-article ul, .blog-article ol {
  margin: 16px 0 24px 24px;
}

.blog-article ul { list-style: disc; }
.blog-article ol { list-style: decimal; }

.blog-article li {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.blog-cta-box {
  background: var(--neutral-100);
  border-left: 4px solid var(--blue);
  padding: 32px;
  margin: 40px 0;
}

.blog-cta-box h3 {
  text-transform: none;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.related-posts {
  border-top: 1px solid var(--gray-100);
  padding-top: 48px;
  margin-top: 60px;
}

.related-posts h2 {
  margin-top: 0;
}

/* ========================================
   RESPONSIVE - TABLET (max-width: 1024px)
   ======================================== */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-steps { flex-wrap: wrap; }
  .process-step { flex: 0 0 calc(50% - 12px); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .curated-strip { grid-template-columns: repeat(3, 1fr); }

  /* Hamburger menu on tablets */
  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - var(--nav-height));
    height: calc(100dvh - var(--nav-height));
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    padding: 32px 24px;
    gap: 0;
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
    z-index: 999;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a::after { display: none; }
  .nav-toggle { display: flex; }

  /* Menu items — larger touch targets */
  .nav-links a, .nav-dropdown > span {
    font-size: 0.9375rem;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
    width: 100%;
    letter-spacing: 0.1em;
  }

  /* Hide desktop CTA — only show hamburger */
  .nav-cta { display: none !important; }

  /* Dropdown accordion */
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: all;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    display: none;
  }
  .nav-dropdown-menu a {
    border-bottom: none;
    padding: 10px 0;
    font-size: 0.875rem;
    color: var(--gray-500);
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }

  /* Show mobile CTA inside hamburger menu */
  .btn-mobile-cta { display: inline-flex !important; }
}

/* ========================================
   RESPONSIVE - LARGE MOBILE (max-width: 900px)
   ======================================== */
@media (max-width: 900px) {
  .curated-strip { grid-template-columns: 1fr; }
}

/* ========================================
   RESPONSIVE - MOBILE (max-width: 768px)
   ======================================== */
@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  .section { padding: 56px 0; }

  /* Hero */
  .hero { height: 70vh; min-height: 450px; }
  .hero-content h1 { font-size: clamp(2rem, 8vw, 3rem); }

  /* Grids */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 24px; text-align: center; }

  /* Process & cards */
  .process-steps { flex-direction: column; }
  .referral-tiers { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }

  /* Page hero */
  .page-hero { height: 300px; }

  /* Testimonials arrows always visible */
  .testimonial-carousel { padding: 0 50px; }
  .t-prev { left: 0; }
  .t-next { right: 0; }

  /* Curated strip single column on mobile */
  .curated-strip { grid-template-columns: 1fr; }
  .curated-banner-inner { aspect-ratio: 16/10; }

  /* Floating CTA adjustments */
  .floating-cta { bottom: 16px; left: 16px; }
  .floating-btn { width: 46px; height: 46px; font-size: 1.1rem; }

  /* Blog */
  .blog-cards { grid-template-columns: 1fr; }
  .blog-article { padding: 40px 16px 60px; }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ======================================== */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 40px 0; }
  h1 { font-size: clamp(1.75rem, 7vw, 2.5rem); }
  h2 { font-size: clamp(1.5rem, 5vw, 2rem); }
  .hero { height: 60vh; min-height: 380px; }
  .hero-content h1 { font-size: clamp(1.75rem, 7vw, 2.5rem); margin-bottom: 24px; }
  .btn { padding: 12px 24px; font-size: 0.8125rem; }
  .btn-lg { padding: 14px 32px; font-size: 0.875rem; }
  .testimonial-carousel { padding: 0 40px; }
  .t-nav { width: 36px; height: 36px; font-size: 1.2rem; }
  .page-hero { height: 240px; }
  .estimate-section { padding: 48px 0; }
  .form-submit-btn { padding: 14px 36px; width: 100%; }
}
