/* ─────────────────────────────────────────────────────────
   Roam Content Co. — event content creation house
   A division of Trident Event Group
   Palette: warm bone, deep onyx, ember clay, soft taupe
   Type:    Fraunces (display) + Inter (utility)
   ───────────────────────────────────────────────────────── */

:root {
  /* Themed palette (overridden in [data-theme="dark"]) */
  --bone:       #F5F1EA;
  --bone-2:     #FAF7F1;
  --paper:      #FFFFFF;
  --ink:        #17140F;
  --ink-soft:   #514A3E;
  --taupe:      #897E6E;
  --taupe-soft: #C7BCA9;
  --line:       #E7E0D4;
  --ember:      #C75B39;
  --ember-deep: #A2421F;
  --ember-soft: #E7A081;

  /* Always-dark "punctuation" bands (hero / quote / reel / cta / footer) */
  --always-dark:      #16130E;
  --always-dark-deep: #0C0A07;
  --always-cream:     #F5F1EA;
  --always-line:      rgba(231, 224, 212, 0.18);

  --display: "Fraunces", "Georgia", "Times New Roman", serif;
  --sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --container: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(80px, 12vw, 160px);

  --ease: cubic-bezier(.2, .7, .2, 1);
}

[data-theme="dark"] {
  --bone:       #14110D;
  --bone-2:     #1A1611;
  --paper:      #201B15;
  --ink:        #EFE7D8;
  --ink-soft:   #B4A893;
  --taupe:      #8E826D;
  --taupe-soft: #574B3A;
  --line:       #2C2620;
  --ember:      #E0734D;
  --ember-deep: #EE8A63;
  --ember-soft: #6B3A28;

  --always-dark:      #0A0805;
  --always-dark-deep: #050403;
  --always-cream:     #F2EADB;
  --always-line:      rgba(231, 224, 212, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background-color 0.45s var(--ease), color 0.45s var(--ease);
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.container {
  width: min(100% - calc(var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

/* Typography utilities */
.serif { font-family: var(--display); font-weight: 400; letter-spacing: -0.01em; }
.h-display {
  font-family: var(--display);
  font-size: clamp(34px, 5.2vw, 72px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0;
}
.h-display em { font-style: italic; color: var(--ember-deep); font-weight: 400; }
.lead { font-size: clamp(17px, 1.4vw, 19px); line-height: 1.65; color: var(--ink-soft); }
.muted { color: var(--ink-soft); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 500;
}
.eyebrow .rule { display: inline-block; width: 36px; height: 1px; background: var(--ember); }
.rule { display: inline-block; width: 28px; height: 1px; background: var(--ember); }

/* Section heading block */
.section-head { max-width: 780px; margin-bottom: clamp(48px, 6vw, 80px); }
.section-head .h-display { margin-top: 18px; }
.section-head__sub { margin-top: 18px; color: var(--ink-soft); font-size: 17px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn--primary { background: var(--ember); color: #fff; }
.btn--primary:hover { background: var(--ember-deep); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bone); }
.btn--block { width: 100%; }

/* Arrow link */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
  transition: all 0.3s var(--ease);
}
.link-arrow:hover { color: var(--ember-deep); border-color: var(--ember); }

/* ── BRAND WORDMARK (logo) ────────────────────────────── */
.wordmark {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.9;
  letter-spacing: 0;
}
.wordmark__name {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: 0.02em;
}
.wordmark__name .dot { color: var(--ember); }
.wordmark__sub {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 5px;
  opacity: 0.78;
}

/* ── NAV ──────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 22px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav__inner {
  width: min(100% - calc(var(--gutter) * 2), var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav__logo { display: inline-flex; align-items: center; color: var(--always-cream); transition: color 0.4s var(--ease); }
.nav__menu {
  display: flex;
  gap: 32px;
  align-items: center;
  color: var(--always-cream);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.4s var(--ease);
}
.nav__menu a { position: relative; padding: 6px 0; opacity: 0.92; transition: opacity 0.25s var(--ease); }
.nav__menu a:hover { opacity: 1; }
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--ember);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav__menu a:hover::after { transform: scaleX(1); }
.nav__cta {
  border: 1px solid currentColor;
  border-radius: 2px;
  padding: 10px 22px !important;
}
.nav__cta::after { display: none; }
.nav__cta:hover { background: var(--ember); border-color: var(--ember); color: #fff !important; }

.nav__theme {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid currentColor;
  color: inherit;
  opacity: 0.85;
  padding: 0;
  transition: opacity 0.3s var(--ease), transform 0.6s var(--ease), background 0.3s var(--ease);
}
.nav__theme:hover { opacity: 1; transform: rotate(40deg); }
.nav__theme svg {
  width: 14px; height: 14px;
  stroke: currentColor; stroke-width: 1.5; fill: none;
  stroke-linecap: round; stroke-linejoin: round;
}
.nav__theme .icon--sun { display: none; }
[data-theme="dark"] .nav__theme .icon--sun  { display: block; }
[data-theme="dark"] .nav__theme .icon--moon { display: none; }

.nav.is-scrolled {
  background: color-mix(in srgb, var(--bone) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 13px 0;
  border-color: var(--line);
}
.nav.is-scrolled .nav__logo,
.nav.is-scrolled .nav__menu { color: var(--ink); }

.nav__toggle {
  display: none;
  width: 40px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  align-items: flex-end;
}
.nav__toggle span { display: block; height: 1px; background: var(--always-cream); transition: all 0.3s var(--ease); }
.nav__toggle span:first-child { width: 28px; }
.nav__toggle span:last-child  { width: 18px; }
.nav.is-scrolled .nav__toggle span { background: var(--ink); }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  color: var(--always-cream);
  overflow: hidden;
}
.hero .hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%;
  transform: scale(1.04);
  animation: heroZoom 16s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,12,9,0.55) 0%, rgba(14,12,9,0.20) 38%, rgba(14,12,9,0.66) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - calc(var(--gutter) * 2), var(--container));
  margin-inline: auto;
  padding-top: 120px;
  padding-bottom: 80px;
  max-width: 940px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 0 26px;
  opacity: 1;
  animation: lineIn 1s var(--ease) 0.1s forwards;
}
.hero__badge .live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 0 0 rgba(199,91,57,0.6);
  animation: pulse 2.2s var(--ease) infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(199,91,57,0.55); }
  70%  { box-shadow: 0 0 0 12px rgba(199,91,57,0); }
  100% { box-shadow: 0 0 0 0 rgba(199,91,57,0); }
}
.hero__title {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(50px, 8.4vw, 126px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 0;
}
.hero__title .line {
  display: block;
  opacity: 1;
  transform: translateY(28px);
  animation: lineIn 1.1s var(--ease) forwards;
}
.hero__title .line:nth-child(1) { animation-delay: 0.25s; }
.hero__title .line:nth-child(2) { animation-delay: 0.45s; font-style: italic; color: var(--ember-soft); padding-left: 0.4em; }
.hero__title .line:nth-child(3) { animation-delay: 0.65s; }
@keyframes lineIn { to { opacity: 1; transform: translateY(0); } }

.hero__sub {
  margin: 34px 0 40px;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.65;
  max-width: 560px;
  color: rgba(245, 241, 234, 0.88);
  opacity: 1;
  animation: lineIn 1s var(--ease) 0.9s forwards;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; opacity: 1; animation: lineIn 1s var(--ease) 1.05s forwards; }
.hero__ctas .btn--primary { background: var(--ember); color: #fff; }
.hero__ctas .btn--primary:hover { background: #fff; color: var(--always-dark); }
.hero__ctas .btn--ghost { color: var(--always-cream); border-color: rgba(245,241,234,0.5); }
.hero__ctas .btn--ghost:hover { background: var(--always-cream); color: var(--always-dark); }

.hero__local { margin: 22px 0 0; }
.hero__local-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--always-cream);
  border-bottom: 1px solid rgba(245,241,234,0.4);
  padding-bottom: 4px;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.hero__local-link:hover { color: var(--ember-soft); border-color: var(--ember); }

.hero__scroll {
  position: absolute;
  left: var(--gutter);
  bottom: 32px;
  z-index: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--always-cream);
  opacity: 1;
  animation: lineIn 1s var(--ease) 1.3s forwards;
}
.hero__scroll-line {
  width: 1px; height: 64px;
  background: linear-gradient(to bottom, rgba(245,241,234,0.7), rgba(245,241,234,0));
  animation: scrollLine 2.2s var(--ease) infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── INTRO ───────────────────────────────────────────── */
.intro { padding: var(--section-y) 0 calc(var(--section-y) - 40px); }
.intro__grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.intro__label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 14px;
}
.intro__label .rule { width: 60px; }
.intro__body .h-display { margin-bottom: 28px; }
.intro__body .muted { font-size: 17px; max-width: 660px; }

.marquee {
  margin-top: clamp(50px, 7vw, 90px);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 42s linear infinite;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(28px, 4vw, 48px);
  color: var(--ink);
  font-weight: 300;
}
.marquee__track .dot { color: var(--ember); font-size: 0.5em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── FEATURED ────────────────────────────────────────── */
.featured { padding: calc(var(--section-y) - 30px) 0 var(--section-y); }
.featured__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(24px, 3vw, 48px) clamp(20px, 2.4vw, 36px);
}
.couple { grid-column: span 6; display: block; transition: transform 0.6s var(--ease); }
.couple--tall { grid-column: span 6; }
.couple__media { position: relative; overflow: hidden; aspect-ratio: 4 / 5; background: var(--bone-2); }
.couple--tall .couple__media { aspect-ratio: 3 / 4; }
.couple__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 38%;
  transition: transform 1.4s var(--ease), filter 0.6s var(--ease);
}
.couple:hover .couple__media img { transform: scale(1.06); filter: brightness(1.04); }
.couple__tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(14,12,9,0.62);
  color: var(--always-cream);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}
.couple__caption {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 24px;
  align-items: end;
}
.couple__meta { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe); grid-column: 1 / -1; }
.couple__caption h3 { font-size: clamp(26px, 2.6vw, 36px); font-weight: 400; margin: 4px 0 0; letter-spacing: -0.01em; }

/* ── QUOTE BAND ──────────────────────────────────────── */
.quote-band {
  background: var(--always-dark);
  color: var(--always-cream);
  padding: clamp(90px, 12vw, 160px) 0;
  text-align: center;
  transition: background-color 0.45s var(--ease);
}
.quote-band__mark {
  font-family: var(--display);
  font-size: clamp(80px, 10vw, 160px);
  line-height: 0.3;
  color: var(--ember);
  margin: 0 0 24px;
  font-style: italic;
  font-weight: 300;
}
.quote-band__text {
  font-family: var(--display);
  font-size: clamp(24px, 3.4vw, 44px);
  line-height: 1.35;
  font-weight: 300;
  font-style: italic;
  max-width: 960px;
  margin: 0 auto;
  letter-spacing: -0.01em;
}
.quote-band__attr { margin-top: 40px; font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--ember); font-weight: 500; }

/* ── EXPERIENCE / SERVICES ───────────────────────────── */
.experience { padding: var(--section-y) 0; }
.experience__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(36px, 5vw, 70px) clamp(40px, 6vw, 100px);
}
.service { border-top: 1px solid var(--line); padding-top: 34px; position: relative; }
.service--feature { grid-column: 1 / -1; border-top: 2px solid var(--ember); }
.service__num {
  position: absolute; top: 34px; right: 0;
  font-family: var(--display);
  font-size: 14px; letter-spacing: 0.1em; color: var(--taupe); font-style: italic;
}
.service h3 { font-size: clamp(27px, 3vw, 38px); font-weight: 400; margin: 0 0 16px; letter-spacing: -0.01em; }
.service--feature h3 { font-size: clamp(30px, 3.6vw, 46px); }
.service p { color: var(--ink-soft); max-width: 520px; margin: 0 0 22px; font-size: 16px; line-height: 1.7; }
.service__tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 22px; padding: 0; list-style: none; }
.service__tags li {
  font-size: 11px; letter-spacing: 0.06em;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 5px 11px;
}

