:root {
  --cream: #f6f1e8;
  --cream-strong: #efe5d2;
  --leaf: #274a33;
  --leaf-soft: #4f7a4e;
  --soil: #9a6b46;
  --sand: #d7c7a9;
  --white: #fffdf8;
  --shadow: 0 24px 60px rgba(39, 74, 51, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', 'Trebuchet MS', sans-serif;
  color: var(--leaf);
  background:
    radial-gradient(circle at top left, rgba(125, 166, 120, 0.22), transparent 30%),
    linear-gradient(180deg, #f8f3ea 0%, #f4efe4 45%, #f7f2e8 100%);
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.site-shell {
  position: relative;
  overflow: clip;
}

.site-shell::before,
.site-shell::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(10px);
  opacity: 0.65;
}

.site-shell::before {
  top: 2rem;
  right: -10rem;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(79, 122, 78, 0.18), transparent 70%);
}

.site-shell::after {
  top: 32rem;
  left: -8rem;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(154, 107, 70, 0.12), transparent 70%);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(246, 241, 232, 0.76);
  border-bottom: 1px solid rgba(39, 74, 51, 0.08);
}

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

.brand-lockup strong,
.brand-lockup small {
  display: block;
}

.brand-lockup strong {
  font-size: 1rem;
}

.brand-lockup small {
  font-size: 0.75rem;
  color: rgba(39, 74, 51, 0.7);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--leaf), var(--leaf-soft));
  color: var(--white);
  font-weight: 700;
}

.hero-section {
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 4rem auto auto 0;
  width: 100%;
  height: 14rem;
  background: linear-gradient(180deg, rgba(215, 199, 169, 0.2), transparent);
  pointer-events: none;
}

.eyebrow {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--leaf-soft);
}

.section-title {
  margin: 0.35rem 0 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 0.95;
  color: var(--leaf);
}

.hero-copy h1,
.footer-shell h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.btn-primary {
  background: var(--leaf);
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-secondary {
  border: 1px solid rgba(39, 74, 51, 0.18);
  background: rgba(255, 253, 248, 0.72);
}

.btn-primary:hover,
.btn-secondary:hover,
.sticky-contact a:hover {
  transform: translateY(-2px);
}

.trust-strip {
  max-width: 42rem;
}

.trust-strip div {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(39, 74, 51, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.6);
}

.trust-strip strong,
.trust-strip span,
.feature-points strong,
.feature-points span,
.visit-card strong,
.visit-card span {
  display: block;
}

.trust-strip strong,
.feature-points strong {
  font-size: 0.94rem;
}

.trust-strip span,
.feature-points span,
.visit-card span {
  margin-top: 0.3rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(39, 74, 51, 0.76);
}

.hero-collage {
  position: relative;
  min-height: 35rem;
}

.hero-card,
.hero-badge,
.about-stack figure,
.category-card,
.highlights-band,
.feature-row,
.gallery-card,
.testimonial-shell,
.faq-item,
.visit-card,
.map-shell,
.footer-thumbs img {
  box-shadow: var(--shadow);
}

.hero-card {
  position: absolute;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius-xl);
}

.hero-card-main {
  inset: 0 3rem 0.5rem 0;
}

.hero-card-top {
  top: 1.3rem;
  right: 0;
  width: 13rem;
  height: 11rem;
  transform: rotate(4deg);
}

.hero-card-bottom {
  left: 2rem;
  bottom: 0;
  width: 12rem;
  height: 10rem;
  transform: rotate(-5deg);
}

.hero-badge {
  position: absolute;
  right: 1rem;
  bottom: 1.5rem;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  background: rgba(246, 241, 232, 0.92);
  font-size: 0.88rem;
  font-weight: 700;
}

.section-pad {
  padding: 2rem 0 5rem;
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.54), rgba(239, 229, 210, 0.45));
}

.about-stack {
  display: grid;
  gap: 1rem;
}

.about-main {
  height: 27rem;
}

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

.about-grid figure {
  height: 12rem;
}

