/* ==========================================================================
   Integrity Mobile Notary — "The Witnessed Moment"
   Palette drawn from the brand mark: ink navy #0a2440 · quill teal #4a8577
   Type: Fraunces (display) · Archivo (text/UI) · IBM Plex Mono (procedural)
   ========================================================================== */

/* ---------- self-hosted fonts (latin subsets) ---------- */

@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url("../fonts/fraunces-normal-300-600-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Fraunces";
  font-style: italic;
  font-weight: 300 600;
  font-display: swap;
  src: url("../fonts/fraunces-italic-300-600-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/archivo-normal-400-600-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/ibm-plex-mono-normal-400-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/ibm-plex-mono-normal-500-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* size-matched local fallbacks to minimize font-swap layout shift */
@font-face {
  font-family: "Fraunces-fallback";
  src: local("Georgia");
  size-adjust: 103%;
  ascent-override: 93%;
  descent-override: 24%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "Archivo-fallback";
  src: local("Arial");
  size-adjust: 99%;
  ascent-override: 90%;
  descent-override: 22%;
  line-gap-override: 0%;
}
@font-face {
  font-family: "PlexMono-fallback";
  src: local("Courier New");
  size-adjust: 105%;
  ascent-override: 98%;
  descent-override: 27%;
  line-gap-override: 0%;
}

:root {
  /* color */
  --ink: #0e2a47;          /* headings, body on paper */
  --ink-deep: #081c31;     /* dark sections */
  --ink-deeper: #06141f;   /* footer */
  --teal: #386e60;         /* brand accent, AA on paper with margin */
  --teal-bright: #5ea28f;  /* accents on dark */
  --sage: #a8c5bb;         /* soft accent on dark */
  --paper: #f7f3ea;        /* warm ground */
  --paper-raised: #fffdf7; /* cards on paper */
  --line: #ddd5c4;         /* hairlines on paper */
  --line-dark: rgba(247, 243, 234, 0.14);

  /* type */
  --font-display: "Fraunces", "Fraunces-fallback", Georgia, serif;
  --font-text: "Archivo", "Archivo-fallback", -apple-system, "Helvetica Neue", sans-serif;
  --font-mono: "IBM Plex Mono", "PlexMono-fallback", "SF Mono", monospace;

  /* rhythm */
  --space-section: clamp(5rem, 12vw, 9rem);
  --radius: 14px;
  --header-h: 82px;
}

/* ---------- reset & base ---------- */

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

h1, h2, h3 { margin: 0 0 0.6em; text-wrap: balance; }
p { margin: 0 0 1em; text-wrap: pretty; }

::selection { background: var(--teal); color: var(--paper); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.skip-link {
  position: fixed; top: -100%; left: 1rem; z-index: 100;
  background: var(--ink); color: var(--paper);
  padding: 0.6rem 1rem; border-radius: 0 0 8px 8px;
  font-family: var(--font-mono); font-size: 0.8rem; text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

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

/* ---------- typography ---------- */

h1 {
  font-family: var(--font-display);
  font-weight: 380;
  font-size: clamp(2.5rem, 6.4vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 100;
}

h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 80;
}

h1 em, h2 em {
  font-style: italic;
  font-weight: 340;
  color: var(--teal);
}

.kicker {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 1.4rem;
}
.kicker::before {
  content: "";
  display: inline-block;
  width: 2rem; height: 1px;
  background: currentColor;
  vertical-align: middle;
  margin-right: 0.8rem;
}
.kicker-light { color: var(--sage); }

.section-sub {
  max-width: 34em;
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--ink) 78%, var(--paper));
  margin-bottom: 3rem;
}
.section-sub-light { color: var(--sage); }

.heading-light { color: var(--paper); }
.heading-light em { color: var(--teal-bright); }

.placeholder-token {
  font-family: var(--font-mono);
  font-size: 0.85em;
  padding: 0.05em 0.45em;
  border: 1px dashed currentColor;
  border-radius: 6px;
  opacity: 0.75;
  white-space: nowrap;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: 1.05rem 1.9rem;
  border-radius: 999px;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.3, 1), box-shadow 0.25s, background-color 0.25s, color 0.25s;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 1px 2px rgba(8, 28, 49, 0.25);
}
.btn-primary:hover {
  background: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -8px rgba(8, 28, 49, 0.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  color: var(--ink);
  border-color: color-mix(in srgb, var(--ink) 35%, transparent);
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(14, 42, 71, 0.05); }

.btn-small { padding: 0.7rem 1.3rem; font-size: 0.9rem; }
.btn-full { width: 100%; }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -20px rgba(8, 28, 49, 0.35);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand img {
  width: auto;
  height: 52px;
  transition: height 0.3s;
}
.site-header.is-scrolled .brand img { height: 44px; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.4vw, 2rem);
  list-style: none;
  margin: 0; padding: 0;
}
.nav-menu a:not(.btn) {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding: 0.3rem 0;
}
.nav-menu a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.nav-menu a:not(.btn):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.75rem;
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  width: 26px; height: 2px;
  background: var(--ink);
  margin: 6px 0;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(4rem, 9vw, 7rem);
  overflow: clip;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.hero-sub {
  max-width: 32em;
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: color-mix(in srgb, var(--ink) 80%, var(--paper));
  margin: 1.6rem 0 2.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.4rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.8rem;
  list-style: none;
  margin: 0; padding: 0;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
}
.hero-meta li::before {
  content: "✓";
  margin-right: 0.5em;
  font-weight: 600;
}

/* ink underline under "witness" */
.ink-word { position: relative; white-space: nowrap; }
.ink-underline {
  position: absolute;
  left: -2%; bottom: -0.18em;
  width: 104%; height: 0.32em;
  color: var(--teal);
  overflow: visible;
}
.ink-underline path {
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
  animation: draw-ink 1.1s cubic-bezier(0.5, 0, 0.3, 1) 0.9s forwards;
}

@keyframes draw-ink { to { stroke-dashoffset: 0; } }

/* hero visual: certificate + seal */
.hero-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 430px);
}

