/* ============================================================
   SHOTS & STYLES BY MADI — site styles
   Multi-page architecture. Mobile-first.
   ============================================================ */

:root {
  --cream:    #F7F6F3;
  --oat:      #E9E3D8;
  --taupe:    #CFC7BC;
  --coffee:   #665341;
  --espresso: #463A35;
  --charcoal: #2E2C2A;

  --display:  'Cormorant Garamond', 'The Seasons', Georgia, serif;
  --italic:   'Instrument Serif', 'Cormorant Garamond', Georgia, serif;
  --script:   'Pinyon Script', 'Wisteria', cursive;
  --body:     'Raleway', system-ui, -apple-system, sans-serif;

  --pad-xs:   16px;
  --pad-sm:   24px;
  --pad-md:   48px;
  --pad-lg:   80px;
  --pad-xl:   120px;

  --max-w:    1280px;

  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --bounce:   cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { list-style: none; }
fieldset { border: none; padding: 0; margin: 0; }
legend { padding: 0; }

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* -- Reveal-on-scroll animation -------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   NAV — sticky top bar + hamburger drawer
   ============================================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--taupe);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease);
}

/* Home page: nav starts transparent over the full-bleed hero.
   A subtle dark gradient wash sits behind the nav content (via ::before)
   so cream text stays legible regardless of what's in the photo at that
   spot — dark hair, light studio wall, both work. */
.nav--overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom-color: transparent;
}
.nav--overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(46, 44, 42, 0.55) 0%,
    rgba(46, 44, 42, 0.25) 65%,
    rgba(46, 44, 42, 0) 100%
  );
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
/* And becomes solid cream once you scroll past the hero threshold */
.nav--overlay.nav--solid {
  background: var(--cream);
  border-bottom-color: var(--taupe);
}
.nav--overlay.nav--solid::before {
  opacity: 0;
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 14px var(--pad-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--pad-sm);
  position: relative;
  z-index: 1;
}
.nav__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: var(--espresso);
  line-height: 1;
}
.nav__brand-main {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--espresso);
}
.nav__brand-main em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--coffee);
  font-weight: 300;
  margin: 0 2px;
  text-transform: none;
}
.nav__brand-sub {
  font-family: var(--script);
  font-size: 18px;
  color: var(--coffee);
  margin-top: 2px;
  font-weight: 400;
}
.nav__links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav__links a,
.nav__links .nav__dropdown-toggle {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coffee);
  font-weight: 400;
  transition: color 0.25s var(--ease);
}
.nav__links a:hover,
.nav__links a.is-active { color: var(--espresso); }
.nav__links a.is-active { font-weight: 500; }

/* Desktop Contact dropdown */
.nav__dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav__dropdown-toggle {
  /* Explicit reset of every browser button default — otherwise
     Chrome/Safari leak darker text color + bolder font weight
     that makes "Contact" look heavier than the <a> links next to it. */
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coffee);
  line-height: inherit;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-font-smoothing: antialiased;
}
.nav__dropdown-toggle:hover,
.nav__dropdown-toggle.is-active { color: var(--espresso); }
.nav__dropdown-toggle.is-active { font-weight: 500; }
.nav__dropdown-chevron {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translate(-1px, -1px);
  transition: transform 0.25s var(--ease);
}
.nav__dropdown.is-open .nav__dropdown-chevron {
  transform: rotate(-135deg) translate(-2px, -2px);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  right: 0;
  min-width: 260px;
  background: var(--cream);
  border: 1.5px solid var(--espresso);
  box-shadow: 4px 4px 0 var(--espresso);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s var(--ease);
  z-index: 55;
}
.nav__dropdown.is-open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown-link {
  display: flex;
  flex-direction: column;
  padding: 14px 18px;
  border-radius: 2px;
  transition: background 0.2s var(--ease);
  text-transform: none;
  letter-spacing: normal;
  gap: 4px;
}
.nav__dropdown-link:hover { background: var(--oat); }
.nav__dropdown-link + .nav__dropdown-link { margin-top: 2px; }
.nav__dropdown-label {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  color: var(--espresso);
  letter-spacing: 0.02em;
}
.nav__dropdown-note {
  font-family: var(--italic);
  font-style: italic;
  font-size: 13px;
  color: var(--coffee);
  text-transform: none;
  letter-spacing: normal;
}

@media (min-width: 880px) {
  .nav__name { display: inline; }
  .nav__links { gap: 36px; }
}

/* Hamburger button */
.nav__hamburger {
  display: none;
  background: var(--oat);
  border: 1.5px solid var(--espresso);
  border-radius: 3px;
  width: 46px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  position: relative;
  z-index: 60;
  box-shadow: 2px 2px 0 var(--espresso);
  transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}
.nav__hamburger:hover { background: var(--taupe); }
.nav__hamburger:active {
  box-shadow: 0 0 0 var(--espresso);
  transform: translate(2px, 2px);
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--espresso);
  margin: 4px auto;
  border-radius: 1px;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
  transform-origin: center;
}
.nav__hamburger[aria-expanded="true"] {
  background: var(--espresso);
  box-shadow: 0 0 0 var(--espresso);
  transform: translate(2px, 2px);
}
.nav__hamburger[aria-expanded="true"] span { background: var(--cream); }
.nav__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Backdrop behind drawer */
.nav__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(46, 44, 42, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
  z-index: 45;
}
.nav__backdrop.is-open { opacity: 1; pointer-events: auto; }

/* Slide-in drawer */
.nav__drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 86vw);
  height: 100vh;
  height: 100dvh;
  background: var(--cream);
  border-left: 1px solid var(--taupe);
  transform: translateX(102%);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 55;
  padding: 72px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  overflow-y: auto;
}
.nav__drawer.is-open { transform: translateX(0); }
.nav__drawer-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border: none;
  font-size: 36px;
  color: var(--espresso);
  cursor: pointer;
  line-height: 1;
  padding: 4px 12px;
}
.nav__drawer-links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.nav__drawer-links a {
  font-family: var(--display);
  font-size: 32px;
  color: var(--espresso);
  transition: color 0.25s var(--ease);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.nav__drawer-links a:hover,
.nav__drawer-links a.is-active {
  color: var(--coffee);
  border-bottom-color: var(--taupe);
}

/* Mobile drawer expandable Contact sub-menu */
.nav__drawer-sub {
  display: flex;
  flex-direction: column;
}
.nav__drawer-sub-toggle {
  background: transparent;
  border: none;
  padding: 4px 0;
  font-family: var(--display);
  font-size: 32px;
  color: var(--espresso);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transition: color 0.25s var(--ease);
}
.nav__drawer-sub-toggle:hover,
.nav__drawer-sub-toggle.is-active { color: var(--coffee); }
.nav__drawer-sub-chevron {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.nav__drawer-sub.is-open .nav__drawer-sub-chevron {
  transform: rotate(-135deg) translate(-3px, -3px);
}

.nav__drawer-sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), margin-top 0.4s var(--ease);
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 0;
  border-left: 1px solid var(--taupe);
  margin-left: 6px;
}
.nav__drawer-sub.is-open .nav__drawer-sub-menu {
  max-height: 260px;
  margin-top: 14px;
}
.nav__drawer-sub-menu a {
  font-family: var(--italic);
  font-style: italic;
  font-size: 22px;
  color: var(--coffee);
  padding: 4px 0;
  transition: color 0.25s var(--ease);
}
.nav__drawer-sub-menu a:hover {
  color: var(--espresso);
}
.nav__drawer-foot {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--taupe);
}
.nav__drawer-script {
  font-family: var(--script);
  font-size: 24px;
  color: var(--coffee);
  margin-bottom: 6px;
}
.nav__drawer-location {
  font-family: var(--italic);
  font-style: italic;
  font-size: 14px;
  color: var(--coffee);
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; flex-direction: column; justify-content: center; }
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--espresso);
  color: var(--cream);
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--espresso);
  border-radius: 1px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  text-decoration: none;
}
.btn:hover { background: var(--coffee); border-color: var(--coffee); }

