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

:root {
  --cream:       #FAF6F0;
  --warm-white:  #FFFFFF;
  --dark:        #1E1810;
  --brown:       #8B6F4E;
  --caramel:     #B8854E;
  --caramel-lt:  #D4A876;
  --sage:        #5C7A62;
  --sage-lt:     #E8F0EA;
  --dusty:       #E2D5C8;
  --muted:       #7A6A58;
  --border:      #DDD0C0;
  --radius:      4px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--dark);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: 1.3rem; }

p { margin-bottom: 1.2em; color: var(--muted); }
p:last-child { margin-bottom: 0; }

a { color: var(--caramel); text-decoration: none; }
a:hover { text-decoration: underline; }

em, i { font-style: italic; }
strong { font-weight: 700; color: var(--dark); }

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 6rem 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn--primary {
  background: var(--caramel);
  color: var(--warm-white);
  border-color: var(--caramel);
}
.btn--primary:hover {
  background: var(--dark);
  border-color: var(--dark);
  text-decoration: none;
}

.btn--outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn--outline:hover {
  background: var(--dark);
  color: var(--warm-white);
  text-decoration: none;
}

.btn--outline-cream {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn--outline-cream:hover {
  background: var(--cream);
  color: var(--dark);
  text-decoration: none;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.nav.scrolled { box-shadow: 0 2px 20px rgba(30,24,16,0.08); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.nav__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: 0.03em;
  text-decoration: none;
}

.nav__logo span { color: var(--caramel); }

.nav__links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}

.nav__links a {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}

.nav__links a:hover,
.nav__links a.active { color: var(--caramel); }

.nav__links .nav__cta a {
  background: var(--caramel);
  color: var(--warm-white);
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius);
}
.nav__links .nav__cta a:hover {
  background: var(--dark);
  text-decoration: none;
}

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  margin-right: -10px;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transform-origin: center;
  transition: transform 0.3s var(--ease, ease), opacity 0.2s ease;
}

/* Burger → X when open */
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu dimming scrim */
.nav__scrim {
  position: fixed;
  inset: 0;
  background: rgba(30,24,16,0.45);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nav__scrim.show { opacity: 1; visibility: visible; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--dark);
  padding-top: 80px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 4rem 2rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero__eyebrow {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--caramel-lt);
  margin-bottom: 1.5rem;
}

.hero__title {
  color: var(--cream);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.hero__sub {
  color: rgba(250,246,240,0.8);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== INTRO STRIP ===== */
.intro-strip {
  background: var(--warm-white);
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}

.intro-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.intro-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.intro-strip__icon {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.intro-strip__label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--dark);
}

.intro-strip__desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

/* ===== ABOUT ===== */
.about { background: var(--cream); }

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__image-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.about__image-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 60%;
  height: 60%;
  border: 2px solid var(--caramel);
  border-radius: 2px;
  z-index: -1;
}

.about__tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 1rem;
}

.about__text h2 { margin-bottom: 1.5rem; }

.about__signature {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-style: italic;
  color: var(--caramel);
  margin-top: 2rem;
  display: block;
}

/* ===== HOW IT WORKS ===== */
.how { background: var(--warm-white); }

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 0.8rem;
}

.section-header h2 { margin-bottom: 1rem; }
.section-header p { max-width: 560px; margin: 0 auto; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 2rem;
  background: var(--cream);
  border-radius: 2px;
  border-top: 3px solid var(--caramel);
  position: relative;
}

.step__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--dusty);
  line-height: 1;
}

.step h4 { color: var(--dark); }
.step p { font-size: 0.92rem; }

/* ===== GALLERY ===== */
.gallery { background: var(--cream); }

.gallery__grid {
  columns: 3;
  column-gap: 1rem;
}

.gallery__item {
  break-inside: avoid;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 2px;
}

.gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

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

.gallery__placeholder {
  width: 100%;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dusty);
  color: var(--muted);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
}

.gallery__item--tall .gallery__placeholder { height: 100%; min-height: 560px; }

.gallery__cards-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--dusty);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 2.2rem;
  margin-top: 3rem;
}
.gallery__cards-text {
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.6;
  margin: 0;
}
.btn--caramel {
  background: var(--caramel);
  color: var(--warm-white);
  border-color: var(--caramel);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn--caramel:hover {
  background: var(--dark);
  border-color: var(--dark);
  text-decoration: none;
}

.gallery__cta { text-align: center; margin-top: 1.5rem; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--dark); }

.testimonials .section-header h2,
.testimonials .section-header .tag { color: var(--caramel-lt); }
.testimonials .section-header p { color: rgba(250,246,240,0.7); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  grid-auto-rows: auto;
}

.testimonial {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 2rem;
}

