@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #f3efe8;
  --bg-alt: #ebe4da;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-solid: #ffffff;
  --surface-soft: #f8f5f0;
  --text: #1f2933;
  --muted: #5f6b76;
  --primary: #8a6a45;
  --primary-dark: #23313f;
  --secondary: #b6976e;
  --line: rgba(35, 49, 63, 0.12);
  --line-strong: rgba(35, 49, 63, 0.2);
  --shadow-sm: 0 12px 30px rgba(25, 36, 48, 0.08);
  --shadow-lg: 0 28px 70px rgba(24, 35, 46, 0.14);
  --radius: 24px;
  --radius-sm: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(182, 151, 110, 0.08), transparent 30%),
    radial-gradient(circle at top right, rgba(35, 49, 63, 0.06), transparent 28%),
    linear-gradient(180deg, #fcfbf8 0%, var(--bg) 58%, var(--bg-alt) 100%);
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6,
.display-title,
.display-5 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.01em;
}

a {
  text-decoration: none;
  transition: all 0.25s ease;
}

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

.topbar {
  background: linear-gradient(90deg, #1f2b37 0%, #304355 100%);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar a {
  color: #f5dfbf;
}

.topbar a:hover {
  color: #ffffff;
}

.navbar {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(35, 49, 63, 0.08);
  box-shadow: 0 10px 34px rgba(18, 29, 39, 0.05);
}

.navbar .container {
  min-height: 82px;
}

.navbar-brand {
  color: var(--primary-dark) !important;
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.3rem;
}

.brand-logo {
  height: 52px;
  width: auto;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-lockup > span > small {
  display: block;
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.brand-lockup > span > span {
  display: block;
  color: var(--primary-dark);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.topbar .mini-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-right: 1.2rem;
}

.navbar-toggler {
  padding: 0.3rem 0.5rem;
  border-radius: 12px;
  background: rgba(35, 49, 63, 0.05);
}

.nav-link {
  position: relative;
  color: var(--primary-dark) !important;
  font-size: 0.96rem;
  font-weight: 700;
  margin-left: 0.35rem;
  padding: 0.7rem 0.95rem !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.95rem;
  right: 0.95rem;
  bottom: 0.4rem;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.btn {
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.55rem;
}

.btn-brand,
.btn-outline-brand:hover {
  color: #fff;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 16px 34px rgba(35, 49, 63, 0.18);
}

.btn-brand:hover {
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-brand {
  border: 1px solid rgba(35, 49, 63, 0.18);
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.75);
}

.btn-outline-brand:hover {
  border-color: transparent;
}

.hero-section,
.inner-hero {
  position: relative;
  overflow: hidden;
}

.hero-section {
  padding: 6rem 0 4.8rem;
}

.inner-hero {
  padding: 4.8rem 0 3.7rem;
}

.hero-section::before,
.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.6) 0%, transparent 40%),
    radial-gradient(circle at 85% 18%, rgba(182, 151, 110, 0.16), transparent 22%);
  pointer-events: none;
}

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

.section-shell {
  padding: 2.2rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.38));
  border: 1px solid rgba(35, 49, 63, 0.08);
}

.hero-card,
.glass-card,
.service-card,
.feature-card,
.testimonial-card,
.gallery-card,
.contact-card,
.booking-card,
.page-banner {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.hero-card::before,
.glass-card::before,
.service-card::before,
.feature-card::before,
.testimonial-card::before,
.contact-card::before,
.booking-card::before,
.page-banner::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 0;
  width: 70px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.hero-badge,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(35, 49, 63, 0.06);
  border: 1px solid rgba(35, 49, 63, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-dark);
}

.display-title {
  font-size: clamp(3.1rem, 6vw, 5.2rem);
  line-height: 0.95;
  font-weight: 700;
  margin-bottom: 1rem;
}

.display-5 {
  font-size: clamp(2.6rem, 5vw, 4.1rem);
  line-height: 1;
}

