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

:root {
  --brown:       #3B1A0E;
  --brown-light: #5C2E18;
  --gold:        #C9A84C;
  --gold-light:  #E2C47A;
  --cream:       #FAFAF7;
  --white:       #ffffff;
  --text:        #1A1A1A;
  --muted:       #666666;
  --shadow:      0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.14);
  --transition:  all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  color: var(--brown);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--muted);
  font-size: 1.025rem;
  max-width: 600px;
  line-height: 1.75;
}

/* ===== LAYOUT ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section    { padding: 88px 0; }
.section--alt { background: var(--cream); }

/* ===== MASTHEAD ===== */
.masthead {
  position: relative;
  margin-top: 68px;
  min-height: 128px;
  background:
    radial-gradient(circle at 50% 0%, rgba(201,168,76,0.2), transparent 42%),
    linear-gradient(135deg, #2a1008 0%, var(--brown) 48%, #170905 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  border-bottom: 1px solid rgba(201,168,76,0.28);
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.05), 0 14px 36px rgba(23,9,5,0.24);
  animation: mastheadReveal 0.65s ease-out both;
}

.masthead::before {
  content: '';
  position: absolute;
  inset: 12px 24px;
  border: 1px solid rgba(201,168,76,0.18);
  pointer-events: none;
}

.masthead__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--white);
  position: relative;
  padding: 0 3rem;
}

.masthead__inner::before,
.masthead__inner::after {
  content: '';
  width: clamp(72px, 12vw, 170px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  animation: mastheadLineGrow 0.7s 0.15s ease-out both;
}

.masthead__inner::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.masthead__logo-icon {
  width: 96px; height: 96px;
  background: rgba(23,9,5,0.72);
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.35);
  box-shadow: 0 8px 28px rgba(201,168,76,0.26);
  animation: mastheadMarkRise 0.68s 0.08s ease-out both;
}

.masthead__logo-icon img,
.navbar__logo-icon img {
  width: 82%;
  height: 82%;
  object-fit: contain;
  display: block;
}

.masthead__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.95rem;
  letter-spacing: 0.16em;
  color: var(--white);
  line-height: 1.2;
  animation: mastheadTextRise 0.62s 0.18s ease-out both;
}

.masthead__tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 0.3rem;
  animation: mastheadTextRise 0.62s 0.26s ease-out both;
}

@keyframes mastheadReveal {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes mastheadMarkRise {
  from { opacity: 0; transform: translateY(10px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes mastheadTextRise {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes mastheadLineGrow {
  from { opacity: 0; transform: scaleX(0); }
  to { opacity: 1; transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
  .masthead,
  .masthead__logo-icon,
  .masthead__name,
  .masthead__tagline,
  .masthead__inner::before,
  .masthead__inner::after {
    animation: none;
  }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 68px;
  background: var(--brown);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.28);
  transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
}

.navbar--top { top: 0 !important; }

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--white);
}

.navbar__logo-icon {
  width: 46px; height: 46px;
  background: rgba(23,9,5,0.72);
  display: flex; align-items: center; justify-content: center;
  border-radius: 5px;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.3);
}

.navbar__logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  line-height: 1.1;
}

.navbar__logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--gold);
}

.navbar__links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.navbar__links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  position: relative;
  transition: var(--transition);
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.navbar__links a:hover,
.navbar__links a.active { color: var(--gold); }
.navbar__links a:hover::after,
.navbar__links a.active::after { width: 100%; }

.navbar__cta {
  background: var(--gold) !important;
  color: var(--brown) !important;
  padding: 0.5rem 1.3rem;
  border-radius: 5px;
  font-weight: 600;
}
.navbar__cta:hover { background: var(--gold-light) !important; }
.navbar__cta::after { display: none !important; }

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.navbar__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu */
.navbar__mobile {
  display: none;
  position: fixed;
  top: 178px; left: 0; right: 0;
  background: var(--brown);
  list-style: none;
  padding: 0.5rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  z-index: 999;
  transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar__mobile.open { display: block; }
.navbar__mobile.mobilenav--top { top: 68px; }
.navbar__mobile li { padding: 0.8rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.navbar__mobile li:last-child { border-bottom: none; }
.navbar__mobile a { color: rgba(255,255,255,0.82); font-size: 0.95rem; }
.navbar__mobile a:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  margin-top: 0;
}

.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(59,26,14,0.78) 0%, rgba(0,0,0,0.48) 100%);
}

