/* ========================================
   VARIABLES
   ======================================== */
:root {
  --color-bg: #1E1D1B;
  --color-bg-light: #262523;
  --color-bg-card: #2E2C2A;
  --color-surface: #F0EAE0;
  --color-accent: #B87B50;
  --color-accent-hover: #CC8F64;
  --color-accent-glow: rgba(184, 123, 80, .15);
  --color-text-white: #EBE5DC;
  --color-text-light: #B5AEA5;
  --color-text-muted: #918B85;
  --color-text-dark: #2A2522;
  --color-text-body: #58524D;
  --color-border: rgba(235, 229, 220, .1);
  --font-display: "DM Serif Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --space-xs: .5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-section: clamp(5rem, 10vw, 8rem);
  --max-width: 88vw;
  --max-width-narrow: 800px;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --duration-fast: .2s;
  --duration-normal: .4s;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
}

/* ========================================
   RESET
   ======================================== */
*, *:before, *:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: none;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: none;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-white);
  background-color: var(--color-bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  transition: opacity .4s ease;
}

section, footer, nav, header {
  display: block;
  width: 100%;
  max-width: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.02em;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

p {
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  line-height: 1.7;
}

/* ========================================
   UTILITIES
   ======================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.accent {
  color: var(--color-accent);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  display: block;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 1.8rem;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--duration-normal) var(--ease-out);
  cursor: pointer;
}

.btn span {
  display: inline-block;
  transition: transform var(--duration-normal) var(--ease-out);
}

.btn:hover span {
  transform: translate(4px);
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-bg);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px #b87b504d;
}

.btn--dark {
  background: var(--color-bg);
  color: var(--color-text-white);
}

.btn--dark:hover {
  background: var(--color-bg-light);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1.1rem 2.2rem;
  font-size: 1.05rem;
}

/* ========================================
   SKIP LINK
   ======================================== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translate(-50%);
  padding: .75rem 1.5rem;
  background: var(--color-accent);
  color: var(--color-bg);
  font-weight: 600;
  font-size: .9rem;
  border-radius: var(--radius-sm);
  z-index: 10000;
  transition: top .3s ease;
}

.skip-link:focus {
  top: 10px;
}

/* ========================================
   GRAIN OVERLAY
   ======================================== */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ========================================
   PROGRESS BAR
   ======================================== */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--color-accent);
  z-index: 1001;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition:
    background var(--duration-normal) var(--ease-out),
    padding var(--duration-normal) var(--ease-out),
    backdrop-filter var(--duration-normal) var(--ease-out);
}

.nav--scrolled {
  background: #1e1d1bf2;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: .75rem 0;
  border-bottom: 1px solid var(--color-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.nav__logo {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-text-white);
}

.nav__logo-accent {
  color: var(--color-accent);
  font-weight: 800;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  list-style: none;
}

.nav__link {
  font-size: .85rem;
  font-weight: 500;
  color: var(--color-text-light);
  transition: color var(--duration-fast) ease;
  position: relative;
}

.nav__link:after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-accent);
  transition: width var(--duration-normal) var(--ease-out);
}

.nav__link:hover {
  color: var(--color-text-white);
}

.nav__link:hover:after,
.nav__link.active:after {
  width: 100%;
}

.nav__cta {
  padding: .65rem 1.5rem;
  font-size: .85rem;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  z-index: 1001;
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text-white);
  transition: all var(--duration-normal) var(--ease-out);
  transform-origin: center;
}

.nav__hamburger--active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger--active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger--active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: #1e1d1bf7;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.nav__mobile--open {
  opacity: 1;
  pointer-events: all;
}

.nav__mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-text-white);
  transition: color var(--duration-fast) ease;
}

.nav__mobile a:hover {
  color: var(--color-accent);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 10rem 0 6rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url(/hero-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__bg:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, #1e1d1be0, #1e1d1bb3 40%, #1e1d1b66, #1e1d1b33);
  z-index: 1;
}

.hero__bg:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 25%;
  background: linear-gradient(to top, var(--color-bg), transparent);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 10;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  width: 100%;
}