.btn--ghost { background: transparent; color: var(--espresso); }
.btn--ghost:hover { background: var(--espresso); color: var(--cream); }

.btn--light {
  background: var(--cream);
  color: var(--espresso);
  border-color: var(--cream);
}
.btn--light:hover { background: var(--oat); border-color: var(--oat); color: var(--espresso); }

.btn--outline {
  background: transparent;
  color: var(--espresso);
  border-color: var(--espresso);
}
.btn--outline:hover { background: var(--espresso); color: var(--cream); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.link-arrow {
  display: inline-block;
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coffee);
  border-bottom: 1px solid var(--taupe);
  padding-bottom: 4px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.link-arrow:hover { color: var(--espresso); border-color: var(--coffee); }

/* ============================================================
   HERO OVERLAY (home page — full-bleed photo with title on top)
   ============================================================ */

.hero-overlay {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 22vh var(--pad-sm) var(--pad-md);
  margin: 0;
}

.hero-overlay__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-overlay__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Warm gradient that darkens the upper-middle portion of the photo
   (where the title now sits) and fades to transparent at the bottom.
   The dark band at the top also gives the nav better contrast. */
.hero-overlay__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(70, 58, 53, 0.45) 0%,
    rgba(70, 58, 53, 0.3) 30%,
    rgba(70, 58, 53, 0.15) 55%,
    rgba(70, 58, 53, 0) 80%
  );
  pointer-events: none;
}

.hero-overlay__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding-bottom: 20px;
  color: var(--cream);
}

.hero-overlay__script {
  font-family: var(--script);
  font-size: 32px;
  color: var(--cream);
  margin-bottom: 8px;
  font-weight: 400;
  text-shadow: 0 2px 12px rgba(46, 44, 42, 0.4);
}

.hero-overlay__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 9vw, 120px);
  letter-spacing: 0.02em;
  color: var(--cream);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 20px;
  text-shadow: 0 2px 18px rgba(46, 44, 42, 0.45);
}
.hero-overlay__title em {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 300;
  color: var(--oat);
  margin: 0 0.04em;
  text-transform: none;
}

.hero-overlay__tagline {
  font-family: var(--body);
  font-size: 12px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 12px;
  text-shadow: 0 1px 8px rgba(46, 44, 42, 0.5);
}

.hero-overlay__location {
  font-family: var(--italic);
  font-style: italic;
  font-size: 18px;
  color: var(--oat);
  margin-bottom: 32px;
  text-shadow: 0 1px 8px rgba(46, 44, 42, 0.5);
}
.hero-overlay__location .dot { color: var(--taupe); margin: 0 6px; }

/* Home page body: because .nav--overlay is position:fixed and removed
   from flow, the hero starts at y=0. For sub-pages (sticky nav), the
   hero starts below the nav naturally. */
body[data-page="home"] main { padding-top: 0; }

/* Nav OVERLAY state (home page, first load — text sits on the photo).
   Use CREAM text with a soft text-shadow so it stays legible over
   both the light and dark areas of the hero photo. */
.nav--overlay .nav__brand-main {
  color: var(--cream);
  text-shadow: 0 2px 12px rgba(46, 44, 42, 0.6);
}
.nav--overlay .nav__brand-sub {
  color: var(--oat);
  text-shadow: 0 1px 8px rgba(46, 44, 42, 0.55);
}
.nav--overlay .nav__links a,
.nav--overlay .nav__dropdown-toggle {
  color: var(--cream);
  text-shadow: 0 1px 8px rgba(46, 44, 42, 0.55);
}

/* Hamburger on overlay: cream bars + espresso-tinted button bg */
.nav--overlay .nav__hamburger {
  background: rgba(247, 246, 243, 0.85);
  border-color: var(--espresso);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Nav SOLID state (scrolled past hero OR sub-pages — normal look).
   Revert to the regular espresso-on-cream styling. */
.nav--overlay.nav--solid .nav__brand-main {
  color: var(--espresso);
  text-shadow: none;
}
.nav--overlay.nav--solid .nav__brand-sub {
  color: var(--coffee);
  text-shadow: none;
}
.nav--overlay.nav--solid .nav__links a {
  color: var(--coffee);
  text-shadow: none;
}
.nav--overlay.nav--solid .nav__hamburger {
  background: var(--oat);
  border-color: var(--espresso);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

@media (max-width: 900px) {
  .hero-overlay {
    min-height: 92vh;
    min-height: 92dvh;
    padding: 18vh var(--pad-sm) var(--pad-md);
  }
  .hero-overlay__image img { object-position: center 50%; }
  .hero-overlay__script { font-size: 26px; }
  .hero-overlay__title { margin-bottom: 16px; }
  .hero-overlay__tagline { font-size: 11px; letter-spacing: 0.28em; }
  .hero-overlay__location { font-size: 16px; margin-bottom: 24px; }
}

@media (max-width: 480px) {
  .hero-overlay { padding: 16vh 16px var(--pad-md); }
  .hero-overlay__script { font-size: 22px; }
  .hero-overlay__location { font-size: 14px; }
}

/* ============================================================
   HERO (home page — legacy split-screen, kept for reference)
   ============================================================ */

.hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--pad-md) var(--pad-sm) var(--pad-lg);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--pad-md);
  align-items: center;
}
.hero__text { display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
.hero__script {
  font-family: var(--script);
  font-size: 32px;
  color: var(--coffee);
  margin-bottom: 4px;
  font-weight: 400;
}
.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(38px, 8.5vw, 100px);
  letter-spacing: 0.015em;
  color: var(--espresso);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 24px;
}
.hero__title em {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 300;
  color: var(--coffee);
  margin: 0 0.04em;
  text-transform: none;
}
.hero__tagline {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--coffee);
  margin-bottom: 12px;
}
.hero__location {
  font-family: var(--italic);
  font-style: italic;
  font-size: 18px;
  color: var(--espresso);
  margin-bottom: 32px;
}
.hero__location .dot { color: var(--taupe); margin: 0 6px; }
.hero__pitch {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.5;
  color: var(--charcoal);
  font-weight: 400;
  max-width: 460px;
  margin-bottom: 36px;
}
.hero__image { position: relative; width: 100%; border-radius: 2px; overflow: hidden; }
.hero__image img { width: 100%; }