.hero__content {
  position: relative; z-index: 1;
  color: var(--white);
  max-width: 680px;
}

.hero__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero__title {
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  font-family: 'Playfair Display', serif;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero__title span { color: var(--gold); }

.hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.25rem;
  max-width: 480px;
  line-height: 1.75;
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== LOGO-FIRST LANDING HERO ===== */
.home-page .masthead { display: none; }
.home-page .navbar__mobile { top: 68px; }

.landing-hero {
  position: relative;
  min-height: calc(100vh - 68px);
  margin-top: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(48px, 7vh, 90px) 22px 70px;
  text-align: center;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(201,168,76,0.16), transparent 55%),
    radial-gradient(140% 120% at 50% 120%, #170905, transparent 60%),
    linear-gradient(160deg, #341c0d, #26150b 60%, #170905);
}

.landing-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.32;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.landing-hero__vignette {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  box-shadow: inset 0 0 220px 60px rgba(0,0,0,0.55);
}

.landing-hero__frame {
  position: absolute;
  z-index: 1;
  top: clamp(28px, 5vh, 64px);
  left: clamp(20px, 4vw, 56px);
  right: clamp(20px, 4vw, 56px);
  bottom: 34px;
  border: 1px solid rgba(201,168,76,0.22);
  pointer-events: none;
}

.landing-hero__frame::before,
.landing-hero__frame::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid var(--gold);
}

.landing-hero__frame::before {
  top: 7px;
  left: 7px;
  border-right: none;
  border-bottom: none;
}

.landing-hero__frame::after {
  right: 7px;
  bottom: 7px;
  border-left: none;
  border-top: none;
}

.landing-hero__content {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  color: var(--white);
}

.landing-crest {
  position: relative;
  width: clamp(150px, 20vw, 210px);
  margin: 0 auto 30px;
}

.landing-crest__halo {
  position: absolute;
  inset: -46%;
  z-index: -1;
  background: radial-gradient(circle, rgba(201,168,76,0.28), transparent 62%);
  opacity: 0;
  animation: landingHaloIn 1.2s ease 2.7s forwards;
}

.landing-crest svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
  animation: landingGlow 4.5s ease-in-out 3.4s infinite;
}

.landing-crest path {
  fill: none;
  stroke: #ecd28b;
  stroke-width: 9;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}

#p-shield { animation: landingDraw 1.15s ease 0.15s forwards; }
#p-pillarL { animation: landingDraw 0.55s ease 1.25s forwards; }
#p-pillarR { animation: landingDraw 0.55s ease 1.45s forwards; }
#p-brkL { animation: landingDraw 0.6s ease 1.85s forwards; }
#p-brkR { animation: landingDraw 0.6s ease 2.05s forwards; }
#p-diamond { animation: landingDraw 0.8s ease 2.45s forwards; }

.landing-reveal {
  opacity: 0;
  animation: landingFadeUp 0.9s cubic-bezier(.2,.7,.3,1) forwards;
}

.landing-wordmark {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(30px, 5vw, 52px);
  letter-spacing: 0.34em;
  text-indent: 0.34em;
  color: var(--white);
  line-height: 1;
  animation-delay: 2.9s;
}

.landing-estline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  color: var(--gold-light);
  text-transform: uppercase;
  animation-delay: 3.1s;
}

.landing-estline__diamond {
  width: 7px;
  height: 13px;
  display: inline-block;
}

.landing-estline__diamond path { fill: var(--gold); }

.landing-headline {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-weight: 500;
  font-size: clamp(42px, 8vw, 86px);
  line-height: 1.02;
  letter-spacing: 0;
  margin-top: clamp(34px, 6vh, 56px);
  color: var(--white);
  animation-delay: 3.35s;
}

