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

:root {
  --green: #2d6a4f;
  --green-dk: #1b4332;
  --green-lt: #52b788;
  --maroon: #800020;
  --maroon-dk: #5c0018;
  --white: #ffffff;
  --cream: #f7f4ef;
  --gray: #6b7280;
  --border: #e5e1db;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.16);
  --r: 10px;
  --t: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: #1a1a1a;
  line-height: 1.7;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.15;
}
a {
  text-decoration: none;
  transition: var(--t);
}
img {
  max-width: 100%;
  display: block;
}

/* ─── TOPBAR ─── */
.topbar {
  background: var(--green-dk);
  padding: 7px 0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.7);
}
.topbar .wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a {
  color: var(--green-lt);
}
.topbar a:hover {
  color: #fff;
}
.topbar i {
  margin-right: 5px;
}

/* ─── NAVBAR ─── */
.navbar {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 9999;
  border-bottom: 3px solid var(--maroon);
  box-shadow: var(--shadow-sm);
}
.nav-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between !important; /* pushes logo left & menu right */

  height: 68px;
}
/* .brand {
  display: flex;
  align-items: center;
  gap: 12px;
} */

.brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 70px;
  width: 100%;
  display: block;
}

/* .brand-logo {
  height: 100px;
  width: 100%;
  display: block;
} */

/* .brand-emblem {
  width: 46px;
  height: 46px;
  background: var(--green);
  border-radius: 50%;
  border: 2.5px solid var(--maroon);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}
.brand-info span {
  display: block;
} */
/* .brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dk);
  line-height: 1;
}
.brand-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--maroon);
  line-height: 1;
  margin-top: 2px;
} */

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
  margin: 0;
  padding: 0;
  margin-left:20rem;
}
.nav-links > li > a {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--green-dk);
  padding: 8px 14px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  transition: var(--t);
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--maroon);
  background: rgba(128, 0, 32, 0.06);
}

/* Dropdown parent */
.has-dropdown {
  position: relative;
}

/* Caret badge */
.caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--green-lt);
  border-radius: 50%;
  flex-shrink: 0;
  transition: var(--t);
}
.caret svg {
  width: 8px;
  height: 8px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--t);
}

/* Open state */
.has-dropdown.open > a {
  color: var(--maroon);
  background: rgba(128, 0, 32, 0.06);
}
.has-dropdown.open > a .caret {
  background: var(--maroon);
}
.has-dropdown.open > a .caret svg {
  transform: rotate(180deg);
}

/* Dropdown panel */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border-radius: var(--r);
  border-top: 3px solid var(--green);
  box-shadow: var(--shadow-md);
  min-width: 220px;
  padding: 6px 0;
  z-index: 9999;
  animation: dropIn 0.2s ease;
}
.has-dropdown.open .dropdown {
  display: block;
}
@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--green-dk);
  border-left: 3px solid transparent;
  transition: var(--t);
}
.dropdown a:hover {
  color: var(--maroon);
  background: var(--cream);
  border-left-color: var(--maroon);
}
.dropdown a i {
  color: var(--green-lt);
  font-size: 0.9rem;
  width: 16px;
  transition: var(--t);
}
.dropdown a:hover i {
  color: var(--maroon);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
  margin-left: 10rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dk);
  border-radius: 2px;
  transition: var(--t);
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 2px solid var(--border);
  padding: 12px 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  box-shadow: var(--shadow-md);
  z-index: 9998;
}
.mobile-menu.open {
  display: block;
}
.mobile-menu ul {
  list-style: none;
  padding: 0 16px;
}
.mobile-menu ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-dk);
  border-radius: 8px;
  transition: var(--t);
}
.mobile-menu ul li a:hover {
  color: var(--maroon);
  background: rgba(128, 0, 32, 0.05);
}
.mobile-menu .mob-caret {
  width: 22px;
  height: 22px;
  background: var(--green-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--t);
}
.mobile-menu .mob-caret svg {
  width: 9px;
  height: 9px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform var(--t);
}
.mobile-menu .mob-has-sub.open .mob-caret {
  background: var(--maroon);
}
.mobile-menu .mob-has-sub.open .mob-caret svg {
  transform: rotate(180deg);
}
.mobile-menu .mob-sub {
  display: none;
  padding: 4px 0 6px 16px;
}
.mobile-menu .mob-has-sub.open .mob-sub {
  display: block;
}
.mobile-menu .mob-sub a {
  font-size: 0.82rem;
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 600;
  padding: 8px 14px;
  color: var(--green-dk);
  justify-content: flex-start;
  gap: 10px;
}
.mobile-menu .mob-sub a i {
  color: var(--green-lt);
  width: 16px;
}
.mobile-menu .mob-sub a:hover {
  color: var(--maroon);
}
.mobile-menu .mob-sub a:hover i {
  color: var(--maroon);
}

