/* ===================================================
   LONDON RESORT — Premium CSS
   Palette: Burgundy #6B1C2B | Gold #C9A84C | Ivory #F5F0E8 | Charcoal #1A1A1A
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300;1,9..40,400&display=swap');

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --burgundy: #6B1C2B;
  --burgundy-dark: #4A1020;
  --burgundy-light: #8B2E40;
  --gold: #C9A84C;
  --gold-light: #E2C56E;
  --gold-pale: #F0DFA0;
  --ivory: #F5F0E8;
  --ivory-dark: #EDE5D8;
  --charcoal: #1A1A1A;
  --charcoal-mid: #2E2E2E;
  --warm-grey: #7A7268;
  --white: #FFFFFF;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --shadow-soft: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.15);
  --shadow-heavy: 0 16px 64px rgba(0,0,0,0.25);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--ivory);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 300; letter-spacing: 0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2.2rem); font-weight: 400; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.1rem; }

p { font-size: 1rem; color: var(--warm-grey); line-height: 1.8; }

.lead {
  font-size: 1.2rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  color: var(--warm-grey);
  line-height: 1.6;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

/* === GOLD DIVIDER === */
.gold-rule {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  margin: 1.5rem auto;
}
.gold-rule.left { margin-left: 0; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-dark {
  background: var(--burgundy);
  color: var(--ivory);
}
.btn-dark:hover {
  background: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107,28,43,0.35);
}

/* === COOKIE BANNER === */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--charcoal);
  color: var(--ivory);
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  flex-wrap: wrap;
}
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner p { color: rgba(245,240,232,0.8); font-size: 0.85rem; }
#cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
#cookie-accept {
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  padding: 0.55rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-transform: uppercase;
}
#cookie-decline {
  background: transparent;
  color: rgba(245,240,232,0.6);
  border: 1px solid rgba(245,240,232,0.3);
  padding: 0.55rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-transform: uppercase;
}

/* === HEADER / NAV === */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 3rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition);
  background: transparent;
}

#site-header.scrolled {
  background: rgba(26,10,16,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
  height: 68px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}
.header-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.08em;
  line-height: 1;
}
.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3px;
}

.header-nav ul {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.header-nav a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  position: relative;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right var(--transition);
}
.header-nav a:hover::after,
.header-nav a.active::after { right: 0; }
.header-nav a:hover,
.header-nav a.active { color: var(--gold); }

.header-cta {
  background: var(--gold);
  color: var(--charcoal);
  padding: 0.6rem 1.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--transition);
}
.header-cta:hover {
  background: var(--gold-light);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === PAGE HERO === */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.page-hero:hover .page-hero-bg { transform: scale(1); }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,10,16,0.85) 0%, rgba(26,10,16,0.4) 50%, rgba(26,10,16,0.15) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 5vw;
}
.page-hero-content h1 { color: var(--white); }
.page-hero-content .lead { color: rgba(245,240,232,0.8); }

/* === SECTIONS === */
.section {
  padding: 6rem 5vw;
}
.section-sm {
  padding: 4rem 5vw;
}
.section-dark {
  background: var(--charcoal);
  color: var(--ivory);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--ivory); }
.section-dark p { color: rgba(245,240,232,0.7); }
.section-dark .section-label { color: var(--gold); }

.section-burgundy {
  background: var(--burgundy-dark);
  color: var(--ivory);
}
.section-burgundy h2, .section-burgundy h3 { color: var(--ivory); }
.section-burgundy p { color: rgba(245,240,232,0.75); }

.section-ivory { background: var(--ivory); }
.section-ivory-dark { background: var(--ivory-dark); }

.container { max-width: 1280px; margin: 0 auto; }

/* === GRID LAYOUTS === */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.grid-asymmetric {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 3rem;
  align-items: center;
}