/* ── REEL STRIP (motion band) ────────────────────────── */
.reel {
  background: var(--always-dark-deep);
  color: var(--always-cream);
  padding: clamp(70px, 9vw, 120px) 0;
  overflow: hidden;
}
.reel .section-head { margin-inline: auto; text-align: center; }
.reel .section-head .h-display { color: var(--always-cream); }
.reel .eyebrow { color: var(--ember); justify-content: center; }
.reel .eyebrow .rule { background: var(--ember); }
.reel__strip { display: flex; gap: 14px; width: max-content; animation: reelScroll 48s linear infinite; }
.reel__strip:hover { animation-play-state: paused; }
.reel__frame {
  position: relative;
  width: clamp(190px, 22vw, 300px);
  aspect-ratio: 9 / 12;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 3px;
  background: #000;
}
.reel__frame img { width: 100%; height: 100%; object-fit: cover; opacity: 0.92; transition: opacity 0.4s var(--ease), transform 1.2s var(--ease); }
.reel__frame:hover img { opacity: 1; transform: scale(1.05); }
.reel__frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(12,10,7,0.6) 100%);
}
@keyframes reelScroll { to { transform: translateX(-50%); } }
.reel__cap { margin-top: 36px; text-align: center; font-size: 13px; color: rgba(245,241,234,0.6); letter-spacing: 0.04em; }