@media (min-width: 900px) {
  .hero { grid-template-columns: 1.1fr 1fr; padding: var(--pad-lg) var(--pad-md) var(--pad-xl); gap: var(--pad-lg); }
  .hero__text { padding-right: var(--pad-sm); }
}
@media (min-width: 1100px) {
  .hero { grid-template-columns: 1.2fr 1fr; gap: var(--pad-xl); }
}

/* ============================================================
   INTRO
   ============================================================ */

.intro {
  background: var(--oat);
  padding: var(--pad-lg) var(--pad-sm);
}
.intro__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.intro__eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coffee);
  margin-bottom: 20px;
}
.intro__body {
  font-family: var(--display);
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.55;
  color: var(--espresso);
  font-weight: 400;
}
.intro__body em { font-family: var(--italic); font-style: italic; color: var(--coffee); }

/* ============================================================
   SERVICES GRID (home page — 3 service cards)
   ============================================================ */

.services-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--pad-lg) var(--pad-sm);
}
.services-grid__head { text-align: center; margin-bottom: var(--pad-md); }
.services-grid__eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coffee);
  margin-bottom: 12px;
}
.services-grid__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 48px);
  color: var(--espresso);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.services-grid__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card {
  display: block;
  background: var(--oat);
  overflow: hidden;
  border-radius: 2px;
  transition: transform 0.4s var(--ease);
  color: inherit;
}
.service-card:hover { transform: translateY(-4px); }
.service-card__image { overflow: hidden; aspect-ratio: 4 / 5; }
.service-card__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.service-card:hover .service-card__image img { transform: scale(1.05); }
.service-card__body { padding: 28px 24px; }
.service-card__eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--coffee);
  margin-bottom: 8px;
}
.service-card__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 32px;
  color: var(--espresso);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.service-card__desc {
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
}
.service-card__cta {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coffee);
  font-weight: 500;
}

@media (min-width: 800px) {
  .services-grid__cards { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

/* ============================================================
   PAGE HERO (used by /photos/, /hair/, /makeup/ and sub-pages)
   ============================================================ */

.page-hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--pad-md) var(--pad-sm) var(--pad-lg);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--pad-md);
  align-items: center;
}
.page-hero__text { display: flex; flex-direction: column; align-items: flex-start; }
.page-hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coffee);
  margin-bottom: 16px;
}
.page-hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(42px, 7vw, 88px);
  color: var(--espresso);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.98;
  margin-bottom: 28px;
}
.page-hero__title em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--coffee);
  text-transform: none;
  font-weight: 300;
}
.page-hero__lede {
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.6;
  color: var(--charcoal);
  max-width: 520px;
  margin-bottom: 32px;
}
.page-hero__image { overflow: hidden; border-radius: 2px; }
.page-hero__image img { width: 100%; }

@media (min-width: 900px) {
  .page-hero {
    grid-template-columns: 1.1fr 1fr;
    padding: var(--pad-lg) var(--pad-md) var(--pad-xl);
    gap: var(--pad-lg);
  }
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */

.breadcrumbs {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px var(--pad-sm) 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coffee);
}
.breadcrumbs a { color: var(--coffee); transition: color 0.25s var(--ease); }
.breadcrumbs a:hover { color: var(--espresso); }
.breadcrumbs span { color: var(--taupe); margin: 0 6px; }

@media (min-width: 900px) { .breadcrumbs { padding-left: var(--pad-md); padding-right: var(--pad-md); } }

/* ============================================================
   SUBSERVICES GRID (/photos/)
   ============================================================ */

.subservices {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--pad-lg) var(--pad-sm);
}
.subservices__head { text-align: center; margin-bottom: var(--pad-md); }
.subservices__eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coffee);
  margin-bottom: 12px;
}
.subservices__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 48px);
  color: var(--espresso);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.subservices__cards { display: grid; grid-template-columns: 1fr; gap: 20px; }

.sub-card {
  display: block;
  background: var(--oat);
  overflow: hidden;
  border-radius: 2px;
  transition: transform 0.4s var(--ease);
  color: inherit;
}
.sub-card:hover { transform: translateY(-4px); }
.sub-card__image { aspect-ratio: 4 / 3; overflow: hidden; }
.sub-card__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.sub-card:hover .sub-card__image img { transform: scale(1.05); }
.sub-card__body { padding: 24px 22px; }
.sub-card__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  color: var(--espresso);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.sub-card__desc {
  color: var(--charcoal);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.sub-card__cta {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coffee);
  font-weight: 500;
}

@media (min-width: 700px) {
  .subservices__cards { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (min-width: 1100px) {
  .subservices__cards { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   WORK GRID (photos pages)
   ============================================================ */

.work {
  background: var(--oat);
  padding: var(--pad-lg) var(--pad-sm);
}
.work__head { max-width: var(--max-w); margin: 0 auto var(--pad-md); text-align: center; }
.work__eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coffee);
  margin-bottom: 12px;
}
.work__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(30px, 4.5vw, 48px);
  color: var(--espresso);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.work__grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.work__item {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  background: var(--cream);
  aspect-ratio: 4 / 5;
}
.work__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.5s var(--ease);
}
.work__item:hover img { transform: scale(1.04); }
.work__foot { text-align: center; margin-top: var(--pad-md); }
.work__note {
  text-align: center;
  margin-top: var(--pad-md);
  font-family: var(--italic);
  font-style: italic;
  color: var(--coffee);
  font-size: 15px;
}

@media (min-width: 700px) { .work__grid { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
@media (min-width: 1000px) {
  .work__grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .work__item { aspect-ratio: 4 / 5; }
}

/* ============================================================
   WORK PREVIEW (home page — 6 photos, simpler grid)
   ============================================================ */

.work-preview {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--pad-lg) var(--pad-sm);
}
.work-preview__head { text-align: center; margin-bottom: var(--pad-md); }
.work-preview__eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coffee);
  margin-bottom: 12px;
}
.work-preview__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 48px);
  color: var(--espresso);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.work-preview__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.work-preview__item {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
}
.work-preview__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.work-preview__item:hover img { transform: scale(1.04); }
.work-preview__foot { text-align: center; margin-top: var(--pad-md); }

@media (min-width: 700px) { .work-preview__grid { grid-template-columns: repeat(3, 1fr); gap: 14px; } }

/* ============================================================
   FEATURE LIST (sub-page "what's included" blocks)
   ============================================================ */

.feature-list {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--pad-lg) var(--pad-sm);
}
.feature-list__inner { max-width: 880px; margin: 0 auto; }
.feature-list__eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coffee);
  margin-bottom: 28px;
  text-align: center;
}
.feature-list__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.feature-list__items li {
  padding: 28px 28px;
  background: var(--oat);
  border-radius: 2px;
}
.feature-list__items h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  color: var(--espresso);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.feature-list__items h3 em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--coffee);
  font-size: 16px;
}
.feature-list__items p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--charcoal);
}