.about-stack figure,
.category-card,
.feature-row,
.gallery-card,
.visit-card,
.map-shell,
.footer-thumbs img {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.section-copy {
  align-self: center;
}

.section-copy p,
.feature-row p,
.visit-copy p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(39, 74, 51, 0.82);
}

.feature-points {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.feature-points div {
  padding: 1rem 1.2rem;
  border-left: 4px solid rgba(79, 122, 78, 0.35);
  background: rgba(255, 253, 248, 0.54);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.section-head {
  max-width: 52rem;
}

#highlights .section-title {
  font-size: clamp(1.9rem, 2.8vw, 2.9rem);
}

.category-card {
  position: relative;
  display: block;
  min-height: 20rem;
  border: 1px solid rgba(39, 74, 51, 0.1);
  background: rgba(255, 253, 248, 0.88);
}

.category-card > img {
  position: absolute;
  inset: 0;
}

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 24, 15, 0.12) 8%, rgba(11, 24, 15, 0.72) 100%);
}

.category-card div {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 20rem;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
}

.category-card h3,
.feature-row h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  line-height: 0.95;
}

.category-card h3 {
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.category-card p {
  margin: 0.65rem 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 253, 248, 0.9);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.highlights-band {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border: 1px solid rgba(39, 74, 51, 0.08);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(90deg, rgba(39, 74, 51, 0.96), rgba(79, 122, 78, 0.9)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent);
  color: var(--white);
}

.band-kicker,
.band-stat span {
  display: block;
}

.band-kicker {
  margin-bottom: 0.4rem;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.75;
}

.band-stat {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.band-stat img {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 253, 248, 0.28);
}

.feature-row {
  display: grid;
  gap: 0;
  border: 1px solid rgba(39, 74, 51, 0.08);
  background: rgba(255, 253, 248, 0.88);
}

.feature-row figure {
  height: 26rem;
}

.feature-row figure img {
  object-position: center;
}

.feature-row div {
  padding: 1.75rem;
  align-self: center;
}

.other-company-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(39, 74, 51, 0.08);
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 248, 0.88);
  box-shadow: var(--shadow);
}

.other-company-copy {
  padding: 1.75rem;
  align-self: center;
}

.other-company-copy p:last-of-type {
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(39, 74, 51, 0.82);
}

.other-company-media {
  min-height: 19rem;
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 8rem;
}

.gallery-card {
  margin: 0;
  height: 100%;
  min-height: 0;
  grid-row: span 2;
}

.gallery-card.tall {
  grid-row: span 3;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-shell {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.94), rgba(239, 229, 210, 0.86));
  border: 1px solid rgba(39, 74, 51, 0.1);
}

.testimonial-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.08;
}

.testimonial-grid,
.testimonial-copy,
.testimonial-stage,
.testimonial-slider,
.testimonial-dots {
  position: relative;
  z-index: 1;
}

.testimonial-grid {
  display: grid;
  gap: 1.5rem;
}

.testimonial-intro {
  margin: 1rem 0 0;
  max-width: 32rem;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(39, 74, 51, 0.8);
}

.testimonial-summary {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.testimonial-summary div {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(39, 74, 51, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.58);
}

.testimonial-summary strong,
.testimonial-summary span {
  display: block;
}

.testimonial-summary strong {
  font-size: 0.94rem;
}

.testimonial-summary span {
  margin-top: 0.25rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(39, 74, 51, 0.72);
}

.testimonial-stage {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 248, 0.85);
  border: 1px solid rgba(39, 74, 51, 0.08);
  box-shadow: var(--shadow);
}

.quote-mark {
  position: absolute;
  top: 1rem;
  left: 1.2rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 6rem;
  line-height: 1;
  color: rgba(79, 122, 78, 0.14);
  pointer-events: none;
}

.testimonial-slider {
  min-height: 16rem;
}

.testimonial-card {
  display: none;
  max-width: 44rem;
  padding-top: 2.7rem;
}

.testimonial-card.active {
  display: block;
}

.testimonial-card p {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1.35;
  letter-spacing: 0.01em;
  color: #1f3827;
}

