/* ============================================================
   SEA DREAM LODGE — style.css
   Coastal nautical theme — Heritage Coast, Welsh seaside
   ============================================================ */

/* === VARIABLES ============================================= */
:root {
  --navy:        #1B2D45;
  --navy-dark:   #111E2E;
  --ocean:       #2B6CB0;
  --ocean-hover: #1E4F8A;
  --ocean-soft:  #DDEEFF;
  --sand:        #F5EDD8;
  --sand-dark:   #EAE0C8;
  --white:       #FFFFFF;
  --body-text:   #2E3A48;
  --mid:         #6B7C8E;
  --border:      #D4DEED;
  --bg:          #F8FBFF;
  --nav-height:  70px;
  --max-width:   1100px;
  --radius:      6px;
}

/* === RESET ================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--body-text);
  background: var(--bg);
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--ocean); text-decoration: none; }
a:hover { color: var(--ocean-hover); }
ul { list-style: none; }

/* === SKIP LINK ============================================= */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  z-index: 9999;
  font-size: 0.875rem;
}
.skip-link:focus { top: 1rem; }

/* === TYPOGRAPHY ============================================ */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.25rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 1rem;
}

/* === LAYOUT ================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
section { padding: 5rem 0; }

/* === FADE-IN =============================================== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* === NAV =================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(27,45,69,0.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.nav-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.3s ease;
  line-height: 1.2;
}
.nav-logo span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-top: 1px;
}
.site-header.scrolled .nav-logo { color: var(--navy); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.site-header.scrolled .nav-links a { color: var(--body-text); }
.site-header.scrolled .nav-links a:hover { color: var(--navy); }

.btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--ocean);
  color: var(--white);
  border-color: var(--ocean);
}
.btn--primary:hover {
  background: var(--ocean-hover);
  border-color: var(--ocean-hover);
  color: var(--white);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}
.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--lg { padding: 0.85rem 2rem; font-size: 1rem; }

/* Nav active link */
.nav-links .nav-active {
  color: var(--white) !important;
  font-weight: 600;
}
.site-header.scrolled .nav-links .nav-active { color: var(--navy) !important; }

/* Nav book button */
.nav-book {
  background: var(--ocean);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius);
  border: 2px solid var(--ocean);
  transition: background 0.2s, border-color 0.2s !important;
}
.nav-book:hover {
  background: var(--ocean-hover) !important;
  border-color: var(--ocean-hover) !important;
  color: var(--white) !important;
}
.site-header.scrolled .nav-book { color: var(--white) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}
.site-header.scrolled .nav-toggle span { background: var(--navy); }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: var(--navy-dark);
  padding: 1.5rem;
  flex-direction: column;
  gap: 0;
  z-index: 99;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.nav-mobile.open {
  transform: translateY(0);
}
.nav-mobile a {
  display: block;
  padding: 0.9rem 0;
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--white); }
.nav-mobile .nav-book {
  margin-top: 1rem;
  text-align: center;
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  border: 2px solid var(--ocean);
  color: var(--white) !important;
}

/* === WAVE DIVIDER ========================================== */
.wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
}
.wave-divider svg { display: block; width: 100%; }

/* === HERO ================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--navy-dark);
  background-image: url('../images/hero.webp');
  background-size: cover;
  background-position: center 40%;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(17,30,46,0.92) 0%,
    rgba(17,30,46,0.6) 45%,
    rgba(17,30,46,0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.95);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
  max-width: 660px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.88);
  max-width: 520px;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.35rem 0.8rem;
  border-radius: 100px;
}
.trust-chip svg { flex-shrink: 0; }

/* === SECTION: THE LODGE =================================== */
.lodge-section {
  background: var(--white);
}
.lodge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.lodge-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(27,45,69,0.12);
}
.lodge-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}
.lodge-text h2 { margin-bottom: 1rem; }
.lodge-text p {
  color: var(--mid);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.8;
}
.lodge-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ocean);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.5rem;
}
.lodge-link:hover { color: var(--ocean-hover); gap: 0.5rem; }
.lodge-link::after { content: '→'; transition: margin 0.2s; }

/* === SECTION: GALLERY ====================================== */
.gallery-section {
  background: var(--sand);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 0.75rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-item {
  display: block;
  overflow: hidden;
  background: var(--sand-dark);
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(27,45,69,0);
  transition: background 0.3s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:hover::after { background: rgba(27,45,69,0.15); }
.gallery-item:focus-visible {
  outline: 3px solid var(--ocean);
  outline-offset: -3px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10,16,26,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }
.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-content img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 80px rgba(0,0,0,0.6);
  display: block;
}
.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 2.5rem;
  line-height: 1;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.2); }

@media (max-width: 720px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 180px 180px;
  }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 140px 140px;
    gap: 0.4rem;
  }
}

/* === SECTION: VIDEO ======================================== */
.video-section {
  background: var(--navy);
  padding: 5rem 0;
}
.video-section .section-header h2 { color: var(--white); }
.video-section .eyebrow { color: rgba(255,255,255,0.6); }
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 16px 60px rgba(0,0,0,0.4);
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* === SECTION: AMENITIES ==================================== */
.amenities-section {
  background: var(--sand);
}
.amenities-section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}
.amenities-sub {
  text-align: center;
  color: var(--mid);
  margin-bottom: 3rem;
  font-size: 1rem;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.amenity-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.amenity-card:hover {
  border-color: var(--ocean);
  box-shadow: 0 4px 20px rgba(43,108,176,0.1);
}
.amenity-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--ocean-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.amenity-info h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.15rem;
}
.amenity-info p {
  font-size: 0.8rem;
  color: var(--mid);
  line-height: 1.4;
}