@media (min-width: 800px) {
  .feature-list__items { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* ============================================================
   NOTE BLOCK (hair/makeup pages — simple informational section)
   ============================================================ */

.note {
  background: var(--oat);
  padding: var(--pad-md) var(--pad-sm);
}
.note__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.note__eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coffee);
  margin-bottom: 16px;
}
.note__body {
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.6;
  color: var(--espresso);
}
.note__body a {
  color: var(--coffee);
  border-bottom: 1px solid var(--taupe);
  transition: color 0.25s var(--ease);
}
.note__body a:hover { color: var(--espresso); }

/* ============================================================
   EDITORIAL HOME — Indy 8-section formula
   service trio, manifesto, stats, love notes, portfolio preview, investment
   ============================================================ */

/* ---------- SERVICE TRIO ---------- */
.service-trio {
  background: var(--oat);
  padding: var(--pad-lg) var(--pad-sm);
}
.service-trio__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--pad-md);
}
.service-trio__eyebrow {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--coffee);
  font-weight: 500;
  margin-bottom: 16px;
}
.service-trio__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 56px);
  color: var(--espresso);
  letter-spacing: 0.02em;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.service-trio__title em {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 300;
  color: var(--coffee);
  text-transform: none;
}
.service-trio__lede {
  font-family: var(--italic);
  font-style: italic;
  font-size: 17px;
  color: var(--coffee);
  line-height: 1.55;
  max-width: 540px;
  margin: 0 auto;
}
.service-trio__cards {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 800px) {
  .service-trio__cards { grid-template-columns: repeat(3, 1fr); gap: 28px; }
}
.trio-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--cream);
  border: 1px solid rgba(102, 83, 65, 0.12);
  padding: 18px 18px 26px;
  box-shadow: 0 12px 30px rgba(46, 44, 42, 0.07);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.trio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(46, 44, 42, 0.14);
}
.trio-card__image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 18px;
}
.trio-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.trio-card:hover .trio-card__image img { transform: scale(1.04); }
.trio-card__plus {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(247, 246, 243, 0.92);
  color: var(--espresso);
  font-family: var(--display);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  line-height: 1;
}
.trio-card__vol {
  font-family: var(--italic);
  font-style: italic;
  font-size: 14px;
  color: var(--coffee);
  margin-bottom: 4px;
  text-align: center;
}
.trio-card__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 28px;
  color: var(--espresso);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  text-align: center;
}
.trio-card__note {
  font-family: var(--body);
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.55;
  text-align: center;
  max-width: 280px;
  margin: 0 auto;
}

/* ---------- MANIFESTO QUOTE BAND ---------- */
.manifesto {
  background: var(--espresso);
  color: var(--cream);
  padding: var(--pad-lg) var(--pad-sm);
  text-align: center;
}
.manifesto__inner {
  max-width: 880px;
  margin: 0 auto;
}
.manifesto__eyebrow {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--oat);
  font-weight: 500;
  margin-bottom: 24px;
  opacity: 0.9;
}
.manifesto__quote {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.4;
  color: var(--cream);
  margin: 0 0 22px;
}
.manifesto__quote em {
  font-style: italic;
  color: var(--cream);
}
.manifesto__attribution {
  font-family: var(--script);
  font-size: 28px;
  color: var(--oat);
  font-weight: 400;
}

/* ---------- STATS ROW (in about-editorial) ---------- */
.about-stats {
  max-width: 880px;
  margin: var(--pad-md) auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-top: var(--pad-md);
  border-top: 1px solid rgba(102, 83, 65, 0.18);
  flex-wrap: wrap;
}
.about-stats__item {
  text-align: center;
  flex: 1 1 120px;
}
.about-stats__num {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(38px, 4.5vw, 56px);
  color: var(--espresso);
  line-height: 1;
  margin-bottom: 6px;
}
.about-stats__num span {
  font-size: 0.45em;
  font-family: var(--italic);
  font-style: italic;
  color: var(--coffee);
  margin-left: 2px;
  vertical-align: 0.5em;
  font-weight: 400;
}
.about-stats__label {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coffee);
  font-weight: 500;
}
.about-stats__divider {
  width: 1px;
  height: 48px;
  background: rgba(102, 83, 65, 0.22);
}
@media (max-width: 700px) {
  .about-stats__divider { display: none; }
  .about-stats { gap: 18px; }
}

/* ---------- LOVE NOTES (testimonials) ---------- */
.love-notes {
  background: var(--oat);
  padding: var(--pad-lg) var(--pad-sm);
}
.love-notes__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--pad-md);
}
.love-notes__eyebrow {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--coffee);
  font-weight: 500;
  margin-bottom: 16px;
}
.love-notes__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 56px);
  color: var(--espresso);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
}
.love-notes__title em {
  font-family: var(--script);
  font-style: normal;
  font-weight: 400;
  color: var(--coffee);
  text-transform: none;
  display: block;
  font-size: 0.95em;
  line-height: 1;
  margin-top: 4px;
  margin-left: 0.08em;
  letter-spacing: 0;
}
.love-notes__grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 700px) {
  .love-notes__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (min-width: 1100px) {
  .love-notes__grid { grid-template-columns: repeat(4, 1fr); gap: 22px; }
}
.love-note {
  background: var(--cream);
  border: 1px solid rgba(102, 83, 65, 0.12);
  padding: 28px 24px 26px;
  margin: 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 24px rgba(46, 44, 42, 0.05);
  position: relative;
}
.love-note__num {
  font-family: var(--display);
  font-weight: 400;
  font-size: 32px;
  color: var(--coffee);
  font-style: italic;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.55;
}
.love-note__body {
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--charcoal);
  margin: 0 0 20px;
  flex: 1;
  font-style: italic;
}
.love-note__cite {
  font-family: var(--script);
  font-size: 24px;
  color: var(--coffee);
  font-style: normal;
  text-align: left;
}

/* ---------- PORTFOLIO PREVIEW (vol cards) ---------- */
.portfolio-preview {
  background: var(--cream);
  padding: var(--pad-lg) var(--pad-sm);
}
.portfolio-preview__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--pad-md);
}
.portfolio-preview__eyebrow {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--coffee);
  font-weight: 500;
  margin-bottom: 16px;
}
.portfolio-preview__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 56px);
  color: var(--espresso);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
}
.portfolio-preview__title em {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 300;
  color: var(--coffee);
  text-transform: none;
}
.portfolio-preview__grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 600px) {
  .portfolio-preview__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (min-width: 1000px) {
  .portfolio-preview__grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}
.vol-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease);
}
.vol-card:hover { transform: translateY(-4px); }
.vol-card__image {
  margin: 0 0 14px;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(46, 44, 42, 0.13);
}
.vol-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.vol-card:hover .vol-card__image img { transform: scale(1.04); }
.vol-card__vol {
  font-family: var(--italic);
  font-style: italic;
  font-size: 14px;
  color: var(--coffee);
  text-align: center;
  margin-bottom: 4px;
}
.vol-card__label {
  font-family: var(--display);
  font-size: 22px;
  color: var(--espresso);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  font-weight: 400;
}
.portfolio-preview__foot {
  text-align: center;
  margin-top: var(--pad-md);
}

