:root {
  --bg: #f7f9fa;
  --surface: #ffffff;
  --surface-alt: #eaeff2;
  --text: #15202a;
  --text-muted: #4c5c68;
  --border: rgba(21, 32, 42, 0.12);
  --accent: #2b6a8f;
  --accent-2: #93714a;
  --secondary: #1f3242;
  --on-accent: #ffffff;
  --dark-band: #122029;
  --radius: 20px;
  --radius-btn: 999px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.14);
  --font-heading: 'Lucida Bright', Georgia, serif;
  --font-body: 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
  --max: 1120px;
  --section-pad: 88px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.68;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--text);
}

h1 {
  font-size: clamp(34px, 5.4vw, 56px);
  line-height: 1.16;
}

h2 {
  font-size: clamp(24px, 3.8vw, 36px);
}

h3 {
  font-size: clamp(20px, 2.4vw, 26px);
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

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

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.accent-rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  border: 0;
  margin: 0 0 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.72rem 1.35rem;
  border-radius: var(--radius-btn);
  border: none;
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.btn:hover {
  background: var(--secondary);
  color: var(--on-accent);
}

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

.btn--ghost:hover {
  background: var(--surface-alt);
  color: var(--secondary);
}

.btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-brand-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.25rem 0.85rem;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
}

.brand-lockup img {
  width: 42px;
  height: 49px;
  object-fit: contain;
}

.brand-lockup span {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.header-rule {
  height: 1px;
  background: var(--border);
  border: 0;
  margin: 0;
}

.header-nav-row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.55rem 1.25rem 0.7rem;
  position: relative;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

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

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.15rem 1.35rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.35rem 0;
}

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

.independence-notice {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.independence-notice p {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 0.55rem 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--text-muted);
}

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

.section--alt {
  background: var(--surface-alt);
}

.section--dark {
  background: var(--dark-band);
  color: rgba(255, 255, 255, 0.88);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark .kicker {
  color: #fff;
}

.section--dark .kicker {
  color: rgba(255, 255, 255, 0.62);
}

.section--dark .accent-rule {
  background: var(--accent-2);
}

.section--dark a {
  color: #9ec6dd;
}

.section--surface {
  background: var(--surface);
}

.page-title-block {
  padding: calc(var(--section-pad) * 0.7) 0 calc(var(--section-pad) * 0.45);
}

.page-title-block .lede {
  max-width: 62ch;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.hero-quiet {
  background: var(--surface-alt);
  padding: calc(var(--section-pad) * 1.05) 0 calc(var(--section-pad) * 0.95);
}

.hero-quiet .intro {
  max-width: 62ch;
  color: var(--text-muted);
  font-size: 1.08rem;
}

.category-rows {
  display: flex;
  flex-direction: column;
}

.category-row {
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--border);
}

.category-row:first-child {
  border-top: 1px solid var(--border);
}

.category-row h2 {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 28px);
}

.category-row p {
  margin: 0;
  color: var(--text-muted);
}

.mission-wrap {
  max-width: 68ch;
  margin: 0 auto;
  text-align: left;
}

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

.notice-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem;
  background: var(--surface);
  color: var(--text-muted);
  font-size: 0.95rem;
}

.section--dark .notice-panel {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
}

.arrival-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.arrival-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem 1.5rem;
  background: var(--surface);
  overflow: hidden;
  min-height: 180px;
}

.arrival-card .num {
  position: absolute;
  top: 0.4rem;
  right: 0.9rem;
  font-family: var(--font-heading);
  font-size: clamp(56px, 8vw, 84px);
  line-height: 1;
  color: var(--border);
  font-weight: 600;
  pointer-events: none;
}

.arrival-card h3 {
  position: relative;
  margin-bottom: 0.55rem;
}

.arrival-card p {
  position: relative;
  color: var(--text-muted);
  margin: 0;
  font-size: 0.98rem;
}

.catalog-close {
  padding: 0 0 var(--section-pad);
}

.catalog-close p {
  max-width: 68ch;
  color: var(--text-muted);
}

.water-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.water-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}

.water-row__thumb {
  width: 120px;
  height: 120px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}

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

.water-row__body h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(20px, 2.4vw, 26px);
}

.water-row__meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}

.water-row__body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.grand-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.grand-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 0;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.grand-row--flip {
  grid-template-columns: 1fr 40%;
}

.grand-row--flip .grand-row__media {
  order: 2;
}

.grand-row--flip .grand-row__body {
  order: 1;
}

.grand-row__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.grand-row__body {
  padding: 2rem 2.1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
}

.grand-row__body h2 {
  margin: 0;
}

.grand-row__meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.grand-row__body p {
  margin: 0;
  color: var(--text-muted);
}

.grand-row__body .btn {
  align-self: flex-start;
  margin-top: 0.4rem;
}

.notes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.notes-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.notes-card--bottom {
  flex-direction: column-reverse;
}

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

.notes-card__body {
  padding: 1.6rem 1.55rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.notes-card__body h2 {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 24px);
}

.notes-card__meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.notes-card__body p {
  margin: 0;
  color: var(--text-muted);
}

.notes-card__body .btn {
  align-self: flex-start;
  margin-top: 0.35rem;
}

.editorial-lead {
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  line-height: 1.55;
  max-width: none;
  color: var(--text);
  margin-bottom: 2.5rem;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
}

.editorial-grid section h2 {
  margin-top: 0;
}

