:root {
  --cream: #fff8ea;
  --soft-beige: #f3e4c8;
  --earth-green: #315b3f;
  --leaf-green: #5f7f4b;
  --warm-brown: #7b4d28;
  --sunset: #d9904f;
  --terracotta: #b9693f;
  --ink: #263225;
  --muted: #6d735f;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(49, 53, 37, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(217, 144, 79, 0.16), transparent 34rem),
    linear-gradient(180deg, #fffaf0 0%, #f8eedb 50%, #fff8ea 100%);
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-nav {
  padding: 1rem 0;
  background: rgba(255, 248, 234, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(123, 77, 40, 0.12);
  transition: box-shadow 0.25s ease, background 0.25s ease, padding 0.25s ease;
}

.site-nav.nav-scrolled {
  padding: 0.65rem 0;
  background: rgba(255, 248, 234, 0.94);
  box-shadow: 0 16px 42px rgba(55, 46, 30, 0.12);
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--earth-green);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--cream);
  background: linear-gradient(135deg, var(--earth-green), var(--leaf-green));
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(49, 91, 63, 0.25);
}

.nav-link {
  color: var(--earth-green);
  font-weight: 700;
  margin-left: 0.4rem;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--terracotta);
}

.nav-cta {
  padding: 0.65rem 1rem !important;
  color: var(--cream) !important;
  background: var(--earth-green);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(49, 91, 63, 0.2);
}

.hero-section {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background-image: url("Images/Screenshot%202026-07-06%20105613.png");
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(21, 32, 22, 0.82) 0%, rgba(28, 38, 23, 0.56) 45%, rgba(34, 31, 21, 0.28) 100%),
    linear-gradient(180deg, rgba(31, 32, 19, 0.25), rgba(31, 32, 19, 0.68));
}

.hero-content {
  max-width: 1180px;
  padding-top: 7rem;
  padding-bottom: 4rem;
  animation: riseIn 0.9s ease both;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.9rem;
  color: var(--sunset);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 850px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-shadow: 0 20px 50px rgba(0, 0, 0, 0.32);
}

.hero-subtitle {
  max-width: 660px;
  margin: 1.35rem 0 0;
  color: rgba(255, 248, 234, 0.92);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  line-height: 1.7;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-3px);
}

.btn-primary-soft {
  color: var(--cream);
  background: linear-gradient(135deg, var(--terracotta), var(--sunset));
  box-shadow: 0 18px 36px rgba(185, 105, 63, 0.32);
}

.btn-outline-cream {
  color: var(--cream);
  border: 1px solid rgba(255, 248, 234, 0.58);
  background: rgba(255, 248, 234, 0.12);
  backdrop-filter: blur(10px);
}

.btn-secondary-soft {
  color: var(--earth-green);
  background: #e8d8b8;
}