.cert-card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.3rem);
  box-shadow:
    0 1px 2px rgba(8, 28, 49, 0.06),
    0 24px 48px -24px rgba(8, 28, 49, 0.35);
  transform: rotate(-1.2deg);
}

.cert-heading {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--teal);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.9rem;
  margin-bottom: 1.1rem;
}

.cert-line {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  margin: 0 0 0.25rem;
  color: color-mix(in srgb, var(--ink) 85%, var(--paper));
}

.cert-body {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  margin: 1.1rem 0 0.4rem;
}

.cert-signature {
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  margin-bottom: 0.4rem;
}
.signature-path { width: 78%; }
.signature-path path {
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
  animation: draw-ink 2.4s cubic-bezier(0.45, 0, 0.35, 1) 1.4s forwards;
}
.cert-sig-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ink) 68%, var(--paper));
  padding-bottom: 0.35rem;
}

.cert-footnote {
  font-size: 0.78rem;
  line-height: 1.55;
  color: color-mix(in srgb, var(--ink) 62%, var(--paper));
  margin: 0.9rem 0 0;
}

.seal-ring {
  position: absolute;
  right: -34px;
  bottom: -44px;
  width: 158px;
  color: var(--teal);
  opacity: 0.92;
  filter: drop-shadow(0 6px 14px rgba(8, 28, 49, 0.18));
}
.seal-text {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.25em;
  fill: currentColor;
  transform-origin: 100px 100px;
  animation: seal-rotate 40s linear infinite;
}
@keyframes seal-rotate { to { transform: rotate(360deg); } }

/* ---------- city strip ---------- */

.city-strip {
  background: var(--ink);
  color: var(--sage);
  overflow: hidden;
  padding: 0.85rem 0;
  border-block: 1px solid var(--ink-deep);
}
.city-track {
  display: flex;
  gap: 1.6rem;
  width: max-content;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- sections shared ---------- */

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

section { padding: var(--space-section) 0; }

/* ---------- journey ---------- */

.journey { background: var(--paper); }

.journey-track { position: relative; margin-top: 3.5rem; }

.journey-path {
  position: absolute;
  top: 12px;
  left: 0;
  width: 100%;
  height: 60px;
  color: var(--teal);
}
.journey-line {
  stroke-dasharray: 1300;
  stroke-dashoffset: 1300;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.4, 0, 0.3, 1);
}
.journey-track.is-drawn .journey-line { stroke-dashoffset: 0; }

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  list-style: none;
  margin: 0; padding: 0;
  counter-reset: step;
}

