/* ============================================================
   THE FIFTH DATE — main.css
   ------------------------------------------------------------
   Sections:
   01 Design tokens
   02 Reset & base
   03 Typography
   04 Utilities & layout
   05 Buttons
   06 Header & navigation
   07 Hero
   08 Brand message / differentiators
   09 Philosophy (the fifth date)
   10 How it works
   11 About
   12 Dallas
   13 CTA band
   14 FAQ accordion
   15 Contact
   16 Footer
   17 Modal (Calendly)
   18 Floating apply pill
   19 Reveal on scroll
   20 Buttons/links state, a11y helpers
   21 Responsive overrides
   ============================================================ */

/* ---------- 01. Design tokens ---------- */
:root {
  --ink: #221a15;
  --ink-2: #17120e;
  --ink-3: #2b221b;
  --paper: #fbf7f1;
  --paper-2: #f4ecdf;
  --paper-3: #ece2d2;
  --wine: #6f2a38;
  --wine-2: #86364a;
  --brass: #b08d57;
  --brass-2: #c9a87c;
  --brass-3: #8c6f41;
  --text: #2e2620;
  --muted: #6e625a;
  --muted-light: #a99c90;
  --white: #ffffff;
  --danger: #a3302f;
  --ok: #2f6b4f;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;

  --radius-sm: 2px;
  --radius-md: 6px;
  --radius-lg: 14px;
  --radius-pill: 999px;

  --shadow-1: 0 1px 2px rgba(34, 26, 21, 0.06), 0 8px 24px rgba(34, 26, 21, 0.08);
  --shadow-2: 0 2px 4px rgba(34, 26, 21, 0.08), 0 18px 44px rgba(34, 26, 21, 0.16);

  --header-h: 76px;
  --container: 1160px;
  --container-narrow: 820px;
  --gutter: clamp(20px, 4.5vw, 40px);
  --section-pad: clamp(72px, 10vw, 128px);
}