/* ---------- INVESTMENT TEASE ---------- */
.investment {
  background: var(--espresso);
  color: var(--cream);
  padding: var(--pad-lg) var(--pad-sm);
  text-align: center;
}
.investment__inner {
  max-width: 720px;
  margin: 0 auto;
}
.investment__eyebrow {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--oat);
  font-weight: 500;
  margin-bottom: 18px;
  opacity: 0.9;
}
.investment__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
  margin-bottom: 22px;
}
.investment__title em {
  font-family: var(--italic);
  font-style: italic;
  font-weight: 300;
  color: var(--oat);
  text-transform: none;
}
.investment__body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--cream);
  opacity: 0.92;
  margin-bottom: 28px;
}

/* ============================================================
   PRICING PAGE
   ============================================================ */

.pricing-section {
  background: var(--cream);
  padding: var(--pad-lg) var(--pad-sm);
}
.pricing-section--alt { background: var(--oat); }

.pricing-section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--pad-md);
}
.pricing-section__eyebrow {
  font-family: var(--italic);
  font-style: italic;
  font-size: 15px;
  color: var(--coffee);
  margin-bottom: 12px;
}
.pricing-section__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 60px);
  color: var(--espresso);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.05;
  margin-bottom: 14px;
}
.pricing-section__lede {
  font-family: var(--italic);
  font-style: italic;
  font-size: 17px;
  color: var(--coffee);
  line-height: 1.55;
}

.pricing-category {
  max-width: 1140px;
  margin: 0 auto var(--pad-md);
}
.pricing-category__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--espresso);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 8px;
}
.pricing-category__title span {
  font-family: var(--italic);
  font-style: italic;
  font-size: 0.7em;
  color: var(--coffee);
  text-transform: none;
  font-weight: 300;
  letter-spacing: 0.01em;
}
.pricing-category__note {
  font-family: var(--italic);
  font-style: italic;
  text-align: center;
  color: var(--coffee);
  font-size: 14px;
  margin-bottom: 22px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 18px;
}
@media (min-width: 700px) {
  .pricing-cards { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}
@media (min-width: 1000px) {
  .pricing-cards { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.pricing-cards--3 { grid-template-columns: 1fr; }
@media (min-width: 700px) {
  .pricing-cards--3 { grid-template-columns: repeat(3, 1fr); }
}

.price-card {
  background: var(--cream);
  border: 1px solid rgba(102, 83, 65, 0.18);
  padding: 32px 26px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-section--alt .price-card { background: var(--cream); }

.price-card--feature {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--espresso);
}
.price-card--feature .price-card__name { color: var(--oat); }
.price-card--feature .price-card__price { color: var(--cream); }
.price-card--feature .price-card__desc { color: var(--cream); }
.price-card--feature .price-card__list li {
  color: var(--cream);
  border-color: rgba(247, 246, 243, 0.22);
}
.price-card--feature .price-card__list li:last-child {
  border-bottom-color: rgba(247, 246, 243, 0.22);
}

.price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coffee);
  color: var(--cream);
  font-family: var(--body);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 14px;
  font-weight: 500;
}
.price-card__name {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  color: var(--coffee);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.price-card__price {
  font-family: var(--display);
  font-weight: 400;
  font-size: 48px;
  color: var(--espresso);
  line-height: 1;
  margin-bottom: 22px;
}
.price-card__price span {
  font-size: 0.4em;
  font-family: var(--italic);
  font-style: italic;
  color: var(--coffee);
  vertical-align: 0.6em;
  margin-left: 2px;
  font-weight: 400;
}
.price-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 4px;
  flex: 1;
}
.price-card__list li {
  font-family: var(--body);
  font-size: 14px;
  color: var(--charcoal);
  padding: 10px 0;
  border-top: 1px solid rgba(102, 83, 65, 0.14);
}
.price-card__list li:last-child { border-bottom: 1px solid rgba(102, 83, 65, 0.14); }
.price-card__desc {
  font-family: var(--body);
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.55;
  margin: 0;
}

.pricing-policies {
  max-width: 1140px;
  margin: var(--pad-md) auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-top: var(--pad-md);
  border-top: 1px solid rgba(102, 83, 65, 0.18);
}
@media (min-width: 800px) {
  .pricing-policies { grid-template-columns: repeat(3, 1fr); gap: 36px; }
}
.pricing-policies__title {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coffee);
  font-weight: 600;
  margin-bottom: 10px;
}
.pricing-policies p {
  font-family: var(--body);
  font-size: 14px;
  color: var(--charcoal);
  line-height: 1.65;
  margin: 0;
}

.price-list {
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px 60px;
}
@media (min-width: 700px) {
  .price-list { grid-template-columns: 1fr 1fr; }
}
.price-list__col {
  list-style: none;
  padding: 0;
  margin: 0;
}
.price-list__col li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid rgba(102, 83, 65, 0.18);
  font-family: var(--body);
  font-size: 15px;
  color: var(--charcoal);
}
.price-list__col li span:first-child {
  letter-spacing: 0.01em;
}
.price-list__col li span:last-child {
  font-family: var(--display);
  font-size: 20px;
  color: var(--espresso);
  font-weight: 400;
}

/* ============================================================
   EDITORIAL HOME — about / photos band / story-lens (legacy, still used by about section)
   ============================================================ */

/* Hero title override for "SHOTS & STYLES BY MADI" (longer text needs
   smaller scaling than the original 2-line "Shots & Styles") */
.hero-overlay__title--editorial {
  font-size: clamp(34px, 5.5vw, 72px);
  letter-spacing: 0.05em;
  line-height: 1.05;
  margin-bottom: 14px;
  white-space: nowrap;
}
@media (max-width: 700px) {
  .hero-overlay__title--editorial {
    font-size: clamp(26px, 7vw, 44px);
    white-space: normal;
  }
}
.hero-overlay__content--editorial {
  max-width: 1100px;
}
.hero-overlay__eyebrow {
  font-family: var(--body);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 500;
  margin-bottom: 18px;
  text-shadow: 0 1px 8px rgba(46, 44, 42, 0.5);
}
.hero-overlay__booking {
  font-family: var(--italic);
  font-style: italic;
  font-size: 17px;
  color: var(--oat);
  margin-top: 18px;
  text-shadow: 0 1px 8px rgba(46, 44, 42, 0.5);
}
@media (max-width: 700px) {
  .hero-overlay__eyebrow { font-size: 10px; letter-spacing: 0.24em; margin-bottom: 14px; }
  .hero-overlay__booking { font-size: 15px; margin-top: 14px; }
}

/* ---------- ABOUT EDITORIAL ---------- */
.about-editorial {
  background: var(--cream);
  padding: var(--pad-lg) var(--pad-sm);
}
.about-editorial__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .about-editorial__inner {
    grid-template-columns: 1.05fr 0.7fr 1fr;
    gap: 40px;
  }
}

