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

:root {
  --olive: #6b7b3a;
  --olive-dark: #4a5628;
  --olive-light: #8a9b55;
  --charcoal: #2c2c2c;
  --warm-gray: #f5f3f0;
  --cream: #faf8f5;
  --text: #333;
  --text-light: #666;
  --gold: #c9a96e;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  background: var(--cream);
}

/* ── SKIP LINK (accessibility) ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--olive);
  color: #fff;
  padding: .75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  z-index: 9999;
  font-weight: 600;
  text-decoration: none;
  transition: top .3s;
}

.skip-link:focus { top: 0; }

/* ── NAV ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .4s, box-shadow .4s, padding .4s;
}

.site-header.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  padding: .75rem 2rem;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: color .4s;
}

.nav-logo span { font-weight: 300; font-size: 2rem; }

.site-header.scrolled .nav-logo { color: var(--charcoal); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,.9);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  transition: color .3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--olive-light);
  transition: width .3s;
}

.nav-links a:hover::after { width: 100%; }

.site-header.scrolled .nav-links a { color: var(--text); }
.site-header.scrolled .nav-links a:hover { color: var(--olive); }

.nav-cta {
  background: var(--olive) !important;
  color: #fff !important;
  padding: .6rem 1.4rem;
  border-radius: 6px;
  transition: background .3s, transform .2s !important;
}

.nav-cta:hover { background: var(--olive-dark) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
  transition: background .4s, transform .3s;
}

.site-header.scrolled .hamburger span { background: var(--charcoal); }

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slider { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.4) 0%,
    rgba(0,0,0,.2) 40%,
    rgba(0,0,0,.5) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(107,123,58,.85);
  padding: .4rem 1.2rem;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-content h1 span {
  font-weight: 300;
  font-size: 1.2em;
}

.hero-content p {
  font-size: 1.125rem;
  font-weight: 300;
  opacity: .9;
  margin-bottom: 2rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--olive);
  color: #fff;
}

.btn-primary:hover {
  background: var(--olive-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(107,123,58,.3);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
}

.btn-outline:hover { background: rgba(255,255,255,.15); border-color: #fff; }

/* ── SECTION COMMON ── */
section { padding: 6rem 2rem; }

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 4rem;
}

.section-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: .75rem;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
}

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

/* ── ABOUT ── */
.about { background: #fff; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-images {
  position: relative;
  height: 500px;
}

.about-images img {
  border-radius: 12px;
  object-fit: cover;
  position: absolute;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}

.about-img-1 {
  width: 65%;
  height: 70%;
  top: 0;
  left: 0;
  z-index: 1;
}

.about-img-2 {
  width: 55%;
  height: 60%;
  bottom: 0;
  right: 0;
  z-index: 2;
  border: 5px solid #fff;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.stat-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--olive);
  font-weight: 700;
}

.stat-item p {
  font-size: .8rem;
  color: var(--text-light);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ── AMENITIES ── */
.amenities { background: var(--cream); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.amenity-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
  border: 1px solid rgba(0,0,0,.04);
}

.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.amenity-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  background: rgba(107,123,58,.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.amenity-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--olive);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.amenity-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: var(--charcoal);
}

.amenity-card p {
  font-size: .875rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ── ROOMS ── */
.rooms { background: #fff; }

.rooms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.room-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
}

.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.1);
}

.room-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.room-info { padding: 1.75rem; }

.room-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: .5rem;
  color: var(--charcoal);
}

.room-info p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.room-tag {
  background: rgba(107,123,58,.1);
  color: var(--olive-dark);
  padding: .3rem .75rem;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 500;
}

/* ── GALLERY ── */
.gallery { background: var(--charcoal); padding-bottom: 4rem; }
.gallery .section-label { color: var(--olive-light); }
.gallery .section-header h2 { color: #fff; }
.gallery .section-header p { color: rgba(255,255,255,.6); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background .3s;
}

.gallery-item:hover::after { background: rgba(0,0,0,.2); }

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(1) img { height: 100%; min-height: 400px; }

/* ── LOCATION ── */
.location { background: #fff; }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.location-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 2rem;
}

.location-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.location-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.location-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(107,123,58,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-dot svg {
  width: 18px;
  height: 18px;
  stroke: var(--olive);
  fill: none;
  stroke-width: 2;
}

.location-list li strong {
  display: block;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: .15rem;
}

.location-list li span {
  font-size: .875rem;
  color: var(--text-light);
}

.location-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,.08);
  aspect-ratio: 4/3;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ── REGISTER (external form in new tab) ── */
.register {
  background: var(--warm-gray);
}

.register-cta {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 12px 40px rgba(0,0,0,.06);
}

.btn-register {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: 1rem 2rem;
  background: var(--olive);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 4px 20px rgba(107,123,58,.25);
}

.btn-register:hover {
  background: var(--olive-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(107,123,58,.35);
}

.btn-register:focus-visible {
  outline: 3px solid var(--olive-light);
  outline-offset: 3px;
}

.register-note {
  margin-top: 1.25rem;
  font-size: .875rem;
  color: var(--text-light);
}

/* ── CTA ── */
.cta {
  background: linear-gradient(135deg, var(--olive-dark) 0%, var(--olive) 50%, var(--olive-light) 100%);
  text-align: center;
  color: #fff;
}

.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.1rem;
  opacity: .9;
  max-width: 550px;
  margin: 0 auto 2rem;
}

.cta .btn-white {
  background: #fff;
  color: var(--olive-dark);
  padding: 1rem 2.5rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  transition: transform .3s, box-shadow .3s;
}

.cta .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,.2);
}

.cta-contacts {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
}

.cta-contact-item svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255,255,255,.8);
  fill: none;
  stroke-width: 2;
}

.cta-contacts a {
  color: #fff;
  text-decoration: none;
  transition: opacity .3s;
}

.cta-contacts a:hover { opacity: .75; }

address.cta-contacts { font-style: normal; }

/* ── FOOTER ── */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.6);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #fff;
  font-weight: 700;
}

.footer-logo span { font-weight: 300; font-size: 1.4rem; }

.site-footer p { font-size: .85rem; }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.92);
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .3s;
}

.lightbox-close:hover { background: rgba(255,255,255,.15); }

/* ── MOBILE NAV ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44,44,44,.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: .05em;
}

.mobile-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s, transform .7s;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid,
  .location-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .about-images { height: 350px; }

  .amenities-grid { grid-template-columns: repeat(2, 1fr); }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(1) img { min-height: 250px; }
}

@media (max-width: 768px) {
  section { padding: 4rem 1.25rem; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-content h1 { font-size: 2.5rem; }

  .rooms-grid { grid-template-columns: 1fr; }

  .amenities-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 2; }

  .about-images { height: 280px; }

  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .stat-item h3 { font-size: 1.5rem; }

  .cta-contacts { flex-direction: column; align-items: center; gap: 1.5rem; }

  .footer-inner { flex-direction: column; text-align: center; }

  .location-map { aspect-ratio: 16/10; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1) { grid-column: span 1; }
}