/* ── LOOKBOOK MASONRY ────────────────────────────────── */
.lookbook { padding: var(--section-y) 0; }
.masonry { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: clamp(12px, 1.4vw, 22px); }
.masonry__item { margin: 0; overflow: hidden; background: var(--bone-2); }
.masonry__item img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; transition: transform 1.4s var(--ease); }
.masonry__item:hover img { transform: scale(1.05); }
.masonry__item--tall { grid-row: span 2; }
.masonry__item--wide { grid-column: span 2; }

/* ── ABOUT ───────────────────────────────────────────── */
.about {
  background: var(--paper);
  padding: var(--section-y) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about__grid { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.about__media { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.about__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 35%; }
.about__caption {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--paper); padding: 8px 16px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink);
}
.about__copy .eyebrow { margin-bottom: 20px; }
.about__copy .h-display { margin-bottom: 28px; }
.about__copy p { color: var(--ink-soft); margin: 0 0 18px; max-width: 580px; }
.about__copy .lead { color: var(--ink); font-size: 19px; }

.about__stats {
  list-style: none; padding: 0; margin: 50px 0 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
  border-top: 1px solid var(--line); padding-top: 36px;
}
.about__stats li { display: flex; flex-direction: column; gap: 6px; }
.stat__num { font-family: var(--display); font-size: clamp(36px, 4vw, 56px); line-height: 1; color: var(--ember-deep); }
.stat__label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); }