.hero__headline {
  max-width: 650px;
  margin-bottom: var(--space-md);
  color: var(--color-text-white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, .3);
}

.hero__headline .word {
  display: inline-block;
  overflow: hidden;
}

.hero__headline .word-inner {
  display: inline-block;
  transform: translateY(110%);
}

.hero__headline .accent {
  color: var(--color-accent);
}

.hero__subtitle {
  max-width: 520px;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
  text-shadow: 0 1px 10px rgba(0, 0, 0, .2);
}

.hero__cta {
  margin-bottom: var(--space-lg);
}

.hero__trust {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.hero__trust span {
  font-size: .8rem;
  font-weight: 500;
  color: #ffffffb3;
  letter-spacing: .03em;
}

.hero__trust span:before {
  content: "\2713  ";
  color: var(--color-accent);
  font-weight: 700;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translate(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: 0;
  animation: fadeInScroll 1s var(--ease-out) 2s forwards, scrollBounce 2.5s ease-in-out 3s infinite;
}

@keyframes fadeInScroll {
  to { opacity: .6; }
}

@keyframes scrollBounce {
  0%, 100% { transform: translate(-50%) translateY(0); }
  50% { transform: translate(-50%) translateY(6px); }
}

.hero__scroll-text {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: var(--color-text-muted);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line:after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-accent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { top: -100%; }
  50% { top: 0%; }
  100% { top: 100%; }
}

/* ========================================
   TRANSFORMATION STORIES
   ======================================== */
.transformations {
  padding: var(--space-section) 0 0;
  background: var(--color-bg);
}

.transformations__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.transform-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 0 var(--space-2xl);
  gap: 0;
  align-items: center;
}

.transform-story--reverse {
  direction: rtl;
}

.transform-story--reverse > * {
  direction: ltr;
}

.transform-story__image {
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.transform-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}

.transform-story:hover .transform-story__image img {
  transform: scale(1.03);
}

.transform-story__content {
  padding: var(--space-2xl);
  max-width: 600px;
  margin: 0 auto;
}

.transform-story__numbers {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.transform-story__before-label,
.transform-story__after-label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-text-muted);
  margin-bottom: .25rem;
}

.transform-story__before-amount {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: line-through;
  text-decoration-color: #ff505080;
  opacity: .6;
}

.transform-story__arrow {
  color: var(--color-accent);
  flex-shrink: 0;
}

.transform-story__arrow svg {
  width: 28px;
  height: 28px;
}

.transform-story__after-amount {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  color: var(--color-accent);
  line-height: 1;
  text-shadow: 0 0 60px rgba(184, 123, 80, .2);
}

.transform-story__text {
  font-size: .95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 420px;
}

/* ========================================
   TRUST STRIP
   ======================================== */
.trust-strip {
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-light);
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.trust-strip__icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--color-accent-glow);
  flex-shrink: 0;
  transition: all var(--duration-normal) var(--ease-out);
}

.trust-strip__item:hover .trust-strip__icon {
  background: #b87b5040;
  transform: scale(1.1);
}

.trust-strip__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-strip__item span {
  font-size: .85rem;
  font-weight: 600;
  color: var(--color-text-light);
}

/* ========================================
   EDUCATION
   ======================================== */
.education {
  padding: var(--space-section) 0;
  background: var(--color-surface);
  color: var(--color-text-dark);
}

.education__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.education__image {
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}

.education__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.education__text {
  padding: var(--space-2xl);
}

.education__text .eyebrow {
  color: var(--color-accent);
}

