/* ============================================================
   CLOUGH HEAD FARM  –  style.css
   Images: ../images/   Fonts: Google Fonts (loaded in HTML)
   ============================================================ */

/* ── TOKENS ───────────────────────────────────────────────── */
:root {
  --moss:      #3A5444;
  --moss-l:    #4E7060;
  --moss-pale: #EAF0EC;
  --cream:     #F6F1E8;
  --stone:     #8A7860;
  --dark:      #1A1A18;
  --text:      #2E2E2C;
  --muted:     #6E6860;
  --white:     #FDFAF5;
  --border:    #DDD8CE;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Outfit', system-ui, sans-serif;
  --max-w: 1200px;
  --nav-h: 76px;
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body  { font-family: var(--sans); background: var(--white); color: var(--text); font-size: 16px; line-height: 1.65; padding-top: var(--nav-h); }
body.page-home { padding-top: 0; }
img   { display: block; max-width: 100%; }
ul    { list-style: none; }
button, input, select, textarea { font-family: inherit; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.15; color: var(--dark); }
p { color: var(--muted); font-weight: 300; line-height: 1.75; }

/* ── UTILITIES ────────────────────────────────────────────── */
.inner         { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.eyebrow       { display: block; font-size: .68rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--moss); margin-bottom: .65rem; }
.divider       { width: 40px; height: 2px; background: var(--moss); margin: 1rem auto 0; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: .9rem; }
.section-header p  { max-width: 560px; margin: 0 auto; font-size: .97rem; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn               { display: inline-block; padding: .82rem 2rem; border-radius: 3px; font-size: .78rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; transition: background .2s, color .2s, border-color .2s; cursor: pointer; border: none; }
.btn-primary       { background: var(--moss); color: var(--cream); }
.btn-primary:hover { background: var(--moss-l); }
.btn-outline-light { border: 1px solid rgba(246,241,232,.5); color: var(--cream); }
.btn-outline-light:hover { border-color: var(--cream); background: rgba(246,241,232,.08); }
.btn-moss-outline  { border: 1.5px solid var(--moss); color: var(--moss); }
.btn-moss-outline:hover { background: var(--moss); color: var(--cream); }

/* ── NAVIGATION ───────────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(26,26,24,.93);
  backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.nav-logo-link { display: flex; align-items: center; text-decoration: none; }
.nav-logo-img  { height: 52px; width: auto; }
.nav-links     { display: flex; align-items: center; gap: 2rem; }
.nav-links a   { font-size: .75rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; color: rgba(246,241,232,.72); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links a.active { border-bottom: 1px solid rgba(246,241,232,.4); padding-bottom: 1px; }
.nav-cta       { background: var(--moss) !important; color: var(--cream) !important; padding: .44rem 1.25rem; border-radius: 3px; border-bottom: none !important; }
.nav-cta:hover { background: var(--moss-l) !important; }
.nav-toggle    { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: .4rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── PAGE HERO (inner pages) ──────────────────────────────── */
.page-hero { height: 42vh; min-height: 260px; position: relative; display: flex; align-items: flex-end; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(26,26,24,.35), rgba(26,26,24,.72)); }
.page-hero-content { position: relative; z-index: 2; padding: 2.5rem; max-width: var(--max-w); margin: 0 auto; width: 100%; }
.page-hero-eyebrow { font-size: .68rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--stone); margin-bottom: .6rem; display: flex; align-items: center; gap: .7rem; }
.page-hero-eyebrow::before { content: ''; display: inline-block; width: 28px; height: 1px; background: var(--stone); }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.6rem); color: var(--cream); }

/* ── BREADCRUMB ───────────────────────────────────────────── */
.breadcrumb { background: var(--cream); padding: .75rem 2.5rem; border-bottom: 1px solid var(--border); }
.breadcrumb-inner { max-width: var(--max-w); margin: 0 auto; display: flex; gap: .5rem; align-items: center; font-size: .75rem; color: var(--muted); }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--moss); }