.testimonial__stars {
  color: var(--caramel-lt);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial__body {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(250,246,240,0.9);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial__author {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--caramel-lt);
}

.testimonial__pet {
  display: block;
  font-size: 0.8rem;
  color: rgba(250,246,240,0.5);
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: none;
  margin-top: 0.2rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--sage);
  padding: 5rem 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--warm-white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-banner__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT PAGE ===== */
.contact-page { background: var(--cream); }

.contact-page__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1.5rem; }

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info__icon {
  width: 42px;
  height: 42px;
  background: var(--dusty);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--caramel);
  display: block;
}

.contact-info__value { color: var(--dark); font-size: 0.95rem; }

.contact-note {
  background: var(--sage-lt);
  border-left: 3px solid var(--sage);
  padding: 1.2rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 2rem;
  font-size: 0.9rem;
}

/* ===== FORM ===== */
.form { width: 100%; }

.form__group { margin-bottom: 1.5rem; }

.form__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  transition: border-color 0.2s;
  appearance: none;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--caramel);
}

.form__textarea { min-height: 140px; resize: vertical; line-height: 1.6; }

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form__select-wrap { position: relative; }
.form__select-wrap::after {
  content: '▾';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}

.form__note {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.35rem;
  margin-bottom: 0;
}

.form__success {
  display: none;
  background: var(--sage-lt);
  border: 1px solid var(--sage);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  color: var(--sage);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
}

/* ===== NITTY GRITTY PAGE ===== */
.ng-hero {
  background: var(--dark);
  padding: 9rem 0 5rem;
  text-align: center;
}

.ng-hero h1 { color: var(--cream); font-style: italic; }
.ng-hero p { color: rgba(250,246,240,0.75); font-size: 1.1rem; max-width: 580px; margin: 1.2rem auto 0; }

.ng-section { padding: 5rem 0; }
.ng-section:nth-child(even) { background: var(--warm-white); }

/* ===== PACKAGES ===== */
.packages-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.package {
  border: 1.5px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  background: var(--warm-white);
  transition: box-shadow 0.3s;
}

.package:hover { box-shadow: 0 8px 32px rgba(30,24,16,0.1); }

.package--featured {
  border-color: var(--caramel);
  box-shadow: 0 4px 24px rgba(184,133,78,0.15);
}

.package__header {
  padding: 2rem 1.8rem 1.5rem;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.package--featured .package__header {
  background: var(--caramel);
}

.package__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--dark);
  color: var(--cream);
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  margin-bottom: 0.8rem;
}

.package__size {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--dark);
  display: block;
  margin-bottom: 0.2rem;
}

.package--featured .package__size { color: var(--warm-white); }

.package__dims {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.package--featured .package__dims { color: rgba(255,255,255,0.75); }

.package__price-block {
  padding: 1.5rem 1.8rem;
  border-bottom: 1px solid var(--border);
}

.package__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.package__price-row:last-child { border-bottom: none; }

.package__price-row span:first-child { color: var(--muted); }
.package__price-row strong { color: var(--dark); }

.package__body { padding: 1.5rem 1.8rem; }

.package__features { list-style: none; margin-bottom: 1.5rem; }

.package__features li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--muted);
  padding: 0.4rem 0;
  border-bottom: 1px dotted var(--border);
}

.package__features li:last-child { border-bottom: none; }

.package__features li::before {
  content: '✦';
  color: var(--caramel);
  font-size: 0.7rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.package__note {
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
  background: var(--cream);
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

/* ===== SUBJECTS CALLOUT ===== */
.subjects-callout {
  background: var(--sage-lt);
  border: 1px solid #c0d4c4;
  border-radius: 2px;
  padding: 2.5rem;
  max-width: 680px;
  margin: 3rem auto 0;
}

.subjects-callout h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--sage);
}

.subjects-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.subjects-table th {
  text-align: left;
  padding: 0.6rem 0.8rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid #c0d4c4;
}
.subjects-table td {
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid #c0d4c4;
  color: var(--dark);
}
.subjects-table tr:last-child td { border-bottom: none; }
.subjects-table strong { color: var(--sage); }

/* ===== TIMELINE ===== */
.timeline-intro { text-align: center; max-width: 620px; margin: 0 auto 3rem; }

.timeline-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.timeline-tier {
  text-align: center;
  padding: 2rem 1.2rem;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  background: var(--cream);
  position: relative;
  transition: border-color 0.2s;
}

.timeline-tier__saving {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--caramel);
  color: var(--warm-white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 0 0 4px 4px;
  white-space: nowrap;
}

.timeline-tier__period {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  display: block;
}

.timeline-tier__rate {
  font-size: 0.82rem;
  color: var(--muted);
}

.timeline-tier__rate strong {
  display: block;
  font-size: 1.3rem;
  color: var(--sage);
  margin-bottom: 0.2rem;
}

