:root {
  --salt-white: #f7f5f0;
  --paper: #fbfaf7;
  --atlantic: #0b3a5b;
  --atlantic-deep: #072a42;
  --sea-glass: #5b9a95;
  --coral: #e8a598;
  --coral-strong: #d97868;
  --brass: #c9a66b;
  --brass-soft: rgba(201, 166, 107, 0.45);
  --ink: #1a2a33;
  --muted: #5c6b73;
  --shadow: 0 18px 40px rgba(11, 58, 91, 0.08);
  --radius: 18px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Source Sans 3", "Segoe UI", sans-serif;
  --max: 1180px;
  --header-h: 84px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(91, 154, 149, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(232, 165, 152, 0.16), transparent 50%),
    linear-gradient(180deg, var(--salt-white) 0%, #eef3f4 48%, var(--salt-white) 100%);
  line-height: 1.65;
  min-height: 100vh;
}

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

a {
  color: var(--atlantic);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--coral-strong);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--atlantic-deep);
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1rem;
}

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

.eyebrow,
.footer-label {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sea-glass);
  margin: 0 0 0.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.55rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn--primary {
  background: var(--atlantic);
  color: var(--salt-white);
}

.btn--primary:hover {
  background: var(--coral-strong);
  color: #fff;
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--atlantic);
  border: 1px solid var(--brass);
}

.btn--ghost:hover {
  background: rgba(232, 165, 152, 0.18);
  color: var(--atlantic-deep);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(247, 245, 240, 0.72);
  border-bottom: 1px solid rgba(201, 166, 107, 0.28);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}

.site-header__wordmark {
  grid-column: 2;
  justify-self: center;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--atlantic-deep);
  text-decoration: none;
}

.site-header__wordmark span {
  display: block;
  font-size: 0.62em;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sea-glass);
}

.nav-toggle {
  grid-column: 1;
  width: 44px;
  height: 44px;
  border: 1px solid var(--brass-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--atlantic);
}

.site-nav {
  grid-column: 1 / -1;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0 0.75rem;
  display: none;
  flex-direction: column;
  gap: 0.65rem;
}

.site-nav.is-open .site-nav__list {
  display: flex;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
}

.site-nav__cta {
  display: inline-flex;
  margin-top: 0.35rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--atlantic);
  color: var(--salt-white) !important;
}

@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto 1fr;
  }

  .site-header__wordmark {
    grid-column: 2;
  }

  .site-nav {
    grid-column: 3;
    justify-self: end;
  }

  .site-nav__list {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1rem;
    padding: 0;
  }

  .site-nav__cta {
    margin-top: 0;
  }
}

main {
  overflow-x: clip;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
}

.section--narrow {
  max-width: 760px;
}

.section__head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section__head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.75rem;
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: none;
}

.stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.is-visible > *:nth-child(2) { transition-delay: 0.15s; }
.stagger.is-visible > *:nth-child(3) { transition-delay: 0.25s; }
.stagger.is-visible > *:nth-child(4) { transition-delay: 0.35s; }
.stagger.is-visible > *:nth-child(5) { transition-delay: 0.45s; }
.stagger.is-visible > * {
  opacity: 1;
  transform: none;
}

/* Hero — asymmetric magazine */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  display: grid;
  gap: 2rem;
  align-items: end;
}

.hero__copy {
  max-width: 34rem;
}

.hero__copy h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin: 0 0 1rem;
}

.hero__lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 28rem;
}

.hero__visual {
  position: relative;
  min-height: 320px;
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--brass-soft);
  box-shadow: var(--shadow);
}

.hero__layer {
  position: absolute;
  width: 48%;
  bottom: -8%;
  left: -4%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--brass);
  box-shadow: var(--shadow);
  transform: translateZ(0);
  will-change: transform;
}

.hero__layer img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 0.95fr 1.05fr;
    min-height: calc(100vh - var(--header-h) - 2rem);
    padding-top: 2rem;
  }

  .hero__visual {
    min-height: 520px;
  }
}

.card {
  background: var(--paper);
  border: 1px solid var(--brass-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(11, 58, 91, 0.12);
}

.card__image {
  margin: -1.6rem -1.6rem 1.2rem;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  aspect-ratio: 16/10;
}

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

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.55rem;
}

.card p {
  color: var(--muted);
}

.card__meta {
  font-size: 0.9rem;
  color: var(--sea-glass);
  margin-bottom: 0.4rem;
}

.grid-2 {
  display: grid;
  gap: 1.5rem;
}