/* ── HOMEPAGE HERO ────────────────────────────────────────── */
.hero { height: 100vh; min-height: 600px; position: relative; display: flex; align-items: flex-end; overflow: hidden; }
.hero-img {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,26,24,.35) 0%, rgba(26,26,24,.12) 40%, rgba(26,26,24,.72) 100%),
              url('../images/home-hero.jpg') center / cover no-repeat;
  background-color: var(--moss);
}
.topo-lines { position: absolute; top: 0; right: 0; width: 420px; height: 420px; opacity: .06; pointer-events: none; }
.hero-content { position: relative; z-index: 2; padding: 4rem 2.5rem; max-width: var(--max-w); margin: 0 auto; width: 100%; }
.hero-eyebrow { font-size: .7rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: rgba(246,241,232,.72); margin-bottom: 1rem; display: flex; align-items: center; gap: .75rem; }
.hero-eyebrow::before { content: ''; display: inline-block; width: 32px; height: 1px; background: rgba(246,241,232,.72); }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.8rem); color: var(--cream); max-width: 700px; margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: #B5C9BA; }
.hero-sub  { font-size: 1rem; color: rgba(246,241,232,.75); max-width: 480px; margin-bottom: 2.25rem; font-weight: 300; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── TRUST STRIP ──────────────────────────────────────────── */
.trust-strip { background: var(--moss); display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item  { padding: 1.6rem 1.5rem; text-align: center; border-right: 1px solid rgba(255,255,255,.1); }
.trust-item:last-child { border-right: none; }
.trust-icon  { font-size: 1.4rem; margin-bottom: .4rem; }
.trust-value { font-family: var(--serif); font-size: 1.15rem; color: var(--cream); }
.trust-label { font-size: .68rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: rgba(246,241,232,.6); }

/* ── INTRO ────────────────────────────────────────────────── */
.intro-section { padding: 5rem 0; background: var(--white); }
.intro-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.intro-text h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 1.25rem; }
.intro-text h2 em { font-style: italic; color: var(--moss); }
.intro-text p  { margin-bottom: 1rem; font-size: .97rem; }
.intro-stats   { display: flex; gap: 2rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.intro-stat strong { display: block; font-family: var(--serif); font-size: 2rem; color: var(--moss); font-weight: 600; line-height: 1; }
.intro-stat span   { font-size: .72rem; color: var(--muted); letter-spacing: .05em; text-transform: uppercase; margin-top: .3rem; display: block; }
.intro-images  { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 220px 160px; gap: .75rem; }
.intro-img     { border-radius: 4px; overflow: hidden; background: var(--moss-pale); }
.intro-img:first-child { grid-row: 1 / 3; }
.intro-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.intro-img:hover img { transform: scale(1.03); }

/* ── ROOM CARDS ───────────────────────────────────────────── */
.rooms-section   { padding: 5rem 0; background: var(--cream); }
.rooms-grid      { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.room-card       { background: var(--white); border-radius: 6px; overflow: hidden; border: 1px solid var(--border); transition: transform .25s, box-shadow .25s; }
.room-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,26,24,.12); }
.room-card-img   { height: 200px; background: var(--moss-pale); overflow: hidden; position: relative; }
.room-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.room-card:hover .room-card-img img { transform: scale(1.05); }
.room-badge      { position: absolute; top: .75rem; left: .75rem; background: var(--moss); color: var(--cream); font-size: .6rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; padding: .28rem .65rem; border-radius: 2px; }
.room-card-body  { padding: 1.4rem 1.5rem 1.6rem; }
.room-card-body h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--dark); margin-bottom: .3rem; }
.room-meta       { font-size: .72rem; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; margin-bottom: .75rem; }
.room-features   { display: flex; flex-wrap: wrap; gap: .4rem .8rem; margin-bottom: 1.25rem; }
.room-features li { font-size: .78rem; color: var(--muted); display: flex; align-items: center; gap: .3rem; }
.room-features li::before { content: '✓'; color: var(--moss); font-weight: 700; }
.room-link       { font-size: .72rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--moss); text-decoration: none; border-bottom: 1px solid var(--moss); padding-bottom: 1px; transition: color .2s; }
.room-link:hover { color: var(--moss-l); }