.timeline-note {
  background: #FFF8F0;
  border-left: 3px solid var(--caramel);
  padding: 1rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem;
  max-width: 680px;
  margin: 0 auto;
}

/* ===== PAYMENT ===== */
.payment-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.payment-step {
  text-align: center;
  padding: 2rem;
  background: var(--cream);
  border-radius: 2px;
  border-bottom: 3px solid var(--caramel);
}

.payment-step__icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.payment-step h4 { margin-bottom: 0.5rem; }
.payment-step p { font-size: 0.9rem; }

.payment-step__amount {
  display: inline-block;
  background: var(--caramel);
  color: var(--warm-white);
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-top: 0.8rem;
}

/* ===== FRAMING ===== */
.framing-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.framing-option {
  padding: 2rem;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  background: var(--warm-white);
}

.framing-option h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.framing-option .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.tag--included { background: var(--sage-lt); color: var(--sage); }
.tag--popular { background: #FFF3E0; color: #B8631E; }
.tag--bespoke { background: #F3EAF8; color: #7B5EA7; }

.framing-option p { font-size: 0.9rem; }

.framing-icon { font-size: 2rem; margin-bottom: 0.8rem; }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.faq-btn__q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--dark);
  font-weight: 400;
}

.faq-btn__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--dusty);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--caramel);
  transition: transform 0.3s;
}

.faq-item.open .faq-btn__icon { transform: rotate(45deg); }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-body__inner { padding: 0 0 1.4rem; font-size: 0.95rem; }
.faq-body__inner p { color: var(--muted); }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 3.5rem 0 2rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand .nav__logo { display: inline-block; margin-bottom: 1rem; }
.footer__brand p { font-size: 0.9rem; color: rgba(250,246,240,0.6); }

.footer__col h5 {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--caramel-lt);
  margin-bottom: 1.2rem;
}

.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 0.5rem; }
.footer__col a { font-size: 0.9rem; color: rgba(250,246,240,0.65); transition: color 0.2s; }
.footer__col a:hover { color: var(--caramel-lt); text-decoration: none; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy { font-size: 0.82rem; color: rgba(250,246,240,0.4); }
.footer__heart { color: var(--caramel-lt); }
.footer__logo { color: var(--cream) !important; }
.footer__logo span { color: var(--caramel-lt) !important; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  section { padding: 4rem 0; }

  /* Drop backdrop-filter on mobile so the fixed menu can fill the viewport
     (backdrop-filter on .nav otherwise makes it the containing block). */
  .nav { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--cream); }
  .nav__links { display: none; gap: 0.4rem; flex-direction: column; position: fixed; top: 0; right: 0; bottom: 0; height: 100vh; width: min(80vw, 320px); background: var(--cream); padding: 5.5rem 2rem 2rem; box-shadow: -8px 0 40px rgba(30,24,16,0.22); z-index: 99; overflow-y: auto; }
  .nav__links.open { display: flex; }
  .nav__links li { width: 100%; }
  .nav__links li > a { display: block; padding: 0.9rem 0; font-size: 1rem; border-bottom: 1px solid var(--border); }
  .nav__links .nav__cta { margin-top: 0.8rem; }
  .nav__links .nav__cta a { text-align: center; border-bottom: none; padding: 0.9rem 1.3rem; }
  .nav__burger { display: flex; z-index: 101; }

  .about__inner { grid-template-columns: 1fr; gap: 3rem; }
  .about__image-accent { display: none; }

  .steps { grid-template-columns: repeat(2, 1fr); }

  .gallery__grid { columns: 2; }
  .gallery__cards-callout { flex-direction: column; text-align: center; }

  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }

  .intro-strip__inner { grid-template-columns: 1fr; }

  .contact-page__inner { grid-template-columns: 1fr; gap: 3rem; }
  .form__row { grid-template-columns: 1fr; }

  .packages-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }

  .timeline-tiers { grid-template-columns: repeat(2, 1fr); }

  .payment-steps { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }

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

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}

@media (max-width: 600px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }

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

  .gallery__grid { columns: 1; }

  .timeline-tiers { grid-template-columns: 1fr 1fr; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: span 1; }

  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ===== CONFIGURATOR ===== */
.config-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.config-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3.5rem;
  align-items: start;
}

.config-step {
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.config-step--last { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.config-step__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.config-step__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--dusty);
  line-height: 1;
  min-width: 2rem;
}

.config-step__title {
  font-size: 1.35rem;
  color: var(--dark);
  margin: 0;
}

.config-step__note {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
  padding-left: 3rem;
}

.config-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-left: 3rem;
}

.config-option {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 1.2rem 0.9rem;
  min-width: 150px;
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
}

.config-option:hover { border-color: var(--caramel-lt); }