.education__text h2 {
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

.education__text p {
  color: var(--color-text-body);
  margin-bottom: var(--space-md);
  font-size: clamp(1rem, 1.1vw, 1.1rem);
}

.education__text p:last-of-type {
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: var(--space-xl);
}

/* ========================================
   SERVICES
   ======================================== */
.services {
  padding: var(--space-section) 0;
  background: var(--color-bg-light);
}

.services__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.services__subtitle {
  color: var(--color-text-muted);
  max-width: 550px;
  margin: var(--space-sm) auto 0;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.services__card {
  position: relative;
  overflow: hidden;
}

.services__card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 29, 27, .6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .4s var(--ease-out);
  pointer-events: none;
}

.services__card:hover:after {
  opacity: 1;
}

.services__card-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.services__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}

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

.services__card-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  background: linear-gradient(to top, rgba(30, 29, 27, .95) 0%, rgba(30, 29, 27, .7) 60%, transparent 100%);
}

.services__card-text h3 {
  color: var(--color-text-white);
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  margin-bottom: .4rem;
}

.services__card-text p {
  color: var(--color-text-light);
  font-size: .8rem;
  line-height: 1.5;
  opacity: 0;
  max-height: 0;
  transition: opacity .4s var(--ease-out), max-height .4s var(--ease-out);
}

.services__card:hover .services__card-text p {
  opacity: 1;
  max-height: 120px;
}

/* ========================================
   PROCESS
   ======================================== */
.process {
  padding: var(--space-section) 0;
  background: var(--color-bg);
}

.process__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.process__step {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--duration-normal) var(--ease-out);
}

.process__step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px #00000040;
  border-color: #b87b5033;
}

.process__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.process__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}

.process__step:hover .process__image img {
  transform: scale(1.05);
}

.process__number {
  position: absolute;
  bottom: var(--space-sm);
  right: var(--space-sm);
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--color-accent);
  opacity: .5;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .5);
}

.process__step h3 {
  color: var(--color-text-white);
  padding: var(--space-md) var(--space-lg) var(--space-xs);
}

.process__step p {
  color: var(--color-text-muted);
  font-size: .9rem;
  padding: 0 var(--space-lg) var(--space-lg);
}

/* ========================================
   ABOUT DREW
   ======================================== */
.about-drew {
  padding: var(--space-section) 0;
  background: var(--color-surface);
  color: var(--color-text-dark);
}

.about-drew__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.about-drew__image {
  height: 100%;
  min-height: 450px;
  overflow: hidden;
}

.about-drew__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-drew__text {
  padding: var(--space-2xl);
}

.about-drew__text .eyebrow {
  color: var(--color-accent);
}

.about-drew__text h2 {
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}

.about-drew__text p {
  color: var(--color-text-body);
  margin-bottom: var(--space-md);
  font-size: clamp(1rem, 1.1vw, 1.1rem);
}

.about-drew__text p:last-of-type {
  margin-bottom: var(--space-xl);
}

/* ========================================
   WHY US
   ======================================== */
.why-us {
  padding: var(--space-section) 0;
  background: var(--color-bg);
}

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.why-us__text {
  padding: var(--space-2xl) var(--space-2xl) var(--space-2xl) clamp(2rem, 8vw, 10rem);
}

.why-us__text h2 {
  margin-bottom: var(--space-xl);
}

.why-us__points {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.why-us__point {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.why-us__point-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--color-accent-glow);
  transition: all var(--duration-normal) var(--ease-out);
}

.why-us__point:hover .why-us__point-icon {
  background: #b87b5040;
  transform: scale(1.08);
}

.why-us__point-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--color-accent);
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-us__point-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-white);
  margin-bottom: .25rem;
  letter-spacing: 0;
  line-height: 1.4;
}

.why-us__point p {
  font-size: .9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.why-us__image {
  height: 100%;
  min-height: 500px;
  overflow: hidden;
}

.why-us__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  padding: var(--space-section) 0;
  background: var(--color-bg-light);
}

.testimonials__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.testimonial-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  transition: transform var(--duration-normal) var(--ease-out);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: #b87b504d;
  box-shadow: 0 12px 40px #0003;
}