/* ── WHY ──────────────────────────────────────────────────── */
.why-section { padding: 5rem 0; }
.why-grid    { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; }
.why-item    { text-align: center; }
.why-icon-wrap { width: 60px; height: 60px; background: var(--moss-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; font-size: 1.5rem; }
.why-item h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 600; margin-bottom: .5rem; }
.why-item p  { font-size: .85rem; line-height: 1.6; }

/* ── GALLERY ──────────────────────────────────────────────── */
.gallery-section { padding: 5rem 0; background: var(--cream); }
.gallery-grid    { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 180px; gap: .75rem; }
.gallery-item    { overflow: hidden; border-radius: 4px; cursor: pointer; position: relative; background: var(--moss-pale); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-hover   { position: absolute; inset: 0; background: rgba(26,26,24,0); display: flex; align-items: center; justify-content: center; color: var(--cream); font-size: 1.5rem; opacity: 0; transition: background .3s, opacity .3s; }
.gallery-item:hover .gallery-hover { background: rgba(26,26,24,.32); opacity: 1; }

/* ── LIGHTBOX ─────────────────────────────────────────────── */
.lightbox      { position: fixed; inset: 0; z-index: 900; background: rgba(26,26,24,.96); display: flex; align-items: center; justify-content: center; padding: 2rem; visibility: hidden; opacity: 0; transition: opacity .25s, visibility .25s; }
.lightbox.open { visibility: visible; opacity: 1; }
.lightbox-img  { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 3px; }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: var(--cream); font-size: 2rem; cursor: pointer; opacity: .7; line-height: 1; transition: opacity .2s; }
.lightbox-close:hover { opacity: 1; }
.lightbox-nav  { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); border: none; color: var(--cream); font-size: 1.5rem; cursor: pointer; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.lightbox-nav:hover { background: rgba(255,255,255,.22); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-caption { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); color: rgba(246,241,232,.6); font-size: .8rem; letter-spacing: .08em; white-space: nowrap; }

