/* ============================================
   UK Resort Nest — Main Stylesheet
   Palette: Burgundy (#6B1E2E) + Gold (#C9A84C) + Cream (#FAF7F2) + Charcoal (#1A1A1A)
   Fonts: Cormorant Garamond (headings) + Jost (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=Jost:wght@300;400;500;600&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --burgundy:     #6B1E2E;
  --burgundy-dk:  #4A1020;
  --burgundy-lt:  #8B2E42;
  --gold:         #C9A84C;
  --gold-lt:      #E2C97A;
  --gold-pale:    #F5EDD2;
  --cream:        #FAF7F2;
  --warm-white:   #FFFDF9;
  --charcoal:     #1A1A1A;
  --charcoal-lt:  #3A3A3A;
  --mid-grey:     #7A7A7A;
  --light-grey:   #E8E2DA;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;
  --shadow-sm:    0 2px 12px rgba(26,10,16,.08);
  --shadow-md:    0 6px 30px rgba(26,10,16,.14);
  --shadow-lg:    0 16px 60px rgba(26,10,16,.20);
  --radius:       4px;
  --transition:   .35s cubic-bezier(.4,0,.2,1);
}

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

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

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

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--burgundy-dk);
}
h1 { font-size: clamp(2.6rem, 5.5vw, 5rem); font-weight: 400; letter-spacing: -.01em; }
h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 400; }
h3 { font-size: clamp(1.4rem, 2.2vw, 2rem);  font-weight: 500; }
h4 { font-size: 1.25rem; font-weight: 600; }
p  { font-size: 1rem; color: var(--charcoal-lt); line-height: 1.8; }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title { margin-bottom: 1rem; }
.section-text  { max-width: 680px; color: var(--charcoal-lt); }
.text-center   { text-align: center; }
.text-center .section-text { margin: 0 auto; }

/* ---- Gold Divider ---- */
.gold-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-lt));
  margin: 1.2rem 0 2rem;
  border: none;
}
.text-center .gold-divider { margin-left: auto; margin-right: auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2.2rem;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  border-radius: var(--radius);
}
.btn-primary {
  background: var(--burgundy);
  color: var(--gold-pale);
  border-color: var(--burgundy);
}
.btn-primary:hover {
  background: var(--burgundy-dk);
  border-color: var(--burgundy-dk);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--warm-white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--warm-white);
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0 2rem;
}
.site-nav.scrolled {
  background: var(--burgundy-dk);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .9rem;
}
.nav-logo img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--warm-white);
  letter-spacing: .03em;
}
.nav-logo-tag {
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: .15rem;
}
.nav-menu a {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  padding: .5rem .85rem;
  border-radius: 2px;
  transition: color var(--transition), background var(--transition);
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold);
  background: rgba(201,168,76,.08);
}
.nav-cta {
  font-size: .68rem !important;
  font-weight: 600 !important;
  color: var(--gold) !important;
  border: 1px solid var(--gold) !important;
  padding: .45rem 1.1rem !important;
  border-radius: 2px;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--charcoal) !important;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .4rem;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--warm-white);
  transition: all var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(74,16,32,.85) 0%,
    rgba(26,10,16,.6) 50%,
    rgba(0,0,0,.35) 100%
  );
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3rem;
  padding-top: 6rem;
}
.hero-eyebrow {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  color: var(--warm-white);
  max-width: 700px;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-lt);
}
.hero-desc {
  color: rgba(255,255,255,.78);
  max-width: 520px;
  font-size: 1.05rem;
  margin-bottom: 2.8rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.5);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; }
  50%       { opacity: 1; }
}

/* ============================================
   INTRO / WELCOME STRIP
   ============================================ */
.welcome-strip {
  background: var(--burgundy-dk);
  padding: 3.5rem 2rem;
}
.welcome-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.welcome-item {
  padding: 0 3rem;
  text-align: center;
}
.welcome-item + .welcome-item {
  border-left: 1px solid rgba(201,168,76,.2);
}
.welcome-item .wi-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: .8rem;
}
.welcome-item h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--warm-white);
  margin-bottom: .4rem;
}
.welcome-item p {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}

/* ============================================
   SECTIONS — COMMON
   ============================================ */
.section-pad   { padding: 100px 2rem; }
.section-pad-sm { padding: 64px 2rem; }
.container     { max-width: 1300px; margin: 0 auto; }
.container-sm  { max-width: 900px; margin: 0 auto; }

