/* ===========================================================
   Hagen Does Cruises design tokens
   =========================================================== */
:root {
  /* color */
  --navy-deep:  #0A1826;
  --navy:       #0E2233;
  --navy-soft:  #17334A;
  --ocean:      #3C6E8F;
  --ocean-deep: #2C5470;
  --ivory:      #FAF6EF;
  --white:      #FFFFFF;
  --gold:       #C6A15B;
  --gold-soft:  #E4D2A7;
  --ink:        #10202E;
  --ink-70:     rgba(16, 32, 46, 0.72);
  --ink-55:     rgba(16, 32, 46, 0.56);
  --line:       rgba(16, 32, 46, 0.12);
  --line-on-dark: rgba(250, 246, 239, 0.16);
  --cream-70:   rgba(250, 246, 239, 0.78);
  --sand:       #F1EAD9;

  /* type */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* layout */
  --max: 1180px;
  --max-wide: 1400px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --radius: 2px;
  --header-h: 76px;    /* sticky header height, updated at runtime by main.js */
  --anchor-gap: 40px;  /* space between a section's top edge and its first content */
  --section-pad: clamp(4.5rem, 8vw, 7.5rem);                    /* standard section padding */
  --section-lead: calc(var(--section-pad) - var(--anchor-gap)); /* rhythm moved to the previous section */

  color-scheme: light;
}

/* ===========================================================
   Reset
   =========================================================== */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}
/* Nav landings. Cruises, Why Hajo, How It Works and Interline carry the id on
   the section itself and open with only --anchor-gap of top padding, so the
   section's top edge sits right under the sticky header and the heading
   follows 40px later; the rest of the usual rhythm lives in the previous
   section's bottom padding. About and Contact keep the id on their inner
   .wrap with a 40px scroll margin. */
.anchor { scroll-margin-top: var(--anchor-gap); }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
a { color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure { margin: 0; }
button { font: inherit; }

@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;
    scroll-behavior: auto !important;
  }
}

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

.wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--wide { max-width: var(--max-wide); }

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

.skip-link {
  position: absolute;
  left: 1rem; top: -3rem;
  background: var(--navy);
  color: var(--ivory);
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

/* ===========================================================
   Type
   =========================================================== */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow--on-light { color: var(--ocean-deep); }

h1, .h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.2vw + 1rem, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 2.6vw + 1rem, 2.9rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.25rem, 1vw + 1rem, 1.55rem);
  line-height: 1.25;
}
.lede {
  font-size: clamp(1.05rem, 0.4vw + 1rem, 1.2rem);
  color: var(--ink-70);
  line-height: 1.65;
  max-width: 42em;
}
.section-head {
  max-width: 40em;
  margin-bottom: clamp(2.25rem, 4vw, 3.5rem);
}
.section-head p { margin-top: 1rem; }
.section-head--center { margin-inline: auto; text-align: center; }

/* ===========================================================
   Buttons & links
   =========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.15s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--ivory);
  color: var(--navy);
}
.btn--primary:hover { background: var(--gold-soft); }

.btn--outline {
  background: transparent;
  color: var(--ivory);
  border-color: var(--line-on-dark);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold-soft); }

.btn--dark {
  background: var(--navy);
  color: var(--ivory);
}
.btn--dark:hover { background: var(--navy-soft); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.15rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.text-link:hover { border-color: var(--gold); color: var(--ocean-deep); }

/* ===========================================================
   Photography system
   Real photography drives most sections now. Each slot below is
   named for what it holds. Swap by replacing the --photo custom
   property with url(../images/<name>.jpg).
   =========================================================== */
.photo {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}
.photo::before {
  content: "";
  position: absolute; inset: 0;
  background-image: var(--photo);
  background-size: cover;
  background-position: var(--photo-pos, center);
  z-index: -2;
}
.photo::after {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(180deg, transparent 55%, rgba(8, 18, 28, 0.62) 100%);
  z-index: -1;
}

/* hero: copy sits lower-left over the ship photo. A dark-to-light wash
   anchors the text area (left + bottom) and clears toward the bow on the
   right so the ship reads through; deliberately lighter than the first pass. */
.photo--hero::after {
  background-image:
    linear-gradient(100deg, rgba(4, 10, 17, 0.66) 0%, rgba(4, 10, 17, 0.6) 34%, rgba(4, 10, 17, 0.22) 60%, transparent 78%),
    linear-gradient(180deg, transparent 22%, rgba(4, 10, 17, 0.36) 58%, rgba(4, 10, 17, 0.68) 100%);
}
/* final CTA: centered text over a brighter, high-key photo needs fuller coverage */
.photo--final::after {
  background-image:
    linear-gradient(180deg, rgba(6, 14, 22, 0.5) 0%, rgba(6, 14, 22, 0.56) 50%, rgba(6, 14, 22, 0.66) 100%);
}