.about-editorial__portrait {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 14px 40px rgba(46, 44, 42, 0.12);
  max-height: 620px;
}
.about-editorial__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Polaroid stack — three thumbs with slight tilt and overlap */
.about-editorial__polaroids {
  position: relative;
  height: 100%;
  min-height: 320px;
  display: none;
}
@media (min-width: 900px) {
  .about-editorial__polaroids { display: block; }
}
.polaroid {
  position: absolute;
  background: var(--cream);
  padding: 10px 10px 32px;
  box-shadow: 0 8px 22px rgba(46, 44, 42, 0.18);
  border: 1px solid rgba(70, 58, 53, 0.08);
}
.polaroid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: var(--oat);
}
.polaroid--1 {
  width: 60%;
  aspect-ratio: 3 / 4;
  top: 4%;
  left: 18%;
  transform: rotate(-4deg);
  z-index: 1;
}
.polaroid--2 {
  width: 56%;
  aspect-ratio: 3 / 4;
  top: 30%;
  left: 38%;
  transform: rotate(3deg);
  z-index: 2;
}
.polaroid--3 {
  width: 58%;
  aspect-ratio: 3 / 4;
  top: 56%;
  left: 14%;
  transform: rotate(-2deg);
  z-index: 3;
}

.about-editorial__text {
  text-align: center;
  padding: 0 8px;
}
@media (min-width: 900px) {
  .about-editorial__text { text-align: left; padding: 0; }
}
.about-editorial__monogram {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin: 0 auto 12px;
  display: block;
  opacity: 0.85;
}
@media (min-width: 900px) {
  .about-editorial__monogram { margin: 0 0 14px; }
}
.about-editorial__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--espresso);
  line-height: 1;
  margin-bottom: 8px;
}
.about-editorial__title em {
  font-family: var(--script);
  font-style: normal;
  font-weight: 400;
  color: var(--coffee);
  text-transform: none;
  font-size: 1.6em;
  line-height: 0.9;
  margin-left: 0.12em;
  display: inline-block;
  vertical-align: -0.18em;
}
.about-editorial__lede {
  font-family: var(--italic);
  font-style: italic;
  color: var(--coffee);
  font-size: 16px;
  margin-bottom: 18px;
}
.about-editorial__body {
  font-family: var(--body);
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 460px;
}
@media (min-width: 900px) {
  .about-editorial__body { margin-left: 0; margin-right: 0; }
}
.about-editorial__text > .about-editorial__body {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 900px) {
  .about-editorial__text > .about-editorial__body {
    margin-left: 0;
    margin-right: 0;
  }
}

/* ---------- PHOTOS BAND ---------- */
.photos-band {
  background: var(--espresso);
  color: var(--cream);
  padding: var(--pad-lg) var(--pad-sm);
}
.photos-band__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .photos-band__inner {
    grid-template-columns: 0.85fr 1.1fr 0.95fr;
    gap: 40px;
  }
}
.photos-band__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
@media (min-width: 900px) {
  .photos-band__head { align-items: flex-start; text-align: left; }
}
.photos-band__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.05;
  margin: 0;
}
.photos-band__title em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--oat);
  text-transform: none;
  font-weight: 300;
  font-size: 1.05em;
}
.polaroid--accent {
  position: relative;
  width: 180px;
  aspect-ratio: 3 / 4;
  background: var(--cream);
  padding: 8px 8px 26px;
  transform: rotate(-3deg);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}
.polaroid--accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photos-band__feature {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4);
  max-height: 620px;
}
.photos-band__feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photos-band__text {
  text-align: center;
}
@media (min-width: 900px) {
  .photos-band__text { text-align: left; }
}
.photos-band__body {
  font-family: var(--body);
  color: var(--cream);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  opacity: 0.92;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 900px) {
  .photos-band__body { margin-left: 0; margin-right: 0; }
}
.photos-band__body + .photos-band__body {
  margin-top: 14px;
}
.photos-band__cta {
  display: inline-block;
  margin-top: 20px;
}
@media (min-width: 900px) {
  .photos-band__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .photos-band__text .photos-band__body {
    text-align: center;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
  .photos-band__cta {
    margin-top: 26px;
  }
}

/* ---------- STORY LENS (rotated rail + 3-column grid) ---------- */
.story-lens {
  background: var(--cream);
  padding: var(--pad-lg) var(--pad-sm);
}
.story-lens__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
  position: relative;
}
@media (min-width: 900px) {
  .story-lens__inner {
    grid-template-columns: 96px 1fr;
    gap: 48px;
  }
}
.story-lens__rail {
  display: none;
  position: relative;
}
@media (min-width: 900px) {
  .story-lens__rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 12px 0;
  }
  /* Hairline bookends above and below the rotated text */
  .story-lens__rail::before,
  .story-lens__rail::after {
    content: "";
    display: block;
    width: 48px;
    height: 1px;
    background: var(--espresso);
  }
}
.story-lens__rail-text {
  font-family: var(--display);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--espresso);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
  line-height: 1;
}
.story-lens__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 700px) {
  .story-lens__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.story-lens__card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.story-lens__label {
  font-family: var(--script);
  font-size: 30px;
  color: var(--coffee);
  text-align: left;
  margin: 0 0 14px 6px;
  font-weight: 400;
  line-height: 1;
}
.story-lens__image {
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 10px 28px rgba(46, 44, 42, 0.15);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.story-lens__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.story-lens__card:hover .story-lens__image {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(46, 44, 42, 0.22);
}
.story-lens__card:hover .story-lens__image img {
  transform: scale(1.04);
}

/* ============================================================
   CTA BAND (closing CTA block, used on every page)
   ============================================================ */

.cta-band {
  background: var(--espresso);
  color: var(--cream);
  padding: var(--pad-lg) var(--pad-sm);
  text-align: center;
}
.cta-band__inner { max-width: 680px; margin: 0 auto; }
.cta-band__eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 16px;
}
.cta-band__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--cream);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.cta-band__body {
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.6;
  color: var(--oat);
  margin-bottom: 28px;
}

/* ============================================================
   ABOUT page
   ============================================================ */

.about-hero {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--pad-md) var(--pad-sm) var(--pad-lg);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--pad-md);
  align-items: center;
}
.about-hero__image { overflow: hidden; border-radius: 2px; }
.about-hero__image img { width: 100%; }
.about-hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coffee);
  margin-bottom: 12px;
}
.about-hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(42px, 6vw, 72px);
  color: var(--espresso);
  letter-spacing: 0.01em;
  margin-bottom: 28px;
  line-height: 1.05;
}
.about-hero__title em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--coffee);
  font-weight: 300;
}
.about-hero__lede {
  font-size: 17px;
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 18px;
  max-width: 560px;
}
.about-hero__lede em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--coffee);
}
.about-hero__sig {
  font-family: var(--script);
  font-size: 32px;
  color: var(--coffee);
  margin-top: 16px;
}
@media (min-width: 900px) {
  .about-hero { grid-template-columns: 1fr 1.2fr; gap: var(--pad-lg); padding: var(--pad-lg) var(--pad-md) var(--pad-xl); }
}