.journey-step { position: relative; padding-top: 4.4rem; }

.step-num {
  position: absolute;
  top: 0; left: 0;
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  background: var(--paper-raised);
  border: 1.5px solid var(--teal);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--teal);
  box-shadow: 0 0 0 8px var(--paper);
}

.journey-step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.journey-step p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--ink) 78%, var(--paper));
  margin: 0;
}

/* ---------- moments ---------- */

.moments {
  background: linear-gradient(var(--paper), color-mix(in srgb, var(--paper) 88%, var(--sage)));
}

.moments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.4vw, 2rem);
}

.moment-card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1), box-shadow 0.35s, border-color 0.35s;
}
.moment-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--teal) 55%, var(--line));
  box-shadow: 0 24px 44px -26px rgba(8, 28, 49, 0.4);
}

.moment-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.42rem;
  line-height: 1.2;
}
.moment-card > p {
  font-size: 0.96rem;
  color: color-mix(in srgb, var(--ink) 78%, var(--paper));
  flex-grow: 1;
}

.moment-card details {
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
  margin-top: 0.4rem;
}
.moment-card summary {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.moment-card summary::-webkit-details-marker { display: none; }
.moment-card summary::after {
  content: "+";
  font-size: 1.1rem;
  font-weight: 400;
  transition: transform 0.3s;
}
.moment-card details[open] summary::after { transform: rotate(45deg); }

.moment-card details ul {
  margin: 0.9rem 0 0.2rem;
  padding: 0;
  list-style: none;
}
.moment-card details li {
  font-size: 0.9rem;
  padding: 0.32rem 0 0.32rem 1.2rem;
  position: relative;
  color: color-mix(in srgb, var(--ink) 82%, var(--paper));
}
.moment-card details li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--teal);
}

/* ---------- credentials ---------- */

.credentials {
  position: relative;
  background: var(--ink-deep);
  color: var(--paper);
  overflow: clip;
}

.cred-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(560px 420px at 82% 18%, rgba(94, 162, 143, 0.24), transparent 65%),
    radial-gradient(640px 500px at 8% 88%, rgba(63, 122, 108, 0.18), transparent 65%),
    radial-gradient(480px 360px at 45% 55%, rgba(14, 42, 71, 0.65), transparent 70%);
  pointer-events: none;
}

.credentials .section-inner { position: relative; }

.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
  margin-top: 3rem;
}

.cred-card {
  background: rgba(247, 243, 234, 0.055);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 1.7rem 1.5rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background-color 0.35s, border-color 0.35s, transform 0.35s cubic-bezier(0.2, 0.8, 0.3, 1);
}
.cred-card:hover {
  background: rgba(247, 243, 234, 0.09);
  border-color: rgba(94, 162, 143, 0.45);
  transform: translateY(-4px);
}

.cred-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 0.9rem;
}
.cred-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 450;
  line-height: 1.25;
  margin-bottom: 0.55rem;
  color: var(--paper);
}
.cred-detail {
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--sage);
  margin: 0;
}

.cred-note {
  margin-top: 2.4rem;
  font-size: 0.88rem;
  color: var(--sage);
}

/* ---------- about ---------- */

.about { background: var(--paper); }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.about-photo { position: relative; max-width: 420px; }

.about-photo-frame {
  position: relative;
  border-radius: 220px 220px var(--radius) var(--radius); /* arched doorway — arrival */
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -30px rgba(8, 28, 49, 0.45);
}
.about-photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 6px var(--paper);
  pointer-events: none;
}
.about-photo::before {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1.5px solid var(--teal);
  border-radius: 220px 220px var(--radius) var(--radius);
  opacity: 0.5;
  z-index: -1;
}

.about-photo-caption {
  margin-top: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  text-align: center;
}

.about-copy p {
  font-size: 1.08rem;
  color: color-mix(in srgb, var(--ink) 84%, var(--paper));
}
.about-copy .kicker { margin-bottom: 1.4rem; }