/* ── TESTIMONIALS ────────────────────────────────────── */
.testimonials { padding: var(--section-y) 0; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 3vw, 50px); }
.testimonial {
  margin: 0;
  padding: clamp(28px, 3vw, 44px);
  border: 1px solid var(--line);
  background: var(--paper);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.testimonial::before {
  content: "\201C";
  font-family: var(--display);
  font-size: 80px; line-height: 1;
  position: absolute; top: 12px; left: 24px;
  color: var(--ember); opacity: 0.32; font-style: italic;
}
.testimonial p {
  font-family: var(--display);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5; margin: 0; font-style: italic; color: var(--ink);
  position: relative; z-index: 1;
}
.testimonial footer { border-top: 1px solid var(--line); padding-top: 18px; display: flex; flex-direction: column; gap: 4px; }
.testimonial cite { font-family: var(--display); font-size: 19px; font-style: normal; color: var(--ink); }
.testimonial footer span { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); }

/* ── JOURNAL ─────────────────────────────────────────── */
.journal { padding: 0 0 var(--section-y); }
.journal__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 3vw, 50px); }
.post__media { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--bone-2); }
.post__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; transition: transform 1.2s var(--ease); }
.post:hover .post__media img { transform: scale(1.05); }
.post__copy { padding-top: 22px; }
.post__meta { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); display: block; margin-bottom: 10px; }
.post__copy h3 { font-family: var(--display); font-size: clamp(20px, 1.8vw, 26px); font-weight: 400; line-height: 1.3; margin: 0; letter-spacing: -0.005em; }

/* ── FAQ ─────────────────────────────────────────────── */
.faq { padding: var(--section-y) 0; background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.faq__list { margin-top: 50px; max-width: 880px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 26px 44px 26px 0; position: relative;
  font-family: var(--display); font-size: clamp(20px, 2.2vw, 25px); color: var(--ink);
  transition: color 0.3s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--ember-deep); }
.faq__item summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-size: 26px; font-weight: 300; color: var(--ember); transition: transform 0.3s var(--ease);
}
.faq__item[open] summary::after { content: "\2013"; }
.faq__item p { margin: 0; padding: 0 44px 28px 0; color: var(--ink-soft); font-size: 16px; line-height: 1.75; max-width: 720px; }

