*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:           #FAF8F3;
  --stone:           #F0EAE0;
  --border:          #E0D3C0;
  --text:            #28190E;
  --text-mid:        #6A5640;
  --text-light:      #9B8570;
  --terracotta:      #C07248;
  --terracotta-dark: #9E5C35;
  --terracotta-bg:   #F8EFE8;
  --sage:            #536644;
  --sage-bg:         #EBF0E5;
  --white:           #FFFFFF;
  --serif:           'Cormorant Garamond', Georgia, serif;
  --sans:            'DM Sans', system-ui, sans-serif;
  --max-w:           1180px;
}

html  { scroll-behavior: smooth; }
body  {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  background: var(--cream);
  color: var(--text);
}

img { display: block; max-width: 100%; }
a   { color: inherit; }

/* ── NAV ────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 62px;
  background: rgba(250,248,243,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-logo {
  font-family: var(--serif);
  font-size: 17px; font-weight: 500; letter-spacing: 0.07em;
  text-decoration: none; color: var(--text); white-space: nowrap;
}
.site-logo em { color: var(--terracotta); font-style: normal; }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--text-mid); text-decoration: none; transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--white); background: var(--terracotta);
  padding: 9px 22px; text-decoration: none; transition: background .2s;
}
.nav-cta:hover { background: var(--terracotta-dark); }

/* ── HERO ───────────────────────────────────────── */
.hero {
  margin-top: 62px; position: relative;
  height: 72vh; min-height: 480px; overflow: hidden;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
}
.hero-grad {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(40,25,14,.78) 0%,
    rgba(40,25,14,.22) 45%,
    rgba(40,25,14,.06) 100%
  );
}
.hero-content {
  position: absolute; bottom: 52px; left: 56px; right: 56px;
}
.hero-pills { display: flex; gap: 8px; margin-bottom: 14px; }
.hero-pill {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.35);
  padding: 4px 13px;
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 300; line-height: 1.08;
  color: var(--white); margin-bottom: 10px;
}
.hero-loc {
  font-size: 14px; font-weight: 300;
  letter-spacing: 0.04em; color: rgba(255,255,255,.65);
}
.hero-loc::before { content: '↗  '; font-size: 12px; }

/* ── BREADCRUMB ─────────────────────────────────── */
.breadcrumb {
  max-width: var(--max-w); margin: 0 auto;
  padding: 18px 48px;
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--text-light);
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--text-light); text-decoration: none; transition: color .2s; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb-sep { color: var(--border); }
.breadcrumb span { color: var(--text-mid); }

/* ── PAGE LAYOUT ────────────────────────────────── */
.page-wrap {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 48px 80px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 72px;
  align-items: start;
}

/* ── CONTENT COLUMN ─────────────────────────────── */
.content-col { min-width: 0; padding-top: 48px; }

.eyebrow {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 14px;
}
.page-title {
  font-family: var(--serif);
  font-size: 46px; font-weight: 300; line-height: 1.1;
  color: var(--text); margin-bottom: 14px;
}
.page-standfirst {
  font-family: var(--serif);
  font-size: 21px; font-weight: 300; font-style: italic;
  color: var(--text-mid); line-height: 1.55; margin-bottom: 28px;
}
.rule { width: 36px; height: 1px; background: var(--terracotta); margin-bottom: 28px; }

.body-text { font-size: 17px; line-height: 1.88; }
.body-text p { margin-bottom: 22px; }
.body-text p:last-child { margin-bottom: 0; }

/* ── HIGHLIGHT PANEL ────────────────────────────── */
.highlight-panel {
  border-left: 3px solid var(--terracotta);
  background: var(--stone);
  padding: 28px 32px;
  margin: 36px 0 48px;
}
.highlight-panel-title {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 14px;
}
.highlight-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.highlight-list li {
  font-size: 15px; font-weight: 300;
  padding-left: 20px; position: relative; color: var(--text);
}
.highlight-list li::before { content: '–'; position: absolute; left: 0; color: var(--terracotta); }

/* ── SECTION HEADERS ────────────────────────────── */
.sec-label {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-light);
  padding-top: 44px; margin-bottom: 18px;
  border-top: 1px solid var(--border);
}
.sec-title {
  font-family: var(--serif);
  font-size: 30px; font-weight: 400;
  color: var(--text); margin-bottom: 24px;
}

/* ── GALLERY ────────────────────────────────────── */
.gallery { margin-bottom: 52px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 6px;
}
.g-main { grid-column: 1 / 3; grid-row: 1 / 3; }
.gallery-item { overflow: hidden; background: var(--stone); }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ── PROGRAMME CARDS ────────────────────────────── */
.programme { margin-bottom: 52px; }
.programme-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.prog-card { background: var(--white); border: 1px solid var(--border); padding: 26px; }
.prog-card-marker { width: 20px; height: 1px; background: var(--terracotta); margin-bottom: 16px; }
.prog-card-title {
  font-family: var(--serif);
  font-size: 20px; font-weight: 500;
  color: var(--text); margin-bottom: 8px;
}
.prog-card-desc { font-size: 14px; font-weight: 300; color: var(--text-mid); line-height: 1.7; }

