:root {
  --ink: #18211f;
  --deep: #243f47;
  --harbour: #177e89;
  --sandstone: #c38f60;
  --rose: #b85052;
  --oyster: #f4f0e9;
  --paper: #fffaf3;
  --mist: #dde8e5;
  --line: rgba(24, 33, 31, 0.16);
  --shadow: 0 24px 60px rgba(23, 36, 37, 0.16);
  --serif: "Cormorant Garamond", "Iowan Old Style", "Georgia", serif;
  --sans: "Avenir Next", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(195, 143, 96, 0.09) 1px, transparent 1px),
    linear-gradient(rgba(23, 126, 137, 0.05) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--paper);
  background: var(--ink);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  margin-top: 2px;
  color: rgba(24, 33, 31, 0.62);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.primary-nav,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
}

.primary-nav a,
.site-footer nav a {
  font-size: 0.86rem;
  letter-spacing: 0;
  color: rgba(24, 33, 31, 0.74);
}

.primary-nav a:hover,
.primary-nav .is-active,
.site-footer nav a:hover {
  color: var(--harbour);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.1;
}

.header-cta,
.button-dark {
  color: var(--paper);
  background: var(--ink);
}

.button-light {
  color: var(--ink);
  background: var(--paper);
}

.button-ghost {
  color: var(--ink);
  background: transparent;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.section {
  padding: clamp(56px, 8vw, 112px) clamp(18px, 4vw, 56px);
}

.section-muted {
  background: var(--oyster);
}

.section-dark {
  color: var(--paper);
  background: var(--deep);
}

.container {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.narrow {
  width: min(820px, 100%);
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--harbour);
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: #a8d5d4;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.45rem, 7vw, 4.45rem);
  max-width: 900px;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.7rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

p {
  margin: 0;
}

.lede {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(24, 33, 31, 0.76);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

.section-dark .lede,
.section-dark p {
  color: rgba(255, 250, 243, 0.78);
}

.hero {
  display: grid;
  min-height: 80vh;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
  padding: clamp(44px, 7vw, 94px) clamp(18px, 4vw, 56px);
}

.hero-copy {
  padding-bottom: clamp(24px, 5vw, 78px);
}

.hero-media {
  position: relative;
  min-height: 640px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  max-height: 720px;
  object-fit: cover;
  border-radius: 0 0 160px 160px;
  box-shadow: var(--shadow);
}

.hero-badge {
  position: absolute;
  right: -18px;
  bottom: 46px;
  width: min(260px, 70%);
  padding: 18px;
  color: var(--paper);
  background: var(--rose);
  box-shadow: 0 18px 40px rgba(184, 80, 82, 0.24);
}

.hero-badge strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stat {
  min-height: 118px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: rgba(24, 33, 31, 0.66);
  font-size: 0.9rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tile,
.entry-card,
.review-card,
.info-panel {
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, 0.72);
}

.tile {
  min-height: 170px;
  padding: 22px;
}

.tile p,
.entry-card p,
.review-card p,
.info-panel p {
  color: rgba(24, 33, 31, 0.7);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.media-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  background: var(--mist);
}

.media-card.tall {
  grid-row: span 2;
  min-height: 560px;
}

.media-card.wide {
  grid-column: span 2;
}

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

.media-card figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  color: var(--paper);
  background: rgba(24, 33, 31, 0.74);
  font-size: 0.86rem;
}

.entry-grid,
.review-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.entry-card,
.review-card,
.info-panel {
  padding: 24px;
}

.entry-card img,
.review-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 18px;
}

.entry-card .meta,
.review-card .meta {
  margin-bottom: 10px;
  color: var(--harbour);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cms-body {
  margin-top: 16px;
}

.cms-body p + p {
  margin-top: 12px;
}

.page-hero {
  padding: clamp(56px, 8vw, 112px) clamp(18px, 4vw, 56px) clamp(36px, 5vw, 72px);
  background: linear-gradient(120deg, var(--paper), var(--oyster));
}

.page-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: 36px;
  align-items: end;
}

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

.contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.hours-list,
.plain-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hours-list li,
.plain-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
}

.site-footer {
  padding: 44px clamp(18px, 4vw, 56px) 28px;
  color: var(--paper);
  background: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.site-footer a,
.site-footer .eyebrow {
  color: var(--paper);
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer-note {
  margin-top: 32px;
  color: rgba(255, 250, 243, 0.62);
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .split,
  .page-hero .container,
  .contact-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 420px;
  }

  .stats,
  .tile-grid,
  .entry-grid,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .primary-nav {
    gap: 10px 14px;
  }

  .stats,
  .tile-grid,
  .entry-grid,
  .review-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .media-card,
  .media-card.tall {
    min-height: 340px;
  }

  .media-card.wide {
    grid-column: auto;
  }

  .hero-badge {
    right: 10px;
    bottom: 20px;
  }
}