/* ── CTA BAND (links to inquiry page) ────────────────── */
.cta {
  background: var(--always-dark);
  color: var(--always-cream);
  padding: var(--section-y) 0;
  text-align: center;
  transition: background-color 0.45s var(--ease);
}
.cta .eyebrow { color: var(--ember); justify-content: center; }
.cta .eyebrow .rule { background: var(--ember); }
.cta .h-display { margin: 18px auto 0; max-width: 900px; }
.cta .h-display em { color: var(--ember); }
.cta__sub { margin: 26px auto 40px; max-width: 560px; color: rgba(245,241,234,0.78); font-size: 17px; }
.cta__ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta__ctas .btn--ghost { color: var(--always-cream); border-color: rgba(245,241,234,0.5); }
.cta__ctas .btn--ghost:hover { background: var(--always-cream); color: var(--always-dark); }
.cta__small { margin: 26px 0 0; font-size: 13px; color: rgba(245,241,234,0.6); }
.cta__small a { color: var(--ember); border-bottom: 1px solid var(--ember); padding-bottom: 1px; }

/* ── INQUIRY PAGE ────────────────────────────────────── */
.page-hero {
  background: var(--always-dark);
  color: var(--always-cream);
  padding: clamp(150px, 18vw, 230px) 0 clamp(70px, 9vw, 120px);
  transition: background-color 0.45s var(--ease);
}
.page-hero .eyebrow { color: var(--ember); }
.page-hero .eyebrow .rule { background: var(--ember); }
.page-hero h1 { font-family: var(--display); font-weight: 300; font-size: clamp(46px, 7vw, 92px); line-height: 1; letter-spacing: -0.025em; margin: 20px 0 0; }
.page-hero h1 em { font-style: italic; color: var(--ember-soft); }
.page-hero p { margin: 28px 0 0; max-width: 600px; font-size: clamp(16px, 1.4vw, 19px); line-height: 1.65; color: rgba(245,241,234,0.82); }

.inquire { padding: var(--section-y) 0; }
.inquire__grid { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(40px, 6vw, 100px); align-items: start; }
.inquire__aside .eyebrow { margin-bottom: 20px; }
.inquire__aside .h-display { margin-bottom: 24px; }
.inquire__steps { list-style: none; padding: 0; margin: 38px 0 0; counter-reset: step; }
.inquire__steps li {
  position: relative;
  padding: 22px 0 22px 56px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}
.inquire__steps li:last-child { border-bottom: 1px solid var(--line); }
.inquire__steps li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 22px;
  font-family: var(--display); font-style: italic; font-size: 20px; color: var(--ember);
}
.inquire__steps strong { display: block; color: var(--ink); font-weight: 500; font-size: 16px; margin-bottom: 4px; letter-spacing: 0.01em; }

.inquire__details { list-style: none; padding: 0; margin: 40px 0 0; }
.inquire__details li {
  display: grid; grid-template-columns: 120px 1fr; gap: 18px;
  padding: 16px 0; border-top: 1px solid var(--line); align-items: baseline;
}
.inquire__details li:last-child { border-bottom: 1px solid var(--line); }
.inquire__details span { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe); }
.inquire__details strong { font-weight: 500; font-size: 16px; color: var(--ink); }
.inquire__details a { color: var(--ember-deep); border-bottom: 1px solid var(--ember-soft); padding-bottom: 1px; }