/* ---- About / Story ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--burgundy);
  color: var(--gold-pale);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 150px;
}
.about-badge .num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--gold-lt);
  line-height: 1;
}
.about-badge .lbl {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: .3rem;
}

/* ---- Features Grid ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.feature-card {
  background: var(--warm-white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: 2.4rem 2rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 56px; height: 56px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.4rem;
  color: var(--burgundy);
}
.feature-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: .5rem;
}
.feature-card p { font-size: .85rem; line-height: 1.6; }

/* ---- Photo Grid ---- */
.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 320px 320px;
  gap: 1rem;
}
.photo-mosaic .ph { overflow: hidden; border-radius: var(--radius); }
.photo-mosaic .ph img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.photo-mosaic .ph:hover img { transform: scale(1.06); }
.photo-mosaic .ph-wide  { grid-column: span 2; }
.photo-mosaic .ph-tall  { grid-row: span 2; }

/* ---- Room Cards ---- */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.room-card {
  background: var(--warm-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.room-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.room-card-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.room-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.room-card:hover .room-card-img img { transform: scale(1.08); }
.room-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--burgundy);
  color: var(--gold-pale);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 2px;
}
.room-body { padding: 1.8rem; }
.room-body h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.room-body p  { font-size: .88rem; line-height: 1.65; margin-bottom: 1.2rem; }
.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.4rem;
}
.room-amenities span {
  font-size: .7rem;
  background: var(--gold-pale);
  color: var(--burgundy);
  padding: .25rem .7rem;
  border-radius: 2px;
  font-weight: 500;
}

/* ---- Dining Section ---- */
.dining-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 3rem;
}
.dining-img { height: 560px; }
.dining-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.dining-info {
  background: var(--burgundy-dk);
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dining-info .section-label { color: var(--gold); }
.dining-info h2 { color: var(--warm-white); margin-bottom: .8rem; }
.dining-info p  { color: rgba(255,255,255,.65); margin-bottom: 2rem; }
.dining-list { margin-bottom: 2rem; }
.dining-list li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding: .8rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  font-size: .9rem;
}
.dining-list li::before {
  content: '◈';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: .1rem;
}

/* ---- Stat Bar ---- */
.stats-bar {
  background: var(--burgundy);
  padding: 3.5rem 2rem;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item .num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold-lt);
  line-height: 1;
}
.stat-item .unit {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold);
}
.stat-item .lbl {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: .5rem;
}

/* ---- Gallery Slider ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .8rem;
  margin-top: 3rem;
}
.gallery-item {
  height: 220px;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:nth-child(1) { grid-column: span 2; height: 300px; }

/* ---- Testimonials ---- */
.testimonials-bg {
  background: var(--charcoal);
  padding: 100px 2rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: var(--radius);
  padding: 2.4rem;
}
.stars { color: var(--gold); font-size: .9rem; margin-bottom: 1rem; }
.testimonial-card p {
  color: rgba(255,255,255,.72);
  font-size: .92rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.4rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: .8rem;
}
.author-avatar {
  width: 40px; height: 40px;
  background: var(--burgundy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold-pale);
  flex-shrink: 0;
}
.author-name  { font-size: .85rem; font-weight: 600; color: var(--warm-white); }
.author-title { font-size: .72rem; color: rgba(255,255,255,.4); }

/* ---- CTA Banner ---- */
.cta-banner {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-banner-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(74,16,32,.92) 0%, rgba(74,16,32,.7) 60%, rgba(74,16,32,.4) 100%);
}
.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 3rem;
  max-width: 620px;
}
.cta-banner-content h2 { color: var(--warm-white); margin-bottom: 1rem; }
.cta-banner-content p  { color: rgba(255,255,255,.72); margin-bottom: 2rem; }

/* ---- Entertainment / Gaming Lounge ---- */
.entertain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}
.entertain-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.entertain-card-img { height: 300px; }
.entertain-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.entertain-card-body {
  background: var(--warm-white);
  padding: 2rem;
}
.entertain-card-body h3 { margin-bottom: .6rem; }
.entertain-card-body p  { font-size: .9rem; line-height: 1.7; }

/* ---- Spa Page ---- */
.spa-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.spa-treatments {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.spa-treatment-card {
  background: var(--warm-white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition);
}
.spa-treatment-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.spa-treatment-card .t-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: .8rem;
}
.spa-treatment-card h4 { margin-bottom: .4rem; }
.spa-treatment-card p { font-size: .84rem; }