.lead-copy,
.section-copy {
  color: var(--muted);
  font-size: 1.03rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.metric-box {
  padding: 1.15rem 1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(248, 245, 240, 0.95));
  border: 1px solid var(--line);
  text-align: center;
}

.metric-box h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-dark);
}

.hero-image-stack {
  position: relative;
  min-height: 500px;
}

.hero-carousel {
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  background: #16202a;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item,
.hero-carousel img {
  min-height: 540px;
}

.hero-carousel img {
  object-fit: cover;
  filter: brightness(0.78);
}

.hero-carousel-caption {
  right: auto;
  left: 2rem;
  bottom: 2rem;
  width: min(82%, 420px);
  padding: 1.4rem 1.5rem;
  text-align: left;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(18, 32, 42, 0.3), rgba(18, 32, 42, 0.78));
  backdrop-filter: blur(8px);
}

.hero-carousel-caption h3 {
  margin: 0.4rem 0 0;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
}

.hero-mini-label {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #f8e2c2;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 12%;
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.18);
  background-size: 44% 44%;
}

.hero-carousel .carousel-indicators {
  margin-bottom: 1rem;
}

.hero-carousel .carousel-indicators [data-bs-target] {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.hero-image-main,
.hero-image-accent {
  position: absolute;
  overflow: hidden;
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
}

.hero-image-main {
  inset: 0 0 70px 85px;
  border: 10px solid rgba(255, 255, 255, 0.72);
}

.hero-image-accent {
  width: 220px;
  left: 0;
  bottom: 0;
  border: 8px solid rgba(255, 255, 255, 0.84);
}

.hero-image-main img,
.hero-image-accent img,
.about-image-wrap img,
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.info-pill {
  padding: 0.9rem 1.1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  color: var(--primary-dark);
  font-size: 0.94rem;
  font-weight: 700;
}

.section-heading {
  max-width: 700px;
}

.service-card,
.feature-card,
.testimonial-card,
.contact-card {
  height: 100%;
  padding: 1.85rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card:hover,
.feature-card:hover,
.testimonial-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(138, 106, 69, 0.25);
}

.service-icon,
.feature-icon,
.contact-icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(35, 49, 63, 0.08), rgba(182, 151, 110, 0.22));
  color: var(--primary-dark);
  font-size: 1.45rem;
  margin-bottom: 1.15rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.service-card h5,
.feature-card h5,
.contact-card h5,
.testimonial-card h6 {
  color: var(--primary-dark);
}

.about-image-wrap {
  position: relative;
  padding-right: 2rem;
}

.about-image-wrap img {
  min-height: 480px;
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
}

.experience-badge {
  position: absolute;
  right: 0;
  bottom: 1.2rem;
  max-width: 260px;
  padding: 1.1rem 1.25rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(35, 49, 63, 0.1);
  box-shadow: var(--shadow-sm);
}

.gallery-card {
  overflow: hidden;
  border-radius: 28px;
}

.gallery-card img {
  min-height: 280px;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.05);
}

.ads-banner {
  padding: 2rem;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(35, 49, 63, 0.97), rgba(65, 82, 98, 0.94)),
    linear-gradient(90deg, rgba(182, 151, 110, 0.12), transparent);
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
}

.ads-banner .section-tag {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #f8e2c2;
}

.ads-banner h2 {
  color: #ffffff;
}

.ads-banner .section-copy {
  color: rgba(255, 255, 255, 0.72);
}

