/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  color: #2A2622;
  background: #FAFAF8;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
address { font-style: normal; }

/* ── Utility ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
  padding: 0;
}
.header.scrolled {
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(42, 38, 34, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2A2622;
  transition: color 0.3s;
}
.logo-text {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.logo-accent { color: #B85C38; }
.header:not(.scrolled) .logo { color: #fff; }
.header:not(.scrolled) .nav-link { color: rgba(255,255,255,0.85); }
.header:not(.scrolled) .nav-link:hover { color: #fff; }
.header:not(.scrolled) .menu-toggle svg { stroke: #fff; }
.logo--light { color: #fff; }

/* ── Nav ── */
.nav-list { display: flex; align-items: center; gap: 8px; }
.nav-link {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: rgba(42, 38, 34, 0.7);
  transition: color 0.3s;
  border-radius: 100px;
}
.nav-link:hover { color: #2A2622; }
.nav-link--cta {
  background: #B85C38;
  color: #fff !important;
  font-weight: 500;
}
.nav-link--cta:hover { background: #A04A2C; color: #fff !important; }

/* ── Menu Toggle ── */
.menu-toggle {
  display: none;
  padding: 8px;
  color: #2A2622;
  transition: color 0.3s;
}
.menu-toggle svg { stroke: #2A2622; transition: transform 0.3s; }
.menu-toggle[aria-expanded="true"] svg { transform: rotate(90deg); }

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(250, 250, 248, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu-inner { text-align: center; }
.mobile-menu-link {
  display: block;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #2A2622;
  padding: 16px 0;
  transition: color 0.3s;
}
.mobile-menu-link:hover { color: #B85C38; }
.mobile-menu-link--cta { color: #B85C38; font-weight: 500; }
.mobile-menu-contact { margin-top: 40px; }
.mobile-phone, .mobile-email {
  display: block;
  font-size: 16px;
  color: #8A8478;
  padding: 6px 0;
  transition: color 0.3s;
}
.mobile-phone:hover, .mobile-email:hover { color: #B85C38; }

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(42, 38, 34, 0.45) 0%,
    rgba(42, 38, 34, 0.30) 50%,
    rgba(42, 38, 34, 0.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  padding: 0 24px;
}
.hero-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 20px;
  border-radius: 100px;
}
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(40px, 7vw, 76px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 24px;
}
.hero-title-accent {
  font-style: italic;
  color: #EBC79E;
}
.hero-subtitle {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto 40px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: float 2.4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 100px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn--primary {
  background: #B85C38;
  color: #fff;
}
.btn--primary:hover { background: #A04A2C; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(184,92,56,0.3); }
.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); transform: translateY(-2px); }
.btn--ghost-light {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  color: #B85C38;
  border: 1px solid #B85C38;
}
.btn--outline:hover { background: #B85C38; color: #fff; transform: translateY(-2px); }
.btn--lg { padding: 18px 40px; font-size: 15px; }
.btn--full { width: 100%; justify-content: center; }

/* ── Section Labels ── */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #B85C38;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #2A2622;
  margin-bottom: 24px;
}
.lead {
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 300;
  line-height: 1.8;
  color: #6B655C;
  max-width: 560px;
}

/* ── Strip ── */
.strip {
  background: #2A2622;
  padding: 0;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 24px;
  text-align: center;
  position: relative;
}
.strip-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: #EBC79E;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.strip-label {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}
.strip-divider {
  position: absolute;
  right: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.strip-divider:last-child { display: none; }

/* ── About ── */
.about { padding: 120px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrapper {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-image-wrapper:hover img { transform: scale(1.03); }
.about-content .lead { margin-bottom: 20px; }
.about-content p { color: #6B655C; margin-bottom: 16px; font-size: 15px; }
.about-features {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 400;
  color: #3D3934;
}
.about-feature svg { stroke: #B85C38; flex-shrink: 0; }

/* ── Amenities ── */
.amenities {
  padding: 120px 0;
  background: #F5F4F0;
}
.amenities-header { text-align: center; max-width: 560px; margin: 0 auto 64px; }
.amenities-lead { margin: 0 auto; }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.amenity-card {
  background: #FAFAF8;
  border: 1px solid rgba(42,38,34,0.07);
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.35s ease;
}
.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(42,38,34,0.08);
  border-color: transparent;
}
.amenity-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(184,92,56,0.08);
  margin-bottom: 24px;
  color: #B85C38;
  transition: background 0.3s;
}
.amenity-card:hover .amenity-icon { background: rgba(184,92,56,0.14); }
.amenity-title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #2A2622;
  margin-bottom: 10px;
}
.amenity-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: #8A8478;
}

/* ── Gallery ── */
.gallery { padding: 120px 0; }
.gallery-header { text-align: center; margin-bottom: 64px; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/2;
}
.gallery-item--large { grid-row: span 2; aspect-ratio: auto; }
.gallery-item--wide { grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ── Location ── */
.location {
  padding: 120px 0;
  background: #F5F4F0;
}
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.location-content .lead { margin-bottom: 32px; }
.location-address {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: #3D3934;
  line-height: 1.7;
  margin-bottom: 32px;
  padding: 24px;
  background: #FAFAF8;
  border-radius: 12px;
  border: 1px solid rgba(42,38,34,0.06);
}
.location-address svg { stroke: #B85C38; flex-shrink: 0; margin-top: 2px; }
.location-links { display: flex; gap: 16px; flex-wrap: wrap; }
.location-map {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 32px rgba(42,38,34,0.1);
}

/* ── CTA ── */
.cta {
  padding: 120px 0;
  background: #2A2622;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(184,92,56,0.08);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta .section-label { color: #EBC79E; }
.cta-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 20px;
}
.cta-text {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 40px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-actions .btn--primary { background: #B85C38; }
.cta-actions .btn--primary:hover { background: #C47555; }

/* ── Contact ── */
.contact { padding: 120px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-details { margin-top: 48px; display: flex; flex-direction: column; gap: 32px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.contact-detail-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(184,92,56,0.08);
  color: #B85C38;
  flex-shrink: 0;
}
.contact-detail-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8A8478;
  margin-bottom: 4px;
}
.contact-detail a {
  color: #2A2622;
  font-weight: 400;
  transition: color 0.3s;
}
.contact-detail a:hover { color: #B85C38; }
.contact-detail span { color: #3D3934; font-weight: 400; line-height: 1.6; }

/* ── Form ── */
.contact-form-wrapper {
  background: #F5F4F0;
  border-radius: 20px;
  padding: 48px;
  border: 1px solid rgba(42,38,34,0.06);
}
.form-group { margin-bottom: 24px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8A8478;
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 14px 18px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: #2A2622;
  background: #FAFAF8;
  border: 1px solid rgba(42,38,34,0.12);
  border-radius: 12px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.form-input::placeholder { color: #B0AAA0; }
.form-input:focus { border-color: #B85C38; box-shadow: 0 0 0 3px rgba(184,92,56,0.1); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(184,92,56,0.08);
  border-radius: 12px;
  color: #B85C38;
  font-size: 14px;
  font-weight: 400;
}
.form-success svg { stroke: #B85C38; flex-shrink: 0; }

/* ── Footer ── */
.footer {
  background: #2A2622;
  padding: 64px 0 40px;
  color: rgba(255,255,255,0.5);
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}
.logo--light .logo-text { color: #fff; }
.footer-links { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-links a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer-links a:hover { color: #EBC79E; }
.footer-contact { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-contact a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}
.footer-contact a:hover { color: #EBC79E; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 80;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #B85C38;
  color: #fff;
  box-shadow: 0 4px 16px rgba(184,92,56,0.3);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: all 0.3s ease;
}
.back-to-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
.back-to-top:hover { background: #A04A2C; transform: translateY(-2px); }
.back-to-top svg { stroke: #fff; }

/* ── Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .about-grid, .location-grid, .contact-grid { gap: 48px; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .hero { min-height: 560px; }
  .hero-title { font-size: clamp(36px, 10vw, 52px); }
  .strip-grid { grid-template-columns: 1fr 1fr; }
  .strip-divider { display: none; }
  .strip-item { padding: 28px 20px; }
  .about { padding: 80px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrapper { aspect-ratio: 16/10; }
  .about-features { grid-template-columns: 1fr; }
  .amenities { padding: 80px 0; }
  .amenities-grid { grid-template-columns: 1fr; }
  .gallery { padding: 80px 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--large { grid-row: span 1; aspect-ratio: 3/2; }
  .gallery-item--wide { grid-column: span 1; }
  .location { padding: 80px 0; }
  .location-grid { grid-template-columns: 1fr; gap: 40px; }
  .location-map { aspect-ratio: 16/9; }
  .cta { padding: 80px 0; }
  .cta-actions { flex-direction: column; align-items: center; }
  .contact { padding: 80px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrapper { padding: 32px 24px; }
  .footer-top { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .back-to-top { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn--lg { width: 100%; justify-content: center; }
  .strip-grid { grid-template-columns: 1fr; }
}