.testimonial-card span {
  display: block;
  margin-top: 1.25rem;
  font-size: 0.78rem;
  line-height: 1.7;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(39, 74, 51, 0.56);
}

.testimonial-card strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1rem;
  color: var(--leaf);
}

.testimonial-slider .testimonial-card:nth-child(3) p,
.testimonial-slider .testimonial-card:nth-child(6) p {
  font-family: 'Noto Sans Gurmukhi', 'Manrope', sans-serif;
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0;
}

.testimonial-dots {
  display: flex;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.testimonial-controls {
  margin-top: 1rem;
}

.testimonial-note {
  position: relative;
  z-index: 1;
  margin: 1rem 0 0;
  max-width: 36rem;
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(39, 74, 51, 0.68);
}

.testimonial-dots button {
  width: 0.9rem;
  height: 0.9rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(39, 74, 51, 0.18);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.testimonial-dots button.is-active {
  background: var(--leaf);
  transform: scale(1.1);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 253, 248, 0.85);
  border: 1px solid rgba(39, 74, 51, 0.08);
  border-radius: var(--radius-lg);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.2rem 1.25rem;
  border: 0;
  background: transparent;
  color: var(--leaf);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.faq-answer {
  height: 0;
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 1.25rem 1.2rem;
  color: rgba(39, 74, 51, 0.76);
  line-height: 1.7;
}

.visit-card {
  margin-top: 1.4rem;
  padding: 1.2rem;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(39, 74, 51, 0.08);
}

.visit-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.2rem;
}

.visit-media figure {
  height: 11rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.map-shell {
  min-height: 30rem;
  border: 1px solid rgba(39, 74, 51, 0.08);
}

.map-shell iframe {
  width: 100%;
  height: 100%;
  min-height: 30rem;
  border: 0;
}

.footer-shell {
  background: linear-gradient(180deg, #1f3c29, #183121);
}

.footer-thumbs {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.footer-thumbs img {
  width: 5rem;
  height: 5rem;
  border-radius: 18px;
}

.sticky-contact {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: flex;
  gap: 0.6rem;
  padding: 0.55rem;
  border-radius: 999px;
  background: rgba(39, 74, 51, 0.96);
  box-shadow: var(--shadow);
}

.sticky-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 5.25rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease;
}

.sticky-contact a:hover {
  background: rgba(255, 253, 248, 0.1);
}

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
}

@media (min-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 0.78fr 1.22fr;
    align-items: stretch;
  }

  .highlights-band {
    grid-template-columns: 1.3fr repeat(3, 0.6fr);
    align-items: center;
  }

  .feature-row {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .feature-row figure {
    height: 28rem;
  }

  .feature-row-reverse {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .feature-row-reverse figure {
    order: 2;
  }

  .feature-row-reverse div {
    order: 1;
  }

  .other-company-card {
    grid-template-columns: 1.05fr 0.95fr;
  }

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

  .gallery-card:nth-child(7n + 1) {
    grid-column: span 2;
  }

  .gallery-card.tall {
    grid-row: span 4;
  }
}

@media (max-width: 767px) {
  .testimonial-shell {
    padding: 1.35rem;
  }

  .testimonial-stage {
    padding: 1.2rem;
  }

  .quote-mark {
    top: 0.8rem;
    left: 0.95rem;
    font-size: 4.5rem;
  }

  .testimonial-slider {
    min-height: 18rem;
  }

  .hero-collage {
    min-height: 28rem;
  }

  .hero-card-main {
    inset: 0 1rem 0.8rem 0;
  }

  .hero-card-top {
    width: 9rem;
    height: 8rem;
  }

  .hero-card-bottom {
    width: 8.5rem;
    height: 7rem;
  }

  .sticky-contact {
    left: 0.8rem;
    right: 0.8rem;
    justify-content: center;
  }

  .sticky-contact a {
    min-width: 0;
    flex: 1 1 0;
  }

  .footer-thumbs {
    justify-content: flex-start;
  }
}