.about-sig {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--teal);
  margin: 1.4rem 0 2rem;
}

/* ---------- booking ---------- */

.booking {
  background: linear-gradient(color-mix(in srgb, var(--paper) 88%, var(--sage)), var(--paper));
}

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

.booking-points {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
}
.booking-points li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.7rem;
  font-size: 0.98rem;
}
.booking-points li::before {
  content: "";
  position: absolute;
  left: 0; top: 1.05em;
  width: 0.9rem; height: 1.5px;
  background: var(--teal);
}
.booking-points strong { color: var(--ink); }

.booking-alt { font-size: 0.95rem; color: color-mix(in srgb, var(--ink) 72%, var(--paper)); }

.phone-link, .agency-link {
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--teal) 45%, transparent);
  transition: border-color 0.25s, color 0.25s;
}
.phone-link:hover, .agency-link:hover { border-bottom-color: var(--teal); }
.site-footer .phone-link, .agency-link { color: var(--teal-bright); }

.booking-form {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: 0 30px 60px -35px rgba(8, 28, 49, 0.4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.form-field { margin-bottom: 1.15rem; }

.form-field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.45rem;
}
.form-field .optional {
  color: color-mix(in srgb, var(--ink) 65%, var(--paper));
  letter-spacing: 0.1em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-text);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 0.8rem 0.95rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(63, 122, 108, 0.18);
}
.form-field textarea { resize: vertical; }

.form-status {
  margin: 0.9rem 0 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--teal);
  min-height: 1.4em;
}
.form-note {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--ink) 68%, var(--paper));
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--ink-deeper);
  color: var(--sage);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 4fr) minmax(0, 3fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-dark);
}

.footer-brand img { width: min(240px, 60%); margin-bottom: 1.4rem; }
.footer-brand p { font-size: 0.95rem; max-width: 30em; }

.footer-col h3 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-bright);
  margin-bottom: 1rem;
}
.footer-col p { font-size: 0.9rem; line-height: 1.7; }

.footer-legal {
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem 3rem;
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--sage) 75%, var(--ink-deeper));
}
.footer-legal p { margin: 0; max-width: 48em; }

/* ---------- reveal animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s cubic-bezier(0.3, 0, 0.3, 1), transform 0.7s cubic-bezier(0.3, 0, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ---------- responsive ---------- */

@media (max-width: 1020px) {
  .journey-steps { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 2rem; }
  .journey-path { display: none; }
  .moments-grid { grid-template-columns: repeat(2, 1fr); }
  .cred-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { justify-self: start; margin-top: 1rem; }
  .seal-ring { right: -8px; bottom: -34px; width: 118px; opacity: 0.75; }
  .about-grid, .booking-grid { grid-template-columns: 1fr; }
  .about-photo { margin: 0 auto; }

  .nav-toggle { display: block; }
  .nav-menu {
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper-raised);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px -24px rgba(8, 28, 49, 0.4);
    padding: 0.5rem 0 1rem;
    display: none;
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu li { padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
  .nav-menu a:not(.btn) {
    display: block;
    padding: 0.85rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--line);
  }
  .nav-menu a:not(.btn)::after { display: none; }
  .nav-cta-item { margin-top: 1rem; }
  .nav-cta-item .btn { display: block; text-align: center; }
}

@media (max-width: 560px) {
  .journey-steps { grid-template-columns: 1fr; }
  .journey-step {
    padding-top: 0;
    padding-left: 5rem;
    min-height: 70px;
  }
  .step-num { width: 52px; height: 52px; }
  .journey-step:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 26px;
    top: 60px;
    bottom: -2.5rem;
    width: 1.5px;
    background: linear-gradient(var(--teal), color-mix(in srgb, var(--teal) 30%, var(--paper)));
    opacity: 0.5;
  }
  .moments-grid { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .brand img { height: 44px; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .ink-underline path,
  .signature-path path { animation: none; stroke-dashoffset: 0; }
  .journey-line { transition: none; stroke-dashoffset: 0; }
  .seal-text { animation: none; }
  .city-track { animation: none; }
  .btn, .moment-card, .cred-card { transition: none; }
}
