:root {
  --bg: #faf5ef;
  --surface: #ffffff;
  --surface-alt: #f0e6da;
  --text: #241c14;
  --text-muted: #645648;
  --border: rgba(36, 28, 20, 0.12);
  --accent: #a8533a;
  --accent-2: #4f6b52;
  --secondary: #3a2c20;
  --on-accent: #ffffff;
  --dark: #2a2017;
  --radius: 14px;
  --radius-btn: 2px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --font-heading: Garamond, "EB Garamond", Georgia, serif;
  --font-body: "Gill Sans", "Gill Sans MT", Calibri, sans-serif;
  --max: 1200px;
  --section-pad: 104px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.72;
  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.8px;
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--text);
}

h1 {
  font-size: clamp(40px, 6.2vw, 68px);
  line-height: 1.1;
}

h2 {
  font-size: clamp(26px, 4.2vw, 42px);
}

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

p {
  margin: 0 0 1.1em;
}

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

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

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

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

.section--alt {
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface-alt) 100%);
}

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

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-btn);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

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

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

.link-arrow {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}

.link-arrow::after {
  content: " →";
}

.link-arrow:hover {
  color: var(--secondary);
}

.notice-strip {
  background: var(--surface-alt);
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.5;
  padding: 0.55rem 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

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

.site-header .nav-inner {
  position: relative;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 72px;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.4px;
  flex-shrink: 0;
}

.brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--surface);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

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

.hero {
  padding: clamp(3rem, 8vw, 5.5rem) 0 2rem;
  text-align: center;
}