/* ---------- 02. Reset & base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--paper);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--wine);
  text-decoration-color: color-mix(in srgb, var(--brass) 55%, transparent);
  text-underline-offset: 4px;
}

a:hover {
  color: var(--wine-2);
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--brass);
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--brass-3);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--paper);
  font-size: 14px;
  transition: top 0.2s ease;
}

.skip-link:focus-visible {
  top: 12px;
}

/* ---------- 03. Typography ---------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.35rem, 5.4vw, 4.1rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
}

p {
  text-wrap: pretty;
}

.eyebrow {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-3);
}

.eyebrow--light {
  color: var(--brass-2);
}

.lede {
  font-size: clamp(1.08rem, 1.6vw, 1.24rem);
  line-height: 1.75;
  color: var(--muted);
}

.quote-display {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.quote-display em {
  color: var(--wine);
  font-style: italic;
}

.text-center {
  text-align: center;
}

/* ---------- 04. Utilities & layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow {
  max-width: var(--container-narrow, 820px);
}

.section {
  padding-block: var(--section-pad);
}

.section--dim {
  background: var(--paper-2);
}

.section--dark {
  background: var(--ink);
  color: var(--paper);
}

.section--dark h2,
.section--dark h3 {
  color: var(--paper);
}

.section-head {
  max-width: 680px;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.section-head h2 {
  margin-top: 14px;
}

.section-head p {
  margin-top: 18px;
  color: var(--muted);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.rule {
  width: 46px;
  height: 3px;
  background: var(--brass);
  border: 0;
  margin-top: 22px;
}

.rule--center {
  margin-inline: auto;
}

.grid {
  display: grid;
  gap: 24px;
}

[hidden] {
  display: none !important;
}

/* ---------- 05. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease,
    border-color 0.22s ease, color 0.22s ease;
  white-space: normal;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--wine);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(111, 42, 56, 0.3);
}

.btn--primary:hover {
  background: var(--wine-2);
  color: var(--white);
}

.btn--brass {
  background: var(--brass);
  color: var(--ink);
}

.btn--brass:hover {
  background: var(--brass-2);
  color: var(--ink);
}

.btn--ghost {
  border-color: var(--brass);
  color: var(--ink);
  background: transparent;
}

.btn--ghost:hover {
  background: var(--brass);
  color: var(--ink);
}

.btn--ghost-light {
  border-color: rgba(201, 168, 124, 0.7);
  color: var(--paper);
  background: transparent;
}

.btn--ghost-light:hover {
  background: rgba(201, 168, 124, 0.14);
  border-color: var(--brass-2);
  color: var(--paper);
}

.btn--sm {
  min-height: 42px;
  padding: 10px 20px;
  font-size: 13.5px;
}

.btn--lg {
  min-height: 58px;
  padding: 16px 34px;
  font-size: 16.5px;
}

.btn--block {
  width: 100%;
}

.btn[disabled] {
  opacity: 0.6;
  transform: none;
  cursor: not-allowed;
}

.btn-arrow::after {
  content: "→";
  font-weight: 700;
  transition: transform 0.2s ease;
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ---------- 06. Header & navigation ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(251, 247, 241, 0.88);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(176, 141, 87, 0.28);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.is-scrolled {
  background: rgba(251, 247, 241, 0.96);
  box-shadow: 0 4px 20px rgba(34, 26, 21, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand__mark {
  width: 34px;
  height: 34px;
  flex: none;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.16rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1;
}

.brand__name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--brass-3);
  margin-top: 4px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav__link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  position: relative;
  padding: 6px 0;
  text-decoration: none;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--brass);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav__link:hover {
  color: var(--ink);
}

.nav__link:hover::after,
.nav__link[aria-current="true"]::after {
  transform: scaleX(1);
}

.nav__ctas {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__cta {
  min-height: 42px;
  padding: 10px 20px;
  font-size: 13.5px;
}

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--brass);
  color: var(--ink);
}

.burger__line {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger__line::before,
.burger__line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
}

.burger__line::before {
  top: -6px;
}

.burger__line::after {
  top: 6px;
}

.burger[aria-expanded="true"] .burger__line {
  transform: rotate(45deg);
}

.burger[aria-expanded="true"] .burger__line::before {
  transform: translateY(6px) rotate(90deg);
}

.burger[aria-expanded="true"] .burger__line::after {
  opacity: 0;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--paper);
  border-bottom: 1px solid rgba(176, 141, 87, 0.35);
  box-shadow: 0 20px 40px rgba(34, 26, 21, 0.14);
  padding: 10px var(--gutter) 28px;
  max-height: calc(100dvh - var(--header-h));
  overflow-y: auto;
}

.mobile-nav.is-open {
  display: block;
  animation: nav-drop 0.25s ease;
}

@keyframes nav-drop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 6px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid rgba(176, 141, 87, 0.25);
  text-decoration: none;
}

.mobile-nav__link::after {
  content: "→";
  color: var(--brass-3);
  font-family: var(--font-body);
}

.mobile-nav__ctas {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.mobile-nav__meta {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

/* ---------- 07. Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: calc(var(--header-h) + clamp(48px, 8vw, 96px)) 0 clamp(56px, 8vw, 96px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.55) contrast(1.1) brightness(0.5) sepia(0.22);
}

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(23, 18, 14, 0.92) 0%, rgba(23, 18, 14, 0.72) 44%, rgba(23, 18, 14, 0.35) 78%, rgba(23, 18, 14, 0.55) 100%),
    radial-gradient(120% 90% at 12% 8%, rgba(111, 42, 56, 0.28) 0%, transparent 60%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass-2);
}

.hero__eyebrow::before {
  content: "";
  width: 34px;
  height: 1.5px;
  background: var(--brass);
}

.hero h1 {
  color: var(--paper);
  margin-top: 22px;
}

.hero h1 em {
  font-style: italic;
  color: var(--brass-2);
}

.hero__sub {
  margin-top: 22px;
  max-width: 560px;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.75;
  color: rgba(251, 247, 241, 0.82);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 30px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(251, 247, 241, 0.72);
}

.hero__trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__trust span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brass-2);
}

.hero__gallery {
  position: relative;
  display: grid;
  gap: 22px;
  justify-items: center;
}

.hero__fig {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-2);
  width: min(100%, 380px);
}

.hero__fig img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__fig--tall {
  aspect-ratio: 4 / 5;
}

.hero__fig--small {
  width: min(72%, 300px);
  margin-left: auto;
  margin-top: -64px;
  aspect-ratio: 4 / 3;
  border: 6px solid var(--ink);
}

.hero__fig figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(251, 247, 241, 0.85);
  background: rgba(23, 18, 14, 0.55);
  padding: 5px 10px;
  border-radius: var(--radius-sm);
}

.hero__scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(251, 247, 241, 0.55);
  animation: bob 2.4s ease-in-out infinite;
}

@keyframes bob {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 8px);
  }
}

/* ---------- 08. Brand message / differences ---------- */
.diff {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.diff__card {
  border: 1px solid rgba(176, 141, 87, 0.4);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  background: rgba(251, 247, 241, 0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.diff__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-1);
  background: var(--white);
}

.diff__icon {
  width: 44px;
  height: 44px;
  color: var(--wine);
  margin-bottom: 18px;
}

.diff__card h3 {
  font-size: 1.22rem;
}

.diff__card p {
  margin-top: 10px;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--muted);
}