/* ─── HERO ─── */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--green-dk);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 80% at 70% 50%,
      rgba(128, 0, 32, 0.25) 0%,
      transparent 60%
    ),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 50px,
      rgba(255, 255, 255, 0.02) 50px,
      rgba(255, 255, 255, 0.02) 100px
    );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(82, 183, 136, 0.15);
  border: 1px solid rgba(82, 183, 136, 0.3);
  color: var(--green-lt);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  color: #fff;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--green-lt);
}
.hero p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  max-width: 460px;
  margin-bottom: 2rem;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary-hero {
  background: var(--maroon);
  color: #fff;
  padding: 13px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid var(--maroon);
  transition: var(--t);
}
.btn-primary-hero:hover {
  background: var(--maroon-dk);
  border-color: var(--maroon-dk);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(128, 0, 32, 0.35);
}
.btn-outline-hero {
  background: transparent;
  color: #fff;
  padding: 13px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid rgba(255, 255, 255, 0.35);
  transition: var(--t);
}
.btn-outline-hero:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat-lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── SECTION BASE ─── */
.section {
  padding: 90px 0;
}
.section-alt {
  background: #fff;
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 24px;
}
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 0.6rem;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--green-dk);
}
.divider {
  width: 52px;
  height: 4px;
  background: linear-gradient(90deg, var(--maroon), var(--green-lt));
  border-radius: 2px;
  margin: 14px 0 16px;
}
.section-desc {
  color: var(--gray);
  font-size: 1rem;
  max-width: 500px;
}
.text-center .divider {
  margin-left: auto;
  margin-right: auto;
}
.text-center .section-desc {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-block {
  position: relative;
}
.about-img-block svg {
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 108px;
  height: 108px;
  background: var(--maroon);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: 4px solid #fff;
}
.about-badge .big {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.about-badge .sm {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  letter-spacing: 0.04em;
  line-height: 1.3;
}
.about-features {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feat-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green-dk), var(--green));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
}
.feat h5 {
  font-size: 0.95rem;
  color: var(--green-dk);
  margin-bottom: 2px;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
}
.feat p {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0;
}
.btn-green {
  display: inline-block;
  margin-top: 28px;
  background: var(--green);
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.83rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--t);
}
.btn-green:hover {
  background: var(--green-dk);
  color: #fff;
  transform: translateY(-2px);
}
.btn-maroon {
  display: inline-block;
  background: var(--maroon);
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.83rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--t);
}
.btn-maroon:hover {
  background: var(--maroon-dk);
  color: #fff;
  transform: translateY(-2px);
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: #fff;
  border-radius: var(--r);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--green);
  transition: var(--t);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 67, 50, 0.03), transparent);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--maroon);
}
.s-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--green-dk), var(--green));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 18px;
  transition: var(--t);
}
.service-card:hover .s-icon {
  background: linear-gradient(135deg, var(--maroon-dk), var(--maroon));
}
.service-card h4 {
  font-size: 1.05rem;
  color: var(--green-dk);
  margin-bottom: 8px;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
}
.service-card p {
  font-size: 0.84rem;
  color: var(--gray);
  margin: 0 0 14px;
}
.service-card a {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--maroon);
  letter-spacing: 0.04em;
}
.service-card a:hover {
  color: var(--maroon-dk);
}

