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

:root {
  --white: #FFFFFF;
  --light-grey: #F0EEEC;
  --burgundy: #6B1E2E;
  --deep-burgundy: #6B1E2E;
  --dark: #2D2D2D;
  --mid-grey: #4A4A4A;
  --border: #E2E0DD;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  overflow-x: hidden;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* =============================================
   REVEAL ANIMATIONS
============================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  transition-delay: calc(var(--i, 0) * 0.1s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   NAVIGATION
============================================= */
header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 900;
  transition: background 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
header.scrolled {
  background: var(--white);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
header.solid {
  background: var(--white);
  border-bottom-color: var(--border);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 60px);
  height: 72px;
  width: 100%;
}

.nav-logo img {
  height: 40px;
  width: auto;
  transition: filter 0.4s ease;
}
/* No filter at all — always show the real logo colours */

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 32px);
  list-style: none;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--white);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
  white-space: nowrap;
}
header.scrolled .nav-links a,
header.solid .nav-links a { color: var(--dark); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--burgundy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:hover,
header.scrolled .nav-links a:hover,
header.solid .nav-links a:hover { color: var(--burgundy); }

.nav-links a.active { color: var(--burgundy); }
header.solid .nav-links a.active { color: var(--burgundy); }

.nav-enquire {
  border: 1px solid var(--burgundy) !important;
  color: var(--burgundy) !important;
  padding: 8px 20px !important;
  border-radius: 50px;
  transition: background 0.3s ease, color 0.3s ease !important;
}
.nav-enquire::after { display: none !important; }
.nav-enquire:hover { background: var(--burgundy) !important; color: var(--white) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  cursor: pointer;
  background: none; border: none;
  padding: 10px;
}
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  transition: background 0.3s ease;
}
header.scrolled .hamburger span,
header.solid .hamburger span { background: var(--dark); }

/* Mobile overlay */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }

.mobile-menu-links { list-style: none; text-align: center; }
.mobile-menu-links li {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.mobile-menu.open .mobile-menu-links li { opacity: 1; transform: translateY(0); }
.mobile-menu.open .mobile-menu-links li:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu.open .mobile-menu-links li:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu.open .mobile-menu-links li:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu.open .mobile-menu-links li:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu.open .mobile-menu-links li:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu.open .mobile-menu-links li:nth-child(6) { transition-delay: 0.30s; }
.mobile-menu.open .mobile-menu-links li:nth-child(7) { transition-delay: 0.35s; }
.mobile-menu.open .mobile-menu-links li:nth-child(8) { transition-delay: 0.40s; }
.mobile-menu-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 6vw, 42px);
  font-weight: 400;
  color: var(--dark);
  display: block;
  padding: 8px 0;
}
.mobile-menu-links a:hover { color: var(--burgundy); }
.mobile-close {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: none; border: none;
  font-size: 28px; color: var(--dark);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

/* =============================================
   PAGE HERO BANNER (interior pages)
============================================= */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 80px);
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.65) 100%);
}
.page-hero-content {
  position: relative; z-index: 1;
}
.page-hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.7);
  display: block;
  margin-bottom: 12px;
}
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 7vw, 90px);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.page-hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(255,255,255,0.8);
  margin-top: 10px;
}

/* =============================================
   SHARED TYPOGRAPHY HELPERS
============================================= */
.section-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--burgundy);
  display: block;
}
.eyebrow-line {
  display: block;
  width: 40px; height: 1px;
  background: var(--burgundy);
  margin-top: 12px;
}
.section-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

/* =============================================
   FOOTER
============================================= */
footer {
  background: var(--burgundy);
  padding: clamp(50px,7vw,80px) clamp(24px,5vw,80px) 36px;
}
.footer-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
/* Left column */
.footer-left {}
.footer-logo {
  height: 52px;
  width: auto;
  /* No filter — show original logo colours */
}
.footer-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  margin-top: 18px;
  line-height: 1.75;
  max-width: 320px;
}
.footer-copy {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  margin-top: 28px;
}
/* Right column */
.footer-right { text-align: right; padding-right: 60px; }
.footer-contact-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 8px;
}
.footer-email {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--white);
  transition: opacity 0.3s ease;
  display: block;
  margin-bottom: 28px;
}
.footer-email:hover { opacity: 0.75; }
.footer-icons {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 8px;
}
.footer-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: border-color 0.3s ease, background 0.3s ease;
  background: transparent;
}
.footer-icon-btn:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}
.footer-icon-btn svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.5;
}

/* Mobile: stack */
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-right { text-align: left; }
  .footer-icons { justify-content: flex-start; }
}

/* =============================================
   RESPONSIVE NAV
============================================= */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  footer { padding: 50px 24px 30px; }
}
