:root {
  --sage:         #6b7c62;
  --sage-light:   #9aaa90;
  --sage-pale:    #dce4d8;
  --cream:        #f5f0e8;
  --oat:          #ede8de;
  --taupe:        #9e9189;
  --taupe-light:  #ccc4bb;
  --blush:        #e4d0c7;
  --brass:        #b8923a;
  --brass-light:  #d4aa5e;
  --brass-dim:    rgba(184,146,58,0.18);
  --ink:          #2c2620;
  --ink-soft:     rgba(44,38,32,0.65);
  --marble:       #f8f6f2;
  --white:        #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scrollbar-width: thin; scrollbar-color: var(--taupe-light) transparent; }
html::-webkit-scrollbar { width: 4px; }
html::-webkit-scrollbar-thumb { background: var(--taupe-light); border-radius: 2px; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: "Jost", "DM Sans", system-ui, sans-serif;
  overflow-x: hidden;
  font-weight: 300;
  line-height: 1.6;
}

/* ─── NAV ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 48px;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(245,240,232,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(44,38,32,0.08);
}
.nav-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--ink);
  text-transform: uppercase;
  text-decoration: none;
}
.nav-brand span {
  color: var(--sage);
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--sage); }
.nav-cta {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  text-decoration: none;
  border: 1px solid var(--brass);
  padding: 9px 22px;
  transition: background 0.25s, color 0.25s;
}
.nav-cta:hover {
  background: var(--brass);
  color: var(--cream);
}
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { display: block; width: 24px; height: 1.5px; background: var(--ink); }

/* ─── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://tempfile.aiquickdraw.com/r/ef77777778f8edca8ddc62ac1a7754d3_1781191505_5wy1p743.png");
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(44,38,32,0.12) 0%,
      transparent 35%,
      transparent 55%,
      rgba(44,38,32,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 60px 72px;
  max-width: 900px;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.75);
  margin-bottom: 18px;
  display: block;
}
.hero-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 400;
  line-height: 1.0;
  color: var(--cream);
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--brass-light);
}
.hero-sub {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(245,240,232,0.8);
  max-width: 420px;
  margin-bottom: 40px;
  letter-spacing: 0.03em;
}
.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: var(--brass);
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  transition: background 0.25s, transform 0.25s;
}
.btn-primary:hover { background: var(--brass-light); transform: translateY(-1px); }
.btn-ghost {
  display: inline-block;
  color: rgba(245,240,232,0.85);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(245,240,232,0.35);
  transition: color 0.25s, border-color 0.25s;
}
.btn-ghost:hover { color: var(--cream); border-color: var(--cream); }
.scroll-cue {
  position: absolute;
  bottom: 32px;
  right: 60px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
  animation: cue-bob 2.2s ease-in-out infinite;
}
.scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, rgba(245,240,232,0.45), transparent);
}
@keyframes cue-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ─── CINEMATIC SCRUB ─────────────────────────────────── */
.cinematic {
  position: relative;
  height: 480vh;
}
.cinematic .sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--ink);
}
.cinematic canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.cinematic .vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(130% 85% at 50% 50%, transparent 40%, rgba(44,38,32,0.55) 100%),
    linear-gradient(180deg, rgba(44,38,32,0.3) 0%, transparent 20%, transparent 75%, rgba(44,38,32,0.55) 100%);
}
.cinematic .overlay-copy {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 24px;
  pointer-events: none;
}
.reveal-line {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(800px, 88vw);
  text-align: center;
  opacity: 0;
  will-change: opacity, transform;
}
.reveal-line .eyebrow {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass-light);
  margin-bottom: 14px;
}
.reveal-line h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 5.5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.reveal-line h2 em { font-style: italic; color: var(--blush); }
.reveal-line p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(245,240,232,0.7);
  letter-spacing: 0.03em;
}
.scrub-progress {
  position: absolute;
  bottom: 44px; left: 60px; right: 60px;
  height: 1px;
  background: rgba(245,240,232,0.12);
  z-index: 12;
}
.scrub-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--sage), var(--brass));
  transition: width 0.05s linear;
}
.scrub-hint {
  position: absolute;
  bottom: 18px; left: 50%;
  transform: translateX(-50%);
  z-index: 12;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  transition: opacity 0.4s;
}

/* ─── SECTION COMMON ──────────────────────────────────── */
.section-pad { padding: 120px 60px; }
.section-pad-sm { padding: 80px 60px; }
.section-eyebrow {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 18px;
}
.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.section-title em { font-style: italic; color: var(--sage); }
.section-body {
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 560px;
}
.divider {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--brass);
  margin: 28px 0;
}