/* ---------- 09. Journey (the fifth date) ---------- */
.journey {
  position: relative;
  overflow: hidden;
}

.journey__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.journey__stages {
  counter-reset: stage;
}

.stage {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(176, 141, 87, 0.3);
}

.stage:first-child {
  border-top: 1px solid rgba(176, 141, 87, 0.3);
}

.stage__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.9rem;
  color: var(--brass-3);
  line-height: 1;
  padding-top: 2px;
}

.stage h3 {
  font-size: 1.28rem;
}

.stage p {
  margin-top: 8px;
  font-size: 15.5px;
  color: var(--muted);
  max-width: 46ch;
}

.stage--fifth {
  background: linear-gradient(90deg, rgba(176, 141, 87, 0.14), transparent 70%);
  border-radius: var(--radius-md);
}

.journey__aside {
  position: sticky;
  top: calc(var(--header-h) + 28px);
  display: grid;
  gap: 22px;
}

.journey__aside p {
  color: var(--muted);
  font-size: 16px;
}

/* ---------- 10. How it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

/* ---- love stories gallery ---- */

.lovers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.lover { margin: 0; text-align: center; }

.lover__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(176, 141, 87, 0.42);
  background: var(--gold-pale);
  line-height: 0;
}

.lover__img img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.lover:hover .lover__img img { transform: scale(1.035); }

.lover figcaption {
  font-style: italic;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.55;
  padding: 14px 6px 2px;
}

.lovers__note {
  margin: 34px 0 0;
  text-align: center;
  color: var(--ink-dim);
}

.step {
  position: relative;
  border: 1px solid rgba(176, 141, 87, 0.42);
  border-radius: var(--radius-md);
  padding: 34px 30px 30px;
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-1);
}

.step__num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--brass-3);
}

.step h3 {
  margin-top: 18px;
}

.step p {
  margin-top: 12px;
  font-size: 15.5px;
  color: var(--muted);
}

.step .btn {
  margin-top: 22px;
}

/* ---------- 11. About ---------- */
.about__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}

.about__media {
  position: relative;
}

.about__img--main {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}

.about__img--main img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.about__img--float {
  position: absolute;
  right: -14px;
  bottom: -30px;
  width: 46%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 6px solid var(--paper);
  box-shadow: var(--shadow-2);
}

.about__img--float img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about__copy h3 {
  margin-top: 30px;
  font-size: 1.3rem;
}

.about__copy p {
  margin-top: 14px;
  color: var(--muted);
}

.about__values {
  margin-top: 26px;
  display: grid;
  gap: 12px;
}

.about__values li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 15.5px;
  color: var(--text);
}

.about__values li::before {
  content: "";
  flex: none;
  width: 22px;
  height: 2px;
  align-self: center;
  background: var(--brass);
}

/* ---------- 12. Dallas ---------- */
.dallas {
  position: relative;
  color: var(--paper);
  overflow: hidden;
}