.testimonial-card__stars {
  display: flex;
  gap: .2rem;
  margin-bottom: var(--space-md);
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
  fill: var(--color-accent);
}

.testimonial-card__text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: var(--space-lg);
  flex: 1;
  font-style: normal;
  border: none;
  padding: 0;
  margin-top: 0;
}

.testimonial-card__author {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-md);
}

.testimonial-card__name {
  font-weight: 600;
  font-size: .95rem;
  color: var(--color-text-white);
}

.testimonial-card__location {
  font-size: .8rem;
  color: var(--color-text-muted);
}

/* ========================================
   GALLERY
   ======================================== */
.gallery {
  padding: var(--space-section) 0;
  background: var(--color-bg);
}

.gallery__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.gallery__subtitle {
  color: var(--color-text-muted);
  max-width: 550px;
  margin: var(--space-sm) auto 0;
}

.gallery__grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.gallery__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 16 / 10;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}

.gallery__item:hover img {
  transform: scale(1.05);
}

.gallery__label {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  padding: .35rem .85rem;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  border-radius: var(--radius-sm);
  background: #1e1d1bcc;
  color: var(--color-text-light);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.gallery__label--after {
  background: #b87b50e6;
  color: #fff;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
  padding: var(--space-section) 0;
  background: var(--color-surface);
  color: var(--color-text-dark);
}

.faq__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.faq__header h2 {
  color: var(--color-text-dark);
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid rgba(42, 37, 34, .1);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text-dark);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  gap: var(--space-md);
  transition: color var(--duration-fast) ease, padding-left var(--duration-normal) var(--ease-out);
}

.faq__question:hover {
  color: var(--color-accent);
  padding-left: .5rem;
}

.faq__question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--color-text-muted);
  transition: transform var(--duration-normal) var(--ease-out);
}

.faq__item--open .faq__question svg {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-normal) var(--ease-out), padding var(--duration-normal) var(--ease-out);
}

.faq__item--open .faq__answer {
  max-height: 300px;
  padding-bottom: var(--space-md);
}

.faq__answer p {
  color: var(--color-text-body);
  font-size: .95rem;
  line-height: 1.7;
}

/* ========================================
   SERVICE AREAS
   ======================================== */
.areas {
  padding: var(--space-section) 0;
  background: var(--color-bg-light);
}

.areas__header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.areas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.areas__region {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: transform var(--duration-normal) var(--ease-out), box-shadow var(--duration-normal) var(--ease-out);
}

.areas__region:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px #0003;
  border-color: #b87b5033;
}

.areas__region-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-accent-glow);
}

.areas__region-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-accent);
}

.areas__region h3 {
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  font-size: 1.3rem;
}

.areas__region ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.areas__region li {
  color: var(--color-text-light);
  font-size: .9rem;
}

.areas__cta {
  text-align: center;
  margin-top: var(--space-2xl);
}

.areas__cta p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

.areas__cta a {
  color: var(--color-accent);
  font-weight: 600;
  transition: color var(--duration-fast) ease;
}

.areas__cta a:hover {
  color: var(--color-accent-hover);
}

/* ========================================
   CONTACT
   ======================================== */
.contact {
  position: relative;
  padding: var(--space-section) 0;
  overflow: hidden;
}

.contact__bg {
  position: absolute;
  inset: 0;
  background-image: url(/img/cta-bg.jpg);
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.contact__bg:before {
  content: "";
  position: absolute;
  inset: 0;
  background: #1e1d1beb;
  z-index: 1;
}

.contact .container {
  position: relative;
  z-index: 10;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.contact__info h2 {
  margin-bottom: var(--space-md);
}

.contact__info > p {
  color: var(--color-text-light);
  margin-bottom: var(--space-xl);
  font-size: 1.05rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.contact__detail-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--color-accent-glow);
}

.contact__detail-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-accent);
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact__detail a,
.contact__detail span {
  color: var(--color-text-light);
  font-size: .9rem;
}

