/* ===================== CSS VARIABLES ===================== */
:root {
  --dark-bg: #1b1005;
  --cream-bg: #F7F5F2;
  --alt-cream: #d8d5cc;
  --dark-green: #2E6B2E;
  --light-green: #DEEDDE;
  --gold: #c49a35;
  --gold-lt: #d4aa55;
  --dark-txt: #1c1408;
  --light-txt: #e5e7eb;
  --body-txt: #4a4030;
  --card-bg: #ffffff;
  --input-bg: #f4f1ec;
}

/* ===================== GLOBAL ===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--cream-bg);
  color: var(--dark-txt);
}

.section-label {
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--dark-txt);
  line-height: 1.15;
}

.section-heading.underlined {
  position: relative;
  display: inline-block;
}

.section-heading.underlined::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 2px;
  background: var(--gold);
}

/* ===================== NAVBAR ===================== */
#mainNav {
  padding: 10px 0;
  transition: padding .3s;
}

#mainNav.scrolled {
  background: #fff;
  padding: 6px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, .35);
}
#mainNav.scrolled .navbar-nav .nav-link{color:var(--dark-txt) !important}
.nav-logo-box {
  background: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

img.header-logo {
  width: 120px;
}

.nav-logo-box svg {
  width: 32px;
  height: 32px;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark-txt);
  line-height: 1;
}

.nav-logo-sub {
  font-size: .52rem;
  color: var(--body-txt);
  letter-spacing: .06em;
  display: block;
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, .82) !important;
  font-size: 1rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 14px !important;
  transition: color .25s;
}

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

.btn-nav-call {
  border: 1.5px solid rgba(255, 255, 255, .45);
  color: #fff;
  border-radius: 50px;
  padding: 7px 20px;
  font-size: .78rem;
  background: transparent;
  transition: all .25s;
}

.btn-nav-call:hover {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.btn-nav-book {
  background: var(--dark-green);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 8px 22px;
  font-size: .78rem;
  transition: all .25s;
}

.btn-nav-book:hover {
  background: #1e3a1c;
  color: #fff;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, .3);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.75)' stroke-linecap='round' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media(max-width:991px) {
  .navbar-collapse {
    background: var(--dark-bg);
    padding: 12px 16px 16px;
    border-top: 1px solid rgba(255, 255, 255, .08);
  }

  .navbar-nav .nav-link {
    padding: 9px 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
  }

  .nav-btns-mobile {
    padding: 14px 0 0;
    display: flex;
    gap: 10px;
  }
}

/* ===================== HERO ===================== */
#home {
  position: relative;
  height: 100vh;
  min-height: 580px;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20, 10, 2, .55) 0%, rgba(20, 10, 2, .65) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-brand-label {
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.hero-h1-italic {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 600;
  font-style: italic;
  color: var(--gold-lt);
  line-height: 1.15;
  display: block;
}

.hero-sub {
  color: rgba(255, 255, 255, .88);
  font-size: clamp(.9rem, 1.6vw, 1.07rem);
  line-height: 1.65;
  margin: 22px 0 38px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.btn-fresha {
  background: var(--dark-green);
  border: none;
  border-radius: 50px;
  color: var(--light-txt);
  font-weight: 700;
  font-size: .9rem;
  padding: 14px 30px;
  transition: all .25s;
}

.btn-fresha:hover {
  background: #1e3a1c;
  color: var(--light-txt);
}

.btn-call-hero {
  border: 1.5px solid rgba(255, 255, 255, .65);
  border-radius: 50px;
  color: #fff;
  font-size: .9rem;
  padding: 14px 30px;
  background: transparent;
  transition: all .25s;
}

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

.hero-scroll-down {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .65);
  font-size: 1rem;
  animation: scrollBounce 2.2s ease-in-out infinite;
  text-decoration: none;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(9px);
  }
}

/* Floating action buttons */
.fab-wrap {
  position: fixed;
  right: 18px;
  bottom: 70px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .22);
}

.fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .28);
}

.fab-phone {
  background: var(--dark-green);
  color: #fff;
    width: 35px;
    height: 35px;
    display: flex;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    text-decoration: none;   
}