.dallas__bg {
  position: absolute;
  inset: 0;
}

.dallas__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.05) brightness(0.62) sepia(0.18);
}

.dallas__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(23, 18, 14, 0.94) 0%, rgba(23, 18, 14, 0.72) 48%, rgba(23, 18, 14, 0.4) 100%);
}

.dallas__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.dallas h2 {
  color: var(--paper);
  margin-top: 14px;
}

.dallas__body {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.75;
  color: rgba(251, 247, 241, 0.85);
}

.dallas__points {
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.dallas__points li {
  display: flex;
  gap: 14px;
  align-items: baseline;
  font-weight: 600;
  font-size: 15.5px;
}

.dallas__points li::before {
  content: "—";
  color: var(--brass-2);
}

/* ---------- 13. CTA band ---------- */
.cta-band {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.cta-band__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 120% at 50% 0%, rgba(176, 141, 87, 0.16) 0%, transparent 62%),
    radial-gradient(60% 100% at 50% 110%, rgba(111, 42, 56, 0.35) 0%, transparent 65%);
}

.cta-band h2 {
  color: var(--paper);
}

.cta-band p {
  max-width: 560px;
  margin: 20px auto 0;
  color: rgba(251, 247, 241, 0.82);
  font-size: 17px;
}

.cta-band__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.cta-band__note {
  margin-top: 20px;
  font-size: 13.5px;
  color: rgba(251, 247, 241, 0.6);
}

/* ---------- 14. FAQ ---------- */
.faq {
  max-width: 780px;
  margin-inline: auto;
}

.faq__item {
  border-bottom: 1px solid rgba(176, 141, 87, 0.36);
}

.faq__item:first-child {
  border-top: 1px solid rgba(176, 141, 87, 0.36);
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

.faq__q:hover {
  color: var(--wine);
}

.faq__icon {
  flex: none;
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--brass);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--brass-3);
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
  background: var(--brass);
  color: var(--ink);
}

.faq__a-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}

.faq__item.is-open .faq__a-wrap {
  grid-template-rows: 1fr;
}

.faq__a {
  overflow: hidden;
}

.faq__a p {
  padding: 0 44px 26px 4px;
  color: var(--muted);
  font-size: 16px;
}

.faq__a .btn {
  display: inline-flex;
  margin: 0 0 26px 4px;
}

.faq__foot {
  margin-top: 40px;
  text-align: center;
}

/* ---------- 15. Contact ---------- */
.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.contact__card {
  border: 1px solid rgba(176, 141, 87, 0.4);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  background: var(--white);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-1);
}

.contact__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  color: var(--wine);
}

.contact__card h3 {
  font-size: 1.18rem;
}

.contact__card p {
  margin-top: 8px;
  font-size: 14.5px;
  color: var(--muted);
}

.contact__card a.contact__link {
  display: inline-block;
  margin-top: 14px;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--wine);
  text-decoration: none;
  border-bottom: 2px solid rgba(176, 141, 87, 0.5);
}

.contact__card a.contact__link:hover {
  color: var(--wine-2);
  border-bottom-color: var(--brass);
}

/* ---------- 16. Footer ---------- */
.footer {
  background: var(--ink-2);
  color: rgba(251, 247, 241, 0.78);
  padding: 64px 0 34px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(176, 141, 87, 0.22);
}

.footer .brand__name {
  color: var(--paper);
}

.footer .brand__name small {
  color: var(--brass-2);
}

.footer__tagline {
  margin-top: 16px;
  font-size: 15px;
  max-width: 34ch;
  color: rgba(251, 247, 241, 0.66);
}

.footer__loc {
  margin-top: 16px;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass-2);
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-2);
  margin-bottom: 18px;
}

.footer__links {
  display: grid;
  gap: 12px;
}

.footer__links a {
  color: rgba(251, 247, 241, 0.8);
  text-decoration: none;
  font-size: 15.5px;
}

.footer__links a:hover {
  color: var(--brass-2);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 26px;
  font-size: 13px;
  color: rgba(251, 247, 241, 0.5);
}

.footer__bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.footer__bottom a {
  color: rgba(251, 247, 241, 0.65);
  text-decoration: none;
}