/* ---- Events Page ---- */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.event-card {
  background: var(--warm-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.event-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.event-card-img { height: 210px; overflow: hidden; }
.event-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.event-card:hover .event-card-img img { transform: scale(1.08); }
.event-card-body { padding: 1.8rem; }
.event-card-body h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.event-card-body p  { font-size: .86rem; line-height: 1.65; }

/* ---- Contacts Page ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
  margin-top: 3rem;
}
.contact-info-block + .contact-info-block { margin-top: 2rem; }
.contact-info-block h4 {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.contact-info-block p,
.contact-info-block a {
  font-size: .95rem;
  color: var(--charcoal-lt);
  line-height: 1.8;
}
.contact-info-block a:hover { color: var(--burgundy); }
.contact-form { background: var(--warm-white); border-radius: var(--radius); padding: 3rem; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: .5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--charcoal);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burgundy);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ---- Page Hero (internal pages) ---- */
.page-hero {
  position: relative;
  height: 440px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(74,16,32,.8) 0%, rgba(26,10,16,.5) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 6rem 3rem 2rem;
}
.page-hero-content .section-label { color: var(--gold); }
.page-hero-content h1 {
  color: var(--warm-white);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
}
.breadcrumb a { color: rgba(255,255,255,.5); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* ---- Policy Pages ---- */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 2rem;
}
.policy-content h2 {
  font-size: 1.6rem;
  color: var(--burgundy-dk);
  margin: 2.5rem 0 .8rem;
}
.policy-content h3 {
  font-size: 1.15rem;
  margin: 1.8rem 0 .6rem;
}
.policy-content p,
.policy-content li {
  font-size: .95rem;
  line-height: 1.85;
  color: var(--charcoal-lt);
  margin-bottom: .8rem;
}
.policy-content ul { padding-left: 1.5rem; list-style: disc; }
.policy-content ul li { margin-bottom: .4rem; }
.policy-updated {
  font-size: .8rem;
  color: var(--mid-grey);
  margin-bottom: 2.5rem;
  font-style: italic;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--charcoal);
  padding: 70px 2rem 0;
}
.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .nav-logo { margin-bottom: 1.2rem; }
.footer-brand p {
  font-size: .86rem;
  color: rgba(255,255,255,.45);
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: .6rem; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .8rem;
  transition: all var(--transition);
  cursor: pointer;
}
.social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,.08);
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul li { margin-bottom: .55rem; }
.footer-col ul li a {
  font-size: .86rem;
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--warm-white); }
.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1.8rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--gold); }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  background: var(--charcoal);
  border-top: 2px solid var(--burgundy);
  padding: 1.4rem 2rem;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,.4);
}
.cookie-banner.show { display: flex; }
.cookie-banner p {
  font-size: .83rem;
  color: rgba(255,255,255,.6);
  max-width: 700px;
}
.cookie-banner p a { color: var(--gold); }
.cookie-banner p a:hover { text-decoration: underline; }
.cookie-actions { display: flex; gap: .8rem; flex-shrink: 0; }
.cookie-actions .btn { padding: .6rem 1.5rem; font-size: .72rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .features-grid  { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid   { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .gallery-item:nth-child(1) { grid-column: span 1; height: 220px; }
  .footer-inner   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .about-grid,
  .spa-hero-grid,
  .dining-split   { grid-template-columns: 1fr; gap: 2.5rem; }
  .dining-split   { flex-direction: column; }
  .dining-img     { height: 340px; }
  .rooms-grid     { grid-template-columns: 1fr 1fr; }
  .entertain-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .events-grid    { grid-template-columns: 1fr 1fr; }
  .welcome-strip-inner { grid-template-columns: 1fr; gap: 2rem; }
  .welcome-item   { border-left: none; border-top: 1px solid rgba(201,168,76,.2); padding-top: 2rem; }
  .welcome-item:first-child { border-top: none; }
  .stats-inner    { grid-template-columns: repeat(2, 1fr); }
  .photo-mosaic   { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .photo-mosaic .ph-wide,
  .photo-mosaic .ph-tall { grid-column: span 1; grid-row: span 1; }
  .photo-mosaic .ph { height: 220px; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row       { grid-template-columns: 1fr; }
  .about-badge    { position: static; margin-top: 1rem; display: inline-block; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 80px;
    left: 0; right: 0;
    background: var(--burgundy-dk);
    padding: 1.5rem 2rem;
    gap: .3rem;
    box-shadow: var(--shadow-lg);
  }
  .nav-menu.open a { padding: .7rem 0; border-bottom: 1px solid rgba(255,255,255,.06); }
  .hero-content { padding: 0 1.5rem; padding-top: 8rem; }
  .hero h1      { font-size: 2.4rem; }
  .hero-desc    { font-size: .95rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .rooms-grid   { grid-template-columns: 1fr; }
  .events-grid  { grid-template-columns: 1fr; }
  .spa-treatments { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid  { grid-template-columns: 1fr 1fr; }
  .footer-inner  { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal  { justify-content: center; flex-wrap: wrap; gap: 1rem; }
  .page-hero     { height: 300px; }
  .policy-content { padding: 50px 1.5rem; }
  .contact-form  { padding: 2rem 1.5rem; }
  .section-pad   { padding: 64px 1.5rem; }
  .stats-inner   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  .gallery-grid  { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; }
  .stats-inner   { grid-template-columns: 1fr; }
}