.config-option.active {
  border-color: var(--caramel);
  background: #FFF8F2;
  box-shadow: 0 2px 12px rgba(184,133,78,0.12);
}

.config-option__badge {
  position: absolute;
  top: -1px;
  left: 0.9rem;
  background: var(--caramel);
  color: var(--warm-white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.18rem 0.5rem;
  border-radius: 0 0 3px 3px;
}

.config-option__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--dark);
  margin-top: 0.6rem;
}

.config-option__sub {
  font-size: 0.78rem;
  color: var(--muted);
}

.config-option__price {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--caramel);
  margin-top: 0.3rem;
}

.config-option__price--enquire { color: var(--sage); }
.config-option__price--premium { color: #B8631E; }
.config-option__price--saving  { color: var(--sage); }

.config-warning {
  margin-top: 1rem;
  margin-left: 3rem;
  background: #FFF8F0;
  border-left: 3px solid var(--caramel);
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ── Quote Box ── */
.quote-box-wrap { }

.quote-box {
  position: sticky;
  top: 100px;
  background: var(--dark);
  border-radius: var(--radius);
  padding: 1.8rem;
}

.quote-box__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--caramel-lt);
  margin-bottom: 1.2rem;
}

.quote-lines {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 0;
}

.quote-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.quote-line--timeline { border-bottom: none; }

.quote-line__label {
  font-size: 0.83rem;
  color: rgba(250,246,240,0.6);
}

.quote-line__val {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cream);
  white-space: nowrap;
}

.quote-line__val--zero    { color: rgba(250,246,240,0.35); font-weight: 400; }
.quote-line__val--enquire { color: var(--sage); }
.quote-line__val--saving  { color: #7DC98A; }
.quote-line__val--premium { color: #E8956A; }

.quote-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.18);
  margin-top: 0.75rem;
}

.quote-total-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,246,240,0.55);
}

.quote-total-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 400;
  color: var(--caramel-lt);
  line-height: 1;
  transition: all 0.25s ease;
}

.quote-deposit {
  font-size: 0.8rem;
  color: rgba(250,246,240,0.5);
  text-align: center;
  margin: 0.6rem 0 1.2rem;
}

.quote-deposit strong { color: rgba(250,246,240,0.75); }

.quote-btn {
  width: 100%;
  text-align: center;
  display: block;
  font-size: 0.82rem;
}

.quote-enquire-msg {
  background: rgba(92,122,98,0.2);
  border: 1px solid rgba(92,122,98,0.4);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  margin: 1rem 0;
}

.quote-enquire-msg p {
  font-size: 0.88rem;
  color: rgba(250,246,240,0.8);
  margin: 0;
  font-style: italic;
}

.quote-note {
  font-size: 0.75rem;
  color: rgba(250,246,240,0.35);
  text-align: center;
  margin-top: 0.9rem;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .config-layout { grid-template-columns: 1fr; }
  .quote-box { position: static; }
  .config-step__note,
  .config-options,
  .config-warning { padding-left: 0; }
}

@media (max-width: 600px) {
  .config-options { flex-direction: column; }
  .config-option  { min-width: 0; width: 100%; }
}

/* ============================================================
   PREMIUM ENHANCEMENTS  —  depth, motion & refinement
   ============================================================ */
:root {
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 2px 10px rgba(30,24,16,0.05);
  --shadow-md: 0 14px 38px rgba(30,24,16,0.10);
  --shadow-lg: 0 34px 70px rgba(30,24,16,0.20);
  --radius-lg: 12px;
}

body { overflow-x: hidden; }

::selection { background: var(--caramel); color: #fff; }

/* ---- Scroll-reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* ---- Refined type rhythm ---- */
.section-header h2 { letter-spacing: -0.01em; }
.section-header .tag,
.about__tag { position: relative; }
.section-header .tag::after {
  content: "";
  display: block;
  width: 46px;
  height: 2px;
  background: var(--caramel);
  margin: 0.7rem auto 0;
  opacity: 0.6;
}

/* ---- Buttons: lift + sheen ---- */
.btn {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), background 0.25s ease,
              color 0.25s ease, border-color 0.25s ease, box-shadow 0.3s var(--ease);
}
.btn::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-18deg);
  transition: left 0.6s var(--ease);
  pointer-events: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:hover::after { left: 130%; }
.btn:active { transform: translateY(0); }

/* ---- Nav: animated underline ---- */
.nav__links a:not(.nav__cta a) { position: relative; }
.nav__links li:not(.nav__cta) > a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 1.5px;
  background: var(--caramel);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav__links li:not(.nav__cta) > a:hover::after,
.nav__links li:not(.nav__cta) > a.active::after { transform: scaleX(1); }
.nav__links a:hover { text-decoration: none; }