.ads-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.ads-stat {
  padding: 1.15rem 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ads-stat strong,
.ads-stat span {
  display: block;
}

.ads-stat strong {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
}

.ads-stat span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

.booking-card,
.contact-form-card {
  padding: 2.2rem;
}

.form-control,
.form-select {
  min-height: 56px;
  border-radius: 16px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(35, 49, 63, 0.14);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
}

textarea.form-control {
  min-height: 140px;
}

.form-control::placeholder {
  color: #93a0ab;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(138, 106, 69, 0.4);
  box-shadow: 0 0 0 0.25rem rgba(138, 106, 69, 0.12);
}

.map-frame {
  width: 100%;
  min-height: 530px;
  border: 0;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
}

.rating-stars {
  color: #cf9a39;
  letter-spacing: 0.16rem;
  font-size: 0.95rem;
}

.page-banner {
  padding: 2rem 2rem 1.8rem;
}

.footer {
  background:
    linear-gradient(180deg, #1f2b37 0%, #16202a 100%);
  color: rgba(255, 255, 255, 0.82);
  padding: 4.5rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer .section-tag {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #f8e2c2;
}

.footer a {
  color: #f2d8b0;
}

.footer a:hover {
  color: #ffffff;
}

.footer-title {
  margin-bottom: 1rem;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.94rem;
}

.footer-elite-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 0 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-elite-top h2 {
  color: #ffffff;
  font-size: 3rem;
  line-height: 0.95;
}

.footer-elite-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-elite .btn-outline-brand {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
}

.footer-elite .btn-outline-brand:hover {
  color: #fff;
}

.list-clean {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}

.list-clean li + li {
  margin-top: 0.72rem;
}

.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.footer-brand-mark img {
  height: 46px;
  width: auto;
}

.footer-brand-mark strong {
  display: block;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.footer-brand-mark span {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.floating-action {
  position: fixed;
  z-index: 1030;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 18px 34px rgba(16, 26, 35, 0.22);
}

.floating-call {
  left: 18px;
  background: linear-gradient(135deg, #23313f, #53697d);
}

.floating-whatsapp {
  right: 18px;
  background: linear-gradient(135deg, #14944b, #21c064);
}

.floating-action:hover {
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .navbar .container {
    min-height: 74px;
  }

  .nav-link {
    margin-left: 0;
  }

  .brand-logo {
    height: 46px;
  }

  .hero-section {
    padding-top: 4.7rem;
  }

  .hero-image-stack {
    min-height: 400px;
    margin-top: 2rem;
  }

  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item,
  .hero-carousel img {
    min-height: 420px;
  }

  .hero-image-main {
    inset: 0 0 55px 38px;
  }

  .hero-image-accent {
    width: 170px;
  }

  .about-image-wrap {
    padding-right: 0;
  }
}

@media (max-width: 767.98px) {
  .topbar {
    text-align: center;
  }

  .topbar .mini-contact {
    margin-right: 0.75rem;
    margin-bottom: 0.2rem;
  }

  .brand-lockup span {
    font-size: 0.92rem;
  }

  .section-shell {
    padding: 1.4rem;
  }

  .display-title {
    font-size: clamp(2.5rem, 12vw, 3.6rem);
  }

  .display-5 {
    font-size: clamp(2.2rem, 11vw, 3rem);
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-image-stack {
    min-height: 320px;
  }

  .hero-carousel .carousel-inner,
  .hero-carousel .carousel-item,
  .hero-carousel img {
    min-height: 340px;
  }

  .hero-carousel-caption {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    width: auto;
    padding: 1rem 1.1rem;
  }

  .hero-carousel-caption h3 {
    font-size: 1.5rem;
  }

  .hero-image-main {
    inset: 0 0 40px 24px;
    border-width: 7px;
  }

  .hero-image-accent {
    width: 132px;
    border-width: 6px;
  }

  .about-image-wrap img {
    min-height: 340px;
  }

  .experience-badge {
    position: static;
    max-width: none;
    margin-top: 1rem;
  }

  .section-space,
  .hero-section,
  .inner-hero {
    padding-top: 3.9rem;
    padding-bottom: 3.9rem;
  }

  .booking-card,
  .contact-form-card,
  .page-banner,
  .service-card,
  .feature-card,
  .testimonial-card,
  .contact-card {
    padding: 1.5rem;
  }

  .ads-banner {
    padding: 1.5rem;
  }

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

  .footer-elite-top {
    align-items: start;
    flex-direction: column;
  }

  .footer-elite-top h2 {
    font-size: 2.4rem;
  }
}