.photo--hero   { --photo: url("../images/hero-cruise.jpg"); --photo-pos: 50% 100%; }
.photo--luxury { --photo: url("../images/luxury.jpg"); --photo-pos: center; }
.photo--final  { --photo: url("../images/final-cta.jpg"); --photo-pos: 60% 55%; }

@media (max-width: 860px) {
  .hero.photo--hero { --photo-pos: 42% 100%; }
}
@media (min-width: 1700px) {
  .hero.photo--hero { --photo-pos: 50% 80%; }
}

/* ===========================================================
   Header
   =========================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ivory);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(10, 24, 38, 0.06);
}
.site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.85rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--navy);
}
.brand img {
  height: 40px;
  width: auto;
}
.brand__word {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.1;
}
.brand__word small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--ocean-deep);
  margin-top: 0.15rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2vw, 2rem);
}
.nav__link {
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink-70);
  padding-block: 0.3rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav__link:hover { color: var(--navy); border-color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.header-cta { padding: 0.7rem 1.4rem; font-size: 0.88rem; }
.nav__cta { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--navy);
}
.nav-toggle svg { display: block; }

@media (max-width: 860px) {
  .nav {
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--ivory);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem var(--gutter);
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__link { font-size: 1.15rem; }
  .nav__cta { display: inline-flex; margin-top: 0.5rem; }
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
}

/* ===========================================================
   Hero
   =========================================================== */
.hero {
  min-height: min(94vh, 940px);
  display: flex;
  align-items: flex-end;
  color: var(--ivory);
  padding-top: 4rem;
}
.hero__inner {
  padding-block: clamp(2.25rem, 6vw, 4rem);
  max-width: 760px;
}
.hero .eyebrow { margin-bottom: 0.85rem; display: block; }
.hero h1 { color: var(--ivory); }
.hero__lede {
  margin-top: 1.1rem;
  font-size: clamp(1rem, 0.3vw + 0.95rem, 1.1rem);
  color: var(--cream-70);
  max-width: 34em;
}
.hero__actions {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ===========================================================
   Marquee (slim transition strip under the hero)
   =========================================================== */
.marquee {
  --marquee-duration: 75s;
  background: var(--white);
  /* bottom padding carries the lead space into the white Cruises section, so
     the strip runs straight into it with no band in between */
  padding-block: 0.95rem calc(0.95rem + var(--section-lead));
  overflow: hidden;
  white-space: nowrap;
}
.marquee:focus-visible { outline-offset: -3px; }
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll var(--marquee-duration) linear infinite;
  will-change: transform;
}
.marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.marquee__group span {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  padding-inline: 1.75rem;
  line-height: 1;
}
.marquee__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.marquee:hover .marquee__track,
.marquee:focus .marquee__track,
.marquee:focus-within .marquee__track { animation-play-state: paused; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  /* static: a single centred line, no movement */
  .marquee { white-space: normal; text-align: center; }
  .marquee__track { animation: none; width: auto; justify-content: center; }
  .marquee__group { justify-content: center; }
  .marquee__group + .marquee__group,
  .marquee__group span:not(:first-child),
  .marquee__group .marquee__dot { display: none; }
  .marquee__group span { line-height: 1.5; }
}

/* ===========================================================
   Why Hajo
   =========================================================== */
.why {
  padding-block: var(--anchor-gap) var(--section-pad);
  background: var(--ivory);
}
.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.pillar {
  padding: 2.4rem 2.2rem 2.4rem 0;
  border-right: 1px solid var(--line);
}
.pillar:last-child { border-right: none; }
.pillar:nth-child(n+2) { padding-left: 2.2rem; }
.pillar h3 {
  margin-bottom: 0.9rem;
  font-size: clamp(1.2rem, 0.7vw + 1rem, 1.4rem);
}
.pillar p { color: var(--ink-70); font-size: 0.98rem; }

@media (max-width: 860px) {
  .why__grid { grid-template-columns: 1fr; }
  .pillar, .pillar:nth-child(n+2) {
    padding: 2rem 0;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .pillar:last-child { border-bottom: none; }
}

/* ===========================================================
   Authority strip
   =========================================================== */
.authority {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.authority__grid {
  display: grid;
  grid-template-columns: 0.68fr 1fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.authority__photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
}
.authority__photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%; }
.authority__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.authority__stat {
  flex: 1 1 auto;
  min-width: 9rem;
  padding: 0 clamp(1.2rem, 3.5vw, 2.8rem);
  border-left: 1px solid var(--line);
}
.authority__stat:first-child { padding-left: 0; border-left: none; }
.authority__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3.2rem, 5vw, 4.8rem);
  color: var(--navy);
  line-height: 1;
}
.authority__label {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ocean-deep);
}
.authority__line {
  margin-top: 2.6rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink-70);
  max-width: 26em;
}