/* ─── INTRO STATEMENT ─────────────────────────────────── */
.intro {
  background: var(--marble);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
}
.intro-text { padding: 100px 80px 100px 60px; }
.intro-image {
  height: 580px;
  background: url("https://tempfile.aiquickdraw.com/r/ef77777778f8edca8ddc62ac1a7754d3_1781191505_5wy1p743.png") center / cover;
  filter: brightness(0.96) saturate(0.88);
}
.pull-quote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  letter-spacing: 0.01em;
  max-width: 480px;
}
.pull-quote::before {
  content: "\201C";
  display: block;
  font-size: 4rem;
  line-height: 0.6;
  color: var(--brass);
  margin-bottom: 18px;
}

/* ─── SERVICES ────────────────────────────────────────── */
.services {
  background: var(--cream);
}
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 72px;
  flex-wrap: wrap;
  gap: 24px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--oat);
}
.service-card {
  background: var(--cream);
  padding: 48px 40px 44px;
  transition: background 0.3s;
  cursor: default;
}
.service-card:hover { background: var(--marble); }
.service-icon {
  width: 36px;
  height: 1px;
  background: var(--brass);
  margin-bottom: 28px;
  transition: width 0.3s;
}
.service-card:hover .service-icon { width: 52px; }
.service-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.service-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.service-from {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}
.service-from strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

/* ─── STYLISTS ────────────────────────────────────────── */
.stylists {
  background: var(--oat);
}
.stylists-header {
  text-align: center;
  margin-bottom: 72px;
}
.stylists-header .section-eyebrow { justify-content: center; display: block; }
.stylists-header .section-title { max-width: 600px; margin: 0 auto 0; }
.stylists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.stylist-card {
  text-align: center;
}
.stylist-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--sage-pale);
  margin-bottom: 28px;
  overflow: hidden;
  position: relative;
}
.stylist-photo-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--sage-pale) 0%, var(--blush) 60%, var(--oat) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
}
.stylist-initial {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 5rem;
  font-weight: 300;
  color: rgba(44,38,32,0.2);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stylist-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}
.stylist-title-text {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}
.stylist-bio {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 280px;
  margin: 0 auto;
}

/* ─── PORTFOLIO ───────────────────────────────────────── */
.portfolio {
  background: var(--ink);
  padding: 120px 0;
}
.portfolio-header {
  padding: 0 60px 72px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}
.portfolio-header .section-title { color: var(--cream); }
.portfolio-header .section-eyebrow { color: var(--brass-light); }
.portfolio-header .section-body { color: rgba(245,240,232,0.65); }
.portfolio-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 340px 340px;
  gap: 3px;
}
.portfolio-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.portfolio-item:first-child {
  grid-row: 1 / 3;
}
.portfolio-tile {
  width: 100%;
  height: 100%;
  transition: transform 0.7s ease;
}
.portfolio-item:hover .portfolio-tile { transform: scale(1.04); }
.portfolio-tile-1 {
  background: linear-gradient(135deg, #6b7c62 0%, #9aaa90 40%, #b8923a 100%);
}
.portfolio-tile-2 {
  background: linear-gradient(180deg, #e4d0c7 0%, #9e9189 100%);
}
.portfolio-tile-3 {
  background: linear-gradient(135deg, #b8923a 0%, #ede8de 100%);
}
.portfolio-tile-4 {
  background: linear-gradient(135deg, #dce4d8 0%, #6b7c62 100%);
}
.portfolio-tile-5 {
  background: linear-gradient(135deg, #2c2620 0%, #9e9189 60%, #e4d0c7 100%);
}
.portfolio-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(0deg, rgba(44,38,32,0.7), transparent);
  color: var(--cream);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
}
.portfolio-item:hover .portfolio-label { opacity: 1; }

/* ─── EXPERIENCE ──────────────────────────────────────── */
.experience {
  background: var(--marble);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.experience-text { padding: 100px 80px 100px 60px; }
.experience-image {
  height: 640px;
  background: linear-gradient(135deg, var(--sage-pale) 0%, var(--blush) 40%, var(--oat) 100%);
  position: relative;
  overflow: hidden;
}
.experience-image-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #dce4d8 0%, #e4d0c7 50%, #ede8de 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.experience-image-text {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 8rem;
  font-weight: 300;
  color: rgba(44,38,32,0.07);
  letter-spacing: -0.04em;
  line-height: 1;
  text-align: center;
  padding: 24px;
}
.experience-features {
  list-style: none;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.experience-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.experience-features li::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 1px;
  background: var(--brass);
  margin-top: 10px;
}

/* ─── TESTIMONIALS ────────────────────────────────────── */
.testimonials {
  background: var(--cream);
  text-align: center;
}
.testimonials-header { margin-bottom: 72px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--marble);
  padding: 44px 36px;
  text-align: left;
  border-top: 2px solid var(--brass-dim);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 22px;
}
.testimonial-stars span {
  width: 8px;
  height: 8px;
  background: var(--brass);
  border-radius: 50%;
}
.testimonial-quote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 22px;
}
.testimonial-author {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
}

/* ─── LOCATION ────────────────────────────────────────── */
.location {
  background: var(--oat);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.location-info { padding: 100px 80px 100px 60px; }
.location-map {
  background: var(--sage-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}
.location-map-inner {
  text-align: center;
  padding: 40px;
}
.location-map-pin {
  width: 2px;
  height: 60px;
  background: linear-gradient(180deg, var(--brass), transparent);
  margin: 0 auto 8px;
}
.location-map-pin::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--brass);
  margin: -6px 0 0 -5px;
}
.location-map-label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage);
}
.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 28px;
  margin-top: 36px;
}
.hours-day {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--taupe);
}
.hours-time {
  font-size: 0.88rem;
  color: var(--ink);
}
.location-address {
  margin-top: 36px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--ink-soft);
  border-top: 1px solid var(--taupe-light);
  padding-top: 28px;
}
.location-address strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}

