:root {
  --ink: #211713;
  --muted: #6f625d;
  --paper: #fffaf6;
  --warm: #f1dfd3;
  --clay: #b84b36;
  --clay-dark: #873221;
  --cocoa: #6c513f;
  --sage: #738882;
  --line: rgba(33, 23, 19, .14);
  --shadow: 0 22px 70px rgba(65, 38, 25, .14);
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-underline-offset: .18em; }
.sr-only, .skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  z-index: 1000;
  width: auto;
  height: auto;
  clip: auto;
  padding: .75rem 1rem;
  background: #fff;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  color: #fff;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled,
.site-header.compact {
  color: var(--ink);
  background: rgba(255, 250, 246, .94);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--line);
}
.brand {
  display: inline-flex;
  flex-direction: column;
  gap: .05rem;
  text-decoration: none;
  text-transform: uppercase;
  line-height: .95;
  font-weight: 800;
  letter-spacing: 0;
}
.brand span { font-size: 1.08rem; }
.brand small {
  font-size: .68rem;
  font-weight: 700;
  color: currentColor;
  opacity: .72;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(.8rem, 2vw, 1.5rem);
  font-size: .92rem;
}
.site-nav a { text-decoration: none; }
.site-nav a:hover { color: var(--clay); }
.language-select {
  display: inline-flex;
  align-items: center;
}
.language-select select {
  min-height: 40px;
  padding: 0 .75rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  font: inherit;
  font-weight: 800;
}
.site-header.is-scrolled .language-select select,
.site-header.compact .language-select select,
.site-nav.is-open .language-select select {
  color: var(--ink);
}
.nav-booking {
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: .68rem 1rem;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}
.hero picture,
.hero picture::after,
.hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero picture { z-index: -2; }
.hero picture::after {
  content: "";
  z-index: 1;
  background: linear-gradient(90deg, rgba(20, 10, 7, .75), rgba(20, 10, 7, .22) 54%, rgba(20, 10, 7, .44));
}
.hero picture img { object-fit: cover; }
.hero-content {
  width: min(760px, calc(100% - 2rem));
  margin: 0 clamp(1rem, 6vw, 5rem) clamp(6rem, 12vh, 9rem);
}
.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--clay);
  text-transform: uppercase;
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .08em;
}
.hero .eyebrow { color: #ffd6c7; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  line-height: .98;
  letter-spacing: 0;
}
h1 {
  margin-bottom: 1.3rem;
  font-size: clamp(4rem, 14vw, 11rem);
  max-width: 8ch;
}
h2 { font-size: clamp(2.2rem, 5vw, 5rem); }
h3 { font-size: clamp(1.35rem, 2vw, 2rem); }
.hero-copy {
  max-width: 680px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}
.hero-actions,
.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .9rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}
.btn.primary { background: var(--clay); color: #fff; }
.btn.ghost { border: 1px solid currentColor; color: inherit; }
.btn.dark { background: var(--ink); color: #fff; }
.btn:hover { transform: translateY(-1px); }
.hero-panel {
  position: absolute;
  right: clamp(1rem, 5vw, 4rem);
  bottom: 2rem;
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
.hero-panel span {
  padding: .6rem .75rem;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 8rem) 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.intro-grid p,
.split-content p,
.booking-band p,
.page-hero p,
.contact-hero p {
  color: var(--muted);
  font-size: 1.06rem;
}
.section-head {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}
.section-head h2 { max-width: 800px; margin-bottom: 0; }
.section-head a { font-weight: 800; color: var(--clay-dark); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  background: #fff;
}
.service-card div { padding: 1.15rem; }
.service-card span {
  display: block;
  color: var(--sage);
  font-weight: 800;
  font-size: .82rem;
  margin-bottom: .5rem;
}
.service-card h3 { margin-bottom: .6rem; }
.service-card p { color: var(--muted); margin-bottom: 0; }

.split {
  display: grid;
  grid-template-columns: minmax(280px, .86fr) minmax(300px, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: stretch;
}
.split-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border-radius: var(--radius);
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}
.feature-list div {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.feature-list strong { display: block; margin-bottom: .35rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 1rem;
}
.gallery-grid img {
  width: 100%;
  height: 520px;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border-radius: var(--radius);
}
.gallery-grid img:first-child { height: 640px; }

.booking-band {
  width: min(1260px, calc(100% - 2rem));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--warm);
  border-radius: var(--radius);
}
.booking-band h2 {
  max-width: 780px;
  margin-bottom: 1rem;
}
.faq-list {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
  padding: 1.2rem 0;
}
summary {
  cursor: pointer;
  font-weight: 800;
  font-size: 1.1rem;
}
details p {
  max-width: 780px;
  margin: 1rem 0 0;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr .7fr;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  color: #fff;
  background: var(--ink);
}
.site-footer p { color: rgba(255,255,255,.68); max-width: 440px; }
.site-footer address,
.site-footer nav {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  font-style: normal;
}
.site-footer strong { color: #ffd6c7; }
.site-footer a { color: #fff; text-decoration: none; }

.subpage { padding-top: 80px; }
.page-hero,
.contact-hero {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(2rem, 5vw, 4rem);
}
.page-hero h1,
.contact-hero h1 {
  color: var(--ink);
  font-size: clamp(3.2rem, 10vw, 8.5rem);
  max-width: 12ch;
}
.page-hero p { max-width: 760px; }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.price-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.price-grid img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: contain;
  object-position: center;
  background: #fff;
}
.price-grid h2 { font-size: 2rem; padding: 1.2rem 1.2rem 0; }
.price-list {
  list-style: none;
  padding: .4rem 1.2rem 1.2rem;
  margin: 0;
}
.price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: .9rem 0;
  border-top: 1px solid var(--line);
}
.price-list span { font-weight: 700; }
.price-list strong {
  color: var(--clay-dark);
  font-size: .92rem;
  white-space: nowrap;
}
.contact-hero {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(280px, .8fr);
  align-items: stretch;
  gap: clamp(2rem, 6vw, 5rem);
}
.contact-hero img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border-radius: var(--radius);
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 2rem;
}
.contact-cards article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}
.contact-cards span {
  color: var(--sage);
  text-transform: uppercase;
  font-weight: 900;
  font-size: .75rem;
}
.contact-cards h2 { font-size: 1.7rem; margin: .7rem 0; }
.contact-cards p { color: var(--muted); }

.blog-list-hero h1 { max-width: 9ch; }
.blog-index {
  display: grid;
  gap: 1.2rem;
  padding-top: 1rem;
}
.blog-card-large {
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(300px, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.blog-card-large img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: contain;
  object-position: center;
  background: #fff;
}
.blog-card-large div { padding: clamp(1.4rem, 4vw, 3rem); }
.blog-card-large h2 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 4vw, 4.6rem);
}
.blog-card-large h2 a,
.text-link { text-decoration: none; }
.text-link {
  display: inline-flex;
  margin-top: .4rem;
  color: var(--clay-dark);
  font-weight: 900;
}