/* ── PRACTICAL INFO ─────────────────────────────── */
.practical { margin-bottom: 52px; }
.practical-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--border); background: var(--white);
}
.prac-item { padding: 20px 24px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.prac-item:nth-child(even)       { border-right: 0; }
.prac-item:nth-last-child(-n+2)  { border-bottom: 0; }
.prac-label {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 4px;
}
.prac-value { font-size: 15px; font-weight: 400; color: var(--text); }

/* ── MAP ────────────────────────────────────────── */
.map-section { margin-bottom: 52px; }
.map-frame { border: 1px solid var(--border); overflow: hidden; margin-bottom: 12px; }
.map-frame iframe { width: 100%; height: 310px; border: 0; display: block; }
.map-note { font-size: 13px; color: var(--text-mid); font-weight: 300; }

/* ── SIDEBAR ────────────────────────────────────── */
.sidebar-col { padding-top: 48px; position: sticky; top: 80px; }

.book-card { background: var(--white); border: 1px solid var(--border); margin-bottom: 14px; }
.book-card-head { background: var(--text); padding: 26px 28px; }
.book-card-eyebrow {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 6px;
}
.book-card-price { font-family: var(--serif); font-size: 34px; font-weight: 300; color: var(--white); }
.book-card-note { font-size: 12px; font-weight: 300; color: rgba(255,255,255,.45); margin-top: 4px; }
.book-card-body { padding: 24px 28px; }

.btn-book {
  display: block; width: 100%;
  background: var(--terracotta); color: var(--white);
  text-align: center; padding: 16px 12px;
  font-family: var(--sans); font-size: 12px;
  font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; transition: background .2s; margin-bottom: 10px;
}
.btn-book:hover { background: var(--terracotta-dark); }
.btn-site {
  display: block; width: 100%;
  border: 1px solid var(--border); color: var(--text-mid);
  text-align: center; padding: 14px 12px;
  font-family: var(--sans); font-size: 12px;
  font-weight: 400; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; transition: all .2s;
}
.btn-site:hover { border-color: var(--text); color: var(--text); }
.book-disclaimer {
  font-size: 11px; color: var(--text-light);
  text-align: center; margin-top: 16px;
  line-height: 1.65; font-style: italic;
}

.facts-card { background: var(--white); border: 1px solid var(--border); padding: 24px 28px; margin-bottom: 14px; }
.facts-title {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 18px;
}
.fact-row {
  display: flex; justify-content: space-between;
  align-items: baseline; padding: 10px 0;
  border-bottom: 1px solid var(--border); font-size: 14px;
}
.fact-row:last-child { border-bottom: 0; padding-bottom: 0; }
.fact-k { color: var(--text-light); font-weight: 300; }
.fact-v { color: var(--text); font-weight: 400; text-align: right; max-width: 55%; }

.email-card { background: var(--stone); border: 1px solid var(--border); padding: 26px 28px; }
.email-card-title {
  font-family: var(--serif);
  font-size: 22px; font-weight: 400; line-height: 1.25;
  color: var(--text); margin-bottom: 8px;
}
.email-card-sub { font-size: 13px; font-weight: 300; color: var(--text-mid); line-height: 1.65; margin-bottom: 18px; }
.email-input {
  width: 100%; border: 1px solid var(--border);
  background: var(--white); padding: 12px 14px;
  font-family: var(--sans); font-size: 14px;
  font-weight: 300; color: var(--text);
  margin-bottom: 8px; outline: none; transition: border-color .2s;
}
.email-input:focus { border-color: var(--terracotta); }
.email-btn {
  width: 100%; background: var(--sage); color: var(--white); border: none;
  padding: 13px; font-family: var(--sans); font-size: 11px;
  font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; transition: background .2s;
}
.email-btn:hover { background: var(--text); }

/* ── RELATED ────────────────────────────────────── */
.related {
  max-width: var(--max-w); margin: 0 auto 80px;
  padding: 52px 48px 0; border-top: 1px solid var(--border);
}
.related-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 32px; }
.related-title { font-family: var(--serif); font-size: 34px; font-weight: 300; }
.related-all {
  font-size: 12px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--terracotta); text-decoration: none;
}
.related-all:hover { text-decoration: underline; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.related-card { text-decoration: none; color: inherit; display: block; }
.related-img { aspect-ratio: 4/3; overflow: hidden; background: var(--stone); margin-bottom: 16px; }
.related-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.related-card:hover .related-img img { transform: scale(1.05); }
.related-pill {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 6px;
}
.related-name { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--text); line-height: 1.2; margin-bottom: 4px; }
.related-where { font-size: 13px; color: var(--text-light); font-weight: 300; }

