/* ============================================================
   TIDEWATER INN — tidewaterinn.ca
   Fully accessible coastal B&B | Sooke, BC
   Demo site by Design Menu (designmenu.ca)

   ACCESSIBILITY NOTES:
   • All colours meet WCAG AA 4.5:1 contrast minimum
   • Focus indicators visible at 3px solid, never removed
   • prefers-reduced-motion respected throughout
   • Skip link present on every page
   • .sr-only utility hides text visually but keeps it for screen readers
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Source+Sans+3:wght@400;500;600;700&display=swap');

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg:         #FDFCF9;
  --bg-2:       #F3F0E8;
  --bg-dark:    #1C2B4A;
  --bg-dark-2:  #243358;

  /* Typography — all checked to ≥4.5:1 on their backgrounds */
  --text:       #1C1917;   /* 16.8:1 on --bg */
  --text-2:     #44403C;   /* 8.9:1 on --bg */
  --text-3:     #6B5E52;   /* 4.6:1 on --bg ✓ AA */
  --text-inv:   #FDFCF9;   /* on dark backgrounds */
  --text-inv-2: #C7D8E8;   /* 4.8:1 on --bg-dark ✓ AA */

  /* Brand colours — contrast verified */
  --navy:       #1C2B4A;   /* 14.5:1 on --bg */
  --accent:     #1B4E7A;   /* 8.9:1 on --bg */
  --accent-lt:  #EBF4FF;
  --gold:       #7C4A00;   /* 7.8:1 on --bg */
  --gold-lt:    #FEF3C7;
  --sea:        #1A5C42;   /* 7.6:1 on --bg */
  --sea-lt:     #ECFDF5;

  /* Borders */
  --bdr:        rgba(28,43,74,.12);
  --bdr-2:      rgba(28,43,74,.22);

  /* Shape */
  --r:          8px;
  --r-lg:       16px;
  --r-xl:       24px;

  /* Typography */
  --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
  --font:       'Source Sans 3', system-ui, -apple-system, sans-serif;

  /* Focus — always visible, high-contrast, branded */
  --focus-color: #1B4E7A;
  --focus-ring:  3px solid #1B4E7A;
  --focus-off:   3px;
}

/* ── Accessibility utilities ─────────────────────────────── */

/*
  .sr-only — visually hidden but accessible to screen readers.
  Use for descriptive text that sighted users get from context
  (e.g., "Opens in new tab", "Room price:", section announcements)
*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*
  Skip link — invisible until focused via keyboard.
  First thing on every page; jumps to <main>.
  Sighted keyboard users and screen reader users both benefit.
*/
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--r) var(--r);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: top .15s ease;
}
.skip-link:focus {
  top: 0;
  outline: var(--focus-ring);
  outline-offset: var(--focus-off);
}

/* ── Global focus — NEVER use outline:none without a replacement ─ */
:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-off);
  border-radius: 3px;
}
/* Remove focus for mouse users (modern browsers only) */
:focus:not(:focus-visible) { outline: none; }

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-serif); line-height: 1.2; }

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 88px 0; }