.facts {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--pad-md) var(--pad-sm) var(--pad-lg);
}
.facts__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.facts__item {
  padding: 24px;
  background: var(--oat);
  border-radius: 2px;
  text-align: center;
}
.facts__label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--coffee);
  margin-bottom: 10px;
}
.facts__value {
  font-family: var(--display);
  font-size: 18px;
  color: var(--espresso);
  font-weight: 500;
}
@media (min-width: 800px) { .facts__inner { grid-template-columns: repeat(4, 1fr); gap: 24px; } }

/* ============================================================
   CONTACT page — neo-brutalist form + radio pills
   ============================================================ */

.contact-hero {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--pad-md) var(--pad-sm) var(--pad-sm);
  text-align: center;
}
.contact-hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coffee);
  margin-bottom: 16px;
}
.contact-hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(44px, 6.5vw, 80px);
  color: var(--espresso);
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 0.98;
}
.contact-hero__title em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--coffee);
  font-weight: 300;
  text-transform: none;
}
.contact-hero__lede {
  font-family: var(--display);
  font-size: 20px;
  line-height: 1.6;
  color: var(--charcoal);
}
.contact-hero__lede a {
  color: var(--coffee);
  border-bottom: 1px solid var(--taupe);
  transition: color 0.25s var(--ease);
}
.contact-hero__lede a:hover { color: var(--espresso); }

/* Form wrapper */
.form-section {
  padding: var(--pad-md) var(--pad-sm) var(--pad-lg);
  background: var(--oat);
}

/* Soft minimal form — uiverse.io (Spacious74) pattern, palette remapped
   to Madi's warm brown aesthetic. Thin 1px borders, rounded corners,
   floating labels, warm gradient button. No thick borders / offset
   shadows — matches the rest of the site's minimal feel. */
.inquiry-form {
  --form-gap: 24px;
  max-width: 720px;
  margin: 0 auto;
  padding: 44px 40px;
  background: var(--cream);
  border: 1px solid var(--taupe);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(46, 44, 42, 0.05);
  display: flex;
  flex-direction: column;
  gap: var(--form-gap);
  width: 100%;
}
@media (max-width: 700px) {
  .inquiry-form { padding: 32px 22px; --form-gap: 20px; border-radius: 16px; }
}

.inquiry-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--form-gap);
  width: 100%;
}
@media (min-width: 700px) {
  .inquiry-form__row { grid-template-columns: 1fr 1fr; gap: 20px; }
}

.inquiry-form__field {
  position: relative;
  width: 100%;
  min-width: 0;
}
.inquiry-form__field--full { width: 100%; }

/* Required-field asterisk */
.req {
  color: var(--coffee);
  font-family: var(--italic);
  font-style: italic;
  font-weight: 400;
  margin-left: 2px;
}

/* Floating label — positioned inside the input, floats up on focus/valid */
.inquiry-form__label {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  color: var(--coffee);
  font-family: var(--body);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.01em;
  pointer-events: none;
  background: transparent;
  padding: 0;
  transition: all 0.25s var(--ease);
  max-width: calc(100% - 36px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  z-index: 2;
}

/* Text inputs + textareas — unified minimal style */
.inquiry-form__input {
  width: 100%;
  padding: 18px 18px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 400;
  color: var(--charcoal);
  background: var(--cream);
  border: 1px solid var(--taupe);
  border-radius: 10px;
  outline: none;
  letter-spacing: 0.01em;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  position: relative;
  z-index: 1;
}
.inquiry-form__input::placeholder { color: transparent; }
.inquiry-form__input:focus {
  border-color: var(--coffee);
  box-shadow: 0 0 0 3px rgba(102, 83, 65, 0.12);
}

/* Float label up when input is focused OR has content */
.inquiry-form__input:focus + .inquiry-form__label,
.inquiry-form__input:not(:placeholder-shown) + .inquiry-form__label {
  top: 0;
  left: 14px;
  transform: translateY(-50%) scale(0.82);
  background: var(--cream);
  padding: 2px 10px;
  color: var(--coffee);
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 100px;
}

/* Textarea — label pinned to the top instead of middle */
.inquiry-form__textarea {
  min-height: 140px;
  padding: 22px 18px 16px;
  resize: vertical;
  line-height: 1.6;
  font-family: var(--body);
}
.inquiry-form__field--textarea .inquiry-form__label {
  top: 22px;
  transform: translateY(0);
}
.inquiry-form__field--textarea .inquiry-form__textarea:focus + .inquiry-form__label,
.inquiry-form__field--textarea .inquiry-form__textarea:not(:placeholder-shown) + .inquiry-form__label {
  top: 0;
  transform: translateY(-50%) scale(0.82);
}

/* Select dropdown — traditional label above (floating doesn't work with native select) */
.inquiry-form__field--select .inquiry-form__label {
  position: static;
  transform: none;
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coffee);
  font-weight: 500;
  max-width: 100%;
  white-space: normal;
  overflow: visible;
  padding: 0;
  background: transparent;
}

.inquiry-form__select-wrap {
  position: relative;
  width: 100%;
}
.inquiry-form__select-wrap::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--coffee);
  border-bottom: 1.5px solid var(--coffee);
  transform: translateY(-75%) rotate(45deg);
  pointer-events: none;
}
.inquiry-form__select {
  width: 100%;
  padding: 18px 44px 18px 18px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--cream);
  border: 1px solid var(--taupe);
  border-radius: 10px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.inquiry-form__select:focus {
  border-color: var(--coffee);
  box-shadow: 0 0 0 3px rgba(102, 83, 65, 0.12);
}
.inquiry-form__select option {
  background: var(--cream);
  color: var(--charcoal);
  padding: 8px;
}

/* Cross-link between photo form and styling form */
.contact-hero__switch {
  margin-top: 20px;
  font-family: var(--italic);
  font-style: italic;
  font-size: 15px;
  color: var(--coffee);
}
.contact-hero__switch a {
  color: var(--espresso);
  border-bottom: 1px solid var(--taupe);
  margin-left: 4px;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.contact-hero__switch a:hover {
  color: var(--coffee);
  border-bottom-color: var(--coffee);
}

/* Fieldset for radio pill groups — label above, soft minimal */
.inquiry-form__radio {
  margin: 0;
  padding: 0;
  border: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.inquiry-form__radio > .inquiry-form__label,
.inquiry-form__radio legend {
  position: static;
  transform: none;
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coffee);
  font-weight: 500;
  max-width: 100%;
  white-space: normal;
  text-align: left;
  padding: 0;
  background: transparent;
}

/* Radio pills — soft minimal, thin borders, subtle fill on hover/check */
.radio-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.radio-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--cream);
  border: 1px solid var(--taupe);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
  flex: 0 0 auto;
}
.radio-pill:hover {
  border-color: var(--coffee);
  background: var(--oat);
}
.radio-pill input[type="radio"] {
  position: absolute;
  opacity: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.radio-pill__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--taupe);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease);
}
.radio-pill__dot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cream);
  transform: scale(0);
  transition: transform 0.2s var(--ease);
}
.radio-pill:has(input:checked) {
  border-color: var(--espresso);
  background: var(--oat);
  box-shadow: 0 0 0 3px rgba(70, 58, 53, 0.08);
}
.radio-pill:has(input:checked) .radio-pill__dot {
  background: var(--espresso);
  border-color: var(--espresso);
}
.radio-pill:has(input:checked) .radio-pill__dot::before { transform: scale(1); }