.fab-cal {
  background: var(--gold-lt);
  color: var(--dark-txt);
      width: 35px;
    height: 35px;
    display: flex;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* ===================== QUOTE BANNER ===================== */
.quote-banner {
  background: var(--dark-green);
  padding: 58px 0;
  text-align: center;
}

.quote-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.35rem, 2.8vw, 2.1rem);
  color: var(--light-txt);
  font-weight: 500;
  margin-bottom: 12px;
}

.quote-banner p {
  color: var(--light-txt);
  font-size: .95rem;
}

/* ===================== ABOUT ===================== */
#about {
  background: var(--cream-bg);
  padding: 96px 0;
}

.about-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 14px;
}

.about-body p {
  color: var(--body-txt);
  font-size: .93rem;
  line-height: 1.82;
}

.about-body .lead-p {
  font-size: 1.05rem;
  color: var(--dark-txt);
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* ===================== SERVICES ===================== */
#services {
  background: var(--cream-bg);
  padding: 96px 0;
}

.svc-card {
  background: var(--card-bg);
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .06);
  padding: 32px 20px 28px;
  text-align: center;
  height: 100%;
  transition: transform .3s, box-shadow .3s;
}

.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .09);
}

.svc-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  border: 1.5px solid #DEEDDE;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.25rem;
  color: var(--dark-green);
  background: var(--light-green);
}

.svc-card:hover .svc-icon {
  background: var(--dark-green);
  color: #fff;
}

.svc-card h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-txt);
  margin-bottom: 9px;
}

.svc-card p {
  font-size: .84rem;
  color: var(--body-txt);
  line-height: 1.55;
  margin-bottom: 20px;
}

.btn-outline-dark-custom {
  border: 1.5px solid var(--dark-green);
  color: var(--dark-green);
  border-radius: 50px;
  padding: 7px 24px;
  font-size: .8rem;
  background: transparent;
  transition: all .25s;
  display: inline-block;
  text-decoration: none;
}

.btn-outline-dark-custom:hover {
  background: var(--dark-green);
  color: #fff;
}

/* ===================== WHY CHOOSE US ===================== */
#why {
  background: #2E6B2E;
  padding: 92px 0;
}

.why-label {
  color: var(--gold);
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.why-h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
}

.why-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(196, 154, 53, .22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--gold);
  font-size: 1.45rem;
}

.why-icon:hover {
  background: var(--gold);
  color: var(--light-txt);
}

.why-col h5 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.why-col p {
  color: rgba(255, 255, 255, .72);
  font-size: .88rem;
  line-height: 1.65;
}

/* ===================== PRICING ===================== */
#pricing {
  background: var(--cream-bg);
  padding: 96px 0;
}

.price-card {
  background: var(--card-bg);
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .07);
  padding: 28px 26px;
  height: 100%;
}

.price-card h5 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-txt);
  margin-bottom: 4px;
}

.price-opt {
  color: var(--gold);
  font-size: .76rem;
  margin-bottom: 16px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .055);
  font-size: .88rem;
  color: var(--body-txt);
}

.price-row:last-of-type {
  border-bottom: none;
}

.price-amt {
  color: var(--gold);
  font-weight: 700;
}

.btn-book-green {
  background: var(--dark-green);
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 11px;
  font-size: .84rem;
  font-weight: 600;
  width: 100%;
  margin-top: 18px;
  transition: background .25s;
  display: block;
  text-align: center;
  text-decoration: none;
}

.btn-book-green:hover {
  background: #1e3a1c;
  color: #fff;
}

.pricing-sub-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  margin: 52px 0 26px;
}

.special-label {
  font-weight: 700;
  font-size: .9rem;
  color: var(--dark-txt);
  margin-bottom: 2px;
}

.special-note {
  font-size: .8rem;
  color: var(--body-txt);
  margin-bottom: 14px;
}

/* ===================== GALLERY ===================== */
#gallery {
  background: #F5F3EF;
  padding: 96px 0;
}

.gal-img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform .4s ease;
  display: block;
}

.gal-wrap {
  overflow: hidden;
  border-radius: 14px;
}

.gal-wrap:hover .gal-img {
  transform: scale(1.06);
}

.gallery-caption {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.12rem;
  color: var(--body-txt);
  text-align: center;
  margin-top: 34px;
}