/* ── FOOTER ─────────────────────────────────────── */
.site-footer { background: var(--text); }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 60px 48px 40px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer-brand { font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--white); margin-bottom: 12px; }
.footer-desc { font-size: 13px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,.4); }
.footer-col-title {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,.3); margin-bottom: 16px;
}
.footer-ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-ul a { font-size: 13px; font-weight: 300; color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s; }
.footer-ul a:hover { color: var(--white); }
.footer-base {
  border-top: 1px solid rgba(255,255,255,.08);
  max-width: var(--max-w); margin: 0 auto;
  padding: 22px 48px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,.35);
}
.footer-base a { color: rgba(255,255,255,.35); text-decoration: none; }
.footer-base a:hover { color: rgba(255,255,255,.7); }


/* ── RESPONSIVE ─────────────────────────────────── */

/* Tablet: stack sidebar below content */
@media (max-width: 960px) {
  .page-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 32px 60px;
  }
  .sidebar-col {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding-top: 0;
  }
  .email-card { grid-column: 1 / -1; }
}

/* Mobile: single column everything */
@media (max-width: 640px) {
  .site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { height: 55vh; }
  .hero-content { bottom: 28px; left: 24px; right: 24px; }
  .hero-h1 { font-size: 36px; }
  .breadcrumb { padding: 14px 20px; }
  .page-wrap { padding: 0 20px 48px; }
  .content-col { padding-top: 32px; }
  .sidebar-col { grid-template-columns: 1fr; }
  .page-title { font-size: 34px; }
  .page-standfirst { font-size: 17px; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .g-main { grid-column: 1 / -1; grid-row: auto; }
  .programme-grid { grid-template-columns: 1fr; }
  .practical-grid { grid-template-columns: 1fr; }
  .prac-item:nth-child(even) { border-right: 1px solid var(--border); }
  .prac-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .prac-item:last-child { border-bottom: 0; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; padding: 40px 20px 28px; }
  .footer-base { flex-direction: column; gap: 8px; text-align: center; padding: 20px; }
}



/* ── NEW CONTENT SECTIONS ────────────────────────────────────────── */

/* Shared spacing for new sections */
.editorial-review,
.tv-feature,
.setting-section,
.accommodation-section,
.food-section,
.fit-section,
.faq-section {
  margin-bottom: 52px;
}

/* ── TV FEATURE PANEL ──────────────────────────── */
.tv-feature-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  background: var(--stone);
  border: 1px solid var(--border);
  padding: 36px;
  margin-top: 0;
}
.tv-feature-badge {
  text-align: center;
  background: var(--text);
  color: var(--white);
  padding: 28px 32px;
  min-width: 140px;
  flex-shrink: 0;
}
.tv-badge-label {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 10px;
}
.tv-badge-show {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 6px;
}
.tv-badge-channel {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.tv-feature .sec-title { margin-bottom: 16px; }

/* ── ACCOMMODATION GRID ────────────────────────── */
.accom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 24px;
}
.accom-item {
  padding: 22px 26px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.accom-item:nth-child(even)      { border-right: 0; }
.accom-item:nth-last-child(-n+2) { border-bottom: 0; }
.accom-type {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
}
.accom-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── IS IT RIGHT FOR YOU ───────────────────────── */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 4px;
}
.fit-col {
  padding: 28px 30px;
  border: 1px solid var(--border);
}
.fit-yes { background: var(--sage-bg); border-color: rgba(83,102,68,.2); }
.fit-no  { background: var(--white); }
.fit-heading {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.fit-yes .fit-heading { color: var(--sage); }
.fit-no  .fit-heading { color: var(--text-light); }
.fit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fit-list li {
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}
.fit-yes .fit-list li::before { content: '✓'; position: absolute; left: 0; color: var(--sage); font-size: 12px; }
.fit-no  .fit-list li::before { content: '–'; position: absolute; left: 0; color: var(--text-light); }

/* ── FAQ ────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 4px;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.faq-item:last-child { border-bottom: 0; }
.faq-q {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background .2s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 300;
  color: var(--terracotta);
  flex-shrink: 0;
  transition: transform .3s;
}
.faq-item[open] .faq-q { background: var(--stone); }
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
  padding: 0 24px 22px;
}

/* ── RESPONSIVE ADDITIONS ──────────────────────── */
@media (max-width: 960px) {
  .tv-feature-inner  { grid-template-columns: 1fr; }
  .tv-feature-badge  { display: none; }
  .fit-grid          { grid-template-columns: 1fr; }
  .accom-grid        { grid-template-columns: 1fr; }
  .accom-item        { border-right: 1px solid var(--border); }
  .accom-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .accom-item:last-child           { border-bottom: 0; }
}

@media (max-width: 640px) {
  .tv-feature-inner { padding: 24px 20px; }
  .faq-q { font-size: 16px; padding: 16px 18px; }
  .faq-a { padding: 0 18px 18px; }
}

/* Fix FAQ marker on all browsers */
.faq-item summary { list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }