@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --black:   #0d0d0d;
  --olive:   #2c3e35;
  --gold:    #c9a45a;
  --gold2:   #e8d5a3;
  --cream:   #f7f3ed;
  --sand:    #e8e0d4;
  --white:   #ffffff;
  --muted:   #7a7167;
  --max:     1200px;
  --r:       4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth }

body {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--black);
  line-height: 1.7;
  font-size: 16px;
}

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── Typography ─── */
.serif {
  font-family: 'Playfair Display', Georgia, serif;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.02em;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.eyebrow::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ─── Nav ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 0;
  transition: padding .4s ease, background .4s ease, box-shadow .4s ease;
}
.nav.scrolled {
  padding: 16px 0;
  background: rgba(247,243,237,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter .4s;
}
.nav.scrolled .nav-brand img {
  filter: none;
}
.nav-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: white;
  letter-spacing: .01em;
  transition: color .4s;
}
.nav.scrolled .nav-brand-text { color: var(--olive) }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: color .3s;
}
.nav-links a:hover { color: white }
.nav.scrolled .nav-links a { color: var(--muted) }
.nav.scrolled .nav-links a:hover { color: var(--olive) }

.nav-cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 11px 22px;
  border: 1px solid rgba(255,255,255,.5);
  color: white;
  border-radius: 999px;
  transition: all .3s;
}
.nav-cta:hover {
  background: white;
  color: var(--olive);
  border-color: white;
}
.nav.scrolled .nav-cta {
  border-color: var(--gold);
  color: var(--olive);
  background: transparent;
}
.nav.scrolled .nav-cta:hover {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}

/* Mobile menu */
.nav-burger {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 6px;
  padding: 8px 10px;
  cursor: pointer;
  transition: border-color .3s;
}
.nav.scrolled .nav-burger { border-color: rgba(0,0,0,.2) }
.nav-burger svg { width: 20px; height: 20px; fill: white; transition: fill .3s }
.nav.scrolled .nav-burger svg { fill: var(--olive) }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--olive);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav-mobile.open { display: flex }
.nav-mobile a {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: white;
  transition: color .2s;
}
.nav-mobile a:hover { color: var(--gold) }
.nav-mobile-close {
  position: absolute;
  top: 28px; right: 28px;
  background: none; border: none;
  color: white; font-size: 28px;
  cursor: pointer; line-height: 1;
}

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none }
  .nav-burger { display: block }
}

/* ─── Hero ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  background: url('../images/hero-main.jpg') center/cover no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-img.loaded { transform: scale(1) }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,13,13,.25) 0%,
    rgba(13,13,13,.1) 40%,
    rgba(13,13,13,.55) 100%
  );
}
.hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 0 72px;
}
.hero-content .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero-location {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 16px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 600;
  color: white;
  line-height: 1.05;
  letter-spacing: -.02em;
  max-width: 14ch;
  margin-bottom: 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold2);
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: var(--gold);
  color: white;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all .3s;
}
.btn-primary:hover {
  background: #b8913f;
  color: white;
  transform: translateY(-1px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: transparent;
  color: white;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.45);
  cursor: pointer;
  font-family: inherit;
  transition: all .3s;
}
.btn-ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.7);
}
.hero-scroll {
  position: absolute;
  bottom: 28px; right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.4);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1) }
  50% { opacity: 1; transform: scaleY(.6) }
}

/* ─── Sections ─── */
.section { padding: 100px 0 }
.section-sm { padding: 60px 0 }
.section-dark { background: var(--olive); color: white }
.section-sand { background: var(--sand) }
.section-cream { background: var(--cream) }

/* ─── Intro strip ─── */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 860px) { .intro { grid-template-columns: 1fr; gap: 40px } }
.intro-text h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  margin-bottom: 24px;
  color: var(--olive);
}
.intro-text p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 16px;
}
.intro-img {
  position: relative;
}
.intro-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
}
.intro-img-accent {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 140px;
  height: 140px;
  border: 2px solid var(--gold);
  border-radius: 2px;
  z-index: -1;
}

/* ─── Rooms ─── */
.room-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.room-strip:nth-child(even) .room-photo { order: 2 }
.room-strip:nth-child(even) .room-info { order: 1 }
@media (max-width: 800px) {
  .room-strip { grid-template-columns: 1fr }
  .room-strip:nth-child(even) .room-photo { order: 0 }
  .room-strip:nth-child(even) .room-info { order: 0 }
}
.room-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}
.room-info {
  background: var(--white);
  padding: 60px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 860px) { .room-info { padding: 40px 28px } }
.room-info h3 {
  font-size: clamp(24px, 2.5vw, 34px);
  color: var(--olive);
  margin-bottom: 16px;
}
.room-info p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.room-feature {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--olive);
  padding: 6px 14px;
  border: 1px solid var(--sand);
  border-radius: 999px;
  background: var(--cream);
}
.room-price {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--olive);
  margin-bottom: 24px;
}
.room-price span {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
}

/* ─── Gallery masonry ─── */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 10px;
}
@media (max-width: 720px) { .gallery-masonry { grid-template-columns: repeat(2, 1fr) } }
@media (max-width: 480px) { .gallery-masonry { grid-template-columns: 1fr } }

.gm-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gm-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.gm-item:hover img { transform: scale(1.04) }
.gm-item.tall { grid-row: span 2 }
.gm-item.wide { grid-column: span 2 }

/* Fixed aspect ratios per item */
.gm-item:not(.tall):not(.wide) { aspect-ratio: 4/3 }
.gm-item.tall { aspect-ratio: auto }
.gm-item.tall img { height: 100%; min-height: 500px }
.gm-item.wide { aspect-ratio: 16/7 }