/* === ROPE DIVIDER ========================================== */
.rope-divider {
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--border) 0,
    var(--border) 8px,
    transparent 8px,
    transparent 14px
  );
  margin: 0 auto;
  max-width: 200px;
}

/* === SECTION: REVIEWS ====================================== */
.reviews-section {
  background: var(--white);
}
.reviews-section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}
.reviews-intro {
  text-align: center;
  color: var(--mid);
  margin-bottom: 3rem;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-stars {
  color: #F5A623;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.review-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--body-text);
  font-style: italic;
  flex: 1;
}
.review-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.review-platform {
  font-size: 0.75rem;
  color: var(--mid);
  font-weight: 400;
}
.reviews-cta {
  text-align: center;
}
.reviews-cta p {
  color: var(--mid);
  font-size: 0.95rem;
}
.reviews-cta a {
  font-weight: 600;
  color: var(--ocean);
}
.reviews-cta a:hover { color: var(--ocean-hover); }

/* === SECTION: BOOK ========================================= */
.book-section {
  background: var(--sand);
  text-align: center;
}
.book-section h2 { margin-bottom: 0.75rem; }
.book-intro {
  color: var(--mid);
  font-size: 1.05rem;
  margin-bottom: 3rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.book-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1020px;
  margin: 0 auto 2rem;
}
.book-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.book-card:hover {
  border-color: var(--ocean);
  box-shadow: 0 6px 30px rgba(43,108,176,0.12);
}
.book-card-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
}
.book-card-logo .logo-sub {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 2px;
}
.book-card .btn { width: 100%; text-align: center; }
.book-direct-numbers { display: flex; flex-direction: column; gap: 0.75rem; width: 100%; }
.book-sync-note {
  font-size: 0.85rem;
  color: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* === SECTION: LOCATION ===================================== */
.location-section {
  background: var(--white);
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
}
.location-text h2 { margin-bottom: 1rem; }
.location-text p {
  color: var(--mid);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
}
.location-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.location-highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--body-text);
}
.location-highlight svg {
  flex-shrink: 0;
  color: var(--ocean);
}
.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(27,45,69,0.12);
  background: var(--ocean-soft);
  min-height: 360px;
  display: flex;
  flex-direction: column;
}
.location-map iframe {
  border: 0;
  width: 100%;
  flex: 1;
  min-height: 360px;
}

/* === TRUST STRIP =========================================== */
.trust-strip {
  background: var(--navy);
  padding: 2rem 0;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
}
.trust-sep {
  color: rgba(255,255,255,0.2);
  font-size: 1.2rem;
}

/* === FOOTER ================================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}
.footer-logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}
.footer-email a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}
.footer-email a:hover { color: var(--white); }
.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}
.footer-credit { margin-top: 0.4rem; }
.footer-credit a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-credit a:hover { color: rgba(255,255,255,0.75); }

/* === SECTION HEADERS (shared) ============================== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 { margin-bottom: 0.5rem; }
.section-header p {
  color: var(--mid);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* === RESPONSIVE ============================================ */
@media (max-width: 900px) {
  .lodge-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .lodge-image img { height: 320px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .book-cards { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { align-items: flex-start; }
}

@media (max-width: 720px) {
  section { padding: 3.5rem 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: flex; }
  .hero-content { padding-bottom: 2.5rem; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .amenities-grid { grid-template-columns: 1fr; }
  .trust-strip-inner { flex-direction: column; gap: 0.75rem; }
  .trust-sep { display: none; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero-sub { font-size: 1rem; }
  .hero-badge { font-size: 0.7rem; }
}

/* Hero mobile background */
@media (max-width: 768px) {
  .hero {
    background-image: url('../images/hero-mobile.webp');
    background-position: center center;
  }
}

/* === FOCUS STYLES ========================================== */
:focus-visible {
  outline: 2px solid var(--ocean);
  outline-offset: 3px;
  border-radius: 2px;
}

/* === HERO BOOK DIRECT BUTTON =============================== */
.btn--direct {
  position: relative;
  background: linear-gradient(135deg, #1a7a4a, #22996a);
  color: var(--white);
  border-color: transparent;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn--direct:hover {
  background: linear-gradient(135deg, #166040, #1d8259);
  color: var(--white);
  border-color: transparent;
}
.btn-best-rate {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.25);
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
  white-space: nowrap;
}

/* === BOOK DIRECT CARD — BEST RATE RIBBON =================== */
.book-card--direct {
  position: relative;
  overflow: hidden;
  border-color: #22996a;
}
.book-card--direct:hover {
  border-color: #1a7a4a;
  box-shadow: 0 6px 30px rgba(34,153,106,0.2);
}
.best-rate-ribbon {
  position: absolute;
  top: 18px;
  right: -28px;
  background: linear-gradient(135deg, #1a7a4a, #22996a);
  color: white;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 2.4rem;
  transform: rotate(38deg);
  transform-origin: center;
  white-space: nowrap;
  pointer-events: none;
}

/* === LEGAL PAGES — shared nav/footer use existing styles === */
/* (legal-hero, legal-body, legal-section defined inline on   */
/*  terms/index.html and cookies/index.html)                  */