/* === CARDS === */
.card {
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}
.card-img {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.card-img img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 1.75rem; }
.card-body h3 { margin-bottom: 0.75rem; }
.card-body p { font-size: 0.9rem; }

.card-dark {
  background: var(--charcoal-mid);
  color: var(--ivory);
}
.card-dark h3, .card-dark h4 { color: var(--ivory); }
.card-dark p { color: rgba(245,240,232,0.7); }

/* === IMAGE OVERLAY CARD === */
.img-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.img-card:hover img { transform: scale(1.08); }
.img-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,10,16,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.img-card:hover .img-card-overlay { opacity: 1; }
.img-card-overlay h4 { color: var(--white); font-size: 1.4rem; }
.img-card-overlay p { color: rgba(245,240,232,0.8); font-size: 0.85rem; }

/* === FEATURE STRIP === */
.feature-strip {
  display: flex;
  background: var(--burgundy-dark);
}
.feature-item {
  flex: 1;
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(201,168,76,0.2);
  text-align: center;
}
.feature-item:last-child { border-right: none; }
.feature-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}
.feature-item h4 {
  color: var(--white);
  font-size: 1.1rem;
  font-family: var(--font-display);
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.feature-item p {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.65);
}

/* === QUOTE / PULLQUOTE === */
.pullquote {
  border-left: 3px solid var(--gold);
  padding: 2rem 2.5rem;
  margin: 2rem 0;
}
.pullquote p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.4;
}
.pullquote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* === STAT COUNTERS === */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(201,168,76,0.3);
  border-bottom: 1px solid rgba(201,168,76,0.3);
}
.stat-item {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(201,168,76,0.3);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.65);
}

/* === SPLIT IMAGE TEXT === */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.split-image { position: relative; overflow: hidden; }
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem;
}

/* === TESTIMONIALS === */
.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-grey);
}
.testimonial-origin { color: var(--gold); }

/* === FOOTER === */
#site-footer {
  background: var(--charcoal);
  color: var(--ivory);
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding: 5rem 5vw 3rem;
  max-width: 1280px;
  margin: 0 auto;
}
.footer-brand .logo-name { font-size: 1.6rem; }
.footer-brand .logo-tagline { display: inline-block; margin-top: 6px; }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.6);
  margin: 1.25rem 0;
  max-width: 280px;
  line-height: 1.7;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.6);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-contact p {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.6);
  margin-bottom: 0.6rem;
}
.footer-contact a {
  color: rgba(245,240,232,0.6);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(245,240,232,0.1);
  padding: 1.5rem 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(245,240,232,0.4); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  font-size: 0.78rem;
  color: rgba(245,240,232,0.45);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold); }

/* === BREADCRUMBS === */
.breadcrumbs {
  padding: 1.2rem 5vw;
  background: var(--ivory-dark);
  border-bottom: 1px solid rgba(107,28,43,0.1);
}
.breadcrumbs nav { max-width: 1280px; margin: 0 auto; }
.breadcrumbs a {
  font-size: 0.8rem;
  color: var(--warm-grey);
  transition: color var(--transition);
}
.breadcrumbs a:hover { color: var(--burgundy); }
.breadcrumbs span {
  font-size: 0.8rem;
  color: var(--warm-grey);
  margin: 0 0.4rem;
}
.breadcrumbs .current {
  font-size: 0.8rem;
  color: var(--burgundy);
  font-weight: 500;
}

/* === PAGE CONTENT === */
.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 5vw;
}
.page-content h2 {
  font-size: 1.8rem;
  margin: 2.5rem 0 1rem;
  color: var(--burgundy);
}
.page-content h3 {
  font-size: 1.3rem;
  margin: 1.8rem 0 0.8rem;
  color: var(--charcoal);
}
.page-content p { margin-bottom: 1rem; }
.page-content ul, .page-content ol {
  list-style: disc;
  padding-left: 2rem;
  margin-bottom: 1rem;
}
.page-content ul li, .page-content ol li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--warm-grey);
}