/* ---- Hero: Ken Burns, gradient depth, scroll cue ---- */
.hero__bg {
  opacity: 0.42;
  transform: scale(1.08);
  animation: kenburns 24s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.06) translate(0, 0); }
  to   { transform: scale(1.16) translate(-1.5%, -2%); }
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(30,24,16,0) 35%, rgba(30,24,16,0.55) 100%),
    linear-gradient(180deg, rgba(30,24,16,0.30), rgba(30,24,16,0.10) 45%, rgba(30,24,16,0.55));
  z-index: 0;
  pointer-events: none;
}
.hero__content { z-index: 2; }
.hero__title { text-shadow: 0 2px 30px rgba(0,0,0,0.35); }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}
.hero__eyebrow::before,
.hero__eyebrow::after {
  content: "";
  width: 30px; height: 1px;
  background: var(--caramel-lt);
  opacity: 0.7;
}
.hero__scroll-cue {
  position: absolute;
  left: 50%; bottom: 2rem;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 42px;
  border: 1.5px solid rgba(250,246,240,0.45);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.hero__scroll-cue::before {
  content: "";
  width: 3px; height: 8px;
  border-radius: 2px;
  background: var(--caramel-lt);
  animation: scrollcue 1.8s var(--ease) infinite;
}
@keyframes scrollcue {
  0% { opacity: 0; transform: translateY(-4px); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 0; }
}

/* ---- Intro strip: cards with hover ---- */
.intro-strip { background: var(--warm-white); }
.intro-strip__item {
  padding: 1.4rem 1rem;
  border-radius: var(--radius-lg);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.intro-strip__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.intro-strip__icon { color: var(--caramel); }

/* ---- About image: richer framing ---- */
.about__image-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about__image-accent { border-radius: var(--radius-lg); }

/* ---- Step cards: depth + hover ---- */
.step {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step__num {
  background: linear-gradient(180deg, var(--caramel-lt), var(--caramel));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.85;
}

/* ---- Gallery: rounded, premium hover + lightbox cue ---- */
.gallery__grid { column-gap: 1.1rem; }
.gallery__item {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
  position: relative;
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.gallery__item:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.gallery__item img { transition: transform 0.7s var(--ease); }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item::after {
  content: "View";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 2.2rem 1rem 1rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  background: linear-gradient(180deg, transparent, rgba(30,24,16,0.65));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.gallery__item:hover::after { opacity: 1; }

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(18,14,9,0.92);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4vh 4vw;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: 92vw;
  max-height: 86vh;
  border-radius: 6px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.6);
  transform: scale(0.96);
  transition: transform 0.4s var(--ease);
}
.lightbox.open .lightbox__img { transform: scale(1); }
.lightbox__cap {
  position: absolute;
  bottom: 2.2rem; left: 0; right: 0;
  text-align: center;
  color: rgba(250,246,240,0.75);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  padding: 0 1rem;
}
.lightbox__btn {
  position: absolute;
  background: rgba(250,246,240,0.1);
  border: 1px solid rgba(250,246,240,0.25);
  color: var(--cream);
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.25s var(--ease);
}
.lightbox__btn:hover { background: var(--caramel); transform: scale(1.08); }
.lightbox__close { top: 1.6rem; right: 1.6rem; }
.lightbox__prev { left: 1.6rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1.6rem; top: 50%; transform: translateY(-50%); }
.lightbox__prev:hover, .lightbox__next:hover { transform: translateY(-50%) scale(1.08); }
@media (max-width: 600px) {
  .lightbox__prev { left: 0.8rem; }
  .lightbox__next { right: 0.8rem; }
  .lightbox__btn { width: 44px; height: 44px; }
}

/* ---- Cards callout: warmer ---- */
.gallery__cards-callout {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  background: linear-gradient(135deg, var(--dusty), #EDE3D6);
}

/* ---- Testimonials: glass cards + quote mark ---- */
.testimonials {
  background:
    radial-gradient(80% 60% at 80% 0%, rgba(184,133,78,0.12), transparent 60%),
    var(--dark);
}
.testimonial {
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
  background: rgba(255,255,255,0.04);
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -0.6rem; right: 0.8rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem;
  line-height: 1;
  color: rgba(184,133,78,0.18);
}
.testimonial:hover {
  transform: translateY(-5px);
  border-color: rgba(184,133,78,0.4);
  box-shadow: 0 24px 50px rgba(0,0,0,0.3);
}

/* ---- CTA banner: gradient + texture ---- */
.cta-banner {
  background:
    radial-gradient(60% 100% at 50% 0%, rgba(255,255,255,0.10), transparent),
    linear-gradient(135deg, var(--sage), #4a6650);
  position: relative;
  overflow: hidden;
}

/* ---- Packages / framing / payment depth ---- */
.package { border-radius: var(--radius-lg); }
.framing-option,
.payment-step,
.timeline-tier { border-radius: var(--radius-lg); }
.framing-option {
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.framing-option:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

/* ---- Section headers a touch wider on big screens ---- */
@media (min-width: 1200px) {
  .container { max-width: 1180px; }
}

/* ============================================================
   WOW FACTOR  —  cinematic entrance, motion ribbon, parallax
   ============================================================ */

/* ---- Hero cinematic entrance on load ---- */
.hero__title { font-style: italic; }
.hero__line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
}
.hero__line > span {
  display: block;
  transform: translateY(115%);
  animation: lineRise 1.1s var(--ease) forwards;
}
.hero__line:nth-child(1) > span { animation-delay: 0.45s; }
.hero__line:nth-child(2) > span { animation-delay: 0.62s; }
@keyframes lineRise { to { transform: translateY(0); } }

.hero__eyebrow,
.hero__sub,
.hero__actions {
  opacity: 0;
  animation: heroFade 1s var(--ease) forwards;
}
.hero__eyebrow { animation-delay: 0.2s; }
.hero__sub     { animation-delay: 0.95s; }
.hero__actions { animation-delay: 1.15s; }
@keyframes heroFade {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__eyebrow::before,
.hero__eyebrow::after {
  transform: scaleX(0);
  transform-origin: center;
  animation: lineGrow 0.9s var(--ease) 0.7s forwards;
}
@keyframes lineGrow { to { transform: scaleX(1); } }

.hero__scroll-cue {
  opacity: 0;
  animation: cueFade 1s ease 1.7s forwards;
}
@keyframes cueFade { to { opacity: 1; } }

/* ---- Moving word ribbon ---- */
.ribbon {
  background: var(--dark);
  padding: clamp(1rem, 3vw, 1.4rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.ribbon__track {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  width: max-content;
  animation: ribbonScroll 38s linear infinite;
}
.ribbon__track--reverse {
  animation-direction: reverse;
  animation-duration: 46s;
}
.ribbon:hover .ribbon__track { animation-play-state: paused; }
.ribbon__track span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.25rem, 3vw, 2.4rem);
  color: rgba(250,246,240,0.92);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.ribbon__track i {
  color: var(--caramel);
  font-style: normal;
  font-size: 0.9rem;
  opacity: 0.8;
}
@keyframes ribbonScroll { to { transform: translateX(-50%); } }

/* ---- Punchier gallery reveal ---- */
.gallery__item.reveal { transform: translateY(48px) scale(0.93); }
.gallery__item.reveal.is-visible { transform: none; }

/* ---- Section heading wipe ---- */
.section-header.reveal h2 { position: relative; }

/* ---- Respect reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg { animation: none; transform: scale(1.06); }
  .hero__scroll-cue::before { animation: none; }
  .btn::after { display: none; }
  .hero__line > span,
  .hero__eyebrow, .hero__sub, .hero__actions,
  .hero__scroll-cue { animation: none; opacity: 1; transform: none; }
  .hero__eyebrow::before, .hero__eyebrow::after { transform: scaleX(1); animation: none; }
  .ribbon__track { animation: none; }
  * { scroll-behavior: auto; }
}

/* ============================================================
   SHOWSTOPPER LAYER — loader, cursor, scraps, marquee, stats
   ============================================================ */

/* ---- Page loader curtain ---- */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.7rem;
  transition: transform 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}
.loader__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 7vw, 3.8rem);
  color: var(--cream);
  letter-spacing: 0.04em;
  opacity: 0;
  animation: loaderLogo 0.8s 0.1s var(--ease) forwards;
}
.loader__logo span { color: var(--caramel); font-style: italic; }
.loader__bar { width: min(220px, 50vw); height: 1px; background: rgba(250,246,240,0.18); overflow: hidden; }
.loader__bar i {
  display: block; height: 100%; width: 100%;
  background: var(--caramel);
  transform: translateX(-100%);
  animation: loaderBar 1.1s 0.25s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
.loader.done { transform: translateY(-101%); }
.loader.gone { display: none; }
@keyframes loaderLogo { to { opacity: 1; } }
@keyframes loaderBar { to { transform: translateX(0); } }

/* ---- Scroll progress bar ---- */
.progress {
  position: fixed; top: 0; left: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--caramel), #E2BC8C);
  z-index: 10001; pointer-events: none;
}

/* ---- Film grain texture ---- */
.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9000;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- Custom cursor (desktop only) ---- */
html.has-cursor, html.has-cursor a, html.has-cursor button,
html.has-cursor .gallery__item, html.has-cursor select, html.has-cursor input,
html.has-cursor textarea, html.has-cursor label { cursor: none; }
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; border-radius: 50%; z-index: 10000;
}
.cursor-dot { width: 6px; height: 6px; background: var(--caramel); }
.cursor-ring {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(184,133,78,0.65);
  display: flex; align-items: center; justify-content: center;
  transition: width 0.25s var(--ease), height 0.25s var(--ease),
              background-color 0.25s ease, border-color 0.25s ease;
}
.cursor-ring::after {
  content: attr(data-label);
  font-family: 'Lato', sans-serif; font-size: 0.55rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cream); opacity: 0; transition: opacity 0.2s;
}
.cursor-ring.is-link { width: 58px; height: 58px; background: rgba(184,133,78,0.14); }
.cursor-ring.is-view { width: 86px; height: 86px; background: rgba(30,24,16,0.85); border-color: transparent; }
.cursor-ring.is-view::after { opacity: 1; }

/* ---- Hero: bigger drama ---- */
.hero__content { position: relative; z-index: 3; }
.hero__title { font-size: clamp(3rem, 7.5vw, 5.6rem); }
.hero__line:last-child span { font-style: italic; color: var(--caramel); }

/* ---- Floating collage scraps in hero ---- */
.hero__scraps { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.scrap {
  position: absolute; display: block;
  box-shadow: 0 14px 34px rgba(0,0,0,0.3);
  opacity: 0.85;
  animation: scrapFloat var(--d, 9s) ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes scrapFloat {
  from { transform: translateY(-14px) rotate(var(--r, 0deg)); }
  to   { transform: translateY(16px) rotate(calc(var(--r, 0deg) + 7deg)); }
}
/* torn-paper looks: plain cream, caramel, and "newsprint" line patterns */
.scrap:nth-child(1) { top: 16%; left: 7%;  width: 74px;  height: 96px;  --r: -8deg;  --d: 8s;
  background: linear-gradient(160deg, #F6EFE4, #E8DCC9); clip-path: polygon(4% 0, 100% 3%, 96% 98%, 0 92%); }
.scrap:nth-child(2) { top: 64%; left: 12%; width: 56px;  height: 56px;  --r: 12deg;  --d: 11s;
  background: repeating-linear-gradient(#F3ECDF 0 6px, #D8CBB6 6px 8px); clip-path: polygon(0 6%, 97% 0, 100% 94%, 5% 100%); }
.scrap:nth-child(3) { top: 24%; right: 9%; width: 64px;  height: 88px;  --r: 9deg;   --d: 9.5s;
  background: linear-gradient(200deg, var(--caramel), #8F6438); clip-path: polygon(2% 4%, 98% 0, 94% 100%, 0 96%); }
.scrap:nth-child(4) { top: 58%; right: 14%; width: 88px; height: 64px;  --r: -14deg; --d: 12s;
  background: repeating-linear-gradient(90deg, #EFE6D6 0 5px, #CDBFA8 5px 7px); clip-path: polygon(0 0, 100% 8%, 97% 92%, 3% 100%); }
.scrap:nth-child(5) { top: 80%; left: 44%; width: 48px;  height: 62px;  --r: 18deg;  --d: 10s;
  background: linear-gradient(140deg, #2A2117, #4A3A26); clip-path: polygon(6% 0, 94% 4%, 100% 96%, 0 100%); }
.scrap:nth-child(6) { top: 9%;  left: 38%; width: 42px;  height: 42px;  --r: -20deg; --d: 7.5s;
  background: linear-gradient(120deg, #D4A876, #B8854E); clip-path: polygon(0 8%, 92% 0, 100% 92%, 8% 100%); }

/* ---- Giant outlined marquee headline ---- */
.mega-marquee { overflow: hidden; padding: 3rem 0 0; }
.mega-marquee__track {
  display: flex; gap: 4.5rem; width: max-content;
  animation: ribbonScroll 32s linear infinite;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(4rem, 11vw, 9.5rem); line-height: 1.1; white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(184, 133, 78, 0.45);
}

/* ---- Stats strip ---- */
.stats { background: var(--dark); padding: 5rem 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; text-align: center; }
.stat__num, .stat__suffix {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 4.4rem); line-height: 1;
  color: var(--cream);
}
.stat__suffix { color: var(--caramel); font-style: italic; }
.stat__label {
  display: block; margin-top: 0.7rem;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(250, 246, 240, 0.55);
}
@media (max-width: 700px) {
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 2.2rem 1rem; }
}

/* ---- Gallery hover: overlay + zoom (tilt is JS) ---- */
.gallery__item { position: relative; transform-style: preserve-3d; }
.gallery__item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,24,16,0.55), transparent 55%);
  opacity: 0; transition: opacity 0.35s ease;
  pointer-events: none;
}
.gallery__item:hover::after { opacity: 1; }
.gallery__item img { transition: transform 0.6s var(--ease); }
.gallery__item:hover img { transform: scale(1.06); }

/* ---- Word-by-word heading reveal ---- */
.section-header h2 .w {
  display: inline-block;
  opacity: 0; transform: translateY(0.6em) rotate(2deg);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--wi, 0) * 70ms);
}
.section-header.is-visible h2 .w { opacity: 1; transform: none; }

/* ---- Showstopper reduced-motion + touch fallbacks ---- */
@media (prefers-reduced-motion: reduce) {
  .loader { display: none; }
  .mega-marquee__track { animation: none; }
  .scrap { animation: none; }
  .section-header h2 .w { opacity: 1; transform: none; transition: none; }
  .gallery__item:hover img { transform: none; }
}
@media (max-width: 900px) {
  .scrap { opacity: 0.6; }
  .scrap:nth-child(5), .scrap:nth-child(6) { display: none; }
}

/* ============================================================
   PROCESS REVEAL  —  development slider / time-lapse
   ============================================================ */
.process { background: linear-gradient(180deg, var(--cream), #F1E9DC); overflow: hidden; }

/* Piece selector */
.process__pieces {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.6rem; margin: 0 auto 2.4rem;
}
.process__piece {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--dark);
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.6rem 1.3rem;
  cursor: pointer;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.process__piece:hover { transform: translateY(-2px); border-color: var(--caramel); }
.process__piece.active { background: var(--dark); color: var(--cream); border-color: var(--dark); }

/* Stage */
.process__stage { max-width: 680px; margin: 0 auto; }

.process__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #2a2117;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.process__frame img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  background: #2a2117;
  opacity: 0;
  transition: opacity 0.55s var(--ease);
}
.process__frame img.is-active { opacity: 1; }

/* Nav arrows */
.process__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3;
  width: 46px; height: 46px; border-radius: 50%;
  border: none; cursor: pointer;
  background: rgba(250,246,240,0.86);
  color: var(--dark);
  font-size: 1.5rem; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transition: background-color 0.25s ease, transform 0.25s var(--ease);
}
.process__nav:hover { background: var(--cream); transform: translateY(-50%) scale(1.08); }
.process__nav--prev { left: 14px; }
.process__nav--next { right: 14px; }

/* Stage counter */
.process__count {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  font-family: 'Lato', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--cream);
  background: rgba(30,24,16,0.62);
  padding: 0.35rem 0.7rem; border-radius: 100px;
  backdrop-filter: blur(4px);
}

/* Caption */
.process__caption {
  text-align: center;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 1.35rem; color: var(--dark);
  margin: 1.4rem auto 1.6rem; min-height: 1.6em; max-width: 560px;
  transition: opacity 0.3s ease;
}

/* Controls */
.process__controls {
  display: flex; align-items: center; gap: 1.2rem;
  flex-wrap: wrap; justify-content: center;
}
.process__play {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Lato', sans-serif; font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cream); background: var(--caramel);
  border: none; border-radius: 100px; padding: 0.7rem 1.4rem;
  cursor: pointer; white-space: nowrap;
  transition: background-color 0.25s ease, transform 0.25s var(--ease);
}
.process__play:hover { transform: translateY(-2px); background: #c2925a; }
.process__play-icon { font-size: 0.7rem; }
.process__play.is-playing .process__play-icon { font-size: 0.85rem; }

/* Scrubber */
.process__scrub {
  -webkit-appearance: none; appearance: none;
  flex: 1; min-width: 180px; height: 4px; border-radius: 100px;
  background: var(--border); cursor: pointer; outline: none;
}
.process__scrub::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--dark); border: 3px solid var(--cream);
  box-shadow: var(--shadow-sm); cursor: grab;
}
.process__scrub::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--dark); border: 3px solid var(--cream); cursor: grab;
}

/* Dots */
.process__dots { display: flex; gap: 7px; }
.process__dots button {
  width: 8px; height: 8px; padding: 0; border-radius: 50%;
  border: none; cursor: pointer;
  background: var(--border); transition: background-color 0.25s ease, transform 0.25s var(--ease);
}
.process__dots button.active { background: var(--caramel); transform: scale(1.35); }

/* Placeholder shown until real images are dropped in */
.process__frame.is-empty::after {
  content: 'Process photos drop in here';
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Lato', sans-serif; font-size: 0.8rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(250,246,240,0.5);
  background: #2a2117;
}

@media (max-width: 600px) {
  .process__caption { font-size: 1.15rem; }
  .process__controls { gap: 0.8rem; }
  .process__play-label { display: none; }
  .process__play { padding: 0.7rem; }
  .process__nav { width: 40px; height: 40px; font-size: 1.3rem; }
}
@media (prefers-reduced-motion: reduce) {
  .process__frame img { transition: none; }
}

/* Per-portrait story line under the slider tabs */
.process__story {
  display: none;
  text-align: center;
  max-width: 520px;
  margin: -1rem auto 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--caramel);
}