.eyebrow {
  display: block;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-sub {
  font-size: 18px;
  color: var(--text-2);
  max-width: 580px;
  line-height: 1.75;
}
.center { text-align: center; }
.center .section-sub { margin: 0 auto; }

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 252, 249, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--bdr);
  transition: box-shadow .2s;
}
.nav.scrolled { box-shadow: 0 2px 16px rgba(28,43,74,.08); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border-radius: var(--r);
}
.nav-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--navy);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
}
.nav-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-wordmark strong {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}
.nav-wordmark small {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: .04em;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  padding: 8px 12px;
  border-radius: var(--r);
  transition: color .15s, background .15s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] {
  color: var(--accent);
  background: var(--accent-lt);
}
.nav-cta {
  padding: 10px 20px !important;
  background: var(--navy) !important;
  color: #fff !important;
  border-radius: var(--r) !important;
  font-weight: 700 !important;
  transition: background .15s !important;
}
.nav-cta:hover { background: var(--accent) !important; }
.nav-phone {
  font-size: 13px !important;
  color: var(--text-3) !important;
  font-weight: 600 !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* ── Mobile drawer ──────────────────────────────────────── */
.nav-drawer {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 200;
  transform: translateX(100%);
  transition: transform .28s ease;
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 8px;
  overflow-y: auto;
}
.nav-drawer.open { transform: none; }
.drawer-close {
  align-self: flex-end;
  font-size: 22px;
  color: var(--text-2);
  padding: 8px;
  border-radius: var(--r);
  margin-bottom: 8px;
}
.nav-drawer a {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  padding: 14px 16px;
  border-radius: var(--r);
  border-bottom: 1px solid var(--bdr);
}
.nav-drawer a:hover { color: var(--accent); background: var(--accent-lt); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--r);
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  line-height: 1;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s, transform .1s;
  text-decoration: none;
  border: 2px solid transparent;
}
.btn:active { transform: scale(.98); }
.btn-primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-primary:hover { background: var(--accent); border-color: var(--accent); }
.btn-gold {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.btn-gold:hover { background: #9A5C00; border-color: #9A5C00; }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--bdr-2);
}
.btn-outline:hover { border-color: var(--navy); background: var(--bg-2); }
.btn-outline-inv {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn-outline-inv:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-lg { padding: 16px 32px; font-size: 16px; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      160deg,
      #0f1e35 0%,
      #1a3a52 25%,
      #1d5c4a 55%,
      #2d7a60 72%,
      #5d9e88 86%,
      #c8ab82 100%
    );
}
/* Subtle texture overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 40%, rgba(255,255,255,.04), transparent),
    radial-gradient(ellipse 40% 40% at 75% 80%, rgba(200,171,130,.12), transparent);
  pointer-events: none;
}
/* Wave shape at bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 0 28px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7ECBA1;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .6; transform: scale(.85); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-badge-dot { animation: none; }
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 62px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: italic;
  color: #B8D8C8;
}
.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.3);
  animation: scroll-line 1.6s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@media (prefers-reduced-motion: reduce) { .hero-scroll { display: none; } }

/* ── Trust strip ─────────────────────────────────────────── */
.trust-strip {
  background: var(--navy);
  padding: 32px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 16px 20px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.trust-item:last-child { border-right: none; }
.trust-num {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  color: #B8D8C8;
  line-height: 1;
  margin-bottom: 4px;
}
.trust-lbl {
  font-size: 12px;
  color: var(--text-inv-2);
  font-weight: 500;
  line-height: 1.4;
}

/* ── Rooms preview ───────────────────────────────────────── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.room-card {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(28,43,74,.12);
}
.room-photo {
  height: 200px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.room-photo-ocean {
  background: linear-gradient(145deg, #0f2640 0%, #1a5c7a 50%, #4aa0b8 100%);
}
.room-photo-forest {
  background: linear-gradient(145deg, #1a2e1a 0%, #2d6040 50%, #7a9e60 100%);
}
.room-photo-harbour {
  background: linear-gradient(145deg, #1a1a3a 0%, #3a4a7a 50%, #7a8ab8 100%);
}
.room-photo-badge {
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.room-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.room-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.room-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}
.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.room-feature {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-3);
  background: var(--bg-2);
  border: 1px solid var(--bdr);
  border-radius: 100px;
  padding: 3px 10px;
}
.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--bdr);
  padding-top: 16px;
}
.room-price .from { font-size: 11px; color: var(--text-3); font-weight: 600; display: block; }
.room-price .amount {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
}
.room-price .per { font-size: 12px; color: var(--text-3); }

/* ── Feature/amenity grid ───────────────────────────────── */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.amenity-card {
  background: var(--bg-2);
  border: 1px solid var(--bdr);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: border-color .2s;
}
.amenity-card:hover { border-color: var(--bdr-2); }
.amenity-icon {
  font-size: 28px;
  margin-bottom: 12px;
  line-height: 1;
}
.amenity-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.amenity-desc { font-size: 13px; color: var(--text-2); line-height: 1.6; }

/* ── Accessibility commitment section ───────────────────── */
.access-section {
  background: var(--navy);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.access-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(27,78,122,.6), transparent);
  pointer-events: none;
}
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.access-header .eyebrow { color: #7ECBA1; }
.access-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.access-header p { font-size: 16px; color: var(--text-inv-2); line-height: 1.75; }
.access-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.access-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 18px 20px;
}
.access-item-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}
.access-item-text h4 {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3px;
}
.access-item-text p {
  font-size: 13px;
  color: var(--text-inv-2);
  line-height: 1.6;
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial-stars { display: flex; gap: 3px; }
.testimonial-stars svg { color: #D97706; }
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  flex: 1;
}
.testimonial-quote::before { content: '\201C'; }
.testimonial-quote::after  { content: '\201D'; }
.testimonial-author { display: flex; gap: 12px; align-items: center; }
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-lt);
  border: 2px solid var(--bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent);
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.testimonial-loc { font-size: 12px; color: var(--text-3); }