.btn-whatsapp {
  color: var(--cream);
  background: linear-gradient(135deg, #2f7a4a, #4fa565);
  box-shadow: 0 18px 36px rgba(47, 122, 74, 0.25);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  width: 28px;
  height: 44px;
  border: 1px solid rgba(255, 248, 234, 0.65);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue::after {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--cream);
  border-radius: 50%;
  transform: translateX(-50%);
  animation: scrollDot 1.8s ease-in-out infinite;
}

.section-pad {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.section-title {
  margin: 0;
  color: var(--earth-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.lead-copy {
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.85;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.about-highlights span {
  padding: 0.65rem 0.9rem;
  color: var(--earth-green);
  background: rgba(95, 127, 75, 0.13);
  border: 1px solid rgba(95, 127, 75, 0.18);
  border-radius: 999px;
  font-weight: 800;
}

.about-image-wrap {
  position: relative;
  min-height: 360px;
}

.about-image-wrap img {
  width: 100%;
  height: min(560px, 70vw);
  object-fit: cover;
  border: 10px solid rgba(255, 248, 234, 0.78);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  max-width: 250px;
  padding: 1rem;
  color: var(--earth-green);
  background: rgba(255, 248, 234, 0.92);
  border: 1px solid rgba(123, 77, 40, 0.16);
  border-radius: 20px;
  box-shadow: 0 18px 48px rgba(42, 36, 24, 0.18);
  backdrop-filter: blur(12px);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note span {
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.features-section {
  background: linear-gradient(180deg, rgba(49, 91, 63, 0.08), rgba(217, 144, 79, 0.07));
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2.5rem;
}

.feature-card {
  height: 100%;
  padding: 1.6rem;
  background: rgba(255, 252, 244, 0.86);
  border: 1px solid rgba(123, 77, 40, 0.12);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(55, 46, 30, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
  border-color: rgba(95, 127, 75, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-8px);
}

.feature-icon {
  display: inline-grid;
  width: 52px;
  height: 52px;
  margin-bottom: 1.1rem;
  place-items: center;
  color: var(--cream);
  background: linear-gradient(135deg, var(--earth-green), var(--leaf-green));
  border-radius: 18px;
  font-weight: 900;
}

.feature-card h3 {
  margin: 0 0 0.55rem;
  color: var(--warm-brown);
  font-size: 1.22rem;
  font-weight: 900;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  max-width: none;
}

.gallery-heading p:last-child {
  max-width: 410px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

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

.gallery-item {
  position: relative;
  min-height: 250px;
  margin: 0;
  overflow: hidden;
  background: #e7d6b8;
  border-radius: 24px;
  box-shadow: 0 16px 38px rgba(55, 46, 30, 0.1);
}

.gallery-button {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  color: var(--cream);
  text-align: left;
  background: transparent;
  border: 0;
  cursor: zoom-in;
}

.gallery-item::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, transparent 38%, rgba(35, 42, 25, 0.78));
  opacity: 1;
  transition: opacity 0.25s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.3s ease;
}

.gallery-item:hover img,
.gallery-item:focus-within img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.08);
}

.gallery-item:hover::after,
.gallery-item:focus-within::after {
  opacity: 0.92;
}

.gallery-label {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  left: 0.9rem;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.75rem 0.85rem;
  background: rgba(255, 248, 234, 0.15);
  border: 1px solid rgba(255, 248, 234, 0.26);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
}

.gallery-label::after {
  content: "";
}

.gallery-button:focus-visible {
  outline: 3px solid var(--sunset);
  outline-offset: -6px;
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 520px;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-modal .modal-content {
  overflow: hidden;
  background: var(--cream);
  border: 0;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.gallery-modal .modal-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(123, 77, 40, 0.12);
}

.gallery-modal .modal-title {
  color: var(--earth-green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
}

.gallery-modal .modal-body {
  padding: 0;
  background: #151d15;
}

.gallery-modal img {
  width: 100%;
  max-height: min(78vh, 820px);
  object-fit: contain;
}

.location-section {
  background:
    linear-gradient(135deg, rgba(49, 91, 63, 0.92), rgba(83, 101, 58, 0.88)),
    url("Images/Screenshot%202026-07-06%20110442.jpg") center / cover;
  color: var(--cream);
}

.location-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  background: rgba(255, 248, 234, 0.08);
  border: 1px solid rgba(255, 248, 234, 0.2);
  border-radius: 30px;
  backdrop-filter: blur(10px);
}

.location-panel .section-title,
.contact-card .section-title {
  color: inherit;
}

address {
  margin: 1.25rem 0 0;
  color: rgba(255, 248, 234, 0.86);
  font-size: 1.15rem;
  line-height: 1.7;
}

.contact-card {
  max-width: 980px;
  margin: auto;
  padding: clamp(2rem, 5vw, 4rem);
  color: var(--cream);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(49, 91, 63, 0.96), rgba(123, 77, 40, 0.88)),
    url("Images/Screenshot%202026-07-06%20110525.jpg") center / cover;
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.contact-card .section-kicker {
  color: #f2be7b;
}

.contact-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.contact-numbers a {
  padding: 0.7rem 1rem;
  background: rgba(255, 248, 234, 0.12);
  border: 1px solid rgba(255, 248, 234, 0.2);
  border-radius: 999px;
  font-size: 1.08rem;
  font-weight: 900;
}

.contact-actions {
  justify-content: center;
}

.site-footer {
  padding: 3rem 0 1.4rem;
  color: rgba(255, 248, 234, 0.82);
  background: #223521;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
}

.site-footer h2,
.site-footer strong {
  color: var(--cream);
}

.site-footer h2 {
  margin: 0 0 0.6rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.site-footer p {
  margin: 0.35rem 0 0;
  line-height: 1.6;
}

.site-footer a:hover {
  color: #f2be7b;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 248, 234, 0.14);
  font-size: 0.95rem;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollDot {
  0%,
  100% {
    opacity: 0.4;
    transform: translate(-50%, 0);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, 16px);
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 248, 234, 0.98);
    border-radius: 20px;
    box-shadow: 0 16px 36px rgba(55, 46, 30, 0.12);
  }

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

  .hero-section {
    background-position: 58% center;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-heading,
  .location-panel {
    align-items: start;
    flex-direction: column;
  }

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

@media (max-width: 575.98px) {
  .hero-content {
    padding-top: 8rem;
  }

  .hero-content h1 {
    font-size: clamp(2.6rem, 15vw, 4.4rem);
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-actions,
  .contact-actions {
    width: 100%;
  }

  .about-image-wrap img {
    height: 420px;
    border-radius: 22px;
  }

  .floating-note {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    max-width: none;
  }

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

  .gallery-item,
  .gallery-large,
  .gallery-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
  }

  .location-panel,
  .contact-card {
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