/* ── LOCATION ─────────────────────────────────────────────── */
.location-section { padding: 5rem 0; background: var(--moss); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.location-text h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--cream); margin-bottom: 1.25rem; }
.location-text p  { color: rgba(246,241,232,.75); font-weight: 300; font-size: .97rem; margin-bottom: 1rem; }
.distances    { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; margin-top: 1.75rem; }
.dist-item    { background: rgba(255,255,255,.07); padding: .9rem 1.1rem; border-radius: 4px; border: 1px solid rgba(255,255,255,.1); }
.dist-item .place { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(246,241,232,.5); }
.dist-item .dist  { font-family: var(--serif); font-size: 1.1rem; color: var(--cream); margin-top: .1rem; }
.map-embed    { border-radius: 6px; overflow: hidden; height: 360px; border: 1px solid rgba(255,255,255,.1); }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ── CONTACT & FORMS ──────────────────────────────────────── */
.contact-section { padding: 5rem 0; background: var(--white); }
.contact-grid  { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
.contact-info h2 { font-size: 2.2rem; margin-bottom: 1rem; }
.contact-info p  { margin-bottom: 2rem; font-size: .95rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-item  { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon  { width: 40px; height: 40px; background: var(--moss-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-item strong { display: block; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .2rem; }
.contact-item a, .contact-item span { font-size: .95rem; color: var(--dark); text-decoration: none; font-weight: 400; }
.contact-item a:hover { color: var(--moss); }
.pets-notice   { display: inline-flex; align-items: center; gap: .4rem; background: var(--moss-pale); color: var(--moss); font-size: .72rem; font-weight: 500; letter-spacing: .08em; padding: .35rem .75rem; border-radius: 2px; margin-top: .75rem; }
.form-card     { background: var(--cream); border: 1px solid var(--border); border-radius: 8px; padding: 2.25rem; }
.form-card .form-title { font-family: var(--serif); font-size: 1.45rem; color: var(--dark); margin-bottom: 1.5rem; }
.form-row      { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group    { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-size: .7rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.form-group input, .form-group select, .form-group textarea { padding: .72rem 1rem; border: 1.5px solid var(--border); border-radius: 3px; font-size: .9rem; color: var(--dark); background: var(--white); transition: border-color .2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--moss); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit   { background: var(--moss); color: var(--cream); border: none; padding: .9rem 2rem; border-radius: 3px; font-size: .78rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; transition: background .2s; width: 100%; margin-top: .25rem; }
.form-submit:hover { background: var(--moss-l); }

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner    { background: var(--moss); padding: 3.5rem 0; text-align: center; }
.cta-banner h2 { font-family: var(--serif); font-size: 2rem; color: var(--cream); font-weight: 400; margin-bottom: .75rem; }
.cta-banner p  { color: rgba(246,241,232,.7); font-weight: 300; margin-bottom: 1.75rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── ROOM DETAIL ──────────────────────────────────────────── */
.room-hero     { position: relative; height: 70vh; min-height: 460px; overflow: hidden; }
.room-hero img { width: 100%; height: 100%; object-fit: cover; }
.room-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 35%, rgba(26,26,24,.7) 100%); }
.room-hero-content { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 2.5rem; max-width: calc(var(--max-w) + 4rem); margin: 0 auto; }
.room-hero-badge   { display: inline-block; background: var(--moss); color: var(--cream); font-size: .62rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; padding: .32rem .85rem; border-radius: 2px; margin-bottom: .85rem; }
.room-hero-content h1 { font-size: clamp(2.4rem, 5vw, 4rem); color: var(--cream); }
.room-photo-strip  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; background: var(--dark); }
.strip-item    { overflow: hidden; height: 220px; cursor: pointer; position: relative; background: var(--moss-pale); }
.strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s, opacity .3s; }
.strip-item:hover img { transform: scale(1.06); opacity: .88; }
.strip-hover   { position: absolute; inset: 0; background: rgba(26,26,24,0); display: flex; align-items: center; justify-content: center; color: var(--cream); font-size: 1.4rem; opacity: 0; transition: background .3s, opacity .3s; }
.strip-item:hover .strip-hover { background: rgba(26,26,24,.28); opacity: 1; }
.room-detail-section { padding: 4rem 0; background: var(--white); }
.room-detail-grid    { display: grid; grid-template-columns: 1fr 320px; gap: 3rem; align-items: start; }
.room-desc p   { margin-bottom: 1.1rem; font-size: .98rem; }
.room-desc h2  { font-size: 2rem; margin-bottom: 1.25rem; }
.amenities-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem .75rem; margin-top: .9rem; }
.amenity-item  { display: flex; align-items: center; gap: .5rem; font-size: .85rem; color: var(--text); }
.amenity-check { color: var(--moss); font-weight: 700; flex-shrink: 0; }
.room-sidebar  { background: var(--cream); border-radius: 8px; padding: 2rem; border: 1px solid var(--border); position: sticky; top: calc(var(--nav-h) + 1.5rem); }
.room-sidebar h3   { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--dark); margin-bottom: 1.25rem; }
.sidebar-feat  { display: flex; align-items: center; gap: .75rem; padding: .6rem 0; border-bottom: 1px solid var(--border); font-size: .85rem; color: var(--text); }
.sidebar-feat:last-of-type { border-bottom: none; }
.sidebar-icon  { font-size: 1rem; width: 26px; text-align: center; flex-shrink: 0; }
.sidebar-cta   { margin-top: 1.25rem; display: flex; flex-direction: column; gap: .75rem; }
.sidebar-cta .btn { text-align: center; }
.room-enq-section  { padding: 4rem 0 5rem; background: var(--white); }
.room-enq-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.room-enq-info {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
  align-self: start;  /* prevents grid from stretching it */
}
.room-enq-info h2  { font-size: 2rem; margin-bottom: 1rem; }
.room-enq-info p   { font-size: .95rem; margin-bottom: 1.25rem; }
.enq-contact   { display: flex; flex-direction: column; gap: .9rem; margin-bottom: 1.5rem; }
.enq-contact-item  { display: flex; align-items: center; gap: .75rem; }
.enq-icon      { width: 36px; height: 36px; background: var(--moss-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .95rem; flex-shrink: 0; }
.enq-contact-item strong { display: block; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.enq-contact-item a, .enq-contact-item span { font-size: .9rem; color: var(--dark); text-decoration: none; }
.enq-contact-item a:hover { color: var(--moss); }
.also-section  { padding: 3.5rem 0 5rem; background: var(--cream); }

/* ── TARIFFS ──────────────────────────────────────────────── */
.tariff-note       { background: var(--cream); border-left: 3px solid var(--moss); padding: 1.25rem 1.5rem; border-radius: 0 4px 4px 0; font-size: .85rem; color: var(--muted); line-height: 1.65; margin-bottom: 2rem; }
.tariff-note strong { color: var(--dark); }
.tariff-table-wrap { overflow-x: auto; margin-bottom: 3rem; border-radius: 6px; overflow: hidden; border: 1px solid var(--border); }
.tariff-table      { width: 100%; border-collapse: collapse; }
.tariff-table th   { background: var(--moss); color: var(--cream); font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; padding: 1rem 1.25rem; text-align: left; }
.tariff-table th:not(:first-child) { text-align: center; }
.tariff-table td   { padding: 1rem 1.25rem; border-bottom: 1px solid var(--border); font-size: .92rem; }
.tariff-table tbody tr:last-child td { border-bottom: none; }
.tariff-table td:not(:first-child)  { text-align: center; font-family: var(--serif); font-size: 1.05rem; color: var(--moss); font-weight: 600; }
.tariff-table tr:hover td { background: var(--cream); }
.room-col-name { font-weight: 500; color: var(--dark); }
.room-col-sub  { display: block; font-size: .72rem; color: var(--muted); font-weight: 300; margin-top: 2px; }
.tariff-cards  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin: 3rem 0; }
.tariff-card   { background: var(--cream); border-radius: 8px; padding: 2rem; border: 1px solid var(--border); text-align: center; }
.tariff-card.featured { background: var(--moss); border-color: var(--moss); }
.tariff-card h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 400; color: var(--dark); margin-bottom: .5rem; }
.tariff-card.featured h3 { color: var(--cream); }
.tariff-price  { font-family: var(--serif); font-size: 2.5rem; font-weight: 600; color: var(--moss); line-height: 1; margin: 1rem 0 .3rem; }
.tariff-card.featured .tariff-price { color: var(--cream); }
.tariff-per    { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 1.25rem; }
.tariff-card.featured .tariff-per { color: rgba(246,241,232,.7); }
.tariff-card ul { text-align: left; display: flex; flex-direction: column; gap: .5rem; }
.tariff-card li { font-size: .85rem; color: var(--muted); display: flex; align-items: center; gap: .5rem; }
.tariff-card.featured li { color: rgba(246,241,232,.8); }
.tariff-card li::before { content: '✓'; font-weight: 700; color: var(--moss); flex-shrink: 0; }
.tariff-card.featured li::before { color: rgba(246,241,232,.55); }
.tc-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.tc-block h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--dark); margin-bottom: .75rem; }
.tc-block p, .tc-block li { font-size: .88rem; color: var(--muted); line-height: 1.7; }
.tc-block ul { padding-left: 1.1rem; display: flex; flex-direction: column; gap: .4rem; }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(246,241,232,.6); padding: 3.5rem 0 2rem; }
.footer-top  { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo { max-width: 220px; height: auto; display: block; margin-bottom: 1.25rem; }
.footer-brand p { font-size: .83rem; line-height: 1.65; font-weight: 300; max-width: 280px; }
.footer-col h4 { font-size: .65rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; color: rgba(246,241,232,.35); margin-bottom: 1rem; }
.footer-col h4 + h4 { margin-top: 1.5rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .45rem; }
.footer-col a  { font-size: .83rem; color: rgba(246,241,232,.6); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--cream); }
.footer-col span { font-size: .82rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; font-size: .75rem; flex-wrap: wrap; gap: .5rem; }
.footer-bottom a { color: rgba(246,241,232,.35); text-decoration: none; }
.footer-bottom a:hover { color: rgba(246,241,232,.7); }

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }


/* ── ROOM HEADER (replaces full-image hero) ───────────────────────────────── */
.room-header {
  background: linear-gradient(135deg, #2D4A3E 0%, var(--moss) 50%, var(--moss-l) 100%);
  padding: 3.5rem 2.5rem 2.75rem;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
}
.room-header-topo {
  position: absolute; top: 0; right: 0;
  width: 320px; height: 320px; opacity: .07; pointer-events: none;
}
.room-header-content {
  position: relative; z-index: 2;
  max-width: calc(var(--max-w) + 4rem);
  margin: 0 auto; width: 100%;
}
.room-header-pills {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: .9rem;
}
.room-header-pill {
  background: rgba(255,255,255,.15);
  color: rgba(246,241,232,.9);
  font-size: .68rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; padding: .3rem .8rem; border-radius: 20px;
  border: 1px solid rgba(255,255,255,.2);
}
.room-header h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--cream); font-weight: 400; line-height: 1.05;
}

/* ── ROOM INLINE GALLERY ──────────────────────────────────────────────────── */
.room-gallery-section { padding: 4rem 0; background: var(--cream); }
.room-gallery-section .section-header { margin-bottom: 2rem; }
.room-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: .75rem;
}
.room-gallery-item {
  border-radius: 4px; overflow: hidden;
  cursor: pointer; position: relative; background: var(--moss-pale);
}
.room-gallery-item.wide { grid-column: span 2; }
.room-gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s ease;
}
.room-gallery-item:hover img { transform: scale(1.05); }
.room-gallery-hover {
  position: absolute; inset: 0;
  background: rgba(26,26,24,0);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); font-size: 1.4rem; opacity: 0;
  transition: background .3s, opacity .3s;
}
.room-gallery-item:hover .room-gallery-hover { background: rgba(26,26,24,.28); opacity: 1; }
.room-gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,26,24,.55));
  color: var(--cream); font-size: .72rem; font-weight: 400;
  letter-spacing: .06em; padding: .75rem .9rem .6rem;
  opacity: 0; transition: opacity .3s;
}
.room-gallery-item:hover .room-gallery-caption { opacity: 1; }
@media (max-width: 768px) {
  .room-gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .room-gallery-item.wide { grid-column: span 2; }
  .room-header { padding: 2.5rem 1.5rem 2.25rem; min-height: 160px; }
}
@media (max-width: 480px) {
  .room-gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .room-gallery-item.wide { grid-column: span 1; }
}