.article-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}
.article-hero {
  max-width: 920px;
  margin-bottom: 2rem;
}
.article-hero h1 {
  max-width: 11ch;
  color: var(--ink);
  font-size: clamp(3.2rem, 8vw, 8.6rem);
}
.article-deck {
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  max-width: 820px;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.4rem;
}
.article-meta span {
  padding: .55rem .75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cocoa);
  background: #fff;
  font-size: .86rem;
  font-weight: 800;
}
.article-hero-image img,
.article-figure img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: contain;
  object-position: center;
  background: #fff;
  box-shadow: var(--shadow);
}
.article-hero-image { margin: 0 0 clamp(2rem, 6vw, 4.5rem); }
.article-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.article-toc {
  position: sticky;
  top: 106px;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
}
.article-toc strong {
  color: var(--clay-dark);
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .08em;
}
.article-toc a {
  color: var(--muted);
  text-decoration: none;
  font-size: .92rem;
}
.article-content {
  max-width: 780px;
  font-size: 1.07rem;
}
.article-content p { color: var(--muted); }
.article-content a {
  color: var(--clay-dark);
  font-weight: 800;
}
.article-content h2 {
  margin: 3rem 0 1rem;
  font-size: clamp(2rem, 4vw, 3.7rem);
  max-width: 760px;
}
.article-content h3 {
  margin: 2rem 0 .7rem;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}
.article-figure {
  margin: 2.5rem 0;
}
.article-figure figcaption {
  margin-top: .75rem;
  color: var(--muted);
  font-size: .94rem;
}
.article-faq { margin-top: 1rem; }

