:root {
  --ink: #f7f1e4;
  --muted: #c6bda8;
  --gold: #d9ad5b;
  --gold-dark: #9a6f31;
  --navy: #071827;
  --navy-soft: #0d2437;
  --blue: #0e6f8f;
  --panel: rgba(9, 24, 36, 0.84);
  --line: rgba(247, 241, 228, 0.18);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

@font-face {
  font-family: "Aboreto";
  src: url("assets/fonts/Aboreto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Estonia";
  src: url("assets/fonts/Estonia-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 8%, rgba(217, 173, 91, 0.12), transparent 28%),
    radial-gradient(circle at 82% 18%, rgba(14, 111, 143, 0.14), transparent 26%),
    linear-gradient(180deg, #04111d 0%, var(--navy) 42%, #030d17 100%);
  font-family: Barlow, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: linear-gradient(180deg, rgba(5, 14, 23, 0.82), rgba(5, 14, 23, 0));
  transition: background 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  padding-block: 12px;
  background: rgba(5, 14, 23, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: min(190px, 48vw);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  color: var(--ink);
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Gilda Display", Georgia, serif;
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  opacity: 0.9;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -8px;
  height: 1px;
  background: var(--gold);
  transition: left 180ms ease, right 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold);
}

.site-nav a[aria-current="page"] {
  color: #f8e7bd;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  left: 0;
  right: 0;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(217, 173, 91, 0.62);
  background: rgba(5, 17, 27, 0.7);
  color: var(--gold);
  border-radius: 22px 22px 6px 6px;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.opening-strip {
  padding: clamp(26px, 3.6vw, 44px) clamp(18px, 4vw, 42px) clamp(24px, 3.2vw, 36px);
  border-top: 1px solid rgba(217, 173, 91, 0.24);
  border-bottom: 1px solid rgba(217, 173, 91, 0.18);
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 173, 91, 0.08), transparent 44%),
    linear-gradient(180deg, rgba(5, 14, 23, 0.98), rgba(24, 24, 24, 0.98)),
    #1e1e1e;
}

.opening-strip h2 {
  margin: 0 0 16px;
  color: #e9a64c;
  font-size: clamp(1.75rem, 2.45vw, 2.45rem);
  line-height: 1;
  text-align: center;
}

.opening-times {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: clamp(10px, 1.7vw, 26px);
  width: min(1780px, 100%);
  margin: 0 auto;
}

.opening-times div {
  min-width: 0;
  text-align: center;
}

.opening-times span,
.opening-times strong {
  display: block;
}

.opening-times span {
  color: rgba(247, 241, 228, 0.95);
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Gilda Display", Georgia, serif;
  font-size: clamp(1.28rem, 1.95vw, 2.05rem);
  font-weight: 400;
  line-height: 1;
  text-transform: lowercase;
}

.opening-times span::after {
  content: "";
  display: block;
  width: 58px;
  height: 1px;
  margin: 7px auto 5px;
  background: #d9ad5b;
  opacity: 0.85;
}

.opening-times strong {
  color: rgba(247, 241, 228, 0.86);
  font-size: clamp(0.88rem, 1.12vw, 1.12rem);
  font-weight: 400;
  line-height: 1.15;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.page-hero {
  position: relative;
  min-height: 68svh;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 42%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 9, 14, 0.88) 0%, rgba(4, 9, 14, 0.68) 46%, rgba(4, 9, 14, 0.32) 100%),
    linear-gradient(0deg, var(--navy) 0%, rgba(7, 24, 39, 0.2) 30%, rgba(7, 24, 39, 0.08) 68%);
}

.hero-content {
  position: relative;
  width: min(980px, calc(100% - 40px));
  margin: clamp(76px, 10vh, 110px) 0 0 clamp(20px, 3vw, 38px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.95;
  font-family: "Aboreto", Didot, "Bodoni 72", "Bodoni MT", "Gilda Display", Georgia, serif;
  font-weight: 400;
}

.hero h1 {
  max-width: 940px;
  color: rgba(255, 255, 255, 0.84);
  font-family: "Aboreto", Didot, "Bodoni 72", "Bodoni MT", "Gilda Display", Georgia, serif;
  font-size: clamp(2.8rem, 4.9vw, 5.45rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.015em;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 940px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(3rem, 6vw, 6.4rem);
  font-weight: 300;
  line-height: 0.96;
  text-transform: none;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

h2 {
  font-size: clamp(2.45rem, 6vw, 5.6rem);
}

h3 {
  font-size: clamp(2rem, 4vw, 3.7rem);
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(247, 241, 228, 0.78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.02rem, 1.55vw, 1.58rem);
  font-weight: 300;
  line-height: 1.42;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: clamp(0.82rem, 1vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.34em;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  width: 48px;
  height: 1px;
  background: currentColor;
  opacity: 0.82;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 28px 13px;
  overflow: hidden;
  border: 1px solid rgba(217, 173, 91, 0.76);
  border-radius: 28px 28px 8px 8px;
  color: var(--gold);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    rgba(5, 17, 27, 0.62);
  box-shadow:
    inset 0 0 0 1px rgba(217, 173, 91, 0.22),
    inset 0 -12px 24px rgba(0, 0, 0, 0.22),
    0 18px 38px rgba(0, 0, 0, 0.24);
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Gilda Display", Georgia, serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button.primary {
  color: #f8e7bd;
  border-color: rgba(248, 213, 141, 0.92);
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 173, 91, 0.28), transparent 54%),
    linear-gradient(180deg, rgba(15, 47, 68, 0.88), rgba(5, 17, 27, 0.9));
  box-shadow:
    inset 0 0 0 1px rgba(248, 213, 141, 0.3),
    inset 0 -14px 28px rgba(0, 0, 0, 0.28),
    0 20px 44px rgba(0, 0, 0, 0.34);
}

.button.secondary {
  color: rgba(247, 241, 228, 0.92);
  border-color: rgba(217, 173, 91, 0.54);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0)),
    rgba(5, 17, 27, 0.4);
}

.button::before {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: -1;
  border: 1px solid rgba(217, 173, 91, 0.26);
  border-radius: 23px 23px 5px 5px;
  pointer-events: none;
}

.button::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 7px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 173, 91, 0.58), transparent);
  pointer-events: none;
}

