:root {
  --bg: #f7f2e8;
  --surface: #fffaf2;
  --surface-strong: #f0e2cb;
  --text: #1f1a17;
  --muted: #6f6258;
  --brand: #8a5a2f;
  --brand-dark: #5f3a18;
  --line: rgba(95, 58, 24, 0.12);
  --shadow: 0 24px 60px rgba(52, 34, 16, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(192, 156, 104, 0.24), transparent 32%),
    linear-gradient(180deg, #fbf6ee 0%, #f6efe4 55%, #f8f4ec 100%);
}

img {
  display: block;
  width: 100%;
}

.custom-navbar {
  background: rgba(32, 22, 14, 0.72);
  backdrop-filter: blur(14px);
  padding: 1rem 0;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.custom-navbar.scrolled {
  background: rgba(32, 22, 14, 0.92);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16);
  padding: 0.7rem 0;
}

.navbar-brand,
.navbar-brand:hover,
.nav-link,
.nav-link:hover,
.navbar-toggler {
  color: #fff;
}

.navbar-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}

.nav-link {
  font-weight: 500;
  opacity: 0.9;
}

.nav-link.active {
  color: #f4d8aa;
}

.btn-brand {
  background: linear-gradient(135deg, #a56f3f, #7c4a22);
  border: 0;
  color: #fff;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(124, 74, 34, 0.28);
}

.btn-brand:hover,
.btn-brand:focus {
  background: linear-gradient(135deg, #b27c4b, #6e401b);
  color: #fff;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  background: url("assets/images/1.jpeg") center center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 12, 8, 0.76) 0%, rgba(18, 12, 8, 0.48) 45%, rgba(18, 12, 8, 0.2) 100%),
    linear-gradient(180deg, rgba(18, 12, 8, 0.28), rgba(18, 12, 8, 0.54));
}

.eyebrow,
.section-tag {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 600;
  color: #e2c189;
  margin-bottom: 1rem;
}

.hero-title,
.section-title {
  font-family: "Playfair Display", serif;
  line-height: 1.1;
}

.hero-title {
  color: #fff;
  font-size: clamp(2.7rem, 7vw, 5.2rem);
  max-width: 11ch;
}

.hero-text {
  color: rgba(255, 249, 240, 0.86);
  font-size: 1.08rem;
  max-width: 620px;
  margin: 1.4rem 0 0;
}

.hero-actions {
  margin-top: 2rem;
}

.hero-stats {
  max-width: 760px;
}

.stat-card {
  background: rgba(255, 251, 244, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.25rem;
  padding: 1rem 1.1rem;
  color: #fff;
  backdrop-filter: blur(8px);
}

.stat-card strong {
  display: block;
  font-size: 1.25rem;
}

.stat-card span {
  color: rgba(255, 249, 240, 0.76);
  font-size: 0.92rem;
}

.section-space {
  padding: 6rem 0;
}

.section-soft {
  background: rgba(255, 250, 242, 0.76);
}

.section-head {
  margin-bottom: 2.4rem;
}

.section-title {
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  margin-bottom: 1rem;
}

.section-title.centered {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-text,
.gallery-copy,
.location-list li,
.site-footer p {
  color: var(--muted);
  font-size: 1rem;
}

.image-stack {
  position: relative;
}

.main-image {
  border-radius: 1.8rem;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.floating-note {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  background: rgba(255, 250, 242, 0.94);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  padding: 1rem 1.2rem;
  max-width: 240px;
  box-shadow: var(--shadow);
}

.floating-note span {
  display: block;
  color: var(--brand);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.35rem;
}

.info-card,
.feature-card,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.info-card h3,
.feature-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

.info-card p,
.feature-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.feature-card {
  height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(52, 34, 16, 0.18);
}

.feature-number {
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 0.8rem;
}

.gallery-grid img,
.location-panel img {
  height: 100%;
  object-fit: cover;
}

.gallery-card,
.location-panel {
  overflow: hidden;
  border-radius: 1.6rem;
  box-shadow: var(--shadow);
  background: #e7d6bf;
}

.gallery-card {
  height: 100%;
  min-height: 320px;
}

.gallery-card.tall {
  min-height: 100%;
}

.gallery-card img {
  transition: transform 0.45s ease;
}

.gallery-card:hover img,
.location-panel:hover img {
  transform: scale(1.04);
}

.faq-wrap {
  max-width: 900px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-item + .faq-item {
  margin-top: 1rem;
}

.faq-item .accordion-button {
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
  padding: 1.2rem 1.3rem;
}

.faq-item .accordion-button:not(.collapsed) {
  background: #f4eadb;
  color: var(--brand-dark);
  box-shadow: none;
}

.faq-item .accordion-button:focus {
  box-shadow: none;
}

.faq-item .accordion-body {
  color: var(--muted);
  padding: 0 1.3rem 1.25rem;
}

.location-panel {
  min-height: 100%;
}

.location-list {
  padding-left: 1.2rem;
  margin: 1.4rem 0 0;
}

.location-list li {
  margin-bottom: 0.8rem;
}

.contact-section {
  position: relative;
}

.contact-card {
  padding: 2rem;
}

.contact-details {
  margin-top: 1.2rem;
}

.contact-details a {
  color: var(--brand-dark);
  font-weight: 600;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

.form-label {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--brand-dark);
  font-weight: 600;
}

.form-control {
  border-radius: 1rem;
  border: 1px solid rgba(95, 58, 24, 0.18);
  padding: 0.9rem 1rem;
}

.form-select {
  border-radius: 1rem;
  border: 1px solid rgba(95, 58, 24, 0.18);
  padding: 0.9rem 1rem;
}

.form-control:focus {
  border-color: rgba(138, 90, 47, 0.42);
  box-shadow: 0 0 0 0.25rem rgba(138, 90, 47, 0.12);
}

.form-select:focus {
  border-color: rgba(138, 90, 47, 0.42);
  box-shadow: 0 0 0 0.25rem rgba(138, 90, 47, 0.12);
}

.form-status {
  display: none;
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  font-weight: 500;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: rgba(40, 167, 69, 0.12);
  color: #1f6a35;
}

.form-status.is-error {
  background: rgba(220, 53, 69, 0.1);
  color: #9f2230;
}

.site-footer {
  padding: 1.5rem 0;
  background: #21160f;
}

.site-footer p {
  color: rgba(255, 244, 230, 0.72);
}

section {
  scroll-margin-top: 88px;
}

@media (max-width: 991.98px) {
  .custom-navbar {
    background: rgba(32, 22, 14, 0.92);
  }

  .navbar-collapse {
    background: rgba(24, 16, 10, 0.96);
    padding: 1rem;
    border-radius: 1rem;
    margin-top: 0.8rem;
  }

  .hero-section .row {
    padding-top: 6rem;
  }

  .section-space {
    padding: 4.5rem 0;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    max-width: 12ch;
  }

  .hero-text {
    font-size: 1rem;
  }

  .floating-note {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }

  .gallery-card {
    min-height: 260px;
  }

  .contact-card {
    padding: 1.3rem;
  }
}