.landing-headline em {
  font-style: italic;
  color: var(--gold-light);
}

.landing-sub {
  max-width: 560px;
  margin: 26px auto 0;
  font-family: 'Jost', 'Inter', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(244,237,224,0.76);
  animation-delay: 3.55s;
}

.landing-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  animation-delay: 3.75s;
}

.landing-scroll {
  margin-top: clamp(40px, 7vh, 70px);
  animation-delay: 4s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.63rem;
  letter-spacing: 0.36em;
  color: var(--gold-light);
  text-transform: uppercase;
}

.landing-scroll__line {
  width: 1px;
  height: 42px;
  background: linear-gradient(var(--gold), transparent);
  animation: landingDrip 2.2s ease-in-out infinite;
}

@keyframes landingDraw { to { stroke-dashoffset: 0; } }
@keyframes landingHaloIn { to { opacity: 1; } }
@keyframes landingFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}
@keyframes landingDrip {
  0%, 100% { opacity: 0.4; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}
@keyframes landingGlow {
  0%, 100% { filter: drop-shadow(0 0 6px rgba(236,210,139,0.25)); }
  50% { filter: drop-shadow(0 0 16px rgba(236,210,139,0.5)); }
}

@media (prefers-reduced-motion: reduce) {
  .landing-crest path {
    stroke-dashoffset: 0;
    animation: none;
  }
  .landing-crest svg,
  .landing-crest__halo,
  .landing-reveal,
  .landing-scroll__line {
    animation: none;
  }
  .landing-reveal,
  .landing-crest__halo {
    opacity: 1;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.82rem 1.9rem;
  border-radius: 5px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  font-family: 'Inter', sans-serif;
}

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

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

.btn--dark {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}
.btn--dark:hover {
  background: var(--brown-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ===== FEATURE STRIP ===== */
.features { background: var(--brown); }

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.features__item {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.09);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.features__item:last-child { border-right: none; }

.features__icon {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.14);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.features__text h3 {
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}
.features__text p {
  color: rgba(255,255,255,0.62);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-preview__img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-preview__img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.about-preview__img::before {
  content: '';
  position: absolute;
  top: -14px; left: -14px;
  width: 55%; height: 55%;
  border: 3px solid var(--gold);
  border-radius: 8px;
  z-index: -1;
}

.about-preview__body .section-desc { margin-bottom: 1.5rem; }

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.stat {
  padding: 1.2rem;
  background: var(--cream);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
}
.stat__number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--brown);
  font-weight: 700;
  line-height: 1;
}
.stat__label {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* ===== FACILITY CARDS ===== */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.facility-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  transition: var(--transition);
}
.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.facility-card__img {
  height: 220px;
  overflow: hidden;
}
.facility-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.facility-card:hover .facility-card__img img { transform: scale(1.06); }

.facility-card__body { padding: 1.5rem; }
.facility-card__body h3 {
  font-size: 1.15rem;
  color: var(--brown);
  margin-bottom: 0.5rem;
}
.facility-card__body p {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.65;
}
.facility-card__link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.facility-card__link:hover { color: var(--brown); gap: 0.55rem; }

/* ===== GALLERY PREVIEW ===== */
.gallery-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 200px 200px;
  gap: 12px;
}
.gallery-preview__item {
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}
.gallery-preview__item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-preview__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-preview__item:hover img { transform: scale(1.07); }

/* ===== CONTACT STRIP ===== */
.contact-strip {
  background: var(--brown);
  padding: 64px 0;
}
.contact-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.contact-strip__item { color: var(--white); }
.contact-strip__icon { font-size: 2rem; margin-bottom: 0.75rem; }
.contact-strip__item h4 {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
}
.contact-strip__item p,
.contact-strip__item a {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  line-height: 1.65;
}
.contact-strip__item a:hover { color: var(--gold); }

/* ===== PAGE HERO (sub-pages) ===== */
.page-hero {
  height: 42vh;
  min-height: 280px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-top: 0;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(59,26,14,0.82), rgba(0,0,0,0.52));
}
.page-hero__content {
  position: relative; z-index: 1;
  color: var(--white);
}
.page-hero__content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 0.6rem;
}
.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.68);
  display: flex; align-items: center; gap: 0.4rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* ===== WHY CARDS (about page) ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.why-card__icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--brown), var(--brown-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.why-card__body h3 { font-size: 1.05rem; color: var(--brown); margin-bottom: 0.4rem; }
.why-card__body p  { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* ===== FACILITY SECTIONS (facilities page) ===== */
.facility-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid #F0EDE8;
}
.facility-section:last-of-type { border-bottom: none; }

.facility-section.reverse .facility-section__imgs { order: 2; }
.facility-section.reverse .facility-section__body  { order: 1; }

.facility-section__imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.facility-section__imgs img {
  border-radius: 6px;
  height: 210px;
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.facility-section__imgs img:first-child {
  grid-column: span 2;
  height: 270px;
}

.amenity-list {
  list-style: none;
  margin: 1.25rem 0 1.75rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}
.amenity-list li {
  font-size: 0.875rem;
  color: var(--muted);
  display: flex; align-items: center; gap: 0.5rem;
}
.amenity-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
}

.amenity-list--wide {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1040px;
  margin: 0 auto;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

/* ===== GALLERY FULL ===== */
.gallery-full {
  columns: 3;
  column-gap: 16px;
}
.gallery-full__item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-full__item:hover { opacity: 0.9; transform: scale(0.99); }
.gallery-full__item img { width: 100%; display: block; }

.gallery-full__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-full__item:hover .gallery-full__caption { opacity: 1; }

/* ===== CONTACT PAGE ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 { font-size: 2rem; color: var(--brown); margin-bottom: 0.85rem; }
.contact-info > p { color: var(--muted); margin-bottom: 2.5rem; line-height: 1.75; }

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}
.info-item__icon {
  width: 44px; height: 44px;
  background: var(--cream);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}
.info-item__body h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
  font-family: 'Inter', sans-serif;
}
.info-item__body p, .info-item__body a { font-size: 0.95rem; color: var(--text); line-height: 1.6; }
.info-item__body a:hover { color: var(--gold); }

/* Contact Form */
.contact-form {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-size: 1.5rem;
  color: var(--brown);
  margin-bottom: 1.75rem;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.45rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.82rem 1rem;
  border: 1.5px solid #E2DDD8;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-success {
  text-align: center;
  padding: 3rem 1.5rem;
}
.form-success h3 { color: var(--gold); font-size: 1.75rem; margin-bottom: 0.75rem; }
.form-success p   { color: var(--muted); }

/* Map */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 3rem;
}
.map-container iframe {
  width: 100%; height: 380px;
  border: none; display: block;
}

.branded-map {
  position: relative;
  min-height: 380px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 3rem;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.78) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.78) 1px, transparent 1px),
    radial-gradient(circle at 58% 48%, rgba(201,168,76,0.26), transparent 22%),
    linear-gradient(135deg, #ece6da 0%, #d8cdbb 55%, #c7b596 100%);
  background-size: 46px 46px, 46px 46px, auto, auto;
}