.button:hover,
.button:focus-visible {
  color: #fff4d6;
  border-color: rgba(248, 213, 141, 0.96);
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 173, 91, 0.24), transparent 58%),
    rgba(9, 31, 48, 0.74);
  box-shadow:
    inset 0 0 0 1px rgba(248, 213, 141, 0.34),
    inset 0 -14px 28px rgba(0, 0, 0, 0.24),
    0 22px 48px rgba(0, 0, 0, 0.34);
  transform: translateY(-2px);
}

.section {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 11vw, 140px) 0;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(260px, 55vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(217, 173, 91, 0.7), transparent);
}

.intro {
  display: grid;
  grid-template-columns: minmax(160px, 330px) minmax(0, 620px);
  gap: clamp(28px, 7vw, 84px);
  align-items: center;
}

.intro-mark {
  border: 1px solid var(--line);
  padding: clamp(18px, 3vw, 34px);
  background: radial-gradient(circle at 50% 0%, rgba(217, 173, 91, 0.18), rgba(255, 255, 255, 0.03) 58%);
  box-shadow: var(--shadow);
}

.intro-text p:not(.eyebrow),
.split-copy p,
.contact-panel p,
.footer-brand p {
  color: var(--muted);
  font-size: 1.08rem;
}

.intro-text p:not(.eyebrow) {
  max-width: 58ch;
  margin: 0 0 0.85rem;
  line-height: 1.75;
  text-wrap: pretty;
}

.intro-text p:not(.eyebrow):last-child {
  margin-bottom: 0;
}

.image-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: min(1320px, calc(100% - 36px));
}

.story-card {
  display: grid;
  min-height: 620px;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--navy-soft);
  box-shadow: var(--shadow);
}