/* Form embed placeholder — swap the inner markup for the real form later */
.form-embed {
  border: 1px dashed var(--taupe-soft);
  border-radius: 4px;
  background: var(--bone-2);
  padding: clamp(32px, 4vw, 56px);
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.form-embed__mark {
  width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid var(--ember);
  display: grid; place-items: center;
  color: var(--ember); font-size: 24px;
}
.form-embed h3 { font-family: var(--display); font-weight: 400; font-size: 26px; margin: 0; color: var(--ink); }
.form-embed p { margin: 0; max-width: 380px; color: var(--ink-soft); font-size: 15px; }
.form-embed code { font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace; font-size: 13px; background: var(--bone); padding: 2px 7px; border-radius: 3px; color: var(--ember-deep); }
.form-embed .btn { margin-top: 6px; }

/* Live embed — iframe fills the card, placeholder chrome removed */
.form-embed--live {
  display: block;
  padding: 0;
  min-height: 0;
  border: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
}
.form-embed--live iframe {
  display: block;
  border: 0;
  width: 1px;
  min-width: 100%;
  min-height: 620px;
}
.form-embed__fallback { padding: clamp(28px, 4vw, 48px); text-align: center; }

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--always-dark-deep);
  color: rgba(245, 241, 234, 0.7);
  padding: clamp(70px, 8vw, 110px) 0 30px;
  font-size: 14px;
  transition: background-color 0.45s var(--ease);
}
.footer__grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.6fr; align-items: start; gap: clamp(30px, 4vw, 56px); }
.footer__brand { max-width: 320px; }
.footer__brand .wordmark { color: var(--always-cream); margin-bottom: 20px; }
.footer__tagline { line-height: 1.6; max-width: 290px; margin: 0; }
.footer__parent { margin: 18px 0 0; font-size: 12px; letter-spacing: 0.04em; color: rgba(245,241,234,0.45); }
.footer__parent a { color: var(--ember); }
.footer__col h4 { font-family: var(--display); font-size: 20px; font-weight: 400; font-style: italic; color: var(--always-cream); margin: 0 0 22px; }
.footer__col a, .footer__col p { display: block; padding: 5px 0; transition: color 0.3s var(--ease); margin: 0; }
.footer__col a:hover { color: var(--ember); }
.footer__newsletter p { margin-bottom: 20px; line-height: 1.6; max-width: 290px; }
.footer__form {
  display: flex; align-items: center; max-width: 320px;
  border-bottom: 1px solid rgba(231, 224, 212, 0.24); transition: border-color 0.3s var(--ease);
}
.footer__form:focus-within { border-color: var(--ember); }
.footer__form input {
  background: transparent; border: 0; color: var(--always-cream);
  font-family: var(--sans); font-size: 14px; padding: 12px 0; flex: 1; outline: none;
}
.footer__form input::placeholder { color: rgba(245, 241, 234, 0.3); }
.footer__form button { color: var(--ember); font-size: 20px; padding: 12px 6px 12px 12px; transition: transform 0.3s var(--ease); }
.footer__form button:hover { transform: translateX(4px); }
.footer__form.is-sent input { display: none; }
.footer__form.is-sent::after { content: "Thanks — we'll be in touch \2726"; color: var(--ember); font-size: 13px; padding: 12px 0; }
.footer__form.is-sent button { display: none; }
.footer__bottom {
  width: min(100% - calc(var(--gutter) * 2), var(--container));
  margin: 60px auto 0; padding-top: 26px;
  border-top: 1px solid rgba(231, 224, 212, 0.12);
  display: flex; justify-content: space-between;
  font-size: 12px; letter-spacing: 0.05em; color: rgba(245, 241, 234, 0.4);
  flex-wrap: wrap; gap: 14px;
}