.journal-page,
.journal-article-page {
  background: linear-gradient(180deg, #fffaf6 0%, #fff 48%, #fffaf6 100%);
}
.journal-hero {
  width: min(1320px, calc(100% - 2rem));
  min-height: 76vh;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(300px, .84fr) minmax(320px, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: stretch;
}
.journal-hero h1,
.journal-article .article-hero h1 { color: var(--ink); }
.journal-hero h1 {
  max-width: 12.5ch;
  font-size: clamp(3rem, 6.4vw, 6.4rem);
}
.journal-article .article-hero h1 {
  max-width: 14ch;
  font-size: clamp(2.7rem, 5.2vw, 5.4rem);
}
.journal-hero p,
.article-dek,
.journal-feature p,
.journal-card p,
.article-body p,
.article-sidebar p,
.article-sidebar li,
.article-brief dd {
  color: var(--muted);
}
.journal-hero figure,
.journal-article .article-hero figure {
  margin: 0;
}
.journal-hero img,
.journal-article .article-hero img,
.journal-feature img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.journal-feature {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(320px, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
  padding: clamp(2rem, 5vw, 4rem);
  background: var(--warm);
  border-radius: var(--radius);
}
.journal-hero > *,
.journal-feature > *,
.journal-article .article-hero > *,
.journal-article .article-layout > *,
.contact-hero > *,
.intro-grid > *,
.split > * {
  min-width: 0;
}
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.journal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.journal-card a {
  display: block;
  height: 100%;
  text-decoration: none;
}
.journal-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  object-position: center;
  background: #fff;
}
.journal-card span {
  display: block;
  padding: 1rem 1.1rem 0;
  color: var(--sage);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.journal-card h2 {
  padding: .55rem 1.1rem 0;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.03;
}
.journal-card p {
  padding: 0 1.1rem 1.2rem;
  margin-bottom: 0;
}
.journal-article .article-hero {
  width: min(1280px, calc(100% - 2rem));
  max-width: none;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: minmax(300px, .92fr) minmax(320px, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: stretch;
}
.article-dek {
  max-width: 780px;
  font-size: 1.12rem;
}
.article-brief {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .65rem;
  margin: 1.6rem 0 0;
}
.article-brief div,
.article-sidebar div,
.delivery-note {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.article-brief div,
.article-sidebar div { padding: 1rem; }
.article-brief dt,
.article-sidebar span {
  color: var(--clay-dark);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}
.article-brief dd { margin: .2rem 0 0; font-size: .92rem; }
.journal-article .article-layout {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
}
.article-sidebar {
  align-self: start;
  position: sticky;
  top: 96px;
  display: grid;
  gap: 1rem;
}
.article-sidebar ul {
  margin: .7rem 0 0;
  padding-left: 1rem;
}
.article-body {
  max-width: 800px;
  font-size: 1.06rem;
}
.article-body h2 {
  margin: clamp(2.8rem, 6vw, 4rem) 0 1rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
}
.article-body h3 {
  margin: 2rem 0 .75rem;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.1;
}
.article-body p { margin-bottom: 1.15rem; }
.article-body a,
.article-sidebar a {
  color: var(--clay-dark);
  font-weight: 800;
}
.article-image { margin: clamp(2rem, 5vw, 3rem) 0; }
.article-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center;
  background: #fff;
  border-radius: var(--radius);
}
.article-image figcaption {
  margin-top: .6rem;
  color: var(--muted);
  font-size: .92rem;
}
.delivery-note {
  padding: 1.2rem;
}
.related-journal {
  width: min(1180px, calc(100% - 2rem));
  margin: clamp(3rem, 7vw, 6rem) auto;
}
.related-journal h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
.related-journal div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.related-journal a {
  display: block;
  min-height: 150px;
  padding: 1.2rem;
  color: inherit;
  text-decoration: none;
  background: var(--warm);
  border-radius: var(--radius);
}
.related-journal span {
  display: block;
  margin-bottom: .5rem;
  color: var(--clay-dark);
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
}

@media (min-width: 881px) {
  .split-content,
  .contact-hero > div,
  .blog-card-large > div,
  .journal-hero-copy,
  .journal-feature > div,
  .journal-article .article-hero > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .split-media,
  .contact-hero > img,
  .blog-card-large > a:first-child,
  .journal-hero figure,
  .journal-feature > img,
  .journal-article .article-hero figure {
    height: 100%;
    min-height: 420px;
  }
  .split-media { min-height: 560px; }
  .contact-hero > img { min-height: 460px; }
  .journal-hero figure { min-height: clamp(480px, 58vh, 780px); }
  .journal-feature > img { min-height: 360px; }
  .journal-article .article-hero figure { min-height: 520px; }
  .split-media img,
  .contact-hero > img,
  .blog-card-large img,
  .journal-hero figure img,
  .journal-feature > img,
  .journal-article .article-hero figure img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center;
    background: #fff;
  }
}

@media (max-width: 880px) {
  .site-header { align-items: flex-start; }
  .nav-toggle { display: inline-block; flex: 0 0 auto; }
  .site-nav {
    position: absolute;
    top: calc(100% - .6rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    color: var(--ink);
    background: rgba(255, 250, 246, .98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .nav-booking { text-align: center; }
  .hero { min-height: 92vh; }
  .hero-content { margin-bottom: 7rem; }
  .hero-panel { left: 1rem; right: 1rem; }
  .intro-grid,
  .split,
  .blog-card-large,
  .article-layout,
  .journal-hero,
  .journal-feature,
  .journal-article .article-hero,
  .journal-article .article-layout,
  .contact-hero { grid-template-columns: 1fr; }
  .service-grid,
  .price-grid,
  .contact-cards,
  .journal-grid,
  .related-journal div { grid-template-columns: 1fr; }
  .article-brief { grid-template-columns: 1fr; }
  .article-sidebar {
    position: static;
    order: 2;
  }
  .feature-list { grid-template-columns: 1fr; }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid img,
  .gallery-grid img:first-child {
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .booking-band {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer { grid-template-columns: 1fr; }
  .article-toc { position: static; }
  .blog-card-large img { min-height: 260px; }
}

@media (max-width: 520px) {
  h1 { font-size: clamp(3.4rem, 19vw, 5.5rem); }
  .journal-hero h1,
  .journal-article .article-hero h1 {
    max-width: 100%;
    font-size: clamp(2.7rem, 13vw, 3.6rem);
    overflow-wrap: break-word;
  }
  .hero-copy { font-size: 1rem; }
  .hero-actions .btn,
  .booking-actions .btn {
    width: 100%;
  }
  .section-head {
    display: block;
  }
  .price-list li {
    display: block;
  }
  .price-list strong {
    display: block;
    margin-top: .25rem;
  }
}