/* ── CTA band ────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #243a5e 60%, #1a3d35 100%);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 50% 100%, rgba(184,216,200,.08), transparent);
  pointer-events: none;
}
.cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  color: #fff;
  margin-bottom: 14px;
  position: relative;
}
.cta-band p {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  position: relative;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--bg-dark);
  padding: 64px 0 0;
  color: var(--text-inv-2);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo-mark {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,.1);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.footer-logo-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.footer-logo-text small { font-size: 11px; color: rgba(255,255,255,.4); }
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 320px;
}
.footer-contact a {
  display: block;
  font-size: 13px;
  color: var(--text-inv-2);
  margin-bottom: 6px;
  transition: color .15s;
}
.footer-contact a:hover { color: #fff; }
.footer-col h4 {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-inv-2);
  margin-bottom: 10px;
  transition: color .15s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 12px;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }

/* ── Page hero (inner pages) ─────────────────────────────── */
.page-hero {
  padding: 80px 0 64px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 30% 50%, rgba(27,78,122,.5), transparent);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 48px;
  background: var(--bg);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.page-hero .eyebrow { color: #7ECBA1; margin-bottom: 12px; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
}
.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  max-width: 540px;
}

/* ── Room detail page (rooms.html) ───────────────────────── */
.room-detail {
  padding: 56px 0;
  border-bottom: 1px solid var(--bdr);
}
.room-detail:last-of-type { border-bottom: none; }
.room-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.room-detail-grid.reverse { direction: rtl; }
.room-detail-grid.reverse > * { direction: ltr; }
.room-visual {
  border-radius: var(--r-xl);
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.room-visual-ocean  { background: linear-gradient(145deg, #0f2640 0%, #1a5c7a 45%, #4aa0b8 80%, #7acdb8 100%); }
.room-visual-forest { background: linear-gradient(145deg, #1a2e18 0%, #2d6040 45%, #5d9e60 80%, #9ec87a 100%); }
.room-visual-harbour{ background: linear-gradient(145deg, #1a1a3a 0%, #3a4a7a 45%, #7a8ab8 80%, #a8b4d8 100%); }
.room-visual-price {
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-lg);
  padding: 14px 20px;
  color: #fff;
}
.room-visual-price .label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .7; }
.room-visual-price .price {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
}
.room-visual-price .per { font-size: 13px; opacity: .7; }
.room-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.room-info > p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 24px;
}
.room-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}
.room-feature-item {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 14px;
  color: var(--text-2);
}
.room-feature-item svg { color: var(--sea); flex-shrink: 0; }
.room-rate-table {
  background: var(--bg-2);
  border: 1px solid var(--bdr);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 24px;
}
.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid var(--bdr);
  font-size: 14px;
}
.rate-row:last-child { border-bottom: none; }
.rate-season { color: var(--text-2); font-weight: 500; }
.rate-price { font-weight: 700; color: var(--navy); font-family: var(--font-serif); }

/* ── Contact / form (contact.html) ──────────────────────── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.contact-info-block {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-info-icon {
  width: 42px;
  height: 42px;
  background: var(--accent-lt);
  border: 1px solid var(--bdr);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-info-label { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-3); margin-bottom: 3px; }
.contact-info-value { font-size: 15px; color: var(--text); font-weight: 500; }
.contact-info-value a { color: var(--accent); }
.contact-info-value small { display: block; font-size: 12px; color: var(--text-3); font-weight: 400; margin-top: 2px; }

/* Form */
.form-card {
  background: #fff;
  border: 1px solid var(--bdr);
  border-radius: var(--r-xl);
  padding: 36px;
  box-shadow: 0 4px 24px rgba(28,43,74,.06);
}
.form-card h2 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-card > p { font-size: 14px; color: var(--text-2); margin-bottom: 24px; line-height: 1.6; }
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: .02em;
}
.form-label .required { color: #c53030; margin-left: 2px; }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--bdr-2);
  border-radius: var(--r);
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(27,78,122,.18);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-3); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-hint { font-size: 12px; color: var(--text-3); margin-top: 5px; line-height: 1.5; }
.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  font-size: 16px;
}
.form-note {
  font-size: 12px;
  color: var(--text-3);
  text-align: center;
  margin-top: 14px;
  line-height: 1.6;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .access-grid { grid-template-columns: 1fr; gap: 36px; }
  .room-detail-grid { grid-template-columns: 1fr; gap: 32px; }
  .room-detail-grid.reverse { direction: ltr; }
  .contact-split { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1); }
  .rooms-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .room-feature-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hamburger { display: flex; }
  .nav-links { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
}
