/* =========================================================
   Isabelle Davis Photography
   Palette + type inspired by an editorial, warm-cream brand
   ========================================================= */

:root {
  /* Colors */
  --cream:        #f7f1dd;
  --cream-2:      #efe6c9;
  --cream-3:      #e8dcbb;
  --rust:         #a8432b;
  --rust-deep:    #8a3621;
  --ink:          #2c2620;
  --ink-soft:     #5d524419;
  --muted:        #6f6353;
  --line:         #d8c9a3;
  --white:        #fffaf0;

  /* Type */
  --display: "Playfair Display", Georgia, serif;
  --serif:   "Cormorant Garamond", Georgia, serif;
  --sans:    "Jost", "Helvetica Neue", Arial, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(1.25rem, 5vw, 5rem);
  --radius: 14px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; scroll-snap-type: y proximity; }
/* gentle "page" snap for the opening → intro transition only */
.opening, .hero { scroll-snap-align: start; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.18rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

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

::selection { background: var(--rust); color: var(--cream); }

/* ---------- Shared section primitives ---------- */
.section__eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 500;
  margin: 0 0 1rem;
}

.section__title {
  font-family: var(--display);
  font-weight: 500;
  color: var(--rust);
  line-height: 1.04;
  letter-spacing: -0.01em;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  margin: 0 0 1.4rem;
}

p { margin: 0 0 1.1rem; }

.link-arrow {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  border-bottom: 1px solid var(--rust);
  padding-bottom: 4px;
  transition: gap 0.3s var(--ease), opacity 0.3s var(--ease);
}
.link-arrow span { display: inline-block; transition: transform 0.3s var(--ease); }
.link-arrow:hover span { transform: translateX(6px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1rem 1.9rem;
  border-radius: 50px;
  border: 1.5px solid var(--rust);
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.btn--solid { background: var(--rust); color: var(--cream); }
.btn--solid:hover { background: var(--rust-deep); border-color: var(--rust-deep); transform: translateY(-3px); box-shadow: 0 12px 28px -12px rgba(138,54,33,0.6); }
.btn--ghost { background: transparent; color: var(--rust); }
.btn--ghost:hover { background: var(--rust); color: var(--cream); transform: translateY(-3px); }
.btn--block { width: 100%; }

/* =========================================================
   NAVBAR
   ========================================================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem var(--gutter);
  background: transparent;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
}
.nav.is-scrolled {
  /* NOTE: no backdrop-filter here — it would make the fixed mobile menu anchor
     to the nav bar instead of the viewport, clipping the menu options. */
  background: rgba(247, 241, 221, 0.96);
  box-shadow: 0 1px 0 var(--line);
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.nav__brand {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--rust);
  letter-spacing: -0.01em;
  line-height: 1;
}
.nav__brand span {
  display: block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 3px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}
.nav__links a { position: relative; padding: 4px 0; transition: color 0.3s; }
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}
.nav__links a:not(.nav__cta):hover { color: var(--rust); }
.nav__links a:not(.nav__cta):hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta {
  border: 1.5px solid var(--rust);
  color: var(--rust);
  padding: 0.55rem 1.2rem !important;
  border-radius: 50px;
  transition: background 0.3s, color 0.3s;
}
.nav__cta:hover { background: var(--rust); color: var(--cream); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__toggle span {
  width: 26px; height: 2px;
  background: var(--rust);
  transition: transform 0.35s var(--ease), opacity 0.3s, background 0.3s;
}

/* Hanging "Book a Session" tab — fixed to the top, slides down on scroll */
.book-tab {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  z-index: 200;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--rust);
  padding: 0.75rem 1.7rem;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 12px 26px -12px rgba(44, 38, 32, 0.55);
  transition: transform 0.45s var(--ease), background 0.3s var(--ease);
}
.book-tab.is-visible { transform: translate(-50%, 0); }
.book-tab:hover { background: var(--rust-deep); }

/* Light nav while sitting over the opening photo (before any scroll) */
.nav__brand { transition: opacity 0.4s var(--ease), color 0.3s; }
/* hide the corner wordmark over the photo — the big centered one is the logo there */
.nav:not(.is-scrolled) .nav__brand { opacity: 0; pointer-events: none; }
.nav:not(.is-scrolled) .nav__links a:not(.nav__cta) {
  color: var(--cream);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.4);
}
.nav:not(.is-scrolled) .nav__brand span { color: rgba(255, 250, 240, 0.85); }
.nav:not(.is-scrolled) .nav__links a:not(.nav__cta)::after { background: var(--cream); }
.nav:not(.is-scrolled) .nav__links a:not(.nav__cta):hover { color: var(--cream); }
.nav:not(.is-scrolled) .nav__cta { color: var(--cream); border-color: rgba(255, 250, 240, 0.85); }
.nav:not(.is-scrolled) .nav__cta:hover { background: var(--cream); color: var(--rust); }
.nav:not(.is-scrolled) .nav__toggle span { background: var(--cream); }
/* when the menu is open, turn the X rust so it stays visible on the cream panel */
.nav__toggle.is-open span,
.nav:not(.is-scrolled) .nav__toggle.is-open span { background: var(--rust); }
/* but inside the open mobile menu (cream panel) keep links readable */
.nav .nav__links.is-open a:not(.nav__cta) { color: var(--rust); text-shadow: none; }
.nav .nav__links.is-open .nav__cta { color: var(--rust); border-color: var(--rust); }