/* === UTILITY === */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-gold { color: var(--gold); }
.text-burgundy { color: var(--burgundy); }
.text-white { color: var(--white); }
.text-ivory { color: var(--ivory); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.gap-4 { gap: 2rem; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }

/* === MOBILE NAV OVERLAY === */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--burgundy-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-legal {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.mobile-nav-legal a {
  font-size: 0.8rem;
  font-family: var(--font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5) !important;
}

/* === ROOMS TABLE === */
.rooms-comparison {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.rooms-comparison th {
  background: var(--burgundy);
  color: var(--ivory);
  padding: 1rem 1.5rem;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1rem;
}
.rooms-comparison td {
  padding: 0.9rem 1.5rem;
  border-bottom: 1px solid var(--ivory-dark);
  color: var(--warm-grey);
}
.rooms-comparison tr:last-child td { border-bottom: none; }
.rooms-comparison tr:nth-child(even) td { background: var(--ivory-dark); }

/* === CONTACT FORM STYLE === */
.info-box {
  background: var(--white);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}
.info-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--ivory-dark);
}
.info-row:last-child { border-bottom: none; }
.info-icon { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }
.info-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 0.2rem;
}
.info-value { font-size: 0.95rem; color: var(--charcoal); }
.info-value a { color: var(--charcoal); transition: color var(--transition); }
.info-value a:hover { color: var(--gold); }

/* === GALLERY MASONRY === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-item {
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* === HORIZONTAL SCROLL STRIP === */
.scroll-strip {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding: 1rem 5vw;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.scroll-strip::-webkit-scrollbar { display: none; }

/* === BACKGROUND PATTERNS === */
.bg-pattern {
  background-image: 
    radial-gradient(circle at 1px 1px, rgba(201,168,76,0.08) 1px, transparent 0);
  background-size: 32px 32px;
}

/* === HERO (main) === */
.main-hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.main-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.main-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(74,16,32,0.75) 0%,
    rgba(26,10,16,0.6) 50%,
    rgba(26,26,26,0.4) 100%
  );
}
.main-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5vw;
  max-width: 700px;
}
.main-hero-content h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}
.main-hero-content .lead {
  color: rgba(245,240,232,0.85);
  margin-bottom: 2.5rem;
}
.main-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.55);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-mouse::after {
  content: '';
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollHint 1.6s ease infinite;
}
@keyframes scrollHint {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* === AWARD BADGES === */
.awards-row {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}
.award-badge {
  text-align: center;
  padding: 1.5rem;
  border: 1px solid rgba(201,168,76,0.3);
  min-width: 130px;
}
.award-badge .award-year {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.award-badge .award-title {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.6);
  margin-top: 0.4rem;
}

/* === MAP PLACEHOLDER === */
.map-container {
  width: 100%;
  height: 400px;
  background: var(--ivory-dark);
  position: relative;
  overflow: hidden;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: auto;
}

/* =====================
   RESPONSIVE BREAKPOINTS
   ===================== */

@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-2, .grid-asymmetric { grid-template-columns: 1fr; }
  .split-section { grid-template-columns: 1fr; }
  .split-image { height: 350px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 1; }
  .feature-strip { flex-direction: column; }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.2); }
  #site-header { padding: 0 1.5rem; }
  .header-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 640px) {
  .section { padding: 4rem 1.25rem; }
  .section-sm { padding: 2.5rem 1.25rem; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; padding: 3rem 1.25rem 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
  .main-hero-content { max-width: 100%; }
  .split-content { padding: 3rem 1.5rem; }
  .page-hero-content { padding: 3rem 1.25rem; }
  .breadcrumbs { padding: 1rem 1.25rem; }
  .page-content { padding: 3rem 1.25rem; }
  #cookie-banner { padding: 1rem 1.25rem; }
  .awards-row { gap: 1rem; }
}

/* === ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