@media (max-width: 860px) {
  .authority__grid { grid-template-columns: 1fr; }
  .authority__photo { max-width: 280px; }
  .authority__stat {
    border-left: none;
    border-top: 1px solid var(--line);
    padding: 1.4rem 0 0;
    flex: 1 1 40%;
  }
  .authority__stat:first-child { border-top: none; padding-top: 0; }
}

/* ===========================================================
   Problem section
   =========================================================== */
.problem {
  /* bottom also carries How It Works' lead space */
  padding-block: clamp(4.5rem, 8vw, 7rem) calc(clamp(4.5rem, 8vw, 7rem) + var(--section-lead));
  background: var(--sand);
}
.problem__inner { max-width: 52rem; }
.problem h2 { max-width: 16em; }
.problem__questions {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.problem__questions p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 1vw + 0.9rem, 1.4rem);
  color: var(--navy);
  line-height: 1.4;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(16, 32, 46, 0.1);
}
.problem__questions p:last-child { border-bottom: none; padding-bottom: 0; }
.problem__resolve {
  margin-top: clamp(2rem, 4vw, 3rem);
  font-size: 1.1rem;
  color: var(--ink-70);
}

/* ===========================================================
   Inspiration gallery
   =========================================================== */
.inspiration {
  /* 40px lead-in; standard bottom padding (Why Hajo opens with its own 40px) */
  padding-block: var(--anchor-gap) var(--section-pad);
  background: var(--white);
}
.spotlight {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(1rem, 2.5vw, 1.75rem);
}
.spotlight__card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: var(--ivory);
}
.spotlight__card--wide { aspect-ratio: 5 / 4; }
.spotlight__card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}
.spotlight__card:hover img { transform: scale(1.035); }
.spotlight__card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8, 18, 28, 0.6) 100%);
}
.spotlight__caption {
  position: relative;
  z-index: 1;
  padding: 1.6rem;
}
.spotlight__caption span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
}
.spotlight__caption small {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.82rem;
  color: var(--cream-70);
}

.spotlight__side {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.5vw, 1.75rem);
}


@media (max-width: 860px) {
  .spotlight { grid-template-columns: 1fr; }
  .spotlight__card, .spotlight__card--wide { aspect-ratio: 4 / 3; }
}

/* ===========================================================
   About Hajo
   =========================================================== */
.about {
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
  background: var(--ivory);
}
.about__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.about__portrait {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.about__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 22%;
}
.about__frame {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(250, 246, 239, 0.55);
  pointer-events: none;
}
.about h2 { margin-bottom: 1.6rem; }
.about p { margin-bottom: 1.15rem; color: var(--ink-70); font-size: 1.02rem; }
.about p:last-of-type { margin-bottom: 0; }
.about__career {
  margin: 1.9rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about__career p {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--ink-70);
}
.about__sailed {
  margin-top: 2.2rem;
}
.about__sailed-label {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-55);
  margin-bottom: 0.8rem;
}
.about__sailed-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--navy);
}
.about__sailed-list li:not(:last-child)::after {
  content: "·";
  margin: 0 0.6rem;
  color: var(--gold);
}

@media (max-width: 860px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__portrait { max-width: 340px; margin-inline: auto; }
}

/* ===========================================================
   How it works
   =========================================================== */
.how {
  /* bottom also carries Interline's lead space */
  padding-block: var(--anchor-gap) calc(var(--section-pad) + clamp(4rem, 9vw, 6.5rem) - var(--anchor-gap));
  background: var(--ivory);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  list-style: none;
  padding-left: 0;
}
.step {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}
.step__num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1;
  color: var(--ocean-deep);
  margin-bottom: 1rem;
}
.step h3 { margin-bottom: 0.6rem; font-size: 1.2rem; }
.step p { color: var(--ink-70); font-size: 0.95rem; }
.how__cta { margin-top: 3rem; text-align: center; }

@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; gap: 1.8rem; }
}

/* ===========================================================
   Interline
   =========================================================== */
.interline {
  position: relative;
  color: var(--ivory);
  background: var(--navy);
  padding-block: var(--anchor-gap) clamp(4rem, 9vw, 6.5rem);
}
.interline__inner {
  max-width: 640px;
}
.interline .eyebrow { color: var(--gold); }
.interline h2 { color: var(--ivory); margin-top: 1rem; }
.interline p { color: var(--cream-70); margin-top: 1.2rem; font-size: 1.05rem; }
.interline__fine {
  margin-top: 1.8rem;
  font-size: 0.85rem;
  color: rgba(250, 246, 239, 0.6);
}
.interline__actions { margin-top: 2rem; }

/* ===========================================================
   Social proof
   =========================================================== */