/* =========================================================
   OPENING — full-screen photo
   ========================================================= */
.opening {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
}
/* fills the page edge to edge, cropping only what's needed */
.opening__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  z-index: 0;
}
/* big translucent wordmark — positioned by JS to sit behind the subject's head.
   Sits BETWEEN the background photo and the cut-out. */
.opening__title {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate(3.5vw, -50%);
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 20.5vw;
  white-space: nowrap;
  line-height: 1;
  font-family: var(--display);
  font-weight: 600;
  font-size: 11vw;
  letter-spacing: 0.005em;
  color: var(--cream);
  opacity: 0.72;
  pointer-events: none;
  text-shadow: 0 8px 60px rgba(0, 0, 0, 0.3);
}
.opening__title span { display: block; }
.opening__title span:nth-child(2) { transform: translateX(-1.6vw); }
/* cut-out of Isabelle — same sizing/position as the bg so she lines up exactly,
   layered ON TOP of the wordmark so the words fall behind her */
.opening__subject {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  z-index: 2;
  pointer-events: none;
}
.opening__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom, rgba(28,22,18,0.34) 0%, rgba(28,22,18,0) 24%),
    linear-gradient(to top, rgba(28,22,18,0.46) 0%, rgba(28,22,18,0) 32%);
}
.opening__scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  animation: bob 2.2s var(--ease) infinite;
}
.opening__chevron {
  width: 13px;
  height: 13px;
  border-right: 2px solid var(--cream);
  border-bottom: 2px solid var(--cream);
  transform: rotate(45deg);
}
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(9px); } }

/* =========================================================
   HERO / INTRO — centered tagline
   ========================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem var(--gutter) 5rem;
}
.hero__text { max-width: 56rem; }
.hero__title {
  font-family: var(--display);
  font-weight: 500;
  color: var(--rust);
  font-size: clamp(3.4rem, 9vw, 6.6rem);
  line-height: 2.1;
  letter-spacing: -0.02em;
  margin: 0 0 1.8rem;
}
.hero__lead {
  max-width: 34rem;
  margin: 0 auto 2.4rem;
  color: var(--ink);
  font-size: 1.28rem;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* =========================================================
   MISSION
   ========================================================= */
.mission {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: 6rem var(--gutter);
}
.mission__media img {
  width: 100%;
  height: clamp(420px, 60vh, 620px);
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 200px 200px;
  box-shadow: 0 30px 70px -42px rgba(44,38,32,0.55);
}
.mission__text { max-width: 34rem; }
.mission__text p { color: var(--muted); }

/* =========================================================
   SERVICES
   ========================================================= */
.services { padding: 0 var(--gutter) 2rem; }
.services__head {
  min-height: 68vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  scroll-snap-align: center;
}
.offer-arrow {
  width: 56px;
  height: 88px;
  margin-top: 1.8rem;
  overflow: visible;
  animation: bob 2.4s var(--ease) infinite;
}
.offer-arrow path {
  fill: none;
  stroke: var(--rust);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.services__head .section__eyebrow,
.portfolio__head .section__eyebrow,
.about .section__eyebrow,
.contact .section__eyebrow,
.offers .section__eyebrow { font-size: 1.2rem; letter-spacing: 0.22em; }
/* match "What I Offer", "A Few Favorites", "Get in Touch" to the muted tone of "About" */
.services__head .section__eyebrow,
.portfolio__head .section__eyebrow,
.contact .section__eyebrow { color: var(--muted); }
/* each service/package is a full-height panel that snaps one at a time */
.service-card {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem var(--gutter);
  scroll-snap-align: center;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(660px, 92vw);
  height: min(660px, 92vw);
  background: radial-gradient(circle,
    rgba(255, 252, 244, 0.95) 0%,
    rgba(250, 244, 228, 0.5) 38%,
    rgba(247, 241, 221, 0) 70%);
  pointer-events: none;
  z-index: 0;
}
.service-card__inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
.service-card__list {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
  text-align: center;
}
.service-card__list li {
  font-size: 1.15rem;
  color: var(--muted);
  padding: 0.32rem 0;
}
.service-card__list li::before {
  content: "•";
  color: var(--rust);
  opacity: 0.7;
  margin-right: 0.5em;
}
.service-card .service-card__price {
  margin-top: auto;
  padding-top: 1.6rem;
  text-align: center;
  font-family: var(--display);
  font-weight: 600;
  font-size: 2.4rem;
  color: var(--rust);
}
.service-card__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--rust);
  opacity: 0.6;
}
/* packages: a subtly warmer light burst to set them apart */
.service-card--package::before {
  background: radial-gradient(circle,
    rgba(245, 226, 214, 0.95) 0%,
    rgba(242, 226, 206, 0.5) 40%,
    rgba(247, 241, 221, 0) 72%);
}
.service-card__tag {
  display: inline-block;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--rust);
  opacity: 0.6;
}
.service-card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 2.5rem;
  color: var(--ink);
  margin: 0.5rem 0 0.8rem;
}
.service-card p { color: var(--muted); margin: 0; font-size: 1.25rem; }