.story-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.story-card > div {
  padding: 26px;
}

.story-card p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.split,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: center;
}

.split img,
.contact > img {
  width: 100%;
  height: min(640px, 68vw);
  min-height: 430px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hours {
  width: min(1320px, calc(100% - 36px));
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(120px, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.hours-grid div {
  min-height: 132px;
  padding: 22px 18px;
  background: linear-gradient(180deg, #102c42, #091b2b);
}

.hours-grid span,
.hours-grid strong {
  display: block;
}

.hours-grid span {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.hours-grid strong {
  margin-top: 18px;
  font-size: 1.2rem;
}

.contact-panel {
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(247, 241, 228, 0.25);
  border-radius: 4px;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  font: inherit;
}

.contact-form button,
.form-note {
  grid-column: 1 / -1;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--gold);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr auto;
  gap: clamp(28px, 7vw, 80px);
  padding: clamp(54px, 9vw, 96px) clamp(18px, 6vw, 80px) 28px;
  border-top: 1px solid var(--line);
  background: #04111d;
}

.footer-brand img {
  width: 210px;
}

.footer-links h2 {
  margin-bottom: 16px;
  font-size: 2rem;
}

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

.footer-map img {
  width: 170px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.copyright {
  grid-column: 1 / -1;
  margin: 26px 0 0;
  color: rgba(247, 241, 228, 0.62);
  font-size: 0.92rem;
}

.lead-section .section-heading {
  align-items: start;
}

.lead-copy {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
}

.lead-copy ul {
  margin: 12px 0 18px;
  padding-left: 20px;
}

.hours-grid.detailed strong {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 600;
}

.lead-section {
  display: none;
}

.lead-section.is-visible {
  display: block;
}

.blog-rows {
  display: grid;
  gap: clamp(28px, 6vw, 72px);
}

.blog-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
}

.blog-row.reverse {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
}

.blog-row.reverse img {
  order: 2;
}

.blog-row img {
  width: 100%;
  min-height: 380px;
  max-height: 620px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.blog-row p:not(.eyebrow):not(.text-link) {
  color: var(--muted);
  font-size: 1.08rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  color: var(--gold);
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Gilda Display", Georgia, serif;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.text-link::before,
.text-link::after {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.small-status {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.image-row .section-heading.full {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.content-section {
  border-top: 1px solid var(--line);
}

.page-intro {
  min-height: 340px;
  display: grid;
  align-content: center;
  margin-bottom: clamp(44px, 7vw, 88px);
  padding: clamp(32px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(4, 14, 23, 0.88), rgba(4, 14, 23, 0.54)),
    url("assets/voorpagina.jpg") center / cover;
  box-shadow: var(--shadow);
}

.page-intro h2 {
  max-width: 920px;
  text-transform: none;
}

.center-copy {
  max-width: 760px;
  margin: 0 auto clamp(40px, 7vw, 82px);
  text-align: center;
}

.center-copy p:not(.eyebrow),
.article-copy p,
.split-text p,
.feature-grid p:not(.eyebrow),
.faq-list p,
.contact-details p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.feature-grid article,
.faq-list article,
.contact-details div {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #102c42, #091b2b);
}

.feature-grid h3 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.article-copy {
  max-width: 860px;
  margin: 0 auto clamp(40px, 7vw, 82px);
}

.article-copy h2 {
  margin-bottom: 18px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: clamp(40px, 7vw, 82px);
}

.pill-row span {
  min-width: 120px;
  padding: 12px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.split-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 62px);
  margin-bottom: clamp(34px, 6vw, 72px);
}

.feature-grid.values {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list article {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px 22px;
}

.faq-list span {
  grid-row: span 10;
  color: rgba(217, 173, 91, 0.45);
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Gilda Display", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 1;
}

.faq-list h3 {
  font-size: clamp(1.6rem, 3vw, 2.55rem);
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(36px, 6vw, 72px);
}

.contact-details h3 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
}

.site-footer {
  grid-template-columns: 1.1fr 0.7fr 0.9fr auto;
}

.intro-mark,
.story-card,
.contact-panel,
.feature-grid article,
.faq-list article,
.contact-details div,
.page-intro,
.hours-grid,
.blog-row img,
.contact > img,
.footer-map img {
  border-color: rgba(217, 173, 91, 0.36);
  border-radius: 42px 42px 10px 10px;
}

.intro-mark,
.story-card,
.contact-panel,
.feature-grid article,
.faq-list article,
.contact-details div,
.hours-grid,
.page-intro {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0)),
    radial-gradient(circle at 50% 0%, rgba(217, 173, 91, 0.12), transparent 46%),
    rgba(6, 20, 32, 0.78);
  box-shadow:
    inset 0 0 0 1px rgba(217, 173, 91, 0.14),
    inset 0 -28px 54px rgba(0, 0, 0, 0.24),
    var(--shadow);
}

.intro-mark::before,
.story-card::before,
.contact-panel::before,
.feature-grid article::before,
.faq-list article::before,
.contact-details div::before,
.hours-grid::before,
.page-intro::before {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 0;
  border: 1px solid rgba(217, 173, 91, 0.18);
  border-radius: 34px 34px 6px 6px;
  pointer-events: none;
}

.intro-mark > *,
.story-card > *,
.contact-panel > *,
.feature-grid article > *,
.faq-list article > *,
.contact-details div > *,
.hours-grid > *,
.page-intro > * {
  position: relative;
  z-index: 1;
}

.story-card img,
.blog-row img,
.contact > img,
.split img {
  border-color: rgba(217, 173, 91, 0.34);
  border-radius: 52px 52px 12px 12px;
  filter: saturate(0.94) contrast(1.04);
}

.story-card {
  background:
    linear-gradient(180deg, rgba(16, 44, 66, 0.92), rgba(5, 17, 27, 0.94));
}

.story-card > div,
.blog-row > div,
.article-copy,
.center-copy,
.split-text > div {
  border-left: 1px solid rgba(217, 173, 91, 0.28);
  padding-left: clamp(20px, 3vw, 34px);
}

.center-copy {
  border-right: 1px solid rgba(217, 173, 91, 0.28);
  padding-right: clamp(20px, 3vw, 34px);
}

.hours-grid {
  gap: 0;
  padding: 8px;
  background: rgba(5, 17, 27, 0.74);
}

.hours-grid div {
  border: 1px solid rgba(217, 173, 91, 0.16);
  background:
    linear-gradient(180deg, rgba(16, 44, 66, 0.9), rgba(5, 17, 27, 0.88));
}

.hours-grid div:first-child {
  border-top-left-radius: 32px;
}

.hours-grid div:nth-child(7) {
  border-top-right-radius: 32px;
}

.hours-grid span,
.contact-form label,
.footer-links h2 {
  font-family: "Aboreto", Didot, "Bodoni 72", "Bodoni MT", "Gilda Display", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.contact-form input {
  min-height: 54px;
  border-color: rgba(217, 173, 91, 0.36);
  border-radius: 24px 24px 7px 7px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0)),
    rgba(3, 13, 23, 0.54);
}

.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(217, 173, 91, 0.36);
  border-radius: 24px 24px 7px 7px;
  padding: 10px 12px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0)),
    rgba(3, 13, 23, 0.86);
  font: inherit;
}

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

.contact-form .wide {
  grid-column: 1 / -1;
}

.contact-form input:focus {
  outline: none;
  border-color: rgba(248, 213, 141, 0.9);
  box-shadow: 0 0 0 3px rgba(217, 173, 91, 0.14);
}

.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(248, 213, 141, 0.9);
  box-shadow: 0 0 0 3px rgba(217, 173, 91, 0.14);
}

.pill-row span {
  border-color: rgba(217, 173, 91, 0.52);
  border-radius: 28px 28px 8px 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0)),
    rgba(5, 17, 27, 0.6);
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Gilda Display", Georgia, serif;
  font-weight: 500;
}