.branded-map::before,
.branded-map::after {
  content: '';
  position: absolute;
  background: rgba(59,26,14,0.18);
  border-radius: 999px;
}

.branded-map::before {
  width: 76%;
  height: 16px;
  left: -10%;
  top: 44%;
  transform: rotate(-12deg);
}

.branded-map::after {
  width: 54%;
  height: 12px;
  right: -8%;
  bottom: 30%;
  transform: rotate(18deg);
}

.branded-map__marker {
  position: absolute;
  left: 54%;
  top: 44%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brown);
  border: 2px solid var(--gold);
  border-radius: 50% 50% 50% 10px;
  box-shadow: 0 16px 36px rgba(59,26,14,0.28);
  z-index: 2;
}

.branded-map__marker img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  transform: rotate(45deg);
}

.branded-map__marker {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.branded-map__card {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  z-index: 3;
  max-width: 360px;
  padding: 1.25rem;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(201,168,76,0.34);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.branded-map__card h3 {
  color: var(--brown);
  margin-bottom: 0.35rem;
}

.branded-map__card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

/* ===== DIVIDER ===== */
.divider {
  width: 56px; height: 3px;
  background: var(--gold);
  margin: 1rem 0 1.5rem;
  border-radius: 2px;
}
.divider--center { margin: 1rem auto 1.5rem; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-light) 100%);
  padding: 72px 0;
  text-align: center;
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
}
.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto; margin-right: auto;
}
.cta-banner .btn--primary { font-size: 1rem; padding: 1rem 2.5rem; }