/* ─── BOOKING CTA ─────────────────────────────────────── */
.booking-cta {
  background: var(--ink);
  padding: 140px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.booking-cta::before {
  content: "";
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,146,58,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.booking-cta .section-eyebrow { color: var(--brass-light); }
.booking-cta .section-title { color: var(--cream); margin-bottom: 20px; }
.booking-cta .section-title em { color: var(--brass-light); }
.booking-cta .section-body {
  color: rgba(245,240,232,0.65);
  margin: 0 auto 48px;
}
.booking-cta .btn-primary { font-size: 0.78rem; padding: 18px 48px; }
.booking-note {
  margin-top: 24px;
  font-size: 0.8rem;
  color: rgba(245,240,232,0.35);
  letter-spacing: 0.1em;
}
.booking-demo {
  margin-top: 32px;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.3);
  border-top: 1px solid rgba(245,240,232,0.1);
  padding-top: 24px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(245,240,232,0.06);
  padding: 52px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
}
.footer-brand span { color: var(--sage-light); }
.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-links a:hover { color: rgba(245,240,232,0.8); }
.footer-copy {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.25);
}
.footer-pageify {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.2);
}
.footer-pageify a {
  color: rgba(245,240,232,0.35);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-pageify a:hover { color: rgba(245,240,232,0.75); }
.footer-demo {
  width: 100%;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
  border-top: 1px solid rgba(245,240,232,0.08);
  padding-top: 20px;
  margin: 0;
}

/* ─── REVEAL ANIMATIONS ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── MOBILE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 18px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .section-pad { padding: 80px 24px; }
  .section-pad-sm { padding: 56px 24px; }

  .hero-content { padding: 0 24px 56px; }
  .scroll-cue { right: 24px; }

  .intro { grid-template-columns: 1fr; }
  .intro-text { padding: 64px 24px; }
  .intro-image { height: 320px; order: -1; }

  .services-header { margin-bottom: 40px; }
  .services-grid { grid-template-columns: 1fr; }

  .stylists-grid { grid-template-columns: 1fr; max-width: 360px; }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .portfolio-item:first-child { grid-row: 1 / 2; }
  .portfolio-header { padding: 0 24px 48px; }

  .experience { grid-template-columns: 1fr; }
  .experience-text { padding: 64px 24px; }
  .experience-image { height: 280px; }

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

  .location { grid-template-columns: 1fr; }
  .location-info { padding: 64px 24px; }
  .location-map { min-height: 240px; }

  .booking-cta { padding: 100px 24px; }

  footer { padding: 40px 24px; flex-direction: column; align-items: flex-start; gap: 16px; }

  .reveal-line h2 { font-size: clamp(1.8rem, 6vw, 3rem); }
}

@media (max-width: 600px) {
  .hero-title { font-size: clamp(2.4rem, 9vw, 4rem); }
  .portfolio-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 240px); }
  .portfolio-item:first-child { grid-row: auto; }
  .hero-actions { flex-direction: column; gap: 0.75rem; }
  .btn-primary { width: 100%; justify-content: center; }
}

/* ─── LANDSCAPE ──────────────────────────────────────────── */
@media (max-width: 900px) and (orientation: landscape) {
  .hero { min-height: 100svh; }
  .hero-title { font-size: clamp(1.8rem, 4vw, 2.4rem); }
  .hero-actions { flex-direction: row; }
  .hero-actions .btn-primary { width: auto; }
}

/* ─── TOUCH DEVICES ──────────────────────────────────────── */
@media (hover: none) and (pointer: coarse) {
  .btn-primary,
  .btn-ghost { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
  .btn-primary:hover { transform: none; background: var(--brass); }
  .btn-ghost:hover { color: rgba(245,240,232,0.85); border-color: rgba(245,240,232,0.35); }
  .service-card:hover { background: var(--cream); }
  .service-card:hover .service-icon { width: 36px; }
  .portfolio-item:hover .portfolio-tile { transform: none; }
  .portfolio-item:hover .portfolio-label { opacity: 0; }
  .nav-links a { min-height: 44px; display: flex; align-items: center; }
  .footer-links a { min-height: 44px; display: flex; align-items: center; }
}

/* ─── REDUCED MOTION ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-bg { transform: none !important; transition: none; }
}
