@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,650&family=Figtree:wght@400;500;600&display=swap");

:root {
  --ink: #142024;
  --ink-soft: #3a4a50;
  --mist: #f2eee6;
  --paper: #faf8f4;
  --sea: #0b3a4a;
  --sea-deep: #072833;
  --brass: #b08d57;
  --brass-soft: #d4b98a;
  --line: rgba(20, 32, 36, 0.12);
  --shadow: 0 18px 40px rgba(7, 40, 51, 0.12);
  --radius: 2px;
  --max: 1120px;
  --header-h: 76px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Figtree", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(176, 141, 87, 0.12), transparent 55%),
    linear-gradient(180deg, #e9f1f3 0%, var(--mist) 28%, var(--paper) 100%);
  line-height: 1.65;
  min-height: 100vh;
}

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

a {
  color: var(--sea);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
}

ul {
  margin: 0 0 1em;
  padding-left: 1.15em;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(242, 238, 230, 0.86);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--sea);
  text-decoration: none;
  letter-spacing: -0.03em;
}

.logo span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 0.15rem;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: transparent;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

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

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--sea);
}

.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
  font-size: 0.82rem;
}

.header-contact a {
  text-decoration: none;
  color: var(--ink-soft);
}

.header-contact a:hover {
  color: var(--sea);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border: 1px solid transparent;
  background: var(--sea);
  color: #fff;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn:hover {
  background: var(--sea-deep);
  color: #fff;
  transform: translateY(-2px);
}

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

.btn-ghost:hover {
  background: var(--sea);
  color: #fff;
}

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

.btn-brass:hover {
  background: #9a7644;
  color: #fff;
}

.btn-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
}

.btn-light:hover {
  background: #fff;
  color: var(--sea);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 40, 51, 0.78) 0%, rgba(7, 40, 51, 0.35) 55%, rgba(7, 40, 51, 0.2) 100%),
    linear-gradient(180deg, rgba(7, 40, 51, 0.15) 0%, rgba(7, 40, 51, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 4.5rem 0 4rem;
  max-width: 34rem;
  margin-left: max(1.25rem, calc((100% - var(--max)) / 2));
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  line-height: 0.95;
  margin: 0 0 1rem;
  color: #fff;
}

.hero h1 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 500;
  color: var(--brass-soft);
  margin-bottom: 0.85rem;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 30rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.section {
  padding: 5rem 0;
}

.section-tight {
  padding: 3.5rem 0;
}

.section-sea {
  background: var(--sea);
  color: #fff;
}

.section-sea a {
  color: var(--brass-soft);
}

.section-sea h2,
.section-sea h3 {
  color: #fff;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 38rem;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.split.reverse .split-copy {
  order: 2;
}

.split-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.rail {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

.rail-sticky h2 {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

.stack-list {
  display: grid;
  gap: 1.6rem;
}

.stack-item {
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--line);
}

.stack-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.stack-item h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.quote-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.quote-band blockquote {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.35;
  font-weight: 500;
}

.quote-band cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--sea-deep), var(--sea));
  color: #fff;
}

.cta-panel h2 {
  color: #fff;
  margin-bottom: 0.5rem;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 0;
}

.page-hero {
  padding: 4rem 0 2.5rem;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  max-width: 14ch;
}

.page-hero p {
  max-width: 40rem;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.legal {
  max-width: 48rem;
}

.legal h2 {
  font-size: 1.45rem;
  margin-top: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-aside {
  padding: 1.75rem 0;
}

.contact-aside h2 {
  font-size: 1.5rem;
}

.contact-line {
  margin: 0.85rem 0;
}

.contact-line a {
  text-decoration: none;
  font-weight: 600;
}

.map-wrap {
  margin-top: 1.5rem;
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 280px;
  background: #d7e2e6;
}

.map-wrap iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

.form {
  display: grid;
  gap: 1rem;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
}

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

.form input,
.form select,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 0.8rem 0.9rem;
  min-height: 48px;
}

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

.form .error {
  color: #8a2a2a;
  font-size: 0.85rem;
  font-weight: 500;
  display: none;
}

.form .field.invalid .error {
  display: block;
}

.form .field.invalid input,
.form .field.invalid select,
.form .field.invalid textarea {
  border-color: #8a2a2a;
}

.thanks-popup {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(7, 40, 51, 0.72);
}

.thanks-popup.show {
  display: flex;
}

.thanks-panel {
  width: min(100%, 400px);
  background: var(--paper);
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  animation: rise 0.4s ease;
}

.thanks-panel h2 {
  font-size: 1.55rem;
  margin-bottom: 0.5rem;
}

.thanks-panel p {
  color: var(--ink-soft);
  margin-bottom: 1.35rem;
  font-size: 1.05rem;
}

.thanks-panel .btn {
  min-width: 8rem;
}

body.popup-open {
  overflow: hidden;
}

.content-block {
  max-width: 40rem;
}

.content-block + .content-block {
  margin-top: 1.5rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 2rem;
  margin-top: 2rem;
}

.info-grid article h3 {
  font-size: 1.25rem;
  margin-bottom: 0.45rem;
}

@media (max-width: 780px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 0.75rem;
}

.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}

.gallery-strip figure:first-child {
  grid-row: span 2;
}

.gallery-strip figure:first-child img {
  min-height: 100%;
}

.note {
  font-size: 0.92rem;
  color: var(--ink-soft);
  border-left: 2px solid var(--brass);
  padding-left: 1rem;
}

.site-footer {
  background: var(--sea-deep);
  color: rgba(255, 255, 255, 0.86);
  padding: 3.5rem 0 1.5rem;
  margin-top: 2rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--brass-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.footer-grid h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.9rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  font-size: 0.88rem;
}

.age-gate,
.cookie-banner {
  position: fixed;
  z-index: 80;
}

.age-gate {
  inset: 0;
  background: rgba(7, 40, 51, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.age-gate.show {
  display: flex;
}

.age-panel {
  width: min(100%, 420px);
  background: var(--paper);
  padding: 2rem;
  box-shadow: var(--shadow);
  animation: rise 0.45s ease;
}

.age-panel h2 {
  font-size: 1.7rem;
}

.age-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.cookie-banner {
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1rem 1.15rem;
  max-width: 520px;
  margin-left: auto;
}

.cookie-banner.show {
  display: block;
  animation: rise 0.4s ease;
}

.cookie-banner p {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
}

.chat-widget {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
}

.chat-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 0;
  background: var(--sea);
  color: #fff;
  cursor: pointer;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
}

.chat-toggle svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.chat-panel {
  display: none;
  width: min(92vw, 320px);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.chat-panel.open {
  display: block;
  animation: rise 0.35s ease;
}

.chat-head {
  background: var(--sea);
  color: #fff;
  padding: 0.85rem 1rem;
  font-weight: 600;
}

.chat-body {
  padding: 1rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  min-height: 120px;
}

.chat-msg {
  background: var(--mist);
  padding: 0.75rem 0.85rem;
  margin-bottom: 0.65rem;
}

.error-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1.25rem;
}

.error-inner .lead {
  margin-inline: auto;
}

.error-inner .hero-actions {
  justify-content: center;
}

.error-page h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  margin-bottom: 0.2rem;
}

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

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

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 960px) {
  .split,
  .split.reverse,
  .rail,
  .quote-band,
  .cta-panel,
  .contact-grid,
  .footer-grid,
  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .split.reverse .split-copy {
    order: 0;
  }

  .gallery-strip figure:first-child {
    grid-row: auto;
  }

  .header-contact {
    display: none;
  }
}

@media (max-width: 780px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(250, 248, 244, 0.98);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1.25rem 1rem;
  }

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

  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-content {
    margin-left: auto;
    margin-right: auto;
  }

  .section {
    padding: 3.5rem 0;
  }

  .cta-panel {
    padding: 1.5rem;
  }

  .age-actions {
    flex-direction: column;
  }

  .chat-widget {
    bottom: 5.5rem;
  }
}