/* ===== FOOTER ===== */
.footer {
  background: #170905;
  color: rgba(255,255,255,0.65);
  padding: 64px 0 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__brand h3 {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}
.footer__col h4 {
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  margin-bottom: 1.25rem;
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0.55rem; }
.footer__col a { font-size: 0.875rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer__col a:hover { color: var(--gold); }
.footer__col li:not(:has(a)) { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.6; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.09);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--brown);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700;
  cursor: pointer; border: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  opacity: 0; pointer-events: none;
  transition: var(--transition);
  z-index: 500;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--gold-light); transform: translateY(-3px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .navbar__links   { display: none; }
  .navbar__hamburger { display: flex; }

  .about-preview          { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-preview__img::before { display: none; }
  .about-preview__img img { height: 340px; }

  .features__grid         { grid-template-columns: 1fr; }
  .features__item         { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.09); }
  .features__item:last-child { border-bottom: none; }

  .facilities-grid        { grid-template-columns: 1fr 1fr; }
  .contact-strip__grid    { grid-template-columns: 1fr; }
  .why-grid               { grid-template-columns: 1fr; }

  .gallery-preview {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px;
  }
  .gallery-preview__item:first-child { grid-column: span 2; grid-row: span 1; }

  .facility-section       { grid-template-columns: 1fr; gap: 2.5rem; }
  .facility-section.reverse .facility-section__imgs { order: 0; }
  .facility-section.reverse .facility-section__body  { order: 0; }

  .contact-layout         { grid-template-columns: 1fr; gap: 3rem; }
  .footer__grid           { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .section             { padding: 64px 0; }
  .facilities-grid     { grid-template-columns: 1fr; }
  .gallery-full        { columns: 2; }
  .about-stats         { grid-template-columns: 1fr 1fr; }
  .footer__grid        { grid-template-columns: 1fr; gap: 2rem; }
  .form-row            { grid-template-columns: 1fr; }
  .amenity-list        { grid-template-columns: 1fr; }
  .amenity-list--wide  { padding: 1.1rem; }
  .footer__bottom      { flex-direction: column; text-align: center; }
  .facility-section__imgs img { height: 180px; }
  .facility-section__imgs img:first-child { height: 220px; }

  /* Compact masthead on small screens */
  .masthead               { min-height: 92px; margin-top: 68px; }
  .masthead::before       { inset: 8px 12px; }
  .masthead__inner        { gap: 0.9rem; padding: 0 1rem; }
  .masthead__inner::before,
  .masthead__inner::after { display: none; }
  .masthead__logo-icon    { width: 64px; height: 64px; }
  .masthead__name         { font-size: 1.2rem; letter-spacing: 0.1em; }
  .masthead__tagline      { font-size: 0.52rem; letter-spacing: 0.14em; }
  .navbar                 { top: 0 !important; }
  .navbar__mobile         { top: 68px !important; }
  .landing-wordmark       { font-size: clamp(1.65rem, 8vw, 2.2rem); letter-spacing: 0.14em; text-indent: 0.14em; line-height: 1.08; max-width: 100%; }
  .landing-estline        { gap: 10px; font-size: 0.62rem; letter-spacing: 0.18em; flex-wrap: wrap; }
  .landing-headline       { font-size: clamp(2.25rem, 12vw, 3.3rem); }
  .hero                   { margin-top: 0; }
  .page-hero              { margin-top: 0; }
}