.footer__bottom a:hover {
  color: var(--brass-2);
}

.footer__credits {
  margin-top: 14px;
  font-size: 12px;
  color: rgba(251, 247, 241, 0.38);
}

.footer__credits a {
  color: rgba(251, 247, 241, 0.5);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ---------- 17. Modal (Calendly) ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(23, 18, 14, 0.66);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal__panel {
  position: relative;
  width: min(100%, 860px);
  max-height: min(88dvh, 900px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-2);
  display: flex;
  flex-direction: column;
  transform: translateY(18px) scale(0.985);
  transition: transform 0.28s ease;
  overflow: hidden;
}

.modal.is-open .modal__panel {
  transform: translateY(0) scale(1);
}

.modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(176, 141, 87, 0.3);
  background: var(--paper);
}

.modal__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
}

.modal__title small {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

.modal__close {
  flex: none;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--brass);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease;
}

.modal__close:hover {
  background: var(--ink);
  color: var(--paper);
}

.modal__body {
  flex: 1;
  min-height: 0;
  position: relative;
}

.modal__calendly {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.modal__calendly iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.modal__success {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--paper);
  padding: 40px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal__success.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.modal__success-mark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--brass);
  color: var(--ink);
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 auto 22px;
}

.modal__loading {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--muted);
  gap: 14px;
}

/* body needs a stable height so the absolute views render */
.modal__body {
  min-height: min(560px, 62dvh);
}

.spinner {
  width: 34px;
  height: 34px;
  border: 3px solid rgba(176, 141, 87, 0.3);
  border-top-color: var(--brass-3);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ---------- Built-in booking form (Calendly disabled mode) ---------- */
.modal__fallback {
  position: absolute;
  inset: 0;
  overflow: auto;
  padding: 30px 28px 34px;
}

.book-form__lead {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 20px;
  max-width: 52ch;
}

.book-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.book-form__label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.book-form__label input,
.book-form__label select {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid rgba(176, 141, 87, 0.35);
  border-radius: var(--radius-sm);
  background: var(--white);
  font: inherit;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.book-form__label input:focus,
.book-form__label select:focus {
  outline: none;
  border-color: var(--brass-3);
  box-shadow: 0 0 0 3px rgba(176, 141, 87, 0.2);
}

.book-form__error {
  color: var(--wine);
  font-size: 13.5px;
  font-weight: 600;
  margin: 14px 0 0;
}

.book-form__fine {
  margin: 12px 0 0;
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 560px) {
  .book-form__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- 18. Floating apply pill ---------- */
.float-apply {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 150;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  background: var(--wine);
  color: var(--white);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(111, 42, 56, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
}

.float-apply.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.float-apply:hover {
  background: var(--wine-2);
  color: var(--white);
  transform: translateY(-2px);
}

/* ---------- 19. Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ---------- 20. A11y helpers ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ---------- 21. Responsive overrides ---------- */
@media (max-width: 1100px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__gallery {
    display: none;
  }

  .journey__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .journey__media {
    position: static;
    display: none;
  }

  .about__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .about__img--float {
    right: 12px;
    bottom: -22px;
  }

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

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

  .lovers {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    max-width: 420px;
    margin-inline: auto;
  }

  .contact__grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    max-width: 520px;
    margin-inline: auto;
  }
}

@media (max-width: 1000px) {
  .nav__links {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .nav__ctas .btn--ghost {
    display: none;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .diff {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }

  .float-apply {
    left: 18px;
    right: 18px;
    justify-content: center;
  }

  .hero__ctas .btn {
    width: 100%;
  }

  .cta-band__ctas .btn {
    width: 100%;
  }

  .stage {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
  }

  .stage__num {
    font-size: 1.6rem;
  }

  .nav__ctas .btn {
    display: none;
  }

  .faq__q {
    font-size: 1.05rem;
  }

  .faq__a p {
    padding-right: 4px;
  }

  .modal {
    padding: 0;
  }

  .modal__panel {
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
  }
}

@media (max-width: 520px) {
  .btn--lg {
    font-size: 15px;
    padding: 14px 24px;
  }
}