.hero__intro {
  max-width: 42rem;
  margin: 0 auto 2.75rem;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.hero__frames {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.25rem;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.hero__frame {
  flex: 1;
  max-width: 360px;
}

.hero__frame img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero__frame--short img {
  height: 200px;
}

.hero__frame--tall img {
  height: 340px;
}

.hero__frame--mid img {
  height: 260px;
}

.hero__frame figcaption {
  margin-top: 0.65rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.category-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.category-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.category-card__body {
  padding: 1.5rem 1.6rem 1.75rem;
}

.category-card h3 {
  margin-bottom: 0.5rem;
}

.category-card p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.category-card a {
  font-weight: 500;
  text-decoration: none;
  color: var(--accent);
}

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

.testimonials {
  background: var(--surface-alt);
  padding: var(--section-pad) 0;
}

.testimonials__inner {
  width: min(100% - 2.5rem, 820px);
  margin-inline: auto;
}

.testimonial {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

.testimonial:first-child {
  padding-top: 0;
}

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

.testimonial blockquote {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  line-height: 1.45;
  letter-spacing: -0.4px;
  color: var(--text);
}

.testimonial cite {
  display: block;
  margin-top: 0.85rem;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.photo-strip__intro {
  max-width: 40rem;
  margin-bottom: 2.5rem;
  color: var(--text-muted);
}

.section-lead {
  color: var(--text-muted);
  max-width: 38rem;
  margin-bottom: 2rem;
}

.mosaic {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.mosaic img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mosaic__a img {
  height: 280px;
}

.mosaic__b img {
  height: 200px;
  margin-top: 2.5rem;
}

.mosaic__c img {
  height: 240px;
  margin-top: 1rem;
}

.mosaic__d img {
  height: 220px;
}

.mosaic__e {
  grid-column: 2 / 4;
}

.mosaic__e img {
  height: 260px;
}

.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);
  background: var(--surface);
  padding: 2rem 1.75rem 1.75rem;
  overflow: hidden;
}

.arrival-card__num {
  position: absolute;
  top: 0.4rem;
  right: 1rem;
  font-family: var(--font-heading);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--border);
  font-weight: 600;
  letter-spacing: -2px;
  pointer-events: none;
}

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

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

.page-hero {
  padding: clamp(3rem, 7vw, 5rem) 0 2.5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--surface-alt) 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero p {
  max-width: 40rem;
  margin: 0.75rem auto 0;
  color: var(--text-muted);
}

.landmark-band {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}

.landmark-band:last-of-type {
  border-bottom: 0;
}

.landmark-band__photo {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto 2rem;
}

.landmark-band__photo img {
  width: 100%;
  height: clamp(240px, 42vw, 460px);
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.landmark-band__body {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.landmark-band__body .kicker {
  margin-bottom: 0.5rem;
}

.landmark-band__body h2 {
  font-size: clamp(24px, 3.5vw, 34px);
  margin-bottom: 0.75rem;
}

.landmark-band__meta {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}

.landmark-band__body p {
  color: var(--text-muted);
  margin-bottom: 1.35rem;
}

.water-list {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 2.5rem 0 4rem;
}

.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.15rem 1.35rem;
  margin-bottom: 1rem;
}

.water-row__thumb {
  width: 120px;
  height: 120px;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
  flex-shrink: 0;
}

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

.water-row__body {
  text-align: center;
}

.water-row__body h2 {
  font-size: clamp(20px, 2.5vw, 26px);
  margin-bottom: 0.4rem;
  padding-bottom: 0.55rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.water-row__meta {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0.4rem 0 0.55rem;
}

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

.water-row__action {
  justify-self: end;
}

.catalog-close {
  width: min(100% - 2.5rem, 44rem);
  margin: 0 auto;
  padding: 0 0 4.5rem;
  text-align: center;
  color: var(--text-muted);
}

.editorial {
  width: min(100% - 2.5rem, 70ch);
  margin: 0 auto;
  padding: 3.5rem 0 5rem;
}

.editorial section {
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border);
}

.editorial section:last-child {
  border-bottom: 0;
}

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

.present-lead {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto;
  padding: 3.5rem 0 1.5rem;
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.45;
  letter-spacing: -0.4px;
}

.present-grid {
  width: min(100% - 2.5rem, var(--max));
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
}

.present-grid section h2 {
  font-size: clamp(22px, 2.6vw, 30px);
}

.contact-intro {
  background: var(--surface-alt);
  padding: 3.5rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.contact-intro p {
  max-width: 36rem;
  margin: 0.75rem auto 1rem;
  color: var(--text-muted);
}

.contact-form-wrap {
  width: min(100% - 2.5rem, 760px);
  margin: 0 auto;
  padding: 3.5rem 0 5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem 1.35rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

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

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--surface);
  color: var(--text);
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.agree-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.65rem;
}

.agree-row input {
  margin-top: 0.3rem;
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.agree-row label {
  flex: 1;
  font-size: 0.95rem;
  color: var(--text);
}

.field-error {
  display: none;
  width: 100%;
  color: var(--accent);
  font-size: 0.88rem;
  margin: 0;
}

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

.form-actions {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
}

.form-status {
  grid-column: 1 / -1;
  color: var(--accent);
  font-size: 0.95rem;
  min-height: 1.4em;
}

.confirm-panel {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

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

.confirm-panel p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.legal-body {
  width: min(100% - 2.5rem, 70ch);
  margin: 0 auto;
  padding: 3.5rem 0 5rem;
}

.legal-body h1 {
  margin-bottom: 0.35rem;
}

.legal-body > p:first-of-type {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.legal-body h2 {
  font-size: clamp(22px, 2.8vw, 30px);
  margin-top: 2rem;
}

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

.sitemap-list {
  width: min(100% - 2.5rem, 40rem);
  margin: 0 auto;
  padding: 3rem 0 5rem;
  list-style: none;
}

.sitemap-list li {
  border-bottom: 1px solid var(--border);
}

.sitemap-list a {
  display: block;
  padding: 1.1rem 0;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: -0.4px;
}

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

.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.82);
  padding: 3.5rem 0 0;
}

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

.site-footer a:hover {
  color: #fff;
}

.footer-inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  gap: 2.5rem 3rem;
  padding-bottom: 2.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.footer-group h3 {
  color: #faf5ef;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  margin: 0 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

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

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

.footer-group a,
.footer-group button {
  font-size: 0.92rem;
}

.footer-brand .brand {
  color: #faf5ef;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 36rem;
  margin-bottom: 1.1rem;
}

.footer-notice {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.62);
  max-width: 36rem;
  margin: 1.25rem 0 0;
}

.footer-email {
  display: inline-block;
  margin-top: 0.35rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.25rem 1.25rem 1.75rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.cookie-settings-btn {
  display: inline-block;
  margin-top: 0.55rem;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  cursor: pointer;
}

.cookie-settings-btn:hover {
  color: #fff;
}

.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 {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 1000;
  max-width: 920px;
  margin-inline: auto;
  background: var(--surface);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
  padding: 1.35rem 1.5rem;
}

.consent[hidden] {
  display: none !important;
}

.consent__layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.25rem;
  align-items: center;
}

.consent__copy {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.consent__divider {
  width: 1px;
  align-self: stretch;
  background: var(--border);
}

.consent__controls {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-start;
}

.consent__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.15rem;
}

.consent__actions--step2 {
  margin-top: 1rem;
}

.consent__link {
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  cursor: pointer;
}

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

.consent__cats {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.consent__cat {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  color: var(--text);
}

.consent__cat input:disabled {
  opacity: 0.7;
}

.consent__back {
  margin-bottom: 0.35rem;
}

@media (max-width: 1024px) {
  :root {
    --section-pad: 88px;
  }

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

  .mosaic__e {
    grid-column: 1 / -1;
  }

  .mosaic__b img {
    margin-top: 0;
  }
}

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

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 0.5rem 0;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links li {
    border-top: 1px solid var(--border);
  }

  .nav-links a {
    display: block;
    padding: 0.9rem 1.5rem;
    border-bottom: 0;
  }

  .nav-links a[aria-current="page"] {
    background: var(--surface-alt);
  }

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

  .present-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

@media (max-width: 768px) {
  .hero__frames {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
  }

  .hero__frame {
    flex: 0 0 72vw;
    max-width: none;
    scroll-snap-align: start;
  }

  .hero__frame--short img,
  .hero__frame--tall img,
  .hero__frame--mid img {
    height: 220px;
  }

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

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

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

  .water-row__action {
    grid-column: 2;
    justify-self: center;
    margin-top: 0.35rem;
  }

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

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

  .consent__divider {
    width: 100%;
    height: 1px;
  }
}

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

@media (max-width: 480px) {
  .container,
  .nav-inner,
  .hero__frames,
  .landmark-band__photo,
  .water-list,
  .footer-inner {
    width: min(100% - 1.5rem, var(--max));
  }

  .notice-strip {
    padding: 0.5rem 0.85rem;
    text-align: left;
  }

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

  .mosaic__a img,
  .mosaic__b img,
  .mosaic__c img,
  .mosaic__d img,
  .mosaic__e img {
    height: 200px;
    margin-top: 0;
  }

  .consent {
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    padding: 1.1rem;
  }

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

  .water-row__thumb {
    margin: 0 auto;
  }
}