.grid-3 {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 720px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.band {
  background: linear-gradient(120deg, rgba(11, 58, 91, 0.94), rgba(91, 154, 149, 0.88));
  color: var(--salt-white);
  border-radius: calc(var(--radius) + 8px);
  padding: 2.5rem;
  margin: 0 1.5rem;
  max-width: calc(var(--max) - 3rem);
  margin-left: auto;
  margin-right: auto;
}

.band h2 {
  color: var(--salt-white);
  margin-top: 0;
}

.band p {
  color: rgba(247, 245, 240, 0.88);
  max-width: 40rem;
}

.quote-card {
  border-left: 3px solid var(--brass);
  padding-left: 1.25rem;
}

.quote-card blockquote {
  margin: 0 0 1rem;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--atlantic-deep);
}

.quote-card cite {
  font-style: normal;
  color: var(--muted);
  font-size: 0.95rem;
}

.page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 5rem;
}

.page__header {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.page__title {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  margin: 0 0 0.75rem;
}

.page__lead {
  font-size: 1.15rem;
  color: var(--muted);
}

.prose h2 {
  margin-top: 2.2rem;
  font-size: 1.85rem;
}

.prose h3 {
  margin-top: 1.6rem;
  font-size: 1.35rem;
}

.prose ul,
.prose ol {
  padding-left: 1.2rem;
}

.prose li {
  margin-bottom: 0.45rem;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.prose th,
.prose td {
  border: 1px solid var(--brass-soft);
  padding: 0.7rem 0.85rem;
  text-align: left;
  vertical-align: top;
}

.prose th {
  background: rgba(91, 154, 149, 0.12);
  font-family: var(--font-serif);
}

.detail-hero {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.detail-hero img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--brass-soft);
  aspect-ratio: 16/9;
  object-fit: cover;
}

@media (min-width: 900px) {
  .detail-hero {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

.detail-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

.detail-list div {
  background: var(--paper);
  border: 1px solid var(--brass-soft);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
}

.detail-list h3 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
}

.form {
  display: grid;
  gap: 1rem;
  max-width: 560px;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.form input,
.form select,
.form textarea {
  font: inherit;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--brass-soft);
  background: #fff;
  color: var(--ink);
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.form__error {
  color: #9b3b2e;
  font-size: 0.88rem;
  font-weight: 500;
  min-height: 1.1em;
}

.form-status {
  margin-top: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-weight: 500;
}

.form-status.is-success {
  background: rgba(91, 154, 149, 0.18);
  color: var(--atlantic-deep);
}

.form-status.is-error {
  background: rgba(217, 120, 104, 0.2);
  color: #7a2f24;
}

.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 880px) {
  .contact-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.contact-card {
  background: var(--paper);
  border: 1px solid var(--brass-soft);
  border-radius: var(--radius);
  padding: 1.75rem;
  height: fit-content;
}

.contact-card address {
  font-style: normal;
  margin-bottom: 1rem;
}

.price-block {
  display: grid;
  gap: 1.25rem;
}

.price-row {
  display: grid;
  gap: 0.35rem;
  padding: 1.4rem 1.5rem;
  background: var(--paper);
  border: 1px solid var(--brass-soft);
  border-radius: var(--radius);
}

.price-row strong {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--atlantic-deep);
}

.timeline {
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
}

.timeline__item {
  position: relative;
  padding: 1.4rem 1.4rem 1.4rem 4rem;
  background: var(--paper);
  border: 1px solid var(--brass-soft);
  border-radius: var(--radius);
}

.timeline__item::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1.1rem;
  top: 1.3rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--atlantic);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  border-top: 1px solid rgba(201, 166, 107, 0.35);
  background: rgba(255, 255, 255, 0.45);
}

.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.5rem 2rem;
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .site-footer__inner {
    grid-template-columns: 1.4fr 0.8fr 1fr 1.1fr;
  }
}

.site-footer__name {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  margin: 0 0 0.75rem;
  color: var(--atlantic-deep);
}

.site-footer__tag,
.site-footer p {
  color: var(--muted);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.45rem;
}

.site-footer a {
  text-decoration: none;
}

.site-footer__address {
  font-style: normal;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.newsletter-form input {
  flex: 1 1 160px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--brass-soft);
  font: inherit;
}

.site-footer__legal {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem 1.5rem 2rem;
  border-top: 1px solid rgba(201, 166, 107, 0.25);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer__legal ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
}

.cookie-banner__inner {
  max-width: 720px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--brass);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.4rem;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.error-page {
  text-align: center;
  padding: 6rem 1.5rem;
}

.error-page h1 {
  font-size: clamp(3rem, 8vw, 5rem);
  margin-bottom: 0.5rem;
}

.story {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .story {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.asymmetric {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .asymmetric {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }

  .asymmetric--flip {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .asymmetric--flip .asymmetric__media {
    order: -1;
  }
}

.asymmetric__media img {
  border-radius: var(--radius);
  border: 1px solid var(--brass-soft);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
}