.radio-pill__text {
  font-family: var(--body);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  font-weight: 500;
  text-transform: none;
}

/* Submit button — warm brown gradient with inset glow (remap of
   uiverse.io Spacious74's blue button to Madi's palette) */
.inquiry-form__submit {
  align-self: center;
  margin-top: 16px;
  padding: 14px 40px;
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  background: linear-gradient(135deg, var(--espresso), var(--coffee));
  border: 1px solid var(--espresso);
  border-bottom: 1px solid rgba(163, 141, 117, 0.5);
  border-radius: 10px;
  cursor: pointer;
  min-width: 220px;
  box-shadow:
    0 2px 4px rgba(46, 44, 42, 0.28),
    inset 0 3px 5px rgba(138, 112, 86, 0.55),
    inset 0 -3px 5px rgba(40, 32, 26, 0.55);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), filter 0.2s var(--ease);
}
.inquiry-form__submit:hover {
  filter: brightness(1.05);
}
.inquiry-form__submit:active {
  box-shadow:
    inset 0 3px 5px rgba(138, 112, 86, 0.55),
    inset 0 -3px 5px rgba(40, 32, 26, 0.55);
  transform: scale(0.995);
}

.inquiry-form__hint {
  text-align: center;
  font-size: 13px;
  color: var(--coffee);
  margin-top: 12px;
  font-family: var(--italic);
  font-style: italic;
}
.inquiry-form__hint a {
  color: var(--espresso);
  border-bottom: 1px solid var(--taupe);
}

/* Contact cards section below form */
.contact-cards {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--pad-lg) var(--pad-sm);
}
.contact-cards__inner { max-width: 980px; margin: 0 auto; }
.contact-cards__eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coffee);
  text-align: center;
  margin-bottom: 24px;
}
.contact-cards__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.contact-card {
  display: block;
  padding: 28px 32px;
  background: var(--oat);
  border: 1px solid var(--taupe);
  border-radius: 2px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
  text-align: center;
}
.contact-card:hover { background: var(--taupe); transform: translateY(-3px); }
.contact-card__tag {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--coffee);
  margin-bottom: 10px;
}
.contact-card__handle {
  font-family: var(--display);
  font-size: 22px;
  color: var(--espresso);
  margin-bottom: 8px;
}
.contact-card__note {
  font-family: var(--italic);
  font-style: italic;
  font-size: 14px;
  color: var(--coffee);
}
@media (min-width: 800px) { .contact-cards__grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }

/* ============================================================
   FOOTER
   ============================================================ */

.foot {
  background: var(--charcoal);
  color: var(--oat);
  padding: var(--pad-md) var(--pad-sm);
  text-align: center;
}
.foot__inner { max-width: 720px; margin: 0 auto; }
.foot__mark {
  font-family: var(--display);
  font-size: 38px;
  color: var(--cream);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.foot__mark em {
  font-family: var(--italic);
  font-style: italic;
  color: var(--coffee);
}
.foot__name {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 16px;
}
.foot__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.foot__nav a {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oat);
  transition: color 0.25s var(--ease);
}
.foot__nav a:hover { color: var(--cream); }
.foot__locations {
  font-family: var(--italic);
  font-style: italic;
  font-size: 14px;
  color: var(--oat);
  margin-bottom: 18px;
  line-height: 1.6;
}
.foot__socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}
.foot__socials a {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--taupe);
  transition: color 0.25s var(--ease);
}
.foot__socials a:hover { color: var(--cream); }
.foot__fineprint {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coffee);
}

/* ============================================================
   MOBILE refinements
   ============================================================ */

@media (max-width: 900px) {
  .hero__image img,
  .page-hero__image img,
  .about-hero__image img {
    max-height: 60vh;
    object-fit: cover;
  }
}

@media (max-width: 700px) {
  .hero    { padding: 40px 20px 60px; gap: 32px; }
  .intro   { padding: 56px 20px; }
  .page-hero { padding: 40px 20px 56px; gap: 32px; }
  .services-grid, .subservices, .work-preview, .feature-list, .contact-cards { padding: 56px 20px; }
  .work    { padding: 56px 20px; }
  .note    { padding: var(--pad-md) 20px; }
  .about-hero { padding: 40px 20px 56px; gap: 32px; }
  .facts   { padding: 40px 20px 56px; }
  .contact-hero { padding: 40px 20px 24px; }
  .form-section { padding: 32px 20px 56px; }
  .cta-band { padding: 56px 20px; }

  .hero__script { font-size: 26px; }
  .hero__tagline { font-size: 11px; }
  .hero__location { font-size: 16px; }
  .hero__pitch { font-size: 18px; margin-bottom: 28px; }
  .hero__image img { max-height: 55vh; }

  .page-hero__title { font-size: 44px; margin-bottom: 20px; }
  .page-hero__lede { font-size: 17px; }

  .services-grid__title, .subservices__title, .work-preview__title, .work__title { font-size: 32px; }

  .service-card__body { padding: 22px 20px; }
  .service-card__title { font-size: 26px; }

  .sub-card__body { padding: 20px 18px; }
  .sub-card__title { font-size: 22px; }

  .feature-list__items { gap: 16px; }
  .feature-list__items li { padding: 22px 20px; }
  .feature-list__items h3 { font-size: 20px; }

  .about-hero__title { font-size: 44px; }
  .about-hero__lede { font-size: 15px; }

  .contact-hero__title { font-size: 44px; }
  .contact-hero__lede { font-size: 17px; }

  .inquiry-form { padding: 28px 22px; gap: 18px; }
  .inquiry-form__input { padding: 12px 14px; font-size: 14px; }
  .inquiry-form__textarea { min-height: 120px; }
  .radio-pills { grid-template-columns: 1fr 1fr; }

  .cta-band__title { font-size: 34px; }
  .cta-band__body { font-size: 16px; }

  .btn { padding: 12px 26px; font-size: 10px; }
}

@media (max-width: 480px) {
  .nav__name { display: none; }
  .nav__inner { padding: 12px 16px; gap: 12px; }
  .nav__mark { font-size: 24px; }

  .hero    { padding: 28px 16px 48px; gap: 24px; }
  .intro   { padding: 48px 16px; }
  .page-hero { padding: 28px 16px 48px; gap: 24px; }
  .services-grid, .subservices, .work-preview, .feature-list, .contact-cards { padding: 48px 16px; }
  .work { padding: 48px 16px; }
  .about-hero { padding: 28px 16px 48px; gap: 24px; }
  .contact-hero { padding: 28px 16px 20px; }
  .form-section { padding: 28px 16px 48px; }
  .cta-band { padding: 48px 16px; }

  .work__grid { gap: 8px; }

  .radio-pills { grid-template-columns: 1fr; gap: 8px; }

  .inquiry-form { padding: 24px 18px; }
}