/* =========================================================
   PORTFOLIO
   ========================================================= */
.portfolio { padding: 5rem var(--gutter) 6rem; }
.portfolio__head { text-align: center; margin-bottom: 3rem; }
.portfolio__sub { color: var(--muted); max-width: 38rem; margin-left: auto; margin-right: auto; }
/* ---------- Portfolio carousel (one photo at a time, swipeable) ---------- */
.carousel {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
}
.carousel__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 0.5rem;
  box-sizing: border-box;
}
.carousel__slide img {
  max-height: 74vh;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 34px 70px -38px rgba(44, 38, 32, 0.55);
}
.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(247, 241, 221, 0.82);
  backdrop-filter: blur(6px);
  color: var(--rust);
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.3s var(--ease), color 0.3s, transform 0.3s var(--ease);
}
.carousel__btn span { margin-top: -4px; }
.carousel__btn:hover { background: var(--rust); color: var(--cream); }
.carousel__btn--prev { left: -10px; }
.carousel__btn--next { right: -10px; }
.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.6rem;
}
.carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.carousel__dot.is-active { background: var(--rust); transform: scale(1.35); }

/* =========================================================
   PRICING
   ========================================================= */
.pricing { padding: 5rem var(--gutter) 6rem; background: var(--cream-2); }
.pricing__head { text-align: center; margin-bottom: 3.5rem; }
.pricing__sub { color: var(--muted); max-width: 32rem; margin: 0 auto; }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.price-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.6rem 2rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.price-card--featured {
  background: var(--rust);
  border-color: var(--rust);
  transform: translateY(-12px);
  box-shadow: 0 30px 60px -30px rgba(138,54,33,0.6);
}
.price-card--featured:hover { transform: translateY(-18px); }
.price-card:not(.price-card--featured):hover { transform: translateY(-6px); box-shadow: 0 24px 44px -30px rgba(44,38,32,0.4); }
.price-card__badge {
  position: absolute;
  top: -0.85rem; left: 50%; transform: translateX(-50%);
  background: var(--cream);
  color: var(--rust);
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 50px;
}
.price-card__name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0 0 0.3rem;
}
.price-card__price {
  font-family: var(--display);
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 1.4rem;
}
.price-card__price span {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  font-weight: 400;
  opacity: 0.7;
  margin-bottom: 0.3rem;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  font-size: 1.05rem;
}
.price-card li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--ink-soft);
}
.price-card--featured { color: var(--cream); }
.price-card--featured li { border-bottom-color: rgba(247,241,221,0.18); }
.price-card--featured .price-card__name,
.price-card--featured .price-card__price { color: var(--cream); }

/* =========================================================
   SEASONAL OFFERS
   ========================================================= */
.offers {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: 6rem var(--gutter);
}
.offers__list { list-style: none; padding: 0; margin: 2rem 0 0; }
.offers__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 1.1rem 1.6rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: var(--ink);
  transition: transform 0.35s var(--ease), border-color 0.35s;
}
.offers__list li:hover { transform: translateX(8px); border-color: var(--rust); }
.offers__icon {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  background: var(--cream-2);
  color: var(--rust);
}
.offers__cta {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 440px;
}
.offers__cta img {
  width: 100%; height: 100%;
  position: absolute; inset: 0;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.offers__cta::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,38,32,0.45), rgba(44,38,32,0.05));
}
.offers__cta:hover img { transform: scale(1.05); }
.offers__cta-label {
  position: absolute;
  left: 2rem; bottom: 2rem;
  z-index: 2;
  font-family: var(--display);
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}
.offers__cta-label em { font-style: italic; opacity: 0.9; }