.gm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0);
  transition: background .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gm-item:hover .gm-overlay { background: rgba(13,13,13,.25) }
.gm-overlay svg {
  width: 40px; height: 40px;
  fill: white;
  opacity: 0;
  transform: scale(.8);
  transition: all .3s;
}
.gm-item:hover .gm-overlay svg { opacity: 1; transform: scale(1) }

/* ─── Lightbox ─── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(8,8,8,.95);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex }
.lb-inner {
  position: relative;
  max-width: min(92vw, 1100px);
  max-height: 90vh;
}
.lb-inner img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  display: block;
}
.lb-close {
  position: absolute;
  top: -18px; right: -18px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold);
  border: none; cursor: pointer;
  color: white; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.lb-close:hover { background: #b8913f }
.lb-prev, .lb-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: white; border-radius: 50%;
  width: 52px; height: 52px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  transition: background .2s;
}
.lb-prev { left: 20px }
.lb-next { right: 20px }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.18) }
.lb-caption {
  color: rgba(255,255,255,.65);
  text-align: center;
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: .04em;
}
.lb-counter {
  color: rgba(255,255,255,.35);
  font-size: 12px;
  text-align: center;
  margin-top: 6px;
}

/* ─── Amenities ─── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--sand);
}
@media (max-width: 860px) { .amenities-grid { grid-template-columns: repeat(2, 1fr) } }
@media (max-width: 480px) { .amenities-grid { grid-template-columns: 1fr } }
.amenity-item {
  background: var(--white);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.amenity-icon {
  width: 36px; height: 36px;
  fill: var(--gold);
}
.amenity-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--olive);
}
.amenity-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─── Testimonials ─── */
.testimonial-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 860px) { .testimonial-wrap { grid-template-columns: 1fr } }
.testimonial {
  border-top: 1px solid var(--gold);
  padding-top: 28px;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 3px;
  margin-bottom: 18px;
}
.testimonial p {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-style: italic;
  line-height: 1.7;
  color: var(--olive);
  margin-bottom: 20px;
}
.testimonial-author {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── Full bleed photo ─── */
.full-bleed {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.half-bleed {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

/* ─── Reservation section ─── */
.reservation-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .reservation-wrap { grid-template-columns: 1fr; gap: 48px } }
.reservation-info h2 {
  font-size: clamp(30px, 3vw, 42px);
  color: var(--white);
  margin-bottom: 20px;
}
.reservation-info p {
  color: rgba(255,255,255,.65);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 16px;
}
.reservation-note {
  margin-top: 28px;
  padding: 20px 24px;
  border: 1px solid rgba(201,164,90,.35);
  border-left: 3px solid var(--gold);
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}
.reservation-form {
  background: var(--white);
  padding: 48px 44px;
  border-radius: 2px;
}
@media (max-width: 600px) { .reservation-form { padding: 32px 24px } }
.reservation-form h3 {
  font-size: 22px;
  color: var(--olive);
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 580px) { .form-row { grid-template-columns: 1fr } }
.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.form-field label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 13px 0;
  border: none;
  border-bottom: 1px solid var(--sand);
  border-radius: 0;
  font: inherit;
  font-size: 15px;
  color: var(--black);
  background: transparent;
  outline: none;
  transition: border-color .2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--gold);
}
.form-field textarea { min-height: 90px; resize: none }
.form-notice {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
  padding: 14px 0;
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
}
.form-status {
  font-size: 13px;
  padding: 12px 16px;
  border-radius: 4px;
  border: 1px solid transparent;
  display: none;
  margin-top: 12px;
}
.form-status.show { display: block }
.form-status.success { background: rgba(34,197,94,.06); border-color: rgba(34,197,94,.2); color: #166534 }
.form-status.error { background: rgba(239,68,68,.06); border-color: rgba(239,68,68,.2); color: #991b1b }

/* ─── Location / About strip ─── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (max-width: 800px) { .about-strip { grid-template-columns: 1fr } }
.about-text {
  padding: 80px 64px;
  background: var(--olive);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 860px) { .about-text { padding: 52px 32px } }
.about-text h2 { color: white; font-size: clamp(28px, 3vw, 40px); margin-bottom: 20px }
.about-text p { color: rgba(255,255,255,.7); line-height: 1.8; margin-bottom: 14px }
.about-img img { width: 100%; height: 100%; object-fit: cover; min-height: 400px }

/* ─── Footer ─── */
.footer {
  background: var(--black);
  color: rgba(255,255,255,.6);
  padding: 64px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 32px;
}
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; gap: 36px } }
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: white;
  margin-bottom: 14px;
}
.footer p { font-size: 14px; line-height: 1.7 }
.footer h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.55); transition: color .2s }
.footer-links a:hover { color: white }
.footer-contact { display: flex; flex-direction: column; gap: 10px }
.footer-contact span { font-size: 14px }
.footer-contact a { color: rgba(255,255,255,.55); transition: color .2s }
.footer-contact a:hover { color: var(--gold) }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,.3);
}
.social-row { display: flex; gap: 14px }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, background .2s;
}
.social-btn:hover { border-color: var(--gold); background: rgba(201,164,90,.1) }
.social-btn svg { width: 16px; height: 16px; fill: rgba(255,255,255,.6) }

/* ─── Divider ─── */
.gold-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 20px 0 32px;
}

/* ─── Util ─── */
.text-center { text-align: center }
.text-white { color: white }
.text-muted { color: var(--muted) }
.mt-8  { margin-top: 8px }
.mt-16 { margin-top: 16px }
.mt-24 { margin-top: 24px }
.mt-32 { margin-top: 32px }
.mt-48 { margin-top: 48px }