/* ─── GALLERY ─── */
.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 32px 0;
}
.f-btn {
  background: none;
  border: 2px solid var(--green);
  color: var(--green-dk);
  padding: 7px 20px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--t);
}
.f-btn:hover,
.f-btn.active {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.g-item {
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.g-item img,
.g-item svg {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.g-item:hover img,
.g-item:hover svg {
  transform: scale(1.06);
}
.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(27, 67, 50, 0.88) 0%,
    transparent 55%
  );
  opacity: 0;
  transition: var(--t);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.g-item:hover .g-overlay {
  opacity: 1;
}
.g-overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  margin-top: 48px;
}
.contact-info {
  background: var(--green-dk);
  border-radius: var(--r);
  padding: 36px 28px;
  color: #fff;
}
.contact-info h3 {
  font-size: 1.5rem;
  color: var(--green-lt);
  margin-bottom: 24px;
}
.c-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.c-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}
.c-item strong {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.55;
  display: block;
  margin-bottom: 2px;
}
.c-item p {
  margin: 0;
  font-size: 0.87rem;
  opacity: 0.85;
  line-height: 1.5;
}
.socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.soc {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--t);
}
.soc:hover {
  background: var(--maroon);
  color: #fff;
}
.contact-form {
  background: #fff;
  border-radius: var(--r);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.contact-form h3 {
  font-size: 1.5rem;
  color: var(--green-dk);
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--green-dk);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: "DM Sans", sans-serif;
  transition: var(--t);
  background: #fff;
  color: #1a1a1a;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.btn-submit {
  width: 100%;
  background: var(--maroon);
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--t);
  font-family: "DM Sans", sans-serif;
}
.btn-submit:hover {
  background: var(--maroon-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(128, 0, 32, 0.3);
}

/* ─── FOOTER ─── */
footer {
  background: var(--green-dk);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}
footer h5 {
  color: #fff;
  font-size: 0.9rem;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--maroon);
  display: inline-block;
}
footer ul {
  list-style: none;
}
footer ul li a {
  display: block;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 0;
  transition: var(--t);
}
footer ul li a:hover {
  color: var(--green-lt);
  padding-left: 6px;
}
footer p.f-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.f-contact p {
  font-size: 0.84rem;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.f-contact i {
  color: var(--green-lt);
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 48px;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
}
.footer-bottom span {
  color: var(--green-lt);
}

/* ─── BACK TO TOP ─── */
#btt {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--maroon);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--t);
  z-index: 9997;
}
#btt:hover {
  background: var(--maroon-dk);
  transform: translateY(-3px);
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: linear-gradient(135deg, var(--green-dk) 0%, var(--green) 100%);
  padding: 72px 0 52px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255, 255, 255, 0.018) 40px,
    rgba(255, 255, 255, 0.018) 80px
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.page-hero h1 {
  font-size: 2.8rem;
  color: #fff;
  font-weight: 700;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  font-size: 0.8rem;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumb a:hover {
  color: #fff;
}
.breadcrumb span {
  color: var(--green-lt);
}
.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.3);
}

/* ─── TEAM CARDS ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.team-card {
  background: #fff;
  border-radius: var(--r);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--t);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}
.team-card h5 {
  font-size: 1rem;
  color: var(--green-dk);
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
}
.team-card .role {
  font-size: 0.75rem;
  color: var(--maroon);
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin: 4px 0 8px;
}
.team-card p {
  font-size: 0.82rem;
  color: var(--gray);
}

/* ─── PROCESS STEPS ─── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.step {
  text-align: center;
  padding: 28px 20px;
}
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 16px;
}
.step h5 {
  font-size: 0.95rem;
  color: var(--green-dk);
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  margin-bottom: 6px;
}
.step p {
  font-size: 0.83rem;
  color: var(--gray);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual {
    display: none;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-badge {
    right: 0;
    bottom: -16px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hamburger {
    display: flex;
  }
  .nav-links {
    display: none;
  }
}
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 20px;
  }
}