/* ===================== TESTIMONIALS ===================== */
#testimonials {
  background: var(--cream-bg);
  padding: 96px 0;
}

.review-card {
  background: var(--card-bg);
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, .06);
  padding: 32px 28px;
  height: 100%;
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 14px;
}

.review-q {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.07rem;
  color: var(--dark-txt);
  line-height: 1.65;
  margin-bottom: 20px;
}

.reviewer {
  color: var(--gold);
  font-weight: 700;
  font-size: .88rem;
}

/* ===================== CONTACT ===================== */
#contact {
  background: #F5F3EF;
  padding: 96px 0;
}

.ci-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(196, 154, 53, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.ci-label {
  font-weight: 700;
  color: var(--dark-txt);
  font-size: .95rem;
  margin-bottom: 2px;
}

.ci-value {
  color: var(--body-txt);
  font-size: .88rem;
  margin: 0;
}

.cf-card {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 4px 28px rgba(0, 0, 0, .06);
}

.cf-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--dark-txt);
}

.form-control {
  background: var(--input-bg);
  border: 1px solid rgba(0, 0, 0, .09);
  border-radius: 9px;
  padding: 13px 16px;
  font-size: .88rem;
  color: var(--dark-txt);
}

.form-control::placeholder {
  color: #aaa;
}

.form-control:focus {
  background: var(--input-bg);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 154, 53, .12);
}

.btn-send {
  background: var(--dark-green);
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 14px;
  font-size: .9rem;
  font-weight: 700;
  width: 100%;
  transition: background .25s;
}

.btn-send:hover {
  background: #1e3a1c;
}

.btn-contact-call {
  border: 1.5px solid var(--dark-txt);
  color: var(--dark-txt);
  border-radius: 50px;
  padding: 10px 28px;
  font-size: .87rem;
  background: transparent;
  transition: all .25s;
  text-decoration: none;
  display: inline-block;
}

.btn-contact-call:hover {
  background: var(--dark-txt);
  color: #fff;
}

.btn-contact-book {
  background: var(--dark-green);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 28px;
  font-size: .87rem;
  transition: background .25s;
  text-decoration: none;
  display: inline-block;
}

.btn-contact-book:hover {
  background: #1e3a1c;
  color: #fff;
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--dark-bg);
  padding: 64px 0 0;
}

.footer-logo {
  background: #fff;
  padding: 6px 10px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}

.footer-logo svg {
  width: 28px;
  height: 28px;
}

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark-txt);
  line-height: 1;
}

.footer-logo-sub {
  font-size: .48rem;
  color: var(--body-txt);
  letter-spacing: .06em;
  display: block;
}

.footer-tagline {
  color: rgba(255, 255, 255, .65);
  font-size: .87rem;
  line-height: 1.72;
  max-width: 260px;
}

.footer-h {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  font-size: .9rem;
  transition: color .25s;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-body-txt {
  color: rgba(255, 255, 255, .68);
  font-size: .87rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.btn-fresha-footer {
  border: 2px solid var(--gold-lt);
  background: var(--gold-lt);
  color: var(--dark-txt);
  border-radius: 50px;
  padding: 10px 28px;
  font-size: .87rem;
  font-weight: 700;
  transition: all .25s;
  display: inline-block;
  text-decoration: none;
}

.btn-fresha-footer:hover {
  background: transparent;
  color: var(--gold-lt);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  margin-right: 8px;
  transition: background .25s, color .25s;
}

.social-link:hover {
  background: var(--gold);
  color: var(--dark-txt);
}

.footer-bottom {
  margin-top: 52px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, .45);
  font-size: .8rem;
  margin: 0;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width:767px) {
  #home {
    height: 100svh;
  }

  .about-img {
    height: 240px;
  }

  .gal-img {
    height: 170px;
  }

  .cf-card {
    padding: 24px 18px;
  }

  .fab-wrap {
    right: 12px;
    bottom: 16px;
  }

  .fab {
    width: 46px;
    height: 46px;
    font-size: .95rem;
  }

  .hero-sub {
    font-size: .88rem;
  }
}

@media (max-width:575px) {
  .gal-img {
    height: 150px;
  }

  .pricing-sub-title {
    font-size: 1.25rem;
  }
}