/* ── REVEAL ANIMATIONS ───────────────────────────────── */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 980px) {
  .nav__menu { display: none; position: fixed; inset: 0; flex-direction: column; justify-content: center; align-items: center; gap: 32px; background: var(--bone); color: var(--ink); font-size: 16px; z-index: 55; }
  .nav__menu.is-open { display: flex; }
  /* While the menu is open, drop the scrolled-nav backdrop-filter — it would
     otherwise become the containing block for the fixed menu and shrink it to
     the nav bar instead of the full viewport. */
  .nav.menu-open { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; border-color: transparent; }
  .nav.is-scrolled .nav__menu { color: var(--ink); }
  .nav__toggle { display: flex; position: relative; z-index: 60; }
  /* Turn the hamburger into an X while the menu is open so it can be closed */
  .nav__toggle[aria-expanded="true"] span { width: 26px; background: var(--ink); }
  .nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:last-child  { transform: translateY(-3.5px) rotate(-45deg); }

  .intro__grid { grid-template-columns: 1fr; gap: 30px; }
  .featured__grid { gap: 36px; }
  .couple, .couple--tall { grid-column: span 12; }
  .experience__grid { grid-template-columns: 1fr; }
  .masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .masonry__item--wide { grid-column: span 2; }
  .about__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .journal__grid { grid-template-columns: 1fr; }
  .inquire__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px clamp(30px, 6vw, 60px); }
  .footer__brand { grid-column: 1 / -1; max-width: none; }
  .footer__newsletter { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  .hero__title { font-size: clamp(42px, 13vw, 74px); }
  .hero__title .line:nth-child(2) { padding-left: 0; }
  .hero__ctas .btn { padding: 14px 22px; font-size: 11px; }
  .hero__scroll { left: 50%; transform: translateX(-50%); }
  .about__stats { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__newsletter { grid-column: auto; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .marquee__track { font-size: 32px; gap: 32px; }
  .quote-band__text { font-size: 22px; }
  .inquire__details li { grid-template-columns: 1fr; gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .hero__img { transform: none; }
  .reel__strip, .marquee__track, .ticker__track { animation: none; }
}

/* ═════════════════════════════════════════════════════════
   CONTENT-CREATOR SYSTEM
   The social-native layer that sets Roam apart from a
   traditional photographer site: vertical Reel/Story cards
   with live social UI, film grain, a format ticker, and a
   same-day delivery timeline.
   ═════════════════════════════════════════════════════════ */

/* ── Film grain overlay (use on .grain or ::after) ─────── */
.grain { position: relative; }
.grain::after {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
  opacity: 0.10;
  mix-blend-mode: overlay;
  z-index: 3;
}

/* ── Format ticker (thin scrolling band) ───────────────── */
.ticker {
  background: var(--ink);
  color: var(--bone);
  overflow: hidden;
  padding: 14px 0;
  transition: background-color 0.45s var(--ease), color 0.45s var(--ease);
}
.ticker__track {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  white-space: nowrap;
  animation: ticker 34s linear infinite;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
}
.ticker__track span { display: inline-flex; align-items: center; gap: 26px; }
.ticker__track .star { color: var(--ember); font-size: 9px; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ── Social icon sprite ────────────────────────────────── */
.ic { width: 22px; height: 22px; fill: currentColor; display: block; }

/* ── STORY CARD — clean Instagram-story aesthetic ──────── */
.reel-card {
  position: relative;
  margin: 0;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  background: #0c0a07;
  color: #fff;
  box-shadow: 0 30px 60px -28px rgba(12, 10, 7, 0.7);
  isolation: isolate;
}
.reel-card > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 38%;
  z-index: 0;
  transition: transform 1.4s var(--ease);
}
.reel-card:hover > img { transform: scale(1.04); }
.reel-card::before {                       /* soft top + bottom shading */
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(8,7,5,0.42) 0%, rgba(8,7,5,0) 22%, rgba(8,7,5,0) 74%, rgba(8,7,5,0.42) 100%);
}
.reel-card::after {                         /* grain */
  content: "";
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
  opacity: 0.12;
  mix-blend-mode: overlay;
}
/* story progress bars (the one cue that says "story") */
.reel-card__bars {
  position: absolute; top: 12px; left: 12px; right: 12px;
  z-index: 4;
  display: flex; gap: 4px;
}
.reel-card__bars span {
  flex: 1; height: 2.5px; border-radius: 2px;
  background: rgba(255,255,255,0.4);
  overflow: hidden;
}
.reel-card__bars span:first-child::after {
  content: ""; display: block; height: 100%; width: 68%;
  background: #fff;
}
/* optional story stickers (used on the hero card only) */
.reel-card__sticker {
  position: absolute; z-index: 4;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.01em;
  padding: 7px 12px; border-radius: 9px;
  box-shadow: 0 8px 22px -10px rgba(0,0,0,0.6);
}
.reel-card__sticker .ic { width: 14px; height: 14px; }
.reel-card__sticker--loc {
  left: 16px; bottom: 18px;
  background: rgba(255,255,255,0.94); color: #16130E;
}
.reel-card__sticker--tag {
  right: 14px; top: 60px;
  background: var(--ember); color: #fff;
  font-family: var(--display); font-style: italic; font-weight: 500;
  transform: rotate(-5deg);
}

/* ── CONTENT HERO (split: copy + live reel) ────────────── */
.hero--split .hero__overlay {
  background:
    linear-gradient(108deg, rgba(10,8,5,0.86) 0%, rgba(10,8,5,0.55) 42%, rgba(10,8,5,0.22) 100%),
    linear-gradient(180deg, rgba(10,8,5,0.35) 0%, rgba(10,8,5,0) 32%, rgba(10,8,5,0) 64%, rgba(10,8,5,0.5) 100%);
}
.hero--split .hero__content { max-width: var(--container); }
.hero--split .hero__title { font-size: clamp(44px, 6.6vw, 100px); }
.hero--split .hero__sub { margin: 26px 0 34px; }
.hero__layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}
.hero__kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; font-weight: 600;
  background: rgba(245,241,234,0.1);
  border: 1px solid rgba(245,241,234,0.2);
  padding: 8px 14px; border-radius: 999px;
  margin: 0 0 26px;
}
.hero__chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 30px 0 0; padding: 0; list-style: none; }
.hero__chips li {
  font-size: 11px; letter-spacing: 0.04em;
  color: var(--always-cream);
  border: 1px solid rgba(245,241,234,0.3);
  border-radius: 999px; padding: 6px 13px;
}
.hero__chips li::before { content: "✦  "; color: var(--ember-soft); }
.hero__reel { justify-self: center; width: min(82%, 300px); }
.hero__reel .reel-card { animation: reelFloat 6s var(--ease) infinite; }
@keyframes reelFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Social-proof / rating row */
.hero__proof { display: flex; align-items: center; gap: 12px; margin: 30px 0 0; flex-wrap: wrap; }
.hero__stars { color: var(--ember-soft); letter-spacing: 3px; font-size: 15px; }
.hero__proof-text { font-size: 13px; color: rgba(245,241,234,0.85); letter-spacing: 0.02em; }
.hero__proof-text strong { color: var(--always-cream); font-weight: 600; }