/* ── TESTIMONIAL RIBBON ───────────────────────────────────────────────────── */
.testimonials-section { padding: 4.5rem 0; background: var(--white); }
.testimonials-section .section-header { margin-bottom: 2.5rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--cream);
  border-radius: 6px;
  padding: 2rem;
  position: relative;
  border: 1px solid var(--border);
}
.testimonial-stars {
  color: #c8a44a;
  font-size: 1.1rem;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--moss-pale);
  line-height: 1;
  margin-bottom: .25rem;
  display: block;
}
.testimonial-text {
  font-size: .92rem;
  line-height: 1.75;
  color: #4a4a48;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--moss);
}
.testimonial-meta {
  font-size: .75rem;
  color: var(--muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  display: block;
  margin-top: .2rem;
}

/* ── REVIEW CTA (in enquiry info column) ──────────────────────────────────── */
.review-cta {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--moss-pale);
  border-radius: 6px;
  border: 1px solid rgba(58,84,68,.15);
  text-align: center;
}
.review-cta p {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: .9rem;
  line-height: 1.6;
}
.review-cta-stars { color: #c8a44a; font-size: 1.3rem; letter-spacing: .08em; display: block; margin-bottom: .6rem; }
.btn-review {
  display: inline-block;
  background: var(--moss);
  color: var(--cream) !important;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .65rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background .25s;
}
.btn-review:hover { background: var(--moss-l); }

/* ── REVIEW MODAL ─────────────────────────────────────────────────────────── */
.modal-overlay {
  display: flex;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: fixed; inset: 0;
  background: rgba(26,26,24,.55);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: opacity .2s, visibility .2s;
}
.modal-overlay.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.modal-box {
  background: var(--white);
  border-radius: 8px;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.modal-header {
  background: var(--moss);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px 8px 0 0;
}
.modal-header h3 {
  font-family: var(--serif);
  color: var(--cream);
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0;
}
.modal-close {
  background: none; border: none;
  color: rgba(246,241,232,.7);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: color .2s;
}
.modal-close:hover { color: var(--cream); }
.modal-body { padding: 2rem; }
.modal-body .form-group { margin-bottom: 1.25rem; }
.modal-body label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .5rem;
}
.modal-body input,
.modal-body select,
.modal-body textarea {
  width: 100%;
  padding: .7rem .9rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--cream);
  font-family: var(--sans);
  font-size: .9rem;
  color: var(--dark);
  box-sizing: border-box;
}
.modal-body textarea { min-height: 110px; resize: vertical; }