.page-intro {
  border-color: rgba(217, 173, 91, 0.46);
  border-radius: 62px 62px 14px 14px;
}

.page-intro::before {
  border-radius: 52px 52px 10px 10px;
}

.faq-list span {
  text-shadow: 0 0 26px rgba(217, 173, 91, 0.24);
}

.site-footer {
  position: relative;
  border-top-color: rgba(217, 173, 91, 0.3);
  background:
    radial-gradient(circle at 20% 0%, rgba(217, 173, 91, 0.13), transparent 30%),
    linear-gradient(180deg, #061727, #030d17);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 12px;
  left: clamp(18px, 6vw, 80px);
  right: clamp(18px, 6vw, 80px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 173, 91, 0.7), transparent);
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold);
}

.article-hero .hero-image {
  object-position: center;
}

.article-meta {
  margin-top: 18px;
  color: rgba(247, 241, 228, 0.7);
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Gilda Display", Georgia, serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-page,
.legal-copy {
  max-width: 920px;
}

.article-page h2,
.legal-copy h2 {
  margin: 38px 0 14px;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.article-page p,
.legal-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.article-page .lead-copy {
  max-width: none;
  margin: 0 0 28px;
  font-size: 1.22rem;
}

.quote-panel {
  margin: clamp(36px, 7vw, 72px) 0 0;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid rgba(217, 173, 91, 0.38);
  border-radius: 42px 42px 10px 10px;
  color: rgba(247, 241, 228, 0.9);
  background:
    radial-gradient(circle at 50% 0%, rgba(217, 173, 91, 0.14), transparent 46%),
    rgba(6, 20, 32, 0.8);
  font-family: Didot, "Bodoni 72", "Bodoni MT", "Gilda Display", Georgia, serif;
  font-size: clamp(1.6rem, 3.4vw, 3rem);
  line-height: 1.12;
}

.quote-panel span {
  display: block;
  margin-top: 18px;
  color: var(--gold);
  font-family: Barlow, "Segoe UI", Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-details.stacked {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 0;
}

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 14, 23, 0.98);
  }

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

  .site-nav a {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
  }

  .intro,
  .split,
  .contact,
  .site-footer,
  .blog-row,
  .blog-row.reverse,
  .split-text,
  .contact-details {
    grid-template-columns: 1fr;
  }

  .blog-row.reverse img {
    order: 0;
  }

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

  .feature-grid,
  .feature-grid.values {
    grid-template-columns: 1fr;
  }

  .story-card {
    min-height: auto;
  }

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

  .opening-times {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 24px;
  }

  .opening-times div:last-child {
    grid-column: 1 / -1;
  }

  .faq-list article {
    grid-template-columns: 1fr;
  }

  .faq-list span {
    grid-row: auto;
  }

  .footer-map img {
    width: min(260px, 100%);
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand img {
    width: 152px;
  }

  .hero {
    min-height: 78svh;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(4, 14, 23, 0.24), rgba(4, 14, 23, 0.5) 30%, var(--navy) 96%),
      linear-gradient(90deg, rgba(4, 14, 23, 0.74), rgba(4, 14, 23, 0.24));
  }

  .hero-content {
    margin-inline: 18px;
    margin-top: 74px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.9rem);
    line-height: 1;
  }

  .hero-copy {
    font-size: clamp(1rem, 4.8vw, 1.45rem);
  }

  .hero-eyebrow {
    gap: 14px;
    margin-bottom: 26px;
    letter-spacing: 0.24em;
  }

  .hero-eyebrow::before,
  .hero-eyebrow::after {
    width: 28px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .intro-mark {
    max-width: 240px;
  }

  .story-card img,
  .split img,
  .contact > img {
    min-height: 310px;
    height: 72vw;
  }

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

  .opening-strip {
    padding: 28px 18px 24px;
  }

  .opening-strip h2 {
    margin-bottom: 20px;
  }

  .opening-times {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .opening-times div:last-child {
    grid-column: auto;
  }

  .opening-times span {
    font-size: 1.65rem;
  }

  .opening-times strong {
    font-size: 1rem;
  }
}