.proof {
  padding-block: clamp(3.5rem, 6vw, 5rem);
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.proof p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink-55);
}
.proof span {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ocean-deep);
}

/* ===========================================================
   FAQ
   =========================================================== */
.faq {
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
  background: var(--ivory);
}
.faq__list { border-top: 1px solid var(--line); max-width: 46rem; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--navy);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary .plus {
  flex-shrink: 0;
  width: 22px; height: 22px;
  position: relative;
}
.faq__item summary .plus::before,
.faq__item summary .plus::after {
  content: "";
  position: absolute;
  background: var(--ocean-deep);
  transition: transform 0.25s ease;
}
.faq__item summary .plus::before { top: 50%; left: 0; width: 100%; height: 1px; transform: translateY(-50%); }
.faq__item summary .plus::after { left: 50%; top: 0; height: 100%; width: 1px; transform: translateX(-50%); }
.faq__item[open] summary .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq__item .faq__answer {
  padding-bottom: 1.6rem;
  color: var(--ink-70);
  max-width: 40rem;
  font-size: 0.98rem;
}
.faq__answer .confirm {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--navy);
  background: var(--gold-soft);
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
}

/* ===========================================================
   Final CTA
   =========================================================== */
.final-cta {
  color: var(--ivory);
  padding-block: clamp(5rem, 10vw, 8rem);
  text-align: center;
}
.final-cta__inner { max-width: 560px; margin-inline: auto; }
.final-cta h2 { color: var(--ivory); }
.final-cta p { margin-top: 1rem; color: var(--cream-70); font-size: 1.08rem; }
.final-cta .btn { margin-top: 2.2rem; }

/* ===========================================================
   Contact / enquiry form
   =========================================================== */
.contact {
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
  background: var(--white);
}
.contact__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2.5rem, 6vw, 5rem);
}
.contact__intro .eyebrow { display: block; margin-bottom: 1rem; }
.contact__intro p { color: var(--ink-70); margin-top: 1.1rem; }
.contact__details { margin-top: 2.2rem; }
.contact__details li {
  padding-block: 0.7rem;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}
.contact__details li:last-child { border-bottom: 1px solid var(--line); }
.contact__details a { text-decoration: none; font-weight: 600; }
.contact__details a:hover { color: var(--ocean-deep); }
.contact__details .label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-55);
  margin-bottom: 0.2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem 1.4rem;
}
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.field .hint { font-weight: 400; color: var(--ink-55); font-size: 0.8rem; }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  font: inherit;
  font-size: 0.96rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory);
  color: var(--ink);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ocean);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 96px; }

.field-group__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.7rem;
  display: block;
}
.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.choice {
  position: relative;
}
.choice input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.choice label {
  display: inline-flex;
  align-items: center;
  font-size: 0.86rem;
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  color: var(--ink-70);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.choice input:checked + label {
  border-color: var(--ocean-deep);
  background: var(--navy);
  color: var(--ivory);
}
.choice input:focus-visible + label { outline: 2px solid var(--gold); outline-offset: 2px; }

.radio-row { display: flex; gap: 0.6rem; }

.form-submit {
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.form-note { font-size: 0.82rem; color: var(--ink-55); max-width: 24rem; }
.form-status {
  margin-top: 1.2rem;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
  border: 1px solid var(--line);
}
.form-status--success { border-color: #7BA88A; background: rgba(123, 168, 138, 0.12); color: #2F5B41; }
.form-status--error { border-color: #C77B6B; background: rgba(199, 123, 107, 0.12); color: #8B3A2B; }

@media (max-width: 860px) {
  .contact__grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   Footer
   =========================================================== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(250, 246, 239, 0.94);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line-on-dark);
}
.footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 0.9rem; }
.footer__brand img {
  width: 240px;
  height: auto;
  margin-left: -6px; /* optical alignment: the artwork has a little internal left air */
}
.footer__brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: rgba(250, 246, 239, 0.94);
}

.footer__cols { display: flex; gap: clamp(2rem, 6vw, 5rem); flex-wrap: wrap; }
.footer__col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.9rem;
}
.footer__col li { margin-bottom: 0.55rem; font-size: 0.9rem; }
.footer__col a { text-decoration: none; color: rgba(250, 246, 239, 0.94); }
.footer__col a:hover { color: var(--ivory); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.6rem;
  font-size: 0.8rem;
  color: rgba(250, 246, 239, 0.94);
}
.footer__bottom a { text-decoration: none; color: rgba(250, 246, 239, 0.94); }
.footer__bottom a:hover { color: var(--ivory); }

/* ===========================================================
   Section rhythm helpers
   =========================================================== */

/* Single orchestrated entrance moment: hero only, on load */
.hero__inner {
  animation: hero-rise 0.9s cubic-bezier(0.19, 1, 0.22, 1) both;
}
@keyframes hero-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__inner { animation: none; }
}