/* Fanned story-card stack — fills the hero with real content */
.hero__stack { position: relative; width: 100%; height: clamp(420px, 40vw, 560px); }
.hero__stack .reel-card {
  position: absolute; top: 50%; left: 50%;
  width: clamp(150px, 15.5vw, 198px);
  box-shadow: 0 36px 70px -30px rgba(8, 6, 4, 0.85);
}
.hero__stack .rc-1 { transform: translate(-50%, -50%) rotate(0deg); z-index: 3; }
.hero__stack .rc-2 { transform: translate(-94%, -42%) rotate(-8deg) scale(0.9); z-index: 2; filter: brightness(0.8); }
.hero__stack .rc-3 { transform: translate(-6%, -58%) rotate(8deg) scale(0.9); z-index: 1; filter: brightness(0.8); }
.hero__stack .reel-card { transition: transform 0.6s var(--ease), filter 0.6s var(--ease); }
.hero__stack:hover .rc-1 { transform: translate(-50%, -52%) rotate(0deg); }
.hero__stack:hover .rc-2 { transform: translate(-100%, -42%) rotate(-11deg) scale(0.9); filter: brightness(0.92); }
.hero__stack:hover .rc-3 { transform: translate(0%, -58%) rotate(11deg) scale(0.9); filter: brightness(0.92); }

/* ── ON THE FEED (reel grid replaces couples grid) ─────── */
.feed { padding: calc(var(--section-y) - 30px) 0 var(--section-y); }
.feed__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.8vw, 26px);
}
.feed__grid .reel-card { transition: transform 0.5s var(--ease); }
.feed__grid .reel-card:hover { transform: translateY(-6px); }

/* ── SAME-DAY DELIVERY TIMELINE ────────────────────────── */
.timeline { background: var(--paper); padding: var(--section-y) 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.timeline__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
  margin-top: 56px;
  counter-reset: drop;
}
.timeline__step { position: relative; padding-top: 30px; border-top: 2px solid var(--line); }
.timeline__step:nth-child(1) { border-top-color: var(--ember); }
.timeline__when {
  display: inline-block;
  font-family: var(--display); font-style: italic;
  font-size: clamp(30px, 3.4vw, 44px); color: var(--ember-deep);
  line-height: 1; margin-bottom: 16px;
}
.timeline__step h3 { font-family: var(--display); font-weight: 400; font-size: clamp(21px, 2vw, 26px); margin: 0 0 10px; }
.timeline__step p { color: var(--ink-soft); margin: 0; font-size: 15px; line-height: 1.7; max-width: 360px; }

/* ── Content-system responsive ─────────────────────────── */
@media (max-width: 980px) {
  .feed__grid { grid-template-columns: repeat(2, 1fr); }
  .timeline__grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 820px) {
  .hero__layout { grid-template-columns: 1fr; gap: 32px; justify-items: start; }
  .hero__reel { display: none; }
  .hero__stack { height: 330px; max-width: 360px; margin: 6px 0 0; }
  .hero__stack .reel-card { width: clamp(110px, 27vw, 148px); }
}
@media (max-width: 600px) {
  .feed__grid { grid-template-columns: 1fr; }
  .feed__grid .reel-card { max-width: 360px; margin-inline: auto; width: 100%; }
}