/* =========================================================
   ABOUT
   ========================================================= */
.about {
  max-width: 760px;
  margin: 0 auto;
  padding: 6rem var(--gutter);
  text-align: center;
}
.about__block { max-width: 40rem; margin: 0 auto; }
.about__block p { color: var(--muted); }
.about__block .section__title { margin-bottom: 1.2rem; }
.about__photo {
  margin: 3.5rem auto;
}
.about__photo img {
  width: min(100%, 460px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  margin: 0 auto;
  border-radius: 230px 230px var(--radius) var(--radius);
  box-shadow: 0 34px 70px -42px rgba(44, 38, 32, 0.6);
}
.about .link-arrow { margin-top: 0.6rem; display: inline-block; }
.about__cta { margin-top: 1.6rem; }
.about__cta a {
  color: var(--rust);
  font-family: var(--display);
  font-style: italic;
  font-size: 1.3rem;
  border-bottom: 1px solid rgba(168, 67, 43, 0.4);
  padding-bottom: 2px;
  transition: border-color 0.3s var(--ease);
}
.about__cta a span { display: inline-block; transition: transform 0.3s var(--ease); }
.about__cta a:hover { border-bottom-color: var(--rust); }
.about__cta a:hover span { transform: translateX(5px); }

/* =========================================================
   QUOTES
   ========================================================= */
.quotes {
  background: var(--rust);
  color: var(--cream);
  padding: 6rem var(--gutter);
}
.quotes__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}
.quote { margin: 0; }
.quote p {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  line-height: 1.4;
  margin-bottom: 1.2rem;
}
.quote cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding: 6rem var(--gutter);
  align-items: start;
}
.contact__lead { color: var(--muted); max-width: 28rem; }
.contact__action {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact__action .btn {
  max-width: 380px;
  padding: 1.2rem 2.4rem;
  font-size: 0.88rem;
}
.contact__details { list-style: none; padding: 0; margin: 2.4rem 0 0; }
.contact__details li {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.1rem;
}
.contact__details span {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  align-self: center;
}
.contact__details a:hover { color: var(--rust); }

.contact__form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 3vw, 2.8rem);
}
.field { margin-bottom: 1.3rem; }
.field label {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.85rem 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.field textarea { resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--rust);
  box-shadow: 0 0 0 3px rgba(168,67,43,0.12);
}
.contact__note {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  color: var(--rust);
  min-height: 1.2em;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  text-align: center;
  padding: 4rem var(--gutter);
  background: var(--cream-3);
  border-top: 1px solid var(--line);
}
.footer__brand {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--rust);
}
.footer__brand span {
  display: block;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 4px;
}
.footer__tag {
  font-family: var(--display);
  font-style: italic;
  color: var(--muted);
  margin: 0.8rem 0 0.9rem;
}
.footer__email {
  margin: 0 0 1.6rem;
}
.footer__email a {
  font-family: var(--sans);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--rust);
  border-bottom: 1px solid rgba(168, 67, 43, 0.35);
  padding-bottom: 2px;
  transition: border-color 0.3s var(--ease);
}
.footer__email a:hover { border-bottom-color: var(--rust); }
.footer__links {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  flex-wrap: wrap;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.6rem;
}
.footer__links a:hover { color: var(--rust); }
.footer__copy {
  font-family: var(--sans);
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0;
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
/* Fail-safe: content is visible by default. Only when JS adds `.reveal-on`
   to <body> do we hide-then-animate. So if JS/observer ever fails, nothing
   stays hidden. */
.reveal { transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
body.reveal-on .reveal { opacity: 0; transform: translateY(28px); }
body.reveal-on .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  body.reveal-on .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; scroll-snap-type: none; }
  .opening__scroll { animation: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .hero { padding-top: 7.5rem; }
  .offers, .contact { grid-template-columns: 1fr; }
  .services__grid, .pricing__grid { grid-template-columns: 1fr; }
  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-6px); }
  .quotes__inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 720px) {
  body { font-size: 1.1rem; }
  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.6rem;
    background: var(--cream);
    padding: 2rem 2.4rem;
    box-shadow: -20px 0 50px -30px rgba(44,38,32,0.5);
    transform: translateX(100%);
    transition: transform 0.45s var(--ease);
    font-size: 1.1rem;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__toggle { display: flex; z-index: 110; }
  .nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .carousel__btn { width: 40px; height: 40px; font-size: 1.6rem; }
  .carousel__btn--prev { left: 2px; }
  .carousel__btn--next { right: 2px; }
  .contact__details li { grid-template-columns: 70px 1fr; }
}
