/* Holiday accommodation guide: a readable directory with progressive search. */
.cottage-guide { padding-bottom: 70px; }
.cottage-guide .cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.cottage-arrival { display: grid; grid-template-columns: 1fr 1.3fr; gap: 55px; padding: 36px; margin-bottom: 65px; background: var(--tint); border-radius: var(--radius); }
.cottage-arrival h2, .cottage-booking h2 { font-size: clamp(28px, 3vw, 40px); line-height: 1.15; margin: 10px 0 20px; }
.cottage-arrival p { max-width: 42ch; }
.cottage-steps { margin: 0; padding-left: 24px; }
.cottage-steps li { padding-left: 10px; margin-bottom: 18px; }
.cottage-steps li:last-child { margin-bottom: 0; }
.cottage-steps li::marker { font-family: Fraunces, Georgia, serif; font-weight: 650; }
.cottage-intro { max-width: 85ch; }
.cottage-search { display: grid; grid-template-columns: 1.3fr 1fr auto; align-items: end; gap: 18px; padding: 25px; margin: 28px 0 22px; background: var(--tint); border-radius: var(--radius); }
.cottage-search label { display: block; font-weight: 700; margin-bottom: 8px; font-size: 14px; }
.cottage-search input, .cottage-search select { width: 100%; min-width: 0; min-height: 48px; padding: 12px; border: 1px solid var(--muted); border-radius: 4px; color: var(--ink); background: var(--surface); font: inherit; font-size: 15px; }
.cottage-search > div { min-width: 0; }
.cottage-search input::placeholder { color: var(--muted); opacity: 1; }
.cottage-jumps { display: flex; flex-wrap: wrap; gap: 12px 24px; margin: 20px 0; font-size: 14px; font-weight: 650; }
.cottage-result-count { font-size: 14px; color: var(--muted); margin: 22px 0 0; }
.cottage-empty { padding: 24px; background: var(--tint); border-radius: var(--radius); }
.cottage-area { margin-top: 48px; }
.cottage-area-heading { max-width: 82ch; margin-bottom: 25px; }
.cottage-area-heading h3 { font-size: clamp(26px, 3vw, 36px); line-height: 1.2; margin: 10px 0 14px; }
.cottage-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.cottage-card { display: flex; flex-direction: column; min-width: 0; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); font-size: 14px; line-height: 1.65; overflow-wrap: anywhere; }
.cottage-card h4 { font-family: Fraunces, Georgia, serif; font-size: 26px; font-weight: 550; line-height: 1.2; margin: 8px 0 20px; }
.cottage-card p { margin: 0 0 18px; }
.cottage-card .eyebrow { font-size: 10px; margin: 0; }
.cottage-address strong, .cottage-journey strong { display: block; font-size: 12px; margin-bottom: 5px; }
.cottage-journey { padding: 16px; background: var(--tint); border-radius: 4px; }
.cottage-contact { display: grid; gap: 10px; margin-top: auto; }
.cottage-contact a { width: fit-content; }
.cottage-contact .text-link { font-size: 14px; }
.cottage-card-footer { display: flex; flex-wrap: wrap; gap: 8px 18px; border-top: 1px solid var(--line); padding-top: 14px; margin-top: 20px; font-size: 12px; }
.cottage-agency { border-top: 3px solid var(--muted); }
.cottage-booking { display: flex; gap: 35px; align-items: center; justify-content: space-between; background: var(--tint); padding: 35px; margin: 65px 0 45px; border-radius: var(--radius); }
.cottage-booking > div { max-width: 72ch; }
.cottage-booking > .button { flex-shrink: 0; }
.cottage-sources { max-width: 85ch; font-size: 14px; }
.cottage-sources h2 { font-size: 26px; }
.cottage-guide [hidden] { display: none !important; }
@media (max-width: 1050px) {
  .cottage-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cottage-arrival { gap: 30px; }
  .cottage-search { grid-template-columns: 1fr 1fr; }
  .cottage-search button { justify-self: start; }
  .cottage-booking { align-items: start; flex-direction: column; }
}
@media (max-width: 650px) {
  .cottage-arrival, .cottage-search { grid-template-columns: 1fr; padding: 24px; gap: 22px; }
  .cottage-arrival { margin-bottom: 45px; }
  .cottage-grid { grid-template-columns: 1fr; }
  .cottage-card { padding: 24px; }
  .cottage-card h4 { font-size: 27px; }
  .cottage-search { padding: 20px; }
  .cottage-booking { padding: 24px; }
}
@media print {
  .cottage-search, .cottage-jumps { display: none; }
  .cottage-card { break-inside: avoid; }
}
@font-face {
  font-family: Manrope;
  src: url("/assets/fonts/manrope.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
}
@font-face {
  font-family: Fraunces;
  src: url("/assets/fonts/fraunces.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --paper: #f8f7f2;
  --surface: #fffefa;
  --ink: #193c33;
  --muted: #5d695f;
  --line: #dedfd5;
  --green: #173e33;
  --lime: #e0edab;
  --tint: #eeeee3;
  --accent: #a5b765;
  --radius: 7px;
  color-scheme: light;
}
:root[data-theme="dark"] {
  --paper: #14221d;
  --surface: #1c2e26;
  --ink: #e9eee2;
  --muted: #afbeb0;
  --line: #3a4d40;
  --green: #12392d;
  --tint: #25362b;
  color-scheme: dark;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper: #14221d;
    --surface: #1c2e26;
    --ink: #e9eee2;
    --muted: #afbeb0;
    --line: #3a4d40;
    --green: #12392d;
    --tint: #25362b;
    color-scheme: dark;
  }
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 28px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    15px/1.75 Manrope,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
p,
figure {
  margin: 0;
}
h1,
h2,
h3,
h4 {
  line-height: 1.15;
  letter-spacing: -0.045em;
}
h1,
h2 {
  font-weight: 650;
}
h1 {
  font-size: clamp(2.8rem, 5.2vw, 4.9rem);
}
h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}
h3 {
  font-size: 1.32rem;
  font-weight: 700;
}
p {
  margin-bottom: 1em;
}
p:last-child {
  margin-bottom: 0;
}
em {
  font-family: Fraunces, Georgia, serif;
  font-weight: 450;
  letter-spacing: -0.055em;
}
a {
  color: inherit;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
a:hover {
  color: var(--muted);
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
summary,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
svg {
  flex-shrink: 0;
  vertical-align: middle;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button {
  color: inherit;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #ab833a;
  outline-offset: 5px;
}
main:focus {
  outline: none;
}
[hidden] {
  display: none !important;
}
::selection {
  background: #dae9a6;
  color: #173e33;
}
.container {
  width: min(1280px, calc(100% - 96px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  z-index: 100;
  left: 20px;
  top: -100px;
  background: var(--lime);
  color: #173e33;
  padding: 12px 20px;
}
.skip-link:focus {
  top: 12px;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 750;
  line-height: 1.5;
  margin-bottom: 19px;
}
.topline {
  background: var(--green);
  color: #f0f2e4;
  font-size: 10px;
  letter-spacing: 0.035em;
}
.topline .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 33px;
}
.topline span:last-child {
  display: flex;
  align-items: center;
  gap: 7px;
}
.site-header {
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 105px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}
.brand-symbol {
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--lime);
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.brand-small {
  display: block;
  font-size: 9px;
  line-height: 1.2;
  font-weight: 750;
  letter-spacing: 0.19em;
}
.brand-name {
  display: block;
  font-size: 29px;
  letter-spacing: -0.06em;
  line-height: 1.1;
  font-weight: 800;
}
.brand-name > span {
  color: #8b9f51;
}
.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}
.primary-nav a {
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
  padding: 10px 0;
}
.primary-nav a[aria-current] {
  box-shadow: 0 2px var(--accent);
}
.header-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}
.theme-toggle,
.menu-toggle {
  background: none;
  border: 0;
  display: grid;
  place-items: center;
  min-width: 42px;
  min-height: 44px;
}
.menu-toggle {
  display: none;
}
.button,
.btn,
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--green);
  border: 1px solid var(--green);
  color: #fffdf5;
  border-radius: 4px;
  padding: 15px 23px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  min-height: 48px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover,
.btn:hover,
.btn-primary:hover {
  background: #295644;
  color: #fff;
  transform: translateY(-1px);
}
.button-small {
  font-size: 11px;
  padding: 12px 17px;
  min-height: 42px;
}
.button-lime {
  background: var(--lime);
  color: #173e33;
  border-color: var(--lime);
}
.button-lime:hover {
  background: #eef5d0;
  color: #173e33;
}
.btn-secondary,
.btn.secondary {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
}
.text-link:hover {
  text-decoration: underline;
}
.home-hero {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  position: relative;
  gap: 40px;
  align-items: center;
  padding: 45px 0 46px;
}
.home-hero-copy {
  padding: 15px 0 10px;
}
.home-hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 27px;
}
.status-dot {
  width: 7px;
  height: 7px;
  background: #819853;
  border-radius: 50%;
}
.home-hero h1 {
  font-size: clamp(3.2rem, 5.1vw, 4.9rem);
  line-height: 1.075;
  letter-spacing: -0.067em;
}
.home-hero h1 em {
  white-space: nowrap;
  font-size: 0.91em;
}
.hero-description {
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
  margin: 25px 0 29px;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
}
.hero-footnote {
  margin-top: 24px;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.025em;
}
.hero-photo {
  position: relative;
  align-self: stretch;
  min-height: 520px;
  border-radius: 90px 6px 6px 6px;
  overflow: hidden;
  background: var(--tint);
}
.hero-photo > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: 53% 50%;
}
.hero-photo:after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(9, 28, 20, 0.7));
  pointer-events: none;
}
.photo-label {
  position: absolute;
  left: 28px;
  bottom: 42px;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 650;
}
.photo-label span span {
  display: block;
  font-size: 8px;
  letter-spacing: 0.15em;
  margin-top: 4px;
}
.hero-photo figcaption {
  position: absolute;
  bottom: 12px;
  right: 18px;
  font-size: 8px;
  z-index: 2;
  color: #fff;
}
.hero-photo figcaption a {
  text-decoration: none;
}
.local-stamp {
  position: absolute;
  left: calc(48% - 50px);
  bottom: 87px;
  width: 103px;
  height: 103px;
  background: var(--lime);
  border: 5px solid var(--paper);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #173e33;
  transform: rotate(-12deg);
  z-index: 3;
}
.local-stamp span {
  font-size: 6px;
  letter-spacing: 0.13em;
  font-weight: 800;
}
.journey-strip {
  display: grid;
  grid-template-columns: 1.08fr 1fr 1fr 1fr;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 25px;
  margin: 0 0 12px;
}
.journey-strip > div {
  padding-right: 20px;
}
.journey-strip h2 {
  font-size: 17px;
  letter-spacing: -0.03em;
}
.journey-strip .eyebrow {
  font-size: 8px;
  margin-bottom: 8px;
}
.journey-strip > a {
  display: flex;
  align-items: center;
  gap: 15px;
  border-left: 1px solid var(--line);
  padding: 4px 20px;
  text-decoration: none;
}
.journey-strip > a > span {
  font-weight: 700;
  font-size: 11px;
}
.journey-strip > a > svg:last-child {
  margin-left: auto;
  width: 14px;
}
.journey-strip small {
  display: block;
  font-size: 9px;
  font-weight: 450;
  color: var(--muted);
  margin-top: 5px;
}
.home-section {
  padding: 73px 0;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 32px;
}
.section-heading .eyebrow {
  margin-bottom: 12px;
}
.section-heading > .text-link {
  white-space: nowrap;
  margin-bottom: 5px;
}
.operator-feature-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 36px;
}
.featured-operator {
  background: var(--green);
  color: #f7f9ef;
  border-radius: var(--radius);
  padding: 31px 34px;
  position: relative;
  overflow: hidden;
}
.feature-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
}
.feature-top .eyebrow {
  color: var(--lime);
  font-size: 9px;
  padding-top: 6px;
}
.operator-monogram {
  font-family: Fraunces, serif;
  font-size: 60px;
  line-height: 1;
  letter-spacing: -0.08em;
  color: var(--lime);
}
.operator-monogram > span {
  font-family: Manrope, sans-serif;
  font-size: 27px;
  display: inline-block;
  transform: translateY(-23px);
  margin-left: 5px;
}
.featured-operator h3 {
  font-size: 34px;
  margin-top: -4px;
  margin-bottom: 17px;
}
.featured-operator > p {
  font-size: 12px;
  line-height: 1.85;
  max-width: 410px;
  color: #d2ddd1;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 20px 0;
}
.service-tags > span {
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 9px;
  line-height: 1.5;
  color: var(--muted);
}
.featured-operator .service-tags > span {
  border-color: #4e6855;
  color: #e3e9dd;
  background: #ffffff04;
}
.featured-bottom {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 25px;
}
.featured-bottom > a:last-child {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  text-decoration: none;
}
.featured-operator .feature-disclosure {
  font-size: 9px;
  color: #c4d1bc;
  max-width: none;
  margin-top: 19px;
}
.featured-operator a:hover {
  color: #fff;
}
.other-operators {
  padding-top: 0;
}
.operator-summary {
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}
.operator-summary:first-child {
  padding-top: 0;
}
.summary-heading {
  display: flex;
  align-items: center;
  gap: 16px;
}
.small-monogram {
  height: 43px;
  width: 43px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--tint);
  font-size: 18px;
  font-family: Fraunces, serif;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.operator-summary h3 {
  font-size: 18px;
}
.operator-summary h3 a {
  text-decoration: none;
}
.operator-summary p {
  font-size: 10px;
  color: var(--muted);
  margin-top: 8px;
}
.number-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  margin: 15px 0 0 60px;
  letter-spacing: 0.025em;
}
.small-note {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 18px;
}
.explore-section {
  border-top: 1px solid var(--line);
}
.explore-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}
.explore-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
  text-decoration: none;
  color: #fff;
}
.explore-card > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.explore-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 10%, rgba(9, 28, 20, 0.75));
}
.explore-card > div {
  position: absolute;
  left: 30px;
  bottom: 26px;
  right: 28px;
  z-index: 1;
}
.explore-card .eyebrow {
  font-size: 9px;
  margin-bottom: 13px;
  color: #e7eddb;
}
.explore-card h3 {
  font-size: 33px;
  font-weight: 550;
  letter-spacing: -0.04em;
}
.explore-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
  font-size: 11px;
}
.explore-card:hover {
  color: #fff;
}
.explore-card:hover > img {
  transform: scale(1.025);
}
.topic-links {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
}
.topic-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  text-decoration: none;
}
.station-feature {
  background: var(--tint);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 5px 0 0;
}
.station-feature > figure {
  position: relative;
  min-height: 415px;
}
.station-feature img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.station-feature figcaption {
  position: absolute;
  bottom: 10px;
  left: 15px;
  background: #173e33c9;
  color: #fff;
  padding: 2px 6px;
  font-size: 8px;
}
.station-feature > div {
  padding: 42px 45px;
}
.station-feature h2 {
  font-size: 43px;
  margin-bottom: 22px;
}
.station-feature > div > p:not(.eyebrow) {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.9;
}
.local-note {
  display: flex;
  gap: 13px;
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 22px;
}
.local-note p {
  font-size: 10px;
  color: var(--muted);
}
.local-note strong {
  display: block;
  color: var(--ink);
  font-size: 10px;
  margin-bottom: 5px;
}
.practical-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 65px;
}
.practical-section h2 {
  font-size: 42px;
  margin-bottom: 30px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq-list details:first-child {
  padding-top: 0;
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-size: 13px;
  font-weight: 650;
  list-style: none;
  cursor: pointer;
  min-height: 30px;
}
.faq-list summary:after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
}
.faq-list details[open] summary:after {
  content: "−";
}
.faq-list p {
  font-size: 12px;
  color: var(--muted);
  margin: 17px 30px 5px 0;
}
.editor-note {
  padding: 40px 7% 45px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 40px;
  margin-bottom: 45px;
}
.note-mark {
  font:
    120px/1 Fraunces,
    Georgia,
    serif;
  color: var(--accent);
}
.editor-note h2 {
  font-size: 27px;
  margin-bottom: 18px;
}
.editor-note p:not(.eyebrow) {
  font-size: 13px;
  max-width: 780px;
  color: var(--muted);
}
.editor-note .eyebrow {
  margin: 10px 0 13px;
}
.closing-band {
  background: var(--green);
  color: #f9faef;
  padding: 49px 0;
}
.closing-band .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.closing-band .eyebrow {
  color: var(--lime);
  font-size: 9px;
  margin-bottom: 14px;
}
.closing-band h2 {
  font-size: 38px;
  font-weight: 500;
}
.site-footer {
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 38px;
}
.footer-grid h2 {
  font-size: 11px;
  letter-spacing: 0;
  margin-bottom: 22px;
  font-weight: 750;
}
.footer-grid > div > a:not(.brand) {
  display: block;
  font-size: 11px;
  color: var(--muted);
  text-decoration: none;
  margin: 9px 0;
}
.footer-grid > div > p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 20px;
}
.footer-grid p a {
  font-size: 10px;
}
.footer-brand .brand-symbol {
  width: 40px;
  height: 40px;
}
.footer-brand .brand-name {
  font-size: 25px;
}
.footer-brand .brand-small {
  font-size: 7px;
}
.disclosure {
  border-top: 1px solid var(--line);
  margin-top: 37px;
  padding-top: 23px;
  font-size: 10px;
  line-height: 1.8;
  color: var(--muted);
}
.disclosure p {
  max-width: 1040px;
  margin-bottom: 5px;
}
.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 9px;
  color: var(--muted);
}
.footer-bottom a {
  text-decoration: none;
}
.breadcrumbs {
  display: flex;
  gap: 12px;
  font-size: 10px;
  padding: 26px 0;
  color: var(--muted);
}
.breadcrumbs a {
  text-decoration: none;
}
.page-hero {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 70px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 25px 0 45px;
  margin-bottom: 48px;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}
