/*
Theme Name: Seagull Studio
Theme URI: https://seagullstudio.co.uk
Author: Seagull Studio
Author URI: https://seagullstudio.co.uk
Description: A custom one-page holiday let theme for Seagull Studio, Brighton & Hove. Built around a single homepage (The Studio, Photos, Amenities, Reviews) plus standalone pages for the Local Guide, full Photo Gallery, House Rules, Cancellation Policy and FAQ.
Version: 3.1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: seagull-studio
*/


  :root{
    --chalk:#F2F8F9;
    --slate:#489192;
    --teal:#489192;
    --rust:#E0825E;
    --sage:#7FAFAD;
    --ink:#26302F;
    --line: rgba(38,48,47,0.12);
    --max: 1140px;
  }
  *{margin:0;padding:0;box-sizing:border-box;}
  html{scroll-behavior:smooth;scroll-padding-top:80px;}

  /* Offset anchor scrolling so sticky header/nav don't cover section titles */
  section[id],
  .mobile-nav ~ * section[id] {
    scroll-margin-top: 60px;   /* desktop: just the sticky header */
  }
  @media (max-width:900px) {
    section[id] {
      scroll-margin-top: 100px;  /* mobile: header + nav strip */
    }
  }
  body{
    font-family:'Inter',sans-serif;
    color:var(--ink);
    background:var(--chalk);
    line-height:1.6;
    font-size:16px;
  }
  h1,h2,h3,h4{
    font-family:'Fraunces',serif;
    font-weight:600;
    letter-spacing:-0.01em;
    line-height:1.15;
  }
  h1{ font-size: clamp(2.2rem, 5vw, 3.6rem); }
  h2{ font-size: clamp(2rem, 4vw, 2.8rem); }
  h3{ font-size: clamp(1.15rem, 2vw, 1.4rem); }
  h4{ font-size: 1rem; }
  .mono{font-family:'JetBrains Mono',monospace;}
  .wrap{max-width:var(--max);margin:0 auto;padding:0 32px;}
  a{color:inherit;text-decoration:none;}
  /* Use class="content-link" on plain paragraph anchors in page content. */
  .content-link{color:var(--slate);text-decoration:underline;text-underline-offset:3px;transition:color 0.15s ease;}
  .content-link:hover{color:var(--rust);}


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

  /* ---------- HEADER ---------- */
  /* Single sticky wrapper holds both header bar and mobile nav strip */
  .site-header-wrap{
    position:sticky;
    top:0;
    z-index:100;
    overflow:hidden;  /* prevents margin collapse when sticky kicks in */
  }
  header{
    background:#E1F0F5;
    border-bottom:1px solid var(--line);
  }
  .nav{
    display:flex;align-items:center;justify-content:space-between;
    padding:14px 32px;
    max-width:var(--max);margin:0 auto;
    min-height:72px;  /* lock height so it never shrinks on scroll */
  }
  .logo{
    font-family:'Fraunces',serif;
    font-size:1.4rem;font-weight:600;
    display:flex;align-items:center;gap:10px;
  }
  .logo .tag{
    font-family:'JetBrains Mono',monospace;
    font-size:0.65rem;letter-spacing:0.18em;
    color:var(--sage);text-transform:uppercase;
    font-weight:500;
  }
  .logo-text{
    display:flex;flex-direction:column;gap:4px;line-height:1.1;
  }
  /* Desktop nav — inside the header bar */
  header nav ul{display:flex;gap:32px;list-style:none;}
  header nav a{font-size:0.92rem;font-weight:500;color:var(--ink);transition:color .2s;}
  header nav a:hover{color:var(--rust);}
  .nav-cta{
    background:var(--rust);color:var(--chalk);
    padding:10px 22px;border-radius:2px;
    font-size:0.88rem;font-weight:500;
    transition:background .2s;
  }
  .nav-cta:hover{background:var(--slate);}
  .nav-links-mobile{display:none;}

  /* Nav strip — mobile only, shown below header bar */
  .mobile-nav{
    display:none !important;
    z-index:99;
    background:var(--chalk);
    border-bottom:1px solid var(--line);
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
  }
  .mobile-nav ul{
    display:flex;list-style:none;
    padding:0 0 0 26px;
    margin:0 auto;
    max-width:var(--max);
    white-space:nowrap;
  }
  .mobile-nav li a{
    display:block;padding:10px 16px;
    font-size:0.88rem;font-weight:500;
    color:var(--ink);border-bottom:2px solid transparent;
    letter-spacing:0.02em;
    transition:color .2s,border-color .2s;
  }
  .mobile-nav li a:hover{color:var(--rust);border-bottom-color:var(--rust);}
  @media (max-width:900px){
    .mobile-nav ul{padding:0 8px;}
    .mobile-nav li a{padding:10px 10px;font-size:0.8rem;}
  }

  /* ---------- HERO ---------- */
  .hero{
    position:relative;
    height:88vh;min-height:560px;
    display:flex;align-items:flex-end;
    background:linear-gradient(180deg, rgba(46,92,90,0.05) 0%, rgba(46,92,90,0.55) 100%),
      url('hero.jpg') center/cover no-repeat;
  }
  .hero-content{
    width:100%;
    padding:80px 32px 48px;
    color:var(--chalk);
    max-width:var(--max);margin:0 auto;
  }
  .hero-eyebrow{
    font-family:'JetBrains Mono',monospace;
    font-size:0.78rem;letter-spacing:0.22em;text-transform:uppercase;
    margin-bottom:18px;color:var(--chalk);opacity:.9;
    text-shadow:0 2px 16px rgba(0,0,0,0.35);
  }
  .hero h1{
    font-size:clamp(2.8rem, 7vw, 5.2rem);
    font-weight:600;max-width:11ch;
    text-shadow:0 4px 24px rgba(0,0,0,0.35);
  }
  .hero p{
    margin-top:18px;font-size:1.15rem;max-width:42ch;font-weight:400;opacity:.95;
    text-shadow:0 2px 16px rgba(0,0,0,0.3);
  }
  .hero-meta{
    display:flex;gap:28px;margin-top:32px;flex-wrap:wrap;
  }
  .hero-meta div{
    font-family:'JetBrains Mono',monospace;font-size:0.85rem;
    border-left:2px solid var(--rust);padding-left:12px;
    text-shadow:0 2px 12px rgba(0,0,0,0.3);
  }
  .hero-meta span{display:block;font-size:0.68rem;letter-spacing:0.15em;opacity:.75;text-transform:uppercase;margin-bottom:4px;}
  .hero-credit{
    position:absolute;bottom:14px;right:18px;z-index:2;
    font-size:0.6rem;color:var(--chalk);opacity:.65;
    font-family:'Inter',sans-serif;
  }
  .hero-credit a{color:var(--chalk);text-decoration:underline;text-underline-offset:2px;}
  .hero-credit a:hover{opacity:.85;}

  /* ---------- SECTION GENERIC ---------- */
  section{padding:96px 0;}
  #location{padding-bottom:48px;}
  #reviews{padding-top:48px;}
  .section-head{
    display:flex;justify-content:space-between;align-items:flex-end;
    gap:32px;margin-bottom:48px;flex-wrap:wrap;
  }
  .section-eyebrow{
    font-family:'JetBrains Mono',monospace;font-size:0.78rem;
    letter-spacing:0.22em;text-transform:uppercase;color:var(--rust);
    margin-bottom:10px;
  }
  .section-head h2{font-size:clamp(2rem,4vw,2.8rem);}
  .section-head p{max-width:46ch;color:var(--ink);opacity:.75;font-size:1rem;}

  /* ---------- KEY ASPECTS ---------- */
  .aspects{
    display:grid;grid-template-columns:repeat(4,1fr);
    border:1px solid var(--line);
  }
  .aspect{
    padding:36px 28px;border-right:1px solid var(--line);
  }
  .aspect:last-child{border-right:none;}
  .aspect .num{
    font-family:'JetBrains Mono',monospace;font-size:0.75rem;color:var(--rust);
    margin-bottom:18px;letter-spacing:0.1em;
  }
  .aspect h3{font-size:1.15rem;margin-bottom:8px;font-weight:600;}
  .aspect p{font-size:0.92rem;opacity:.72;}

  /* ---------- GALLERY / ABOUT ---------- */
  .about-grid{
    display:grid;grid-template-columns:1.1fr 1fr;gap:64px;align-items:center;
  }
  .about-grid img{border-radius:2px;height:520px;object-fit:cover;}
  .about-copy .section-eyebrow{margin-bottom:10px;}
  .about-copy h2{font-size:clamp(2rem,4vw,2.6rem);margin-bottom:20px;}
  .about-copy p{opacity:.78;margin-bottom:16px;max-width:46ch;}
  .about-stats{
    display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-top:32px;padding-top:28px;
    border-top:1px solid var(--line);
  }
  .about-stats div{text-align:center;}
  .about-stats div span{display:block;font-family:'Fraunces',serif;font-size:1.9rem;font-weight:600;}
  .about-stats div p{font-size:0.8rem;opacity:.6;margin:0;}

  /* ---------- AMENITIES ---------- */
  .amenities{background:var(--slate);color:var(--chalk);}
  .amenities .section-eyebrow{color:#F0B49C;}
  .amenities .section-head p{color:var(--chalk);opacity:.65;}
  .amenities .section-head{margin-bottom:24px;}
  .amen-grid{
    display:grid;grid-template-columns:repeat(3,1fr);gap:1px;
    background:rgba(251,247,240,0.12);
    margin-top:0;
  }
  .amen-cat{background:var(--slate);padding:36px;}
  .amen-cat h3{
    font-size:1.05rem;margin-bottom:18px;
    font-family:'JetBrains Mono',monospace;font-weight:500;
    letter-spacing:0.05em;text-transform:uppercase;font-size:0.82rem;color:#F0B49C;
  }
  .amen-cat ul{list-style:none;}
  .amen-cat li{
    padding:9px 0;font-size:0.95rem;
    border-bottom:1px solid rgba(251,247,240,0.08);
    display:flex;align-items:center;gap:10px;
  }
  .amen-cat li:last-child{border-bottom:none;}
  .amen-cat li::before{content:"";width:6px;height:6px;background:var(--rust);flex-shrink:0;}

  /* ---------- LOCATION / TIDE NEARBY ---------- */
  .location-wrap{
    display:grid;grid-template-columns:1fr 1.3fr;gap:64px;
  }
  .loc-list{border-top:1px solid var(--line);}
  .loc-item{
    display:grid;grid-template-columns:64px 1fr auto;gap:18px;align-items:baseline;
    padding:22px 0;border-bottom:1px solid var(--line);
  }
  .loc-item .dist{
    font-family:'JetBrains Mono',monospace;font-size:0.85rem;color:var(--rust);font-weight:500;
  }
  .loc-item h4{font-size:1.05rem;font-weight:600;font-family:'Inter',sans-serif;}
  .loc-item p{font-size:0.85rem;opacity:.65;margin-top:2px;}
  .loc-group{
    padding:22px 0;border-bottom:1px solid var(--line);
  }
  .loc-group-head{
    display:grid;grid-template-columns:64px 1fr auto;gap:18px;align-items:baseline;
  }
  .loc-group-head .dist{
    font-family:'JetBrains Mono',monospace;font-size:0.85rem;color:var(--rust);font-weight:500;
  }
  .loc-group-head h4{font-size:1.05rem;font-weight:600;font-family:'Inter',sans-serif;}
  .loc-group-head .type{
    font-family:'JetBrains Mono',monospace;font-size:0.7rem;letter-spacing:0.12em;
    text-transform:uppercase;color:var(--sage);text-align:right;
  }
  .loc-sub-list{
    margin-top:14px;padding-left:82px;
    display:flex;flex-direction:column;gap:10px;
  }
  .loc-sub-item{font-size:0.9rem;}
  .loc-sub-item strong{font-weight:600;}
  .loc-sub-item span{opacity:.65;font-size:0.85rem;}
  .loc-item .type{
    font-family:'JetBrains Mono',monospace;font-size:0.7rem;letter-spacing:0.12em;
    text-transform:uppercase;color:var(--sage);text-align:right;
  }
  .map-frame{
    position:relative;
    border:1px solid var(--line);border-radius:2px;overflow:hidden;height:100%;min-height:480px;
  }
  .map-frame img{width:100%;height:100%;object-fit:cover;}
  .map-credit{
    position:absolute;bottom:10px;right:14px;z-index:2;
    font-size:0.6rem;color:var(--chalk);opacity:.8;
    font-family:'Inter',sans-serif;
    text-shadow:0 1px 6px rgba(0,0,0,0.4);
  }
  .map-credit a{color:var(--chalk);text-decoration:underline;text-underline-offset:2px;}
  .map-credit a:hover{opacity:.85;}

  /* ---------- PRICING / TIDE CHART ---------- */
  .pricing{background:var(--chalk);}
  .tide-chart{
    border:1px solid var(--line);border-radius:2px;overflow:hidden;
  }
  .tide-row{
    display:grid;grid-template-columns:160px 1fr 140px 140px;
    align-items:center;border-bottom:1px solid var(--line);
  }
  .tide-row:last-child{border-bottom:none;}
  .tide-row.head{
    background:var(--slate);color:var(--chalk);
    font-family:'JetBrains Mono',monospace;font-size:0.7rem;
    letter-spacing:0.15em;text-transform:uppercase;
    padding:14px 28px;
  }
  .tide-row.head > div:not(:first-child){padding:0 8px;}
  .tide-season{padding:24px 28px;}
  .tide-season h4{font-family:'Fraunces',serif;font-size:1.2rem;font-weight:600;}
  .tide-season span{font-size:0.8rem;opacity:.6;font-family:'JetBrains Mono',monospace;}
  .tide-bar-track{padding:0 28px;position:relative;}
  .tide-bar{
    height:6px;background:rgba(43,40,35,0.08);border-radius:3px;position:relative;overflow:hidden;
  }
  .tide-bar-fill{
    height:100%;background:var(--rust);border-radius:3px;
  }
  .tide-price{
    padding:0 28px;text-align:left;
    font-family:'JetBrains Mono',monospace;font-size:1.15rem;font-weight:500;
  }
  .tide-price span{display:block;font-size:0.72rem;opacity:.55;margin-top:2px;font-family:'Inter',sans-serif;}
  .tide-min{
    padding:0 28px;font-size:0.85rem;opacity:.65;
  }
  .pricing-note{
    margin-top:24px;font-size:0.88rem;opacity:.65;display:flex;gap:10px;align-items:baseline;
  }
  .pricing-note .dot{width:8px;height:8px;background:var(--rust);border-radius:50%;flex-shrink:0;transform:translateY(2px);}

  /* ---------- REVIEWS ---------- */
  .reviews{
    display:grid;grid-template-columns:repeat(3,1fr);gap:1px;
    background:var(--line);border:1px solid var(--line);
  }
  .review{background:var(--chalk);padding:36px;}

  /* ---------- PHOTO GALLERY ---------- */
  .gallery-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;  /* large col takes half, two small cols share half */
    grid-template-rows:204px 204px;
    gap:8px;
  }
  .gallery-grid img{
    width:100%;height:100%;object-fit:cover;border-radius:2px;
    display:block;
  }
  .gallery-grid .g-large{
    grid-column:1;grid-row:1 / 3;  /* large image: first col, both rows */
  }
  .g-more-wrap{
    position:relative;
    border-radius:2px;overflow:hidden;
  }
  .g-more-wrap img{
    width:100%;height:100%;object-fit:cover;display:block;
  }
  .g-more-btn{
    position:absolute;bottom:10px;right:10px;
    background:var(--rust);color:var(--chalk);
    font-family:'Inter',sans-serif;font-weight:600;font-size:0.78rem;
    padding:8px 16px;border-radius:2px;
    transition:background .2s,transform .2s;
  }
  .g-more-btn:hover{background:var(--slate);transform:translateY(-1px);}
  .review-score{
    font-family:'Fraunces',serif;font-size:1.1rem;font-weight:600;color:var(--rust);
    margin-bottom:14px;
  }
  .review p{font-size:0.96rem;opacity:.85;margin-bottom:18px;}
  .review-author{
    font-family:'JetBrains Mono',monospace;font-size:0.78rem;
    display:flex;justify-content:space-between;opacity:.6;
    border-top:1px solid var(--line);padding-top:14px;
  }
  .reviews-summary{
    display:flex;align-items:baseline;gap:24px;margin-bottom:48px;
    flex-wrap:wrap;
  }
  .reviews-summary .big{
    font-family:'Fraunces',serif;font-size:4rem;font-weight:600;line-height:1;
  }
  .reviews-summary .meta p{font-size:0.9rem;opacity:.65;}
  .reviews-summary .meta .stars{color:var(--rust);font-family:'JetBrains Mono',monospace;letter-spacing:0.15em;margin-bottom:4px;}

  /* ---------- CTA BAND ---------- */
  .cta-band{
    background:var(--rust);color:var(--chalk);text-align:center;padding:80px 0;
  }
  .cta-band h2{font-size:clamp(2rem,4.5vw,3.2rem);max-width:18ch;margin:0 auto 20px;}
  .cta-band p{opacity:.9;margin-bottom:32px;}
  .cta-btn{
    display:inline-block;background:var(--chalk);color:var(--rust);
    padding:16px 40px;border-radius:2px;font-weight:600;font-size:1rem;
    transition:transform .2s;
  }
  .cta-btn:hover{transform:translateY(-2px);}
  .cta-btn-solid{
    display:inline-block;background:var(--rust);color:var(--chalk);
    padding:14px 36px;border-radius:2px;font-weight:600;font-size:0.95rem;
    transition:background .2s,transform .2s;
  }
  .cta-btn-solid:hover{background:var(--slate);transform:translateY(-2px);}

  /* ---------- FOOTER ---------- */
  footer{background:var(--slate);color:var(--chalk);padding:64px 0 32px;}
  .footer-grid{
    display:grid;grid-template-columns:1.4fr 0.9fr 0.9fr 0.9fr 0.7fr;gap:40px;
    padding-bottom:48px;border-bottom:1px solid rgba(251,247,240,0.12);
  }
  .footer-grid h4{
    font-family:'JetBrains Mono',monospace;font-size:0.72rem;
    letter-spacing:0.18em;text-transform:uppercase;color:#F0B49C;margin-bottom:18px;
  }
  .footer-grid ul{list-style:none;}
  .footer-grid li{margin-bottom:10px;font-size:0.92rem;opacity:.85;}
  .footer-grid li a:hover{color:var(--rust);}
  .footer-brand .logo{color:var(--chalk);margin-bottom:16px;}
  .footer-brand p{font-size:0.92rem;opacity:.7;max-width:32ch;}
  .footer-bottom{
    padding-top:28px;display:flex;justify-content:space-between;
    font-size:0.8rem;opacity:.55;flex-wrap:wrap;gap:12px;
    font-family:'JetBrains Mono',monospace;
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width:900px){
    header nav ul{display:none;}
    .mobile-nav{display:block !important;}
    .nav{padding:12px 20px;}
    .logo .tag{display:none;}


    /* Gallery grid — stack cleanly: feature image full width, then 2-col grid */
    .gallery-grid{
      grid-template-columns:1fr 1fr;
      grid-template-rows:200px 160px 160px;
    }
    .gallery-grid .g-large{
      grid-column:1 / 3;  /* full width on mobile */
      grid-row:1;
    }

    .aspects{grid-template-columns:repeat(2,1fr);}
    .aspect{border-bottom:1px solid var(--line);}
    .aspect:nth-child(2n){border-right:none;}
    .about-grid{grid-template-columns:1fr;gap:32px;}
    .about-grid img{height:320px;}
    .about-stats{grid-template-columns:repeat(2,1fr);gap:20px;}
    .loc-sub-list{padding-left:0;margin-top:16px;}
    .amen-grid{grid-template-columns:1fr;}
    .location-wrap{grid-template-columns:1fr;}
    .map-frame{height:320px;min-height:0;}
    .reviews{grid-template-columns:1fr;}
    .tide-row{grid-template-columns:110px 1fr;}
    .tide-row .tide-bar-track{display:none;}
    .tide-row.head > div:nth-child(2),
    .tide-row.head > div:nth-child(3){display:none;}

    /* Footer — two column layout */
    .footer-grid{grid-template-columns:1fr 1fr;gap:32px;}
    .footer-brand{grid-column:span 2;text-align:center;}
    .footer-brand img{display:block;margin:0 auto 16px;}
  }
  @media (max-width:520px){
    /* Hero — raise text up by approx 2 line heights */

    .hero-content{padding-top:32px;}
    .hero h1{font-size:2.4rem;}

    /* Nav — logo shorter, Book Now pushed right */
    .nav{padding:10px 16px;gap:0;}
    .logo img{width:36px;height:36px;}
    .logo-text span:first-child{font-size:0.85rem;}

    section{padding:64px 0;}
    .aspects{grid-template-columns:1fr;}
    .aspect:nth-child(2n){border-right:1px solid var(--line);}

    /* Footer — single column, centred */
    .footer-grid{grid-template-columns:1fr 1fr;gap:24px;}
    .footer-brand{grid-column:span 2;text-align:center;}
    .footer-brand img{display:block;margin:0 auto 16px;}
    .footer-grid > div{text-align:center;}
    .footer-grid ul{padding:0;}
  }

  /* ==========================================================================
     GALLERY PAGE — native WordPress block styling
     Matches the Local Guide section style: separator above heading,
     paragraph intro below, images below that.
     ========================================================================== */

  /* Hide separators — spacing handled by spacer blocks like guide-section */
  .gallery-page-content .wp-block-separator {
    display: none;
  }

  /* Heading — matches guide-section-head h2 */
  .gallery-page-content h2.wp-block-heading {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 600;
    color: var(--ink);
    margin-top: 0;
    margin-bottom: 8px;
  }

  /* Intro paragraph — matches guide-section-head p */
  .gallery-page-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.98rem;
    color: var(--ink);
    opacity: .65;
    margin-bottom: 0;
    max-width: none !important;  /* override any WP global styles max-width on p */
  }

  /* Spacer blocks */
  .gallery-page-content .wp-block-spacer {
    display: block;
  }

  /* Remove default WordPress block margins — spacer blocks control spacing */
  .gallery-page-content .wp-block-columns {
    margin-bottom: 0 !important;
  }
  .gallery-page-content .wp-block-image {
    margin-bottom: 0 !important;
  }

  /* Full-width landscape images — natural height, no cropping */
  .gallery-page-content > .wp-block-image img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    display: block;
  }

  /* Side-by-side images — natural aspect ratio, no cropping */
  .gallery-page-content .wp-block-columns .wp-block-image img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    display: block;
  }

  /* ==========================================================================
     SUB-PAGE STYLES  (added v2)
     Covers: info-hero, guide-hero, gallery-hero, info-section, info-card,
     info-grid, faq-list, faq-item, guide-section, guide-section-head,
     guide-list, guide-item, transport-grid, transport-card,
     gallery-hero, gallery-area, gallery-area-head, gallery-area-grid,
     gallery-page-content
     ========================================================================== */

  /* ---- Shared hero for info pages (FAQ / House Rules / Cancellation) ---- */
  .info-hero,
  .guide-hero,
  .gallery-hero {
    background: var(--slate);
    color: var(--chalk);
    padding: 100px 0 64px;
  }
  .info-hero .section-eyebrow,
  .guide-hero .section-eyebrow,
  .gallery-hero .section-eyebrow {
    color: #F0B49C;
  }
  .info-hero h1,
  .guide-hero h1,
  .gallery-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    margin: 14px 0 18px;
    max-width: 22ch;
  }
  .info-hero p,
  .guide-hero p,
  .gallery-hero p {
    opacity: .8;
    max-width: 54ch;
    font-size: 1.05rem;
  }

  /* ---- Generic info section wrapper ---- */
  .info-section {
    padding: 64px 0;
    border-bottom: 1px solid var(--line);
  }
  .info-section:last-of-type {
    border-bottom: none;
  }
  .info-section h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 16px;
  }
  .info-section p {
    max-width: 60ch;
    opacity: .78;
    margin-bottom: 12px;
  }
  .info-section ul {
    padding-left: 0;
    list-style: none;
    max-width: 60ch;
  }
  .info-section li {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.96rem;
    opacity: .82;
    display: flex;
    gap: 12px;
    align-items: baseline;
  }
  .info-section li:last-child { border-bottom: none; }
  .info-section li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--rust);
    flex-shrink: 0;
    margin-top: 7px;
  }

  /* ---- Info cards (cancellation policy tiers) ---- */
  .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  .info-card {
    background: var(--chalk);
    padding: 40px 32px;
  }
  .info-card .num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--rust);
    letter-spacing: 0.08em;
    margin-bottom: 16px;
  }
  .info-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .info-card p {
    font-size: 0.92rem;
    opacity: .72;
  }

  /* ---- FAQ ---- */
  .faq-list {
    max-width: 720px;
  }
  .faq-item {
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
  }
  .faq-item:first-child { border-top: 1px solid var(--line); }
  .faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .faq-item p {
    font-size: 0.95rem;
    opacity: .75;
    max-width: 58ch;
  }

  /* ---- Local Guide sections ---- */
  .guide-section {
    padding: 72px 0;
  }

  .guide-section-head {
    margin-bottom: 36px;
  }
  .guide-section-head h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin-bottom: 8px;
  }
  .guide-section-head p {
    opacity: .65;
    font-size: 0.98rem;
  }

  /* ---- Guide list (rows with dist / title / type) ---- */
  .guide-list {
    border-top: 1px solid var(--line);
  }
  .guide-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    align-items: baseline;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
  }
  .guide-item .dist {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.82rem;
    color: var(--rust);
    font-weight: 500;
  }
  .guide-item h4 {
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    margin-bottom: 4px;
  }
  .guide-item p {
    font-size: 0.85rem;
    opacity: .65;
    margin: 0;
  }
  .guide-item .type {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sage);
    text-align: right;
    white-space: nowrap;
  }

  /* ---- Transport cards (Getting around) ---- */
  .transport-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  .transport-card {
    background: var(--chalk);
    padding: 36px 32px;
  }
  .transport-card .num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 14px;
  }
  .transport-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
  }
  .transport-card p {
    font-size: 0.92rem;
    opacity: .72;
  }

  /* ---- Full photo gallery page ---- */
  .gallery-page-content {
    padding: 64px 0;
  }
  .gallery-area {
    padding: 64px 0;
    border-bottom: 1px solid var(--line);
  }
  .gallery-area:last-of-type { border-bottom: none; }
  .gallery-area-head {
    display: flex;
    align-items: baseline;
    gap: 18px;
    margin-bottom: 24px;
  }
  .gallery-area-head h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  }
  .gallery-area-head .count {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--sage);
    letter-spacing: 0.1em;
  }
  .gallery-area-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  .gallery-area-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
  }
  .gallery-area-grid img:first-child {
    grid-column: span 2;
    height: 380px;
  }

  /* ---- Sub-page responsive ---- */
  @media (max-width: 900px) {
    .info-grid { grid-template-columns: 1fr; }
    .transport-grid { grid-template-columns: 1fr; }
    .guide-item { grid-template-columns: 80px 1fr; }
    .guide-item .type { display: none; }
    .gallery-area-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-area-grid img { height: 200px; }
    .gallery-area-grid img:first-child { height: 240px; }
  }
  @media (max-width: 520px) {
    .info-hero, .guide-hero, .gallery-hero { padding: 56px 0 44px; }
    .guide-item { grid-template-columns: 1fr; gap: 4px; }
    .guide-item .dist { font-size: 0.78rem; }
    .gallery-area-grid { grid-template-columns: 1fr; }
    .gallery-area-grid img,
    .gallery-area-grid img:first-child { grid-column: span 1; height: 220px; }
  }

  /* ==========================================================================
     BOOKING PAGE  (added v2.0.0)
     ========================================================================== */

  .booking-hero {
    background: var(--slate);
    color: var(--chalk);
    padding: 80px 0 64px;
  }
  .booking-hero .section-eyebrow {
    color: #F0B49C;
  }
  .booking-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    margin: 14px 0 18px;
    max-width: 20ch;
  }
  .booking-hero p {
    opacity: .8;
    max-width: 52ch;
    font-size: 1.05rem;
    margin-bottom: 32px;
  }
  .booking-trust {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
  }
  .booking-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    opacity: .85;
  }
  .booking-trust-item svg {
    color: #F0B49C;
    flex-shrink: 0;
  }

  /* Full-width engine section — no max-width so Beds24 can use all space */
  .booking-engine-section {
    padding: 64px 0;
    background: var(--chalk);
  }
  .booking-engine-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
  }
  /* Override any conflicting styles Beds24 injects */
  .booking-engine-wrap iframe {
    border: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Reassurance strip below the engine */
  .booking-reassurance {
    padding: 72px 0;
    border-top: 1px solid var(--line);
  }
  .booking-reassurance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
  }
  .booking-reassurance-item {
    background: var(--chalk);
    padding: 40px 36px;
  }
  .booking-reassurance-item h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  .booking-reassurance-item p {
    font-size: 0.92rem;
    opacity: .72;
    margin-bottom: 20px;
    max-width: 34ch;
  }

  /* Booking page responsive */
  @media (max-width: 900px) {
    .booking-reassurance-grid { grid-template-columns: 1fr; }
    .booking-engine-wrap { padding: 0 20px; }
  }
  @media (max-width: 520px) {
    .booking-hero { padding: 56px 0 44px; }
    .booking-trust { gap: 18px; }
  }