.editorial-grid section p {
  color: var(--text-muted);
}

.contact-intro {
  max-width: 62ch;
  margin: 0 auto 2rem;
  text-align: center;
  color: var(--text-muted);
}

.contact-panel {
  max-width: 560px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 2rem 1.75rem;
}

.contact-email-line {
  max-width: 560px;
  margin: 1.5rem auto 0;
  text-align: center;
  color: var(--text-muted);
}

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

.form-field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
}

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

.form-agree {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.form-agree input {
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.form-agree label {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.form-error {
  display: none;
  color: #8b2e2e;
  font-size: 0.85rem;
  margin-top: 0.35rem;
}

.form-error.is-visible {
  display: block;
}

.form-status {
  margin-top: 0.85rem;
  color: #8b2e2e;
  font-size: 0.9rem;
}

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

.confirm-panel h2 {
  margin-bottom: 0.75rem;
}

.confirm-panel p {
  color: var(--text-muted);
}

.legal-body {
  padding-bottom: var(--section-pad);
}

.legal-body h2 {
  margin-top: 2rem;
}

.legal-body h3 {
  margin-top: 1.25rem;
}

.legal-body p,
.legal-body li {
  color: var(--text-muted);
}

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

.sitemap-group h2 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.sitemap-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sitemap-group li {
  margin-bottom: 0.55rem;
}

.sitemap-group a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}

.sitemap-group a:hover {
  color: var(--accent);
}

.site-footer {
  background: var(--surface);
  border-top: 2px solid var(--accent);
  margin-top: auto;
}

.footer-brand-band {
  padding: 3.5rem 0 2rem;
}

.footer-brand-band .brand-lockup {
  margin-bottom: 1rem;
}

.footer-brand-band .brand-lockup span {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.footer-blurb {
  max-width: 58ch;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
}

.footer-about {
  max-width: 68ch;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 0 2rem;
}

.footer-links-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 1.75rem;
  padding-bottom: 2rem;
  align-items: start;
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.footer-col h3 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.9rem;
}

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

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

.footer-col a,
.back-to-top {
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
}

.footer-col a:hover,
.back-to-top:hover {
  color: var(--accent);
}

.back-to-top {
  justify-self: end;
  align-self: start;
  font-weight: 600;
  white-space: nowrap;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.4rem 0 1.75rem;
  text-align: center;
}

.footer-bottom .inde-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: 72ch;
  margin: 0 auto 0.85rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.1rem;
  margin-bottom: 0.75rem;
}

.footer-legal a,
.footer-legal button {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-body);
}

.footer-legal a:hover,
.footer-legal button:hover {
  color: var(--accent);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.reveal {
  opacity: 0;
  transition: opacity 240ms ease;
}

.reveal.is-visible {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

.consent-banner {
  position: fixed;
  z-index: 1000;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.25rem 1.3rem;
  max-width: 420px;
  margin-left: auto;
  transform: translateY(120%);
  transition: transform 280ms ease;
}

.consent-banner.is-open {
  transform: translateY(0);
}

.consent-banner p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.consent-banner .consent-policy {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.consent-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.consent-actions .btn {
  flex: 1 1 auto;
  min-width: 120px;
}

.consent-actions .btn--accept {
  order: -1;
}

.consent-dialog-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(18, 32, 41, 0.45);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.consent-dialog {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem;
  width: min(100%, 420px);
  max-height: 90vh;
  overflow: auto;
}

.consent-dialog h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.consent-cat {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  margin-bottom: 0.7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.consent-cat p {
  margin: 0.25rem 0 0;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.consent-cat strong {
  font-size: 0.95rem;
}

.consent-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.consent-dialog-actions .btn {
  flex: 1;
}

@media (min-width: 900px) {
  .consent-banner {
    left: auto;
    right: 24px;
    bottom: 24px;
    width: 400px;
  }
}

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

  .header-nav-row {
    justify-content: flex-start;
    min-height: 56px;
    padding-right: 4.5rem;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1.25rem 1.1rem;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
  }

  .site-nav a {
    display: block;
    padding: 0.55rem 0;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .footer-links-row {
    grid-template-columns: 1fr 1fr;
  }

  .back-to-top {
    grid-column: 1 / -1;
    justify-self: end;
  }

  .closing-cta-grid {
    gap: 1.75rem;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
  }

  .category-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .closing-cta-grid {
    grid-template-columns: 1fr;
  }

  .arrival-grid {
    grid-template-columns: 1fr;
  }

  .water-row {
    grid-template-columns: 96px 1fr;
  }

  .water-row__thumb {
    width: 96px;
    height: 96px;
  }

  .water-row .btn {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .grand-row,
  .grand-row--flip {
    grid-template-columns: 1fr;
  }

  .grand-row--flip .grand-row__media,
  .grand-row--flip .grand-row__body {
    order: initial;
  }

  .grand-row__media img {
    min-height: 220px;
    aspect-ratio: 16 / 10;
  }

  .notes-grid {
    grid-template-columns: 1fr;
  }

  .sitemap-grid {
    grid-template-columns: 1fr;
  }

  .footer-links-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .consent-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .brand-lockup span {
    font-size: 1rem;
  }

  .water-row {
    grid-template-columns: 1fr;
  }

  .water-row__thumb {
    width: 100%;
    height: 180px;
    border-radius: 12px;
  }

  .contact-panel {
    padding: 1.4rem 1.15rem;
  }
}