.lede {
  font-size: 15px;
  line-height: 1.9;
  color: var(--muted);
  margin-top: 22px;
  max-width: 690px;
}
.page-hero figure {
  position: relative;
}
.page-hero img {
  height: 255px;
  width: 100%;
  object-fit: cover;
  border-radius: 45px 5px 5px 5px;
}
.page-hero figcaption {
  font-size: 8px;
  color: var(--muted);
  text-align: right;
  margin-top: 6px;
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 70px;
  margin-bottom: 65px;
  align-items: start;
}
.article-sidebar {
  background: var(--tint);
  padding: 27px;
  border-radius: var(--radius);
  position: sticky;
  top: 25px;
}
.article-sidebar h2 {
  font-size: 24px;
  margin-bottom: 18px;
}
.article-sidebar p:not(.eyebrow) {
  font-size: 12px;
  color: var(--muted);
}
.article-sidebar .eyebrow {
  font-size: 8px;
}
.article-sidebar .button {
  width: 100%;
  padding-inline: 10px;
}
.sidebar-links {
  margin-top: 20px;
}
.sidebar-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  font-size: 10px;
  padding: 12px 0;
  text-decoration: none;
}
.article-content {
  min-width: 0;
  font-size: 14px;
  line-height: 1.85;
}
.article-content .container {
  width: 100%;
}
.article-content h2 {
  font-size: 28px;
  margin: 32px 0 17px;
  scroll-margin-top: 25px;
}
.article-content > h2:first-child,
.article-content > section:first-child h2:first-child {
  margin-top: 0;
}
.article-content h3 {
  font-size: 19px;
  margin: 22px 0 12px;
}
.article-content h4 {
  font-size: 16px;
  margin: 20px 0 10px;
}
.article-content ul,
.article-content ol {
  padding-left: 22px;
  margin: 14px 0 22px;
}
.article-content li {
  margin-bottom: 8px;
}
.article-content .section {
  padding: 10px 0 25px;
}
.article-content .section-header {
  margin-bottom: 20px;
}
.article-content .section-subtitle,
.article-content .meta,
.article-content .desc,
.article-content .note,
.article-content .group-note {
  color: var(--muted);
  font-size: 12px;
}
.article-content .card-grid,
.article-content .hub-grid,
.article-content .place-grid,
.article-content .village-grid,
.article-content .journey-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
  margin: 20px 0 30px;
}
.article-content .card,
.article-content .hub-card,
.article-content .place-card,
.article-content .village-chip,
.article-content .journey-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 23px;
  min-width: 0;
}
.article-content .card h3,
.article-content .place-card h3,
.article-content .hub-card h2 {
  margin-top: 0;
}
.article-content .hub-card {
  display: block;
  text-decoration: none;
}
.article-content .hub-card:hover {
  border-color: var(--accent);
}
.article-content .hub-card p,
.article-content .card p {
  font-size: 12px;
}
.article-content .name {
  display: block;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 9px;
}
.article-content .desc {
  display: block;
}
.article-content .where,
.article-content .distance,
.article-content .tag {
  font-size: 10px;
  color: var(--muted);
  display: inline-block;
}
.article-content .callout,
.article-content .notice,
.article-content .group-note.warn,
.article-content .journey-callout,
.article-content .local-tip {
  background: var(--tint);
  border-left: 3px solid var(--accent);
  padding: 23px;
  margin: 27px 0;
}
.article-content .callout h2 {
  margin: 0 0 12px;
  font-size: 22px;
}
.article-content .nearby {
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding-top: 12px;
}
.article-content .nearby-links,
.article-content .cta-row,
.article-content .card-actions,
.article-content .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.article-content .nearby-links a {
  padding: 9px 12px;
  background: var(--tint);
  font-size: 11px;
  border-radius: 4px;
  text-decoration: none;
}
.article-content .cta-row {
  margin: 25px 0;
}
.article-content iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--line);
  min-height: 300px;
  border-radius: var(--radius);
  margin: 20px 0;
}
.article-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  display: block;
  overflow: auto;
  margin: 20px 0;
}
.article-content th,
.article-content td {
  text-align: left;
  padding: 12px;
  border-bottom: 1px solid var(--line);
}
.article-content summary {
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
  padding: 15px 0;
}
.article-content details {
  border-bottom: 1px solid var(--line);
}
.article-content .section-kicker {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.article-content .map-actions,
.article-content .button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.article-content a {
  overflow-wrap: anywhere;
}
.article-content input,
.article-content select,
.article-content textarea {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  padding: 12px;
  max-width: 100%;
  border-radius: 4px;
}
.article-content label {
  display: block;
  margin-top: 13px;
}
.article-content .trust-row,
.article-content .local-intent-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.article-content .table-wrap {
  overflow-x: auto;
}
.directory-hero {
  padding: 26px 0 48px;
}
.directory-hero h1,
.profile-hero h1 {
  font-size: clamp(2.8rem, 4.7vw, 4.4rem);
}
.directory-feature {
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 27px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.directory-feature h2 {
  font-size: 27px;
  margin-bottom: 12px;
}
.directory-feature .eyebrow {
  font-size: 9px;
  margin-bottom: 10px;
}
.directory-feature p {
  font-size: 12px;
  color: var(--muted);
}
.directory-feature > div:last-child {
  flex-shrink: 0;
}
.directory-feature > div:last-child p {
  font-size: 9px;
  margin-top: 12px;
}
.directory-section {
  padding: 55px 0 70px;
  scroll-margin-top: 25px;
}
.directory-search {
  margin: 25px 0 20px;
}
.directory-search label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}
.directory-search > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 10px 8px 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
}
.directory-search input {
  border: 0;
  background: transparent;
  flex: 1;
  min-width: 0;
  color: var(--ink);
  padding: 10px 0;
  font-size: 13px;
}
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-chips button {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 30px;
  padding: 10px 16px;
  font-size: 10px;
  min-height: 40px;
}
.filter-chips button[aria-pressed="true"] {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}
.results-count {
  font-size: 11px;
  color: var(--muted);
  margin: 25px 0 18px;
}
.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.operator-card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 25px;
  display: flex;
  flex-direction: column;
  scroll-margin-top: 30px;
}
.operator-card-heading {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.operator-card-heading h3 {
  font-size: 19px;
  flex: 1;
}
.operator-card-heading .small-monogram {
  height: 35px;
  width: 35px;
  font-size: 16px;
}
.featured-label {
  font-size: 8px;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 3px 6px;
  background: var(--lime);
  color: #173e33;
}
.operator-card > p {
  font-size: 12px;
  color: var(--muted);
  overflow-wrap: anywhere;
}
.operator-card .service-tags {
  margin: 0 0 22px;
}
.operator-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: auto;
}
.operator-actions .button {
  font-size: 11px;
  padding: 12px 15px;
  min-height: 44px;
}
.operator-actions .text-link {
  font-size: 10px;
}
.listing-source,
.operator-card .listing-source {
  font-size: 9px;
  color: var(--muted);
  margin-top: 18px;
  line-height: 1.7;
}
.contact-details {
  margin-top: 15px;
  font-size: 10px;
  color: var(--muted);
}
.contact-details summary {
  cursor: pointer;
}
.contact-details p {
  padding-top: 10px;
  overflow-wrap: anywhere;
}
.directory-note {
  padding: 30px;
  border-left: 3px solid var(--accent);
  background: var(--tint);
  margin-top: 35px;
}
.directory-note h2 {
  font-size: 23px;
  margin-bottom: 12px;
}
.directory-note p {
  font-size: 13px;
}
.empty-results {
  text-align: center;
  padding: 50px 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.empty-results h3 {
  margin-bottom: 15px;
}
.profile-hero {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 25px 0 35px;
}
.profile-hero .hero-actions {
  margin-top: 25px;
}
.alpha-identity {
  background: var(--green);
  color: #f8faef;
  min-height: 390px;
  border-radius: 65px 5px 5px 5px;
  padding: 35px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.alpha-identity > .eyebrow {
  font-size: 8px;
  color: var(--lime);
}
.alpha-letter {
  font:
    150px/1.3 Fraunces,
    serif;
  color: var(--lime);
  letter-spacing: -0.08em;
}
.alpha-letter span {
  font:
    50px/1 Manrope,
    sans-serif;
  display: inline-block;
  vertical-align: top;
  margin-top: 30px;
}
.alpha-identity h2 {
  font-size: 30px;
}
.alpha-identity > a {
  font-size: 11px;
  margin-top: 20px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.service-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: start;
}
.service-icon {
  padding: 10px;
  border-radius: 50%;
  background: var(--tint);
  margin-bottom: 22px;
}
.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.service-card p {
  font-size: 12px;
  color: var(--muted);
}
.service-card a {
  margin-top: auto;
}
.photo-credit {
  margin: 25px 0;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}
.photo-credit img {
  max-width: 400px;
  border-radius: var(--radius);
  margin-bottom: 20px;
}
.hero-photo > img {
  object-position: 18% 50%;
}
.photo-credit img {
  max-width: min(400px, 100%);
}
@media (min-width: 1500px) {
  .home-hero h1 {
    font-size: 80px;
  }
  .hero-photo {
    min-height: 575px;
  }
}
@media (max-width: 1150px) {
  .container {
    width: calc(100% - 64px);
  }
  .primary-nav {
    gap: 19px;
  }
  .header-inner {
    gap: 16px;
  }
  .header-actions .button {
    padding: 12px;
  }
  .home-hero {
    gap: 28px;
  }
  .hero-photo {
    min-height: 480px;
  }
  .home-hero h1 {
    font-size: clamp(3rem, 5.1vw, 4rem);
  }
  .home-hero .hero-actions {
    gap: 17px;
  }
  .hero-actions .button {
    padding: 14px 18px;
  }
  .journey-strip {
    padding: 22px 20px;
    grid-template-columns: 0.95fr 1fr 1fr 1fr;
  }
  .journey-strip > a {
    gap: 10px;
    padding: 4px 13px;
  }
  .journey-strip small {
    font-size: 8px;
  }
  .journey-strip > a > svg:first-child {
    width: 22px;
  }
  .journey-strip > a > svg:last-child {
    display: none;
  }
  .featured-bottom {
    gap: 16px;
    flex-wrap: wrap;
  }
  .station-feature > div {
    padding: 32px;
  }
  .article-layout {
    gap: 35px;
    grid-template-columns: minmax(0, 1fr) 240px;
  }
  .directory-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .profile-hero {
    gap: 40px;
  }
}
@media (max-width: 900px) {
  .header-inner {
    min-height: 88px;
    flex-wrap: wrap;
    position: relative;
  }
  .header-actions .button {
    display: none;
  }
  .primary-nav {
    gap: 22px;
  }
  .primary-nav a {
    font-size: 11px;
  }
  .home-hero {
    gap: 25px;
  }
  .home-hero h1 {
    font-size: 46px;
  }
  .home-hero h1 em {
    font-size: 0.85em;
    white-space: normal;
  }
  .hero-photo {
    min-height: 445px;
    border-top-left-radius: 60px;
  }
  .hero-description {
    font-size: 12px;
  }
  .hero-actions {
    gap: 17px;
  }
  .home-hero .hero-actions {
    align-items: start;
    flex-direction: column;
    gap: 16px;
  }
  .hero-footnote {
    font-size: 9px;
  }
  .photo-label {
    left: 20px;
    font-size: 11px;
  }
  .local-stamp {
    width: 85px;
    height: 85px;
    left: calc(48% - 40px);
    bottom: 72px;
  }
  .local-stamp span {
    font-size: 5px;
  }
  .journey-strip {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 23px;
  }
  .journey-strip > a:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }
  .journey-strip > a:nth-child(2) {
    border-left: 0;
  }
  .journey-strip > a > svg:last-child {
    display: block;
  }
  .journey-strip > a {
    padding-inline: 0;
  }
  .journey-strip > a > span {
    font-size: 12px;
  }
  .journey-strip small {
    font-size: 9px;
  }
  .home-section {
    padding: 55px 0;
  }
  .section-heading h2 {
    font-size: 29px;
  }
  .section-heading > .text-link {
    font-size: 10px;
  }
  .operator-feature-grid {
    gap: 26px;
    grid-template-columns: 1fr 1fr;
  }
  .featured-operator {
    padding: 26px;
  }
  .featured-operator h3 {
    font-size: 28px;
  }
  .operator-summary p {
    font-size: 9px;
  }
  .operator-summary h3 {
    font-size: 16px;
  }
  .number-link {
    font-size: 15px;
  }
  .explore-card {
    min-height: 320px;
  }
  .explore-card h3 {
    font-size: 28px;
  }
  .topic-links {
    flex-wrap: wrap;
    gap: 16px;
  }
  .topic-links > a {
    width: calc(50% - 10px);
  }
  .station-feature > div {
    padding: 27px;
  }
  .station-feature h2 {
    font-size: 35px;
  }
  .practical-section {
    gap: 35px;
  }
  .practical-section h2 {
    font-size: 35px;
  }
  .footer-grid {
    gap: 22px;
  }
  .page-hero {
    gap: 30px;
  }
  .page-hero img {
    height: 230px;
  }
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-sidebar {
    position: static;
  }
  .article-sidebar h2 br {
    display: none;
  }
  .sidebar-links {
    display: flex;
    gap: 25px;
  }
  .sidebar-links > a {
    flex: 1;
  }
  .profile-hero {
    gap: 25px;
  }
  .alpha-identity {
    min-height: 350px;
    padding: 25px;
  }
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .container {
    width: calc(100% - 40px);
  }
  .topline {
    font-size: 8px;
  }
  .topline .container {
    min-height: 29px;
  }
  .header-inner {
    min-height: 80px;
    gap: 12px;
  }
  .brand-symbol {
    width: 39px;
    height: 39px;
  }
  .brand-symbol svg {
    width: 22px;
  }
  .brand-name {
    font-size: 25px;
  }
  .brand-small {
    font-size: 7px;
  }
  .header-actions {
    margin-left: 0;
  }
  .menu-toggle {
    display: flex;
    gap: 6px;
    font-size: 11px;
    margin-left: auto;
    order: 1;
  }
  .header-actions {
    order: 2;
  }
  .primary-nav {
    order: 3;
    flex: 0 0 100%;
    padding-bottom: 17px;
    justify-content: space-between;
    gap: 12px;
    margin: 0;
  }
  .js .primary-nav {
    display: none;
  }
  .js .primary-nav.is-open {
    display: flex;
  }
  .primary-nav a {
    font-size: 10px;
  }
  .theme-toggle {
    min-width: 32px;
  }
  .home-hero {
    grid-template-columns: 1fr;
    gap: 27px;
    padding: 32px 0 28px;
  }
  .home-hero-copy {
    padding: 0;
  }
  .home-hero .eyebrow {
    font-size: 9px;
    margin-bottom: 22px;
  }
  .home-hero h1 {
    font-size: clamp(2.6rem, 9.2vw, 3.9rem);
    line-height: 1.09;
  }
  .home-hero h1 em {
    font-size: 0.97em;
    white-space: nowrap;
  }
  .hero-description {
    font-size: 13px;
    margin: 21px 0 24px;
  }
  .home-hero .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  .hero-actions .button {
    font-size: 11px;
    padding: 14px 18px;
  }
  .hero-actions .text-link {
    font-size: 11px;
    gap: 7px;
  }
  .hero-footnote {
    margin-top: 18px;
  }
  .hero-photo {
    min-height: 340px;
    border-radius: 65px 5px 5px 5px;
  }
  .hero-photo img {
    object-position: center 53%;
  }
  .photo-label {
    font-size: 13px;
    bottom: 38px;
    left: 23px;
  }
  .local-stamp {
    left: auto;
    right: 15px;
    bottom: 310px;
    width: 83px;
    height: 83px;
  }
  .journey-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
    gap: 0;
    padding: 23px;
  }
  .journey-strip > div {
    padding-bottom: 18px;
  }
  .journey-strip h2 {
    font-size: 20px;
  }
  .journey-strip .eyebrow {
    font-size: 8px;
  }
  .journey-strip > a,
  .journey-strip > a:nth-child(2),
  .journey-strip > a:nth-child(3) {
    border: 0;
    border-top: 1px solid var(--line);
    padding: 17px 0;
    gap: 18px;
  }
  .journey-strip > a:last-child {
    padding-bottom: 0;
  }
  .journey-strip > a > svg:first-child {
    width: 25px;
  }
  .journey-strip > a > span {
    font-size: 12px;
  }
  .journey-strip small {
    font-size: 10px;
  }
  .home-section {
    padding: 44px 0;
  }
  .section-heading {
    align-items: start;
    gap: 17px;
    margin-bottom: 25px;
    flex-direction: column;
  }
  .section-heading h2 {
    font-size: 28px;
  }
  .section-heading > .text-link {
    font-size: 11px;
  }
  .operator-feature-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .featured-operator {
    padding: 26px;
  }
  .featured-operator h3 {
    font-size: 33px;
  }
  .featured-operator > p {
    font-size: 13px;
  }
  .feature-top .eyebrow {
    font-size: 8px;
  }
  .service-tags > span {
    font-size: 10px;
  }
  .featured-bottom {
    gap: 18px;
  }
  .featured-bottom .button {
    font-size: 11px;
    padding: 14px 17px;
  }
  .featured-operator .feature-disclosure {
    font-size: 9px;
  }
  .other-operators {
    padding: 0 3px;
  }
  .operator-summary {
    padding: 19px 0;
  }
  .operator-summary h3 {
    font-size: 19px;
  }
  .operator-summary p {
    font-size: 10px;
  }
  .number-link {
    font-size: 17px;
  }
  .small-note {
    font-size: 11px;
  }
  .explore-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }
  .explore-card {
    min-height: 310px;
  }
  .explore-card > div {
    left: 25px;
    right: 25px;
  }
  .explore-card h3 {
    font-size: 31px;
  }
  .topic-links {
    padding-top: 22px;
    gap: 14px;
  }
  .topic-links a {
    font-size: 10px;
    gap: 8px;
    justify-content: space-between;
  }
  .station-feature {
    grid-template-columns: 1fr;
  }
  .station-feature > figure {
    min-height: 255px;
  }
  .station-feature > div {
    padding: 30px 27px;
  }
  .station-feature h2 {
    font-size: 37px;
  }
  .station-feature > div > p:not(.eyebrow) {
    font-size: 13px;
  }
  .local-note p {
    font-size: 11px;
  }
  .practical-section {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .practical-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .faq-list summary {
    font-size: 13px;
  }
  .editor-note {
    padding: 30px 0 10px;
    gap: 15px;
    margin-bottom: 37px;
  }
  .note-mark {
    font-size: 70px;
  }
  .editor-note h2 {
    font-size: 26px;
  }
  .editor-note p:not(.eyebrow) {
    font-size: 12px;
  }
  .editor-note .eyebrow {
    font-size: 8px;
  }
  .closing-band {
    padding: 36px 0;
  }
  .closing-band .container {
    align-items: start;
    flex-direction: column;
    gap: 24px;
  }
  .closing-band h2 {
    font-size: 34px;
  }
  .closing-band .eyebrow {
    font-size: 8px;
  }
  .site-footer {
    padding-top: 35px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 33px 23px;
  }
  .footer-grid h2 {
    margin-bottom: 16px;
  }
  .footer-grid > div > p {
    font-size: 11px;
  }
  .footer-grid > div > a:not(.brand) {
    font-size: 11px;
  }
  .disclosure {
    margin-top: 30px;
    font-size: 10px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    font-size: 9px;
    gap: 10px 16px;
  }
  .footer-bottom > span:nth-child(2) {
    order: 3;
    flex-basis: 100%;
  }
  .footer-bottom > a {
    margin-left: auto;
  }
  .breadcrumbs {
    padding: 19px 0;
    font-size: 9px;
  }
  .page-hero {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 20px 0 30px;
    margin-bottom: 30px;
  }
  .page-hero .eyebrow {
    font-size: 9px;
  }
  .page-hero h1 {
    font-size: 37px;
  }
  .page-hero .lede {
    font-size: 14px;
    margin-top: 18px;
  }
  .page-hero img {
    height: 200px;
    border-top-left-radius: 45px;
  }
  .article-layout {
    gap: 28px;
  }
  .article-content {
    font-size: 14px;
  }
  .article-content h2 {
    font-size: 26px;
  }
  .article-content .card-grid,
  .article-content .hub-grid,
  .article-content .place-grid,
  .article-content .village-grid,
  .article-content .journey-grid {
    grid-template-columns: 1fr;
  }
  .article-content .card,
  .article-content .hub-card,
  .article-content .place-card,
  .article-content .village-chip {
    padding: 20px;
  }
  .article-content .card p {
    font-size: 13px;
  }
  .article-content iframe {
    min-height: 250px;
  }
  .sidebar-links {
    display: block;
  }
  .directory-hero {
    padding: 20px 0 32px;
  }
  .directory-hero h1,
  .profile-hero h1 {
    font-size: 38px;
  }
  .directory-hero .lede,
  .profile-hero .lede {
    font-size: 14px;
  }
  .directory-feature {
    align-items: start;
    flex-direction: column;
    padding: 25px;
    gap: 22px;
  }
  .directory-feature > div:last-child {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
  }
  .directory-feature > div:last-child p {
    margin: 0;
    font-size: 8px;
  }
  .directory-feature .button {
    font-size: 11px;
    padding: 13px 16px;
  }
  .directory-section {
    padding: 37px 0 45px;
  }
  .directory-search > div {
    gap: 9px;
    padding-left: 12px;
  }
  .directory-search input {
    font-size: 12px;
  }
  .directory-search input::placeholder {
    font-size: 10px;
  }
  .directory-search .button {
    padding: 10px 12px;
    font-size: 10px;
  }
  .filter-chips {
    gap: 7px;
  }
  .filter-chips button {
    padding: 9px 12px;
    font-size: 9px;
  }
  .directory-grid {
    grid-template-columns: 1fr;
  }
  .operator-card {
    padding: 23px;
  }
  .operator-card > p {
    font-size: 13px;
  }
  .operator-card-heading h3 {
    font-size: 20px;
  }
  .operator-actions .button {
    font-size: 12px;
  }
  .operator-card .listing-source {
    font-size: 10px;
  }
  .contact-details {
    font-size: 11px;
  }
  .directory-note {
    padding: 25px;
  }
  .profile-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 18px;
  }
  .alpha-identity {
    min-height: 290px;
  }
  .alpha-letter {
    font-size: 120px;
  }
  .alpha-identity > .eyebrow {
    margin-bottom: 0;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .service-card {
    padding: 25px;
  }
  .service-card p {
    font-size: 13px;
  }
  .service-card h3 {
    font-size: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
@media print {
  .topline,
  .site-header,
  .site-footer,
  .closing-band,
  .article-sidebar,
  .filter-chips,
  .directory-search {
    display: none;
  }
  .container {
    width: 100%;
  }
  .article-layout {
    display: block;
  }
  body {
    color: #000;
    background: #fff;
  }
  .home-hero,
  .directory-grid {
    display: block;
  }
  .operator-card {
    break-inside: avoid;
    margin-bottom: 15px;
  }
}

@media (max-width: 700px) {
  .hero-photo > img {
    object-position: 18% 50%;
  }
}
/* Shared destination photography and editorial layouts. */
.guide-photo { min-width: 0; margin: 0; }
.guide-photo img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--radius); }
.guide-photo figcaption { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 3px 12px; margin-top: 8px; font-size: 10px; line-height: 1.6; color: var(--muted); text-align: left; }
.guide-photo figcaption a { color: inherit; }
.page-hero .guide-photo figcaption { font-size: 10px; }
.page-hero-visual { grid-template-columns: 1.1fr 1fr; gap: 45px; }
.page-hero-visual .guide-photo img { height: auto; aspect-ratio: 4 / 3; border-radius: 50px 5px 5px 5px; }
.discovery-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 35px 25px; margin: 25px 0 45px; }
.discovery-card { min-width: 0; }
.discovery-copy { padding: 20px 0 0; }
.discovery-copy .eyebrow { font-size: 10px; }
.article-content .discovery-copy h3 { font: 500 27px/1.2 Fraunces,Georgia,serif; margin: 10px 0 12px; }
.discovery-copy h3 a { text-decoration: none; }
.discovery-copy h3 a:hover { text-decoration: underline; text-underline-offset: 5px; }
.discovery-copy p:not(.eyebrow) { color: var(--muted); font-size: 13px; }
.destination-stories { margin: 25px 0 40px; }
.destination-story { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; padding: 28px 0; border-top: 1px solid var(--line); scroll-margin-top: 30px; }
.destination-story .guide-photo img { aspect-ratio: 4 / 3; }
.destination-story .eyebrow { font-size: 9px; }
.article-content .destination-story h3 { font: 500 29px/1.2 Fraunces,Georgia,serif; margin: 8px 0 14px; }
.destination-copy > p:not(.eyebrow) { font-size: 13px; }
.journey-note { border-left: 2px solid var(--accent); padding-left: 13px; margin: 18px 0; color: var(--muted); }
.journey-note strong { display: block; color: var(--ink); }
.destination-copy .text-link { font-size: 12px; }
.article-content .place-card .guide-photo { margin: -8px -8px 20px; }
.article-content .attraction-card { padding: 24px 0; border-bottom: 1px solid var(--line); }
.article-content .attraction-card > .guide-photo { margin-bottom: 20px; }
.article-content .attraction-card > .guide-photo img { max-height: 340px; }
.article-content .walk-card { margin: 24px 0; }
.article-content .walk-card .guide-photo { margin-bottom: 20px; }
.article-content .walk-card .guide-photo img { max-height: 330px; }
.guide-jumps { display: flex; gap: 10px; flex-wrap: wrap; margin: 0 0 28px; }
.guide-jumps a { border: 1px solid var(--line); padding: 9px 15px; border-radius: 30px; text-decoration: none; font-size: 12px; }
.guide-jumps a:hover { background: var(--tint); }
.home-discoveries { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 28px; margin-top: 35px; }
.home-discoveries h3 { font: 500 29px/1.2 Fraunces,Georgia,serif; margin: 10px 0 12px; }
.home-discoveries h3 a { text-decoration: none; }
.home-discoveries h3 a:hover { text-decoration: underline; }
.home-discoveries .discovery-copy p:not(.eyebrow) { font-size: 13px; }
.photo-credit { scroll-margin-top: 25px; }
.photo-credit p { overflow-wrap: anywhere; }
@media (max-width: 900px) {
 .page-hero-visual { gap: 25px; }
 .home-discoveries { gap: 18px; }
 .home-discoveries h3 { font-size: 23px; }
}
@media (max-width: 600px) {
 .page-hero-visual { grid-template-columns: 1fr; }
 .page-hero-visual .guide-photo img { aspect-ratio: 3 / 2; }
 .discovery-grid,.home-discoveries,.destination-story { grid-template-columns: 1fr; }
 .home-discoveries { gap: 30px; }
 .destination-story { gap: 20px; }
 .destination-story .guide-photo img { aspect-ratio: 3 / 2; }
 .discovery-grid { gap: 30px; }
}
/* Rural booking recommendation within the FAQ. */
.local-booking { scroll-margin-top: 24px; }
.article-content .local-booking #local-booking-title { font: 500 clamp(29px,3.2vw,42px)/1.18 Fraunces,Georgia,serif; margin: 12px 0 22px; }
.local-booking-lede { font-size: 16px; line-height: 1.85; max-width: 750px; }
.local-booking-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; margin: 28px 0; }
.article-content .local-booking-intro h3 { margin-top: 0; font-size: 24px; }
.local-booking-intro p + p,.local-booking-reasons p + p { margin-top: 12px; }
.local-booking-reasons .eyebrow { font-size: 10px; }
.article-content .local-booking-reasons h3 { margin: 14px 0; font-size: 23px; }
.article-content .local-booking-reasons p:not(.eyebrow) { font-size: 14px; }
.booking-example { padding: 28px; border-left: 3px solid var(--accent); background: var(--tint); margin: 30px 0; border-radius: var(--radius); }
.article-content .booking-example h3 { margin-top: 10px; }
.booking-sources { color: var(--muted); font-size: 12px; margin-top: 24px; }
@media (max-width:600px) {
 .local-booking-intro { grid-template-columns: 1fr; }
 .booking-example { padding: 22px; }
}
/* Editorial recommendations shared by the homepage and Places hub. */
.community-features { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 26px; margin: 26px 0 38px; }
.community-feature { min-width: 0; padding: 18px; border: 1px solid var(--line); background: var(--surface); border-radius: var(--radius); }
.community-feature-copy { padding: 20px 5px 6px; }
.community-feature-label { display: inline-block; padding: 5px 11px; background: var(--lime); color: #193c33; font-size: 10px; font-weight: 750; border-radius: 20px; text-decoration: none; margin-bottom: 16px; }
.article-content a.community-feature-label { color: #193c33; }
.community-feature .eyebrow { font-size: 10px; }
.community-feature h3,.article-content .community-feature h3 { font: 500 28px/1.2 Fraunces,Georgia,serif; margin: 12px 0; }
.community-feature p:not(.eyebrow) { font-size: 14px; }
.feature-reason { border-left: 2px solid var(--accent); padding-left: 12px; margin: 18px 0; color: var(--muted); }
.feature-reason strong { display: block; color: var(--ink); }
.community-feature .text-link { font-size: 13px; }
@media(max-width:600px) { .community-features { grid-template-columns: 1fr; gap: 22px; } .community-feature { padding: 14px; } }
/* Credited outbound access to the Tourist Information webcam. */
.town-webcam { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items: center; gap: 28px; padding: 28px; margin: 32px 0; background: var(--tint); border: 1px solid var(--line); border-radius: var(--radius); scroll-margin-top: 25px; }
.town-webcam h2,.article-content .town-webcam h2 { font-size: 26px; margin: 8px 0 14px; }
.town-webcam p:not(.eyebrow) { font-size: 14px; }
.town-webcam p.webcam-credit { font-size: 11px; color: var(--muted); margin-top: 12px; }
.town-webcam .button { white-space: nowrap; }
@media(max-width:900px) { .town-webcam { grid-template-columns: 1fr; gap: 20px; } .town-webcam .button { justify-self: start; } }
@media(max-width:600px) { .town-webcam { padding: 22px; } }