.contact__detail a:hover {
  color: var(--color-accent);
}

.contact__form {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.contact__field label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--color-text-light);
  letter-spacing: .03em;
}

.contact__field input {
  padding: .85rem 1rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text-white);
  font-family: var(--font-body);
  font-size: .95rem;
  transition: border-color var(--duration-fast) ease;
}

.contact__field input::placeholder {
  color: var(--color-text-muted);
}

.contact__field input:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-glow);
}

.contact__submit {
  width: 100%;
  justify-content: center;
  margin-top: var(--space-xs);
  border: none;
  position: relative;
  overflow: hidden;
}

.contact__submit:after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-sm);
  background: var(--color-accent);
  opacity: 0;
  z-index: -1;
  filter: blur(12px);
  transition: opacity .4s ease;
}

.contact__submit:hover:after {
  opacity: .4;
}

.contact__disclaimer {
  text-align: center;
  font-size: .8rem;
  color: var(--color-text-muted);
  margin-top: 0;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding: var(--space-2xl) 0 var(--space-lg);
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.footer__logo {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-text-white);
  display: inline-block;
  margin-bottom: var(--space-sm);
}

.footer__brand p {
  color: var(--color-text-muted);
  font-size: .9rem;
  max-width: 300px;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-text-white);
  margin-bottom: var(--space-sm);
}

.footer__col a,
.footer__col p {
  color: var(--color-text-muted);
  font-size: .9rem;
  line-height: 1.8;
}

.footer__col a {
  transition: color var(--duration-fast) ease;
}

.footer__col a:hover {
  color: var(--color-accent);
}

.footer__bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.footer__bottom p {
  color: var(--color-text-muted);
  font-size: .8rem;
  text-align: center;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 968px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger, .nav__mobile { display: flex; }

  .hero {
    min-height: auto;
    padding: 8rem 0 4rem;
  }

  .hero__bg:before {
    background: linear-gradient(180deg, #1e1d1bcc, #1e1d1b99, #1e1d1bbf);
  }

  .hero__scroll { display: none; }

  .transform-story {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .transform-story--reverse { direction: ltr; }

  .transform-story__content {
    padding: var(--space-xl) var(--space-lg);
  }

  .education__grid { grid-template-columns: 1fr; }
  .education__image { min-height: 300px; }
  .education__text { padding: var(--space-xl) var(--space-lg); }

  .process__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .why-us__grid { grid-template-columns: 1fr; }
  .why-us__text {
    padding: var(--space-xl) var(--space-lg);
    order: 2;
  }
  .why-us__image {
    min-height: 300px;
    order: 1;
  }

  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .services__card:last-child { grid-column: span 2; }
  .services__card-text p {
    opacity: 1;
    max-height: 120px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-drew__grid { grid-template-columns: 1fr; }
  .about-drew__image { min-height: 300px; }
  .about-drew__text { padding: var(--space-xl) var(--space-lg); }

  .gallery__pair { grid-template-columns: 1fr; }

  .areas__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer__grid { grid-template-columns: 1fr 1fr; }

  .trust-strip__inner { gap: var(--space-lg); }
}

@media (max-width: 600px) {
  :root { --space-lg: 1.25rem; }

  .hero__headline { font-size: 2.2rem; }

  .hero__trust {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .transform-story__after-amount { font-size: 2.8rem; }
  .transform-story__numbers { gap: var(--space-sm); }

  .trust-strip__inner {
    flex-direction: column;
    gap: var(--space-md);
    align-items: flex-start;
    padding: 0 var(--space-lg);
  }

  .education__image { min-height: 250px; }
  .education__text { padding: var(--space-xl) var(--space-lg); }

  .about-drew__image { min-height: 250px; }

  .services__grid { grid-template-columns: 1fr; }
  .services__card:last-child { grid-column: span 1; }
  .services__card-image { aspect-ratio: 16 / 9; }

  .footer__grid { grid-template-columns: 1fr; }
}