/* Star rating picker */
.star-picker { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: .25rem; margin-top: .25rem; }
.star-picker input { display: none; }
.star-picker label {
  font-size: 2rem;
  color: var(--border);
  cursor: pointer;
  transition: color .15s;
  display: block;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  margin: 0;
}
.star-picker input:checked ~ label,
.star-picker label:hover,
.star-picker label:hover ~ label { color: #c8a44a; }

.modal-submit {
  width: 100%;
  background: var(--moss);
  color: var(--cream);
  border: none;
  padding: .9rem;
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: background .25s;
  margin-top: .5rem;
}
.modal-submit:hover { background: var(--moss-l); }
.modal-success {
  text-align: center;
  padding: 2rem;
  display: none;
}
.modal-success .success-icon { font-size: 3rem; margin-bottom: 1rem; }
.modal-success h4 { font-family: var(--serif); font-size: 1.5rem; color: var(--dark); margin-bottom: .75rem; }
.modal-success p { color: var(--muted); font-size: .9rem; line-height: 1.65; }

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 1rem; }
  .modal-body { padding: 1.5rem; }
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .rooms-grid   { grid-template-columns: repeat(2, 1fr); }
  .why-grid     { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top   { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .tariff-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: var(--nav-h); left: 0; right: 0; background: rgba(26,26,24,.97); padding: 1.5rem 2rem; gap: 1.2rem; border-bottom: 1px solid rgba(255,255,255,.1); }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: .9rem; }
  .nav-toggle { display: flex; }
  .nav-logo-img { height: 44px; }
  .inner { padding: 0 1.25rem; }
  .hero h1 { font-size: 2.4rem; }
  .trust-strip  { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .intro-grid, .location-grid, .contact-grid, .room-detail-grid, .room-enq-grid, .tc-grid { grid-template-columns: 1fr; gap: 2rem; }
  .intro-images { grid-template-rows: 200px 140px; }
  .rooms-grid   { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .why-grid     { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-item.wide { grid-column: span 2; }
  .tariff-cards { grid-template-columns: 1fr; }
  .tariff-cards .featured { order: -1; }
  .room-hero    { height: 50vh; }
  .room-photo-strip { grid-template-columns: 1fr 1fr; }
  .room-photo-strip .strip-item:last-child { display: none; }
  .room-sidebar  { position: static; }
  .room-enq-info { position: static; }
  .footer-top   { grid-template-columns: 1fr; gap: 2rem; }
  .footer-logo  { max-width: 180px; }
  .map-embed    { height: 260px; }
  .form-row     { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .rooms-grid   { grid-template-columns: 1fr; }
  .why-grid     { grid-template-columns: 1fr; }
  .hero-btns    { flex-direction: column; }
  .hero-btns .btn { text-align: center; }
  .amenities-grid { grid-template-columns: 1fr; }
  .page-hero    { height: 35vh; }
}
