@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-garamond-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-sans-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-sans-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-sans-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-sans-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #031b1b;
  --ink-soft: #163535;
  --green: #0a5a5c;
  --green-mid: #478385;
  --sage: #84acad;
  --mist: #c2d6d6;
  --gold: #d4b458;
  --gold-light: #d4b458;
  --paper: #fafcfc;
  --porcelain: #f3f7f7;
  --line: #e7efef;
  --white: #ffffff;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Plus Jakarta Sans", Arial, sans-serif;
  --shadow: 0 24px 70px rgba(3, 27, 27, 0.12);
  --radius: 1.25rem;
  --container: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* Homepage iframe + smooth-scroll makes wheel feel stuck — keep scroll instant here. */
html:has(body[data-page="home"]) {
  scroll-behavior: auto;
  overflow-x: clip;
}

body[data-page="home"] {
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - 2.5rem), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--gold);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Contact rail — left edge (Call / Email / WhatsApp) */
.side-contact-rail {
  position: fixed;
  z-index: 980;
  top: 50%;
  left: 0;
  display: flex;
  flex-direction: column;
  width: 48px;
  transform: translateY(-50%);
}

.side-contact-rail a {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: var(--gold);
  border: 0;
  border-radius: 0;
  transition: color 160ms ease, background 160ms ease;
}

.side-contact-rail a + a {
  border-top: 1px solid rgba(3, 27, 27, 0.12);
}

.side-contact-rail a:hover,
.side-contact-rail a:focus-visible {
  color: var(--paper);
  background: var(--ink-soft);
  outline: none;
}

.side-contact-rail a.is-whatsapp:hover,
.side-contact-rail a.is-whatsapp:focus-visible {
  color: #fff;
  background: #128c7e;
}

.side-contact-rail svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.side-contact-rail a::after {
  content: attr(data-label);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 0.9rem;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.side-contact-rail a:hover::after,
.side-contact-rail a:focus-visible::after {
  opacity: 1;
}

/* Right FAB — WhatsApp only (no call button) */
.float-whatsapp {
  position: fixed;
  z-index: 980;
  right: 15px;
  bottom: 80px;
}

.float-whatsapp a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #27c34c;
  border-radius: 50%;
  box-shadow: none;
  transition: color 160ms ease, background 160ms ease;
}

.float-whatsapp a:hover,
.float-whatsapp a:focus-visible {
  color: #27c34c;
  background: #fff;
  outline: none;
}

.float-whatsapp a:active {
  opacity: 0.9;
}

.float-whatsapp svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

@media (max-width: 760px) {
  .side-contact-rail {
    display: none;
  }

  .float-whatsapp {
    right: 12px;
    bottom: 18px;
  }
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled,
body:not([data-page="home"]) .site-header {
  background: rgba(3, 27, 27, 0.97);
  box-shadow: 0 8px 32px rgba(3, 27, 27, 0.18);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand {
  flex: 0 0 auto;
  width: clamp(190px, 20vw, 255px);
}

.brand img {
  width: 100%;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  margin-left: auto;
  padding: 0;
  color: var(--paper);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: auto;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  content: "";
  left: 0;
}

.nav-toggle-lines::before { top: -7px; }
.nav-toggle-lines::after { top: 7px; }

.nav-open .nav-toggle-lines { background: transparent; }
.nav-open .nav-toggle-lines::before { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle-lines::after { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 1.55vw, 1.55rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link,
.nav-dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 0;
  color: var(--paper);
  background: none;
  border: 0;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-link::after,
.nav-dropdown-toggle::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0.45rem;
  left: 0;
  height: 2px;
  background: rgba(212, 180, 88, 0.42);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.nav-link:hover::after,
.nav-link.is-active::after,
.nav-dropdown-toggle:hover::after,
.nav-item.is-current .nav-dropdown-toggle::after {
  transform: scaleX(1);
  transform-origin: left;
}

.chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  width: max-content;
  min-width: 16rem;
  margin: 0;
  padding: 0.75rem 0 0.5rem;
  color: #fafcfc;
  background: rgba(3, 27, 27, 0.97);
  border: 0;
  border-radius: 0.5rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%);
  transition: opacity 180ms ease, visibility 180ms ease;
  z-index: 9999;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item.dropdown-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%);
}

.nav-dropdown a {
  display: block;
  padding: 0.55rem 1.25rem;
  border-radius: 0;
  color: #fafcfc;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.35;
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  color: var(--gold);
  background: rgba(212, 180, 88, 0.08);
}

.button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 50px;
  padding: 0.8rem 1.35rem;
  color: var(--ink);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border 180ms ease, transform 180ms ease;
}

.button::after {
  content: "↗";
  font-size: 1rem;
  line-height: 1;
}

.button:hover {
  color: var(--paper);
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
}

.button-outline {
  color: var(--paper);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.48);
}

.button-outline:hover {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.button-dark {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.button-dark:hover {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.01);
  transition: opacity 900ms ease, transform 7s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.05);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.66;
  animation: heroZoom 16s ease-out both;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 27, 27, 0.9) 0%, rgba(3, 27, 27, 0.54) 55%, rgba(3, 27, 27, 0.25) 100%),
    linear-gradient(0deg, rgba(3, 27, 27, 0.72) 0%, transparent 55%);
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to { transform: scale(1.12); }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 10rem;
  padding-bottom: clamp(6rem, 10vw, 9.5rem);
}

.hero-copy {
  max-width: 980px;
  transition: opacity 220ms ease, transform 220ms ease;
}

.hero-copy.is-changing {
  opacity: 0;
  transform: translateY(8px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1.3rem;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: none;
  display: none;
  width: 0;
  height: 0;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.hero h1 {
  max-width: 1040px;
  margin-bottom: 1.8rem;
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 0.94;
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 2rem;
  color: rgba(250, 252, 252, 0.82);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Hero CTAs — same arrow chip on both: gold circle + white chevron */
.hero-actions .button {
  justify-content: space-between;
  gap: 0.85rem;
  min-height: 52px;
  padding: 0.25rem 0.25rem 0.25rem 1.35rem;
  color: #fff;
  background: var(--gold);
  border: 2px solid var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
  transform: none;
}

.hero-actions .button::after {
  content: none;
  display: none;
}

.hero-actions .button-arrow {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  color: #fff;
  background: var(--gold);
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.hero-actions .button-arrow svg {
  width: 16px;
  height: 16px;
  display: block;
}

.hero-actions .button:hover {
  color: var(--gold);
  background: transparent;
  border-color: var(--gold);
  transform: none;
}

.hero-actions .button:hover .button-arrow {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
}

.hero-actions .button-outline {
  color: var(--paper);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.72);
}

.hero-actions .button-outline .button-arrow {
  border-color: transparent;
}

.hero-actions .button-outline:hover {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.hero-actions .button-outline:hover .button-arrow {
  color: #fff;
  background: var(--gold);
  border-color: transparent;
}

.hero-controls {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: clamp(4.8rem, 7.5vw, 7rem);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Hero arrows — light translucent so the photo shows through */
.hero-control {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  padding: 0;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  opacity: 1;
  box-shadow: none;
  backdrop-filter: blur(2px);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.hero-control svg {
  width: 12px;
  height: 12px;
  display: block;
}

.hero-control:hover,
.hero-control:focus-visible {
  color: #031b1b;
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.95);
  outline: none;
}

.hero-count {
  min-width: 62px;
  color: rgba(250, 252, 252, 0.78);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
}

.hero-service-line {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(3, 27, 27, 0.5);
  backdrop-filter: blur(8px);
}

.hero-service-inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  overflow: hidden;
}

.hero-service-inner > span:first-child {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-ticker {
  position: relative;
  min-width: 220px;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.section {
  padding-block: clamp(5rem, 9vw, 8.5rem);
}

.home-sections-frame {
  width: 100%;
  min-height: 800px;
  display: block;
  border: 0;
  background: #fff;
  overflow: hidden;
  /* Parent page scrolls; clone is sized to full content height. */
}

body[data-page="home"] .home-sections-frame + .site-footer { margin-top: -1px; }

@media (max-width: 760px) {
  .home-sections-frame { min-height: 800px; }
}

.section-tight {
  padding-block: clamp(3.8rem, 6vw, 6rem);
}

.section-dark {
  color: var(--paper);
  background: var(--ink);
}

.section-green {
  color: var(--paper);
  background: var(--green);
}

.section-mist {
  background: var(--porcelain);
}

.home-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.home-intro-copy h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(3.3rem, 6vw, 6rem);
  line-height: 0.95;
}

.home-intro-copy h3 {
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  letter-spacing: -0.02em;
}

.home-intro-copy p {
  max-width: 720px;
  color: #526060;
  font-size: 1.04rem;
}

.home-intro-copy .button {
  margin-top: 1.2rem;
}

.home-intro-image {
  aspect-ratio: 4 / 4.25;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.home-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-services-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

.home-services-section::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(115deg, rgba(3, 27, 27, 0.88) 0%, rgba(3, 27, 27, 0.55) 48%, rgba(3, 27, 27, 0.28) 100%),
    url("../images/hero-gardenia.jpg");
  background-position: center, 68% 40%;
  background-size: auto, cover;
  background-repeat: no-repeat;
  pointer-events: none;
}

.home-services-section::after {
  position: absolute;
  z-index: -1;
  width: 640px;
  height: 640px;
  content: "";
  right: -280px;
  bottom: -420px;
  border: 1px solid rgba(212, 180, 88, 0.24);
  border-radius: 50%;
  box-shadow: 0 0 0 100px rgba(212, 180, 88, 0.025);
}

.home-section-heading {
  max-width: 810px;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.home-section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.home-section-heading h2 {
  margin-bottom: 1rem;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: 0.98;
}

.home-section-heading p {
  margin-bottom: 0;
  color: rgba(250, 252, 252, 0.68);
  font-size: 1.05rem;
}

.home-section-heading-dark p,
.home-supplies-section .home-section-heading p {
  color: #5b6868;
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.home-service-tile {
  min-height: 275px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.5rem, 3vw, 2.1rem);
  background: rgba(22, 48, 50, 0.92);
  border-radius: var(--radius);
  transition: background 220ms ease, transform 220ms ease;
}

.home-service-tile:hover {
  background: var(--green);
  transform: translateY(-5px);
}

.home-service-tile .feature-icon {
  margin-bottom: auto;
}

.home-service-tile h3 {
  margin: 2rem 0 0.65rem;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  line-height: 1;
}

.home-service-tile p {
  margin: 0;
  color: rgba(250, 252, 252, 0.64);
  font-size: 0.82rem;
  line-height: 1.55;
}

.home-clients-section {
  background: var(--white);
}

.home-client-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  background: var(--line);
  border-radius: var(--radius);
}

.home-client-strip a {
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 1.3rem;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  font-weight: 600;
  line-height: 1.05;
  text-align: center;
  transition: color 180ms ease, background 180ms ease;
}

.home-client-strip a + a {
  border-left: 1px solid var(--line);
}

.home-client-strip a:hover {
  color: var(--green);
  background: var(--porcelain);
}

.home-supplies-section,
.home-proof-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(71, 131, 133, 0.08) 0 1px, transparent 2px) 0 0 / 22px 22px,
    var(--porcelain);
}

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

.home-supply-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(3, 27, 27, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.home-supply-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(3, 27, 27, 0.12);
}

.home-supply-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--mist);
}

.home-supply-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.home-supply-card:hover .home-supply-image img {
  transform: scale(1.045);
}

.home-supply-copy {
  padding: 1.4rem;
}

.home-supply-copy h3 {
  margin-bottom: 0.55rem;
  font-size: 1.7rem;
  line-height: 1;
}

.home-supply-copy p {
  margin: 0;
  color: #5b6868;
  font-size: 0.82rem;
  line-height: 1.55;
}

.home-supply-action {
  margin-top: 2.2rem;
  text-align: center;
}

.home-proof-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: #e8eeee;
  border-radius: calc(var(--radius) * 1.2);
}

.home-proof-image {
  aspect-ratio: 4 / 3.6;
  overflow: hidden;
  border-radius: var(--radius);
}

.home-proof-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.home-proof-stats > div {
  min-width: 0;
}

.home-proof-number {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 0.9;
}

.home-proof-stats > div > span:last-child {
  display: block;
  margin-top: 0.6rem;
  color: #536161;
  font-size: 0.84rem;
}

.home-promise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.25rem;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  border-radius: calc(var(--radius) * 1.2);
}

.home-promise-grid article {
  min-height: 320px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}

.home-promise-grid article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.home-promise-grid .feature-icon {
  margin: 0 auto 2rem;
}

.home-promise-grid h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.65rem, 2.2vw, 2.1rem);
  line-height: 1;
}

.home-promise-grid p {
  margin: 0;
  color: rgba(250, 252, 252, 0.66);
  font-size: 0.86rem;
  line-height: 1.65;
}

/* Gardenia homepage rebuilt on the supplied Makhavi homepage section structure. */
body[data-page="home"] .row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

body[data-page="home"] .col-md-3 { grid-column: span 3; }
body[data-page="home"] .col-md-4 { grid-column: span 4; }
body[data-page="home"] .col-md-5 { grid-column: span 5; }
body[data-page="home"] .col-md-6 { grid-column: span 6; }
body[data-page="home"] .col-md-7 { grid-column: span 7; }
body[data-page="home"] .col-md-13 { grid-column: span 3; }
body[data-page="home"] .img-fluid { display: block; width: 100%; height: auto; }
body[data-page="home"] .image-radius-20 { border-radius: var(--radius); }

body[data-page="home"] .home-head {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 20px;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

body[data-page="home"] .home-head::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  background: currentColor;
}

body[data-page="home"] .home-head i {
  display: none;
}

body[data-page="home"] .home-head.home-head-center {
  justify-content: center;
  width: 100%;
}

body[data-page="home"] .btn-one {
  width: fit-content;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.2rem;
  padding: 0.8rem 1rem 0.8rem 1.35rem;
  color: var(--ink);
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

body[data-page="home"] .btn-one > span:last-child {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
}

body[data-page="home"] .btn-one:hover {
  color: var(--paper);
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
}

body[data-page="home"] .home-about-bg {
  position: relative;
  z-index: 3;
  padding: clamp(5rem, 9vw, 8.5rem) 0 0;
  background: var(--white);
}

body[data-page="home"] .home-about-copy {
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

body[data-page="home"] .home-about-bg h3 {
  max-width: 760px;
  margin-bottom: 1.35rem;
  font-size: clamp(3.2rem, 5.4vw, 5.6rem);
  line-height: 0.95;
}

body[data-page="home"] .home-about-bg h5 {
  margin: 0 0 1rem;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

body[data-page="home"] .home-about-bg p {
  max-width: 760px;
  color: #536161;
  font-size: 1rem;
  line-height: 1.75;
}

body[data-page="home"] .home-about-image {
  align-self: stretch;
}

body[data-page="home"] .home-about-image img {
  height: calc(100% + 4.5rem);
  min-height: 560px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
}

body[data-page="home"] .home-weDo-bg {
  position: relative;
  z-index: 2;
  isolation: isolate;
  padding: clamp(6rem, 10vw, 9rem) 0;
  overflow: hidden;
  color: var(--paper);
}

body[data-page="home"] .home-weDo-bg::before {
  position: absolute;
  z-index: -2;
  inset: 0 clamp(1rem, 3vw, 2.5rem);
  content: "";
  background-color: var(--ink);
  background-image:
    linear-gradient(115deg, rgba(3, 27, 27, 0.88) 0%, rgba(3, 27, 27, 0.55) 48%, rgba(3, 27, 27, 0.28) 100%),
    url("../images/hero-gardenia.jpg");
  background-position: center, 68% 40%;
  background-size: auto, cover;
  background-repeat: no-repeat;
  border-radius: var(--radius);
}

body[data-page="home"] .home-weDo-bg .home-head { color: var(--gold); }

body[data-page="home"] .home-weDo-bg > .container > h3 {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.95;
}

body[data-page="home"] .home-weDo-bg > .container > h3 span { display: block; }

body[data-page="home"] .home-weDo-owl {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  padding-bottom: 0.8rem;
  scrollbar-color: var(--gold) rgba(250, 252, 252, 0.12);
}

body[data-page="home"] .home-weDo-owl > .item { flex: 0 0 calc((100% - 3.6rem) / 4); }

body[data-page="home"] .home-weDo-box,
body[data-page="home"] .home-weDo-box > a { height: 100%; }

body[data-page="home"] .home-weDo-box > a {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  padding: 2rem 1.2rem;
  color: var(--paper);
  text-align: center;
  background: rgba(38, 72, 73, 0.56);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  transition: background 200ms ease, transform 200ms ease;
}

body[data-page="home"] .home-weDo-box > a:hover {
  background: var(--green);
  transform: translateY(-5px);
}

body[data-page="home"] .home-weDo-box .feature-icon {
  width: 58px;
  height: 58px;
  margin: 0;
  color: var(--gold);
  background: transparent;
}

body[data-page="home"] .home-weDo-box > a > img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

body[data-page="home"] .home-weDo-box h4 {
  max-width: 230px;
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.05;
}

body[data-page="home"] .btn-one-light { color: var(--paper); }

body[data-page="home"] .home-serving-bg {
  padding: clamp(5rem, 8vw, 7.5rem) 0;
  background: var(--white);
}

body[data-page="home"] .home-serving-bg .home-head {
  display: block;
  margin-bottom: 2.2rem;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  font-family: var(--font-display);
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

body[data-page="home"] .home-serving-owl {
  display: flex;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  scrollbar-color: var(--gold) var(--porcelain);
}

body[data-page="home"] .home-serving-owl > .item { flex: 0 0 calc(100% / 6); }

body[data-page="home"] .home-serving-box a {
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.4rem);
  font-weight: 650;
  line-height: 1.05;
  text-align: center;
}

body[data-page="home"] .home-serving-box {
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: var(--white);
}

body[data-page="home"] .home-serving-box img {
  max-width: 150px;
  max-height: 82px;
  object-fit: contain;
}

body[data-page="home"] .home-serving-owl .item + .item { border-left: 1px solid var(--line); }
body[data-page="home"] .home-serving-box a:hover { color: var(--green); background: var(--porcelain); }



/* Keep Project Experience from overlapping the cloned serving strip */
body[data-page="about"] .corporate-experience-section {
  margin-bottom: 0;
}

/* Homepage WE ARE SERVING FOR clone on Corporate Profile (Owl carousel) */
body[data-page="about"] .home-serving-bg {
  position: relative;
  z-index: 3;
  padding: 48px 0 12px !important;
  background: #fff !important;
}

body[data-page="about"] .home-serving-bg .container {
  width: min(1200px, calc(100% - 2rem));
  margin-inline: auto;
}

body[data-page="about"] .home-serving-bg .home-head {
  display: flex !important;
  align-items: center !important;
  margin: 0 0 40px !important;
  color: var(--gold) !important;
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

body[data-page="about"] .home-serving-bg .home-head i {
  font-size: 7px !important;
  margin: 0 7px 0 0 !important;
  color: var(--gold) !important;
}

body[data-page="about"] .home-serving-box {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 90px;
  padding: 12px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body[data-page="about"] .home-serving-box img {
  max-height: 64px !important;
  width: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  filter: none !important;
}

body[data-page="home"] .home-partner-bg {
  padding: clamp(5rem, 9vw, 8.5rem) 0;
  background:
    radial-gradient(circle at 22% 26%, rgba(61, 127, 126, 0.08) 0 1px, transparent 2px) 0 0 / 22px 22px,
    var(--porcelain);
}

body[data-page="home"] .home-partner-bg > .container > h2,
body[data-page="home"] .home-partner-bg > .container > .home-partner-title {
  max-width: 820px;
  margin: 0 auto 2rem;
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  color: var(--ink);
}

body[data-page="home"] .home-partner-bg > .container > h2 span,
body[data-page="home"] .home-partner-bg > .container > .home-partner-title span {
  display: inline;
  color: inherit;
}

body[data-page="home"] .homePartnerTab-list {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  margin: 0 0 2.8rem;
  padding: 0;
  list-style: none;
}

body[data-page="home"] .homePartnerTab-list .r-tabs-anchor {
  display: block;
  padding: 0.5rem 0;
  color: #4f5f5f;
  border-bottom: 2px solid transparent;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body[data-page="home"] .homePartnerTab-list .r-tabs-state-active .r-tabs-anchor,
body[data-page="home"] .homePartnerTab-list .r-tabs-anchor:hover {
  color: var(--green);
  border-color: var(--gold);
}

body[data-page="home"] .home-partner-box {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: stretch;
}

body[data-page="home"] .home-partner-box > .col-md-13 { grid-column: auto; }

body[data-page="home"] .home-partner-inbox-two {
  height: 100%;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(3, 27, 27, 0.07);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

body[data-page="home"] .home-partner-inbox-two:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(3, 27, 27, 0.12);
}

body[data-page="home"] .home-partner-inbox-two a {
  aspect-ratio: 4 / 3;
  display: block;
  overflow: hidden;
  background: var(--mist);
}

body[data-page="home"] .home-partner-inbox-two img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

body[data-page="home"] .home-partner-inbox-two:hover img { transform: scale(1.05); }

body[data-page="home"] .home-partner-inbox-two h4 {
  min-height: 78px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 1.15rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.35;
  text-transform: uppercase;
}

body[data-page="home"] .home-stats-bg {
  position: relative;
  z-index: 1;
  padding: 4rem 0 0;
  background: var(--porcelain);
}

body[data-page="home"] .home-stats-bg::after {
  position: absolute;
  z-index: -1;
  right: clamp(1rem, 3vw, 2.5rem);
  bottom: 0;
  left: clamp(1rem, 3vw, 2.5rem);
  height: 18%;
  content: "";
  background: var(--ink);
  border-radius: var(--radius) var(--radius) 0 0;
}

body[data-page="home"] .home-stats-bg > .container {
  padding: clamp(1.2rem, 3vw, 2rem);
  background: #e7eded;
  border-radius: var(--radius);
}

body[data-page="home"] .home-stats-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

body[data-page="home"] .home-stats-grid { gap: 0; }
body[data-page="home"] .home-stats-grid > .col-md-4 { grid-column: span 4; }

body[data-page="home"] .home-stats-box-outer {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
}

body[data-page="home"] .home-stats-box-inner {
  display: flex;
  justify-content: center;
  align-items: baseline;
}

body[data-page="home"] .home-stats-box-inner h3 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 0.9;
}

body[data-page="home"] .home-stats-box-outer h4 {
  margin: 0.65rem 0 0;
  color: #526060;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 650;
}

body[data-page="home"] .home-why-bg {
  position: relative;
  z-index: 0;
  padding: clamp(6rem, 9vw, 8rem) 0;
  color: var(--paper);
}

body[data-page="home"] .home-why-bg::before {
  position: absolute;
  z-index: -1;
  inset: 0 clamp(1rem, 3vw, 2.5rem);
  content: "";
  background: var(--ink);
  border-radius: 0 0 var(--radius) var(--radius);
}

body[data-page="home"] .home-why-bg .row { gap: 0; align-items: stretch; }

body[data-page="home"] .home-why-box {
  min-height: 100%;
  padding: 1.4rem clamp(1.2rem, 2.5vw, 2.2rem);
  text-align: center;
}

body[data-page="home"] .home-why-box.br { border-right: 1px solid rgba(250, 252, 252, 0.15); }

body[data-page="home"] .home-why-box .feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.6rem;
  color: var(--gold);
  background: transparent;
}

body[data-page="home"] .home-why-box > img {
  width: 66px;
  height: 66px;
  margin: 0 auto 1.4rem;
  object-fit: contain;
}

body[data-page="home"] .home-why-box h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.65rem, 2.3vw, 2.15rem);
  line-height: 1;
}

body[data-page="home"] .home-why-box p {
  margin: 0;
  color: rgba(250, 252, 252, 0.66);
  font-size: 0.82rem;
  line-height: 1.65;
}

@media (max-width: 980px) {
  body[data-page="home"] .home-weDo-owl > .item { flex-basis: calc((100% - 1.2rem) / 2); }
  body[data-page="home"] .home-partner-box { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body[data-page="home"] .home-serving-owl > .item { flex-basis: calc(100% / 3); }
  body[data-page="home"] .home-serving-owl .item { border-bottom: 1px solid var(--line); }
  body[data-page="home"] .home-why-bg .col-md-3 { grid-column: span 6; }
  body[data-page="home"] .home-why-box { padding-block: 2.2rem; }
  body[data-page="home"] .home-why-box.br { border-right: 0; border-bottom: 1px solid rgba(250, 252, 252, 0.15); }
}

@media (max-width: 760px) {
  body[data-page="home"] .row { grid-template-columns: 1fr; gap: 1.5rem; }
  body[data-page="home"] .row > [class*="col-"] { grid-column: 1; }
  body[data-page="home"] .home-about-bg { padding-top: 4.5rem; }
  body[data-page="home"] .home-about-copy { padding-bottom: 1.5rem; }
  body[data-page="home"] .home-about-image img { height: 460px; min-height: 0; }
  body[data-page="home"] .home-weDo-bg::before,
  body[data-page="home"] .home-why-bg::before { inset-inline: 0; border-radius: 0; }
  body[data-page="home"] .home-weDo-owl { gap: 0.8rem; }
  body[data-page="home"] .home-weDo-owl > .item { flex-basis: calc((100% - 0.8rem) / 2); }
  body[data-page="home"] .home-weDo-box > a { min-height: 190px; padding: 1.3rem 0.8rem; }
  body[data-page="home"] .home-weDo-box h4 { font-size: 1.2rem; }
  body[data-page="home"] .home-serving-owl > .item { flex-basis: 50%; }
  body[data-page="home"] .homePartnerTab-list { justify-content: flex-start; overflow-x: auto; }
  body[data-page="home"] .homePartnerTab-list li { flex: 0 0 auto; }
  body[data-page="home"] .home-partner-box { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.8rem; }
  body[data-page="home"] .home-partner-box > .col-md-13 { grid-column: auto; }
  body[data-page="home"] .home-partner-inbox-two h4 { min-height: 86px; padding: 0.9rem; font-size: 0.7rem; }
  body[data-page="home"] .home-stats-image img { min-height: 340px; }
  body[data-page="home"] .home-stats-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  body[data-page="home"] .home-stats-grid > .col-md-4 { grid-column: auto; }
  body[data-page="home"] .home-stats-box-outer { min-height: 145px; padding: 1rem 0.5rem; }
  body[data-page="home"] .home-why-bg .row { display: grid; grid-template-columns: 1fr; }
  body[data-page="home"] .home-why-box.br { border-bottom: 1px solid rgba(250, 252, 252, 0.15); }
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.split-copy h2,
.cta-panel h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.9rem, 5.4vw, 5.3rem);
  line-height: 0.98;
}

.section-heading p,
.split-copy > p,
.lead {
  color: #5e6767;
  font-size: clamp(1.03rem, 1.5vw, 1.2rem);
}

.section-dark .section-heading p,
.section-dark .split-copy > p,
.section-green .section-heading p,
.section-green .split-copy > p {
  color: rgba(250, 252, 252, 0.72);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
}

.split-copy p + p {
  margin-top: 1.25rem;
}

.split-copy .button {
  margin-top: 1.3rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.stat {
  min-height: 180px;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.stat-number {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  font-weight: 600;
  line-height: 0.9;
}

.stat-label {
  display: block;
  max-width: 190px;
  margin-top: 1rem;
  color: rgba(250, 252, 252, 0.76);
  font-size: 0.9rem;
}

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

.services-index-section {
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

.services-index-intro {
  max-width: 40rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.services-index-intro h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.05;
}

.services-index-intro p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
}

.services-index-grid .service-card {
  text-decoration: none;
  color: var(--paper);
}

.services-index-grid .service-card h3 {
  font-size: clamp(1.35rem, 1.8vw, 1.75rem);
  color: var(--paper);
}

.services-index-grid .service-card p {
  color: rgba(250, 252, 252, 0.78);
}

.services-index-grid .service-card::after {
  background: linear-gradient(0deg, rgba(3, 27, 27, 0.96) 0%, rgba(3, 27, 27, 0.55) 42%, rgba(3, 27, 27, 0.08) 78%);
}

.service-card {
  position: relative;
  min-height: 410px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(3, 27, 27, 0.08);
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 600ms ease, opacity 400ms ease;
}

.service-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(3, 27, 27, 0.96), rgba(3, 27, 27, 0.02) 72%);
}

.service-card:hover img {
  transform: scale(1.07);
  opacity: 0.95;
}

.service-card-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 1.5rem;
}

.service-card-index {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-card h3 {
  margin-bottom: 0.4rem;
  font-size: clamp(1.65rem, 2.2vw, 2.15rem);
  line-height: 1;
}

.service-card p {
  margin-bottom: 0;
  color: rgba(250, 252, 252, 0.72);
  font-size: 0.86rem;
  line-height: 1.5;
}

.project-panel {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  border-radius: calc(var(--radius) * 1.2);
}

.project-panel::before {
  position: absolute;
  width: 380px;
  height: 380px;
  content: "";
  right: -150px;
  bottom: -180px;
  border: 1px solid rgba(212, 180, 88, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(212, 180, 88, 0.04), 0 0 0 160px rgba(212, 180, 88, 0.03);
}

.project-panel-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 6rem);
  padding: clamp(2rem, 6vw, 6rem);
}

.project-panel h2 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.96;
}

.project-panel p {
  color: rgba(250, 252, 252, 0.74);
}

.project-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.project-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.88rem;
}

.project-list li::before {
  margin-right: 0.6rem;
  color: var(--gold);
  content: "◆";
  font-size: 0.5rem;
  vertical-align: middle;
}

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

.team-card {
  overflow: hidden;
  background: var(--white);
  border: 0;
  border-radius: var(--radius);
}

.team-image {
  aspect-ratio: 4 / 4.6;
  overflow: hidden;
  background: var(--mist);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 500ms ease;
}

.team-card:hover .team-image img {
  transform: scale(1.04);
}

.team-copy {
  padding: 1.25rem;
}

.team-copy h3 {
  margin-bottom: 0.25rem;
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1.05;
}

.team-copy p {
  margin: 0;
  color: #6b7280;
  font-size: 0.8rem;
}

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

.team-role {
  margin: -0.35rem 0 1.1rem !important;
  color: var(--gold) !important;
  font-size: 0.92rem !important;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.team-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  color: #0a66c2;
  font-size: 1.35rem;
  line-height: 1;
  text-decoration: none;
  border: 0;
  background: none;
  transition: color 160ms ease, opacity 160ms ease;
}

.team-linkedin:hover {
  color: #004182;
  opacity: 0.9;
}

.team-copy .team-linkedin {
  margin-top: 0.85rem;
}

.page-subnav {
  position: sticky;
  top: 84px;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 252, 252, 0.94);
  backdrop-filter: blur(12px);
}

.page-subnav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.35rem;
  align-items: center;
  min-height: 58px;
  padding-block: 0.55rem;
}

.page-subnav a {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}

.page-subnav a:hover,
.page-subnav a.is-active {
  color: var(--ink);
  border-bottom-color: var(--gold);
}

/* Vision & Mission — Makhavi staggered layout, Gardenia brand */
.vision-mission-section {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.vision-mission-intro {
  margin-bottom: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
}

.vision-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vision-eyebrow span {
  width: 0.55rem;
  height: 0.55rem;
  background: var(--gold);
}

.vision-mission-intro h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 0.95;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.vision-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: clamp(2rem, 4vw, 3.2rem);
  color: var(--paper);
  background: #031b1b;
  border-radius: var(--radius);
}

.vision-box h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.1rem;
  font-family: var(--font-body);
  font-size: 1.55rem;
  font-weight: 700;
}
.vision-box h3 .bi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-right: 0.55rem;
  vertical-align: middle;
  border-radius: 999px;
  background: #fff;
  color: var(--gold);
  font-size: 1.15rem;
}


.vision-box h3 i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}

.vision-box h3 i img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.vision-box p {
  margin: 0;
  color: rgba(250, 252, 252, 0.84);
  font-size: 1.02rem;
  line-height: 1.65;
}

.vision-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 260px;
}

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

.vision-stats-section {
  padding-top: 0.5rem;
  padding-bottom: clamp(5rem, 8vw, 7rem);
  background:
    linear-gradient(180deg, rgba(250, 252, 252, 0.92), rgba(243, 247, 247, 0.96)),
    url("../images/gardenia-lotus-white.jpg") right 5% center / min(640px, 50vw) auto no-repeat;
}

.vision-stats-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  padding: clamp(1.4rem, 3vw, 2rem);
  background: rgba(231, 239, 239, 0.72);
  border-radius: calc(var(--radius) + 0.35rem);
}

.vision-stats-image {
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 320px;
}

.vision-stats-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.vision-stat {
  text-align: center;
  padding: 0.6rem 0.4rem;
}

.vision-stat-num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1;
}

.vision-stat p {
  margin: 0.45rem 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* Makhavi .footer-top-bg — sibling ABOVE footer, straddles light/dark seam */
.footer-grow-wrap,
.vision-grow-wrap {
  position: relative;
  z-index: 2;
  margin-top: -60px;
  margin-bottom: -70px;
  padding-inline: clamp(1rem, 3vw, 1.5rem);
}

.footer-grow-wrap > .container {
  max-width: 1000px;
}

.vision-grow-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem 2rem;
  padding: clamp(2.2rem, 4.5vw, 3.1rem) clamp(2rem, 5vw, 3.5rem);
  color: var(--paper);
  background: var(--green);
  border-radius: var(--radius);
  box-shadow: 0 24px 65px rgba(3, 27, 27, 0.22);
}

.vision-grow-box h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 0.95;
}

.vision-grow-box .button-outline {
  color: var(--paper);
  border-color: rgba(250, 252, 252, 0.7);
}

.vision-grow-box .button-outline:hover {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

@media (max-width: 900px) {
  .vision-mission-grid {
    grid-template-columns: 1fr;
  }

  .vision-photo-swap {
    order: 3;
  }

  .vision-stats-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .vision-stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .vision-grow-box {
    flex-direction: column;
    text-align: center;
  }
}

/* Corporate Profile — Makhavi about layout */
.corporate-profile-section {
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  padding-bottom: clamp(5rem, 9vw, 7rem);
}

.corporate-profile-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.75rem);
  align-items: start;
  padding-bottom: clamp(7rem, 12vw, 9.5rem);
}

.corporate-profile-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 420px;
}

.corporate-profile-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.corporate-profile-copy .vision-eyebrow {
  margin-bottom: 0.7rem;
}

.corporate-profile-copy h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  line-height: 1.15;
}

.corporate-profile-copy h5 {
  margin: 0 0 1.25rem;
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.45;
}

.corporate-profile-copy p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}

.corporate-profile-copy p:last-child {
  margin-bottom: 0;
}



.corporate-shield {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem 1.5rem;
  align-items: center;
  width: min(70%, 720px);
  padding: clamp(1.4rem, 3vw, 1.85rem) clamp(1.4rem, 3vw, 2rem);
  color: var(--paper);
  background: #212936;
  border-radius: var(--radius);
  box-shadow: 0 22px 55px rgba(3, 27, 27, 0.22);
}

.corporate-shield img {
  width: 72px;
  height: auto;
  display: block;
}

.corporate-shield h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 700;
}

.corporate-shield p {
  margin: 0;
  color: rgba(250, 252, 252, 0.82);
  font-size: 0.95rem;
  line-height: 1.55;
}

.corporate-experience-section {
  position: relative;
  z-index: 2;
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
  padding-bottom: 0;
  margin-bottom: -6.5rem;
}

.corporate-experience-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 360px;
  padding: clamp(2.2rem, 5vw, 3.6rem) clamp(1.6rem, 5vw, 4.5rem);
  color: var(--paper);
  border-radius: var(--radius);
  background:
    linear-gradient(115deg, rgba(3, 27, 27, 0.88) 0%, rgba(3, 27, 27, 0.55) 55%, rgba(212, 180, 88, 0.28) 100%),
    url("../images/about/experience-bg.jpg") center / cover no-repeat;
  box-shadow: 0 24px 60px rgba(3, 27, 27, 0.18);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.corporate-experience-panel::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background: linear-gradient(
    155deg,
    rgba(10, 90, 92, 0.72) 0%,
    rgba(212, 180, 88, 0.78) 100%
  );
  clip-path: polygon(58% 0, 100% 0, 100% 100%, 36% 100%);
  opacity: 0.42;
  pointer-events: none;
  border-radius: inherit;
}

.corporate-experience-panel > * {
  position: relative;
  z-index: 1;
}

.corporate-experience-head {
  position: relative;
  margin: 0;
  padding-left: 1.15rem;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.corporate-experience-head::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  bottom: 0.15em;
  width: 0.45rem;
  background: rgba(255, 255, 255, 0.35);
}

.corporate-experience-head span {
  display: inline-block;
}

.corporate-experience-panel h3 {
  margin: 0;
  max-width: 46rem;
  font-family: var(--font-body) !important;
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-weight: 500;
  line-height: 1.55;
  color: rgba(250, 252, 252, 0.94);
}

.corporate-stats-section {
  padding-top: clamp(1.25rem, 2.5vw, 2rem);
  padding-bottom: clamp(3.5rem, 6vw, 5rem);
}

@media (max-width: 900px) {
  .corporate-profile-layout {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }

  .corporate-profile-image,
  .corporate-profile-image img {
    min-height: 280px;
  }

  .corporate-shield {
    position: relative;
    width: 100%;
    margin-top: 0.5rem;
  }

  .corporate-experience-section {
    margin-bottom: -4.5rem;
  }

  .corporate-experience-panel {
    min-height: 0;
    text-align: center;
  }

  .corporate-experience-head {
    padding-left: 0;
  }

  .corporate-experience-head::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .corporate-shield {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
}

body[data-page="about"] { --page-hero-image: url("../images/about/profile-hero.jpg?v=kuwait1"); }
body[data-page="vision"] { --page-hero-image: url("../images/vision/vision-box.jpg?v=2"); }
body[data-page="founder"] { --page-hero-image: url("../images/chairman/hero.jpg?v=office1"); }
body[data-page="certificates"] { --page-hero-image: url("../../Certificates home-lib/certificate.jpg"); }

/* Chairman's Message — Makhavi CEO layout */
.chairman-message-section {
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
  overflow: visible;
}

.chairman-message-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.chairman-message-copy h2 {
  margin: 0 0 1.35rem;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.05;
}
/* Match "Leading with Gratitude." size on laptop */
body[data-page="founder"] .team-experts-heading h2 {
  margin-bottom: 1.35rem;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.05;
}


.chairman-message-copy > p {
  margin: 0 0 1.05rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}

.chairman-signoff {
  margin: 1.75rem 0 0.35rem;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.chairman-title {
  margin: 0 0 1rem !important;
  color: var(--ink-soft);
  font-size: 0.98rem !important;
}

.chairman-portrait {
  position: relative;
  z-index: 1;
  margin: -3.5rem 0 0;
  padding: clamp(1.5rem, 4vw, 3.5rem);
}

.chairman-portrait img {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  display: block;
  margin-inline: auto;
  background: #eef2f1;
  border-radius: 4.5rem 1.15rem 1.15rem 48%;
  box-shadow: 0 28px 60px rgba(3, 27, 27, 0.14);
}

@media (max-width: 900px) {
  .chairman-message-layout {
    grid-template-columns: 1fr;
  }

  .chairman-portrait {
    order: -1;
    margin-top: 0;
    padding: 0;
  }

  .chairman-portrait img {
    max-width: 340px;
  }
}

body[data-page="quality"] { --page-hero-image: url("../images/quality/hero.jpg?v=mt1"); }
body[data-page="services"] { --page-hero-image: url("../images/service-detail/mep/Pump%20%26%20Tank%20Systems.jpg"); }
body[data-page="supplies"],
body[data-page="service-supplies"] { --page-hero-image: url("../images/service-detail/supplies/Technical%20Supplies.jpg?v=nogold2"); }
body[data-page="clients"] { --page-hero-image: url("../images/service-detail/recreation/Recreational%20Facilities.jpg"); }
body[data-page="careers"] { --page-hero-image: url("../images/careers/hero.jpg"); }

/* Careers — Makhavi join layout */
.careers-join-section {
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.careers-join-intro {
  max-width: 46rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.careers-join-intro h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.05;
}

.careers-join-intro p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
}

.careers-join-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.careers-join-gallery-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.careers-join-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}

.careers-join-gallery-top img {
  aspect-ratio: 1;
  min-height: 160px;
}

.careers-join-gallery-wide {
  aspect-ratio: 16 / 9;
  min-height: 180px;
}

.careers-join-form {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 0.35rem);
}

.careers-join-form .field {
  margin-bottom: 1rem;
}

.careers-join-form label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
}

.careers-join-form input,
.careers-join-form textarea {
  width: 100%;
  padding: 0.75rem 0.85rem;
  border: 0;
  border-bottom: 1px solid rgba(3, 27, 27, 0.28);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.careers-join-form input[type="file"] {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(3, 27, 27, 0.28);
}

.careers-join-form input:focus,
.careers-join-form textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

.careers-join-form .button {
  margin-top: 0.5rem;
}

.careers-join-form .form-status {
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .careers-join-layout {
    grid-template-columns: 1fr;
  }
}
body[data-page="contact"] { --page-hero-image: url("../images/service-detail/design/Concept%20%26%20Schematic%20Design.jpg"); }

.page-hero {
  position: relative;
  min-height: 570px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--paper);
  background-color: var(--ink);
  background-image:
    linear-gradient(90deg, rgba(3, 27, 27, 0.94) 0%, rgba(3, 27, 27, 0.67) 56%, rgba(3, 27, 27, 0.38) 100%),
    linear-gradient(0deg, rgba(3, 27, 27, 0.72) 0%, rgba(3, 27, 27, 0.08) 70%),
    var(--page-hero-image, url("../images/hero-gardenia.jpg"));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page-hero::before,
.page-hero::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(212, 180, 88, 0.22);
  border-radius: 50%;
}

.page-hero::before {
  width: 560px;
  height: 560px;
  top: -220px;
  right: -120px;
}

.page-hero::after {
  width: 340px;
  height: 340px;
  top: -110px;
  right: -10px;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 930px;
  padding-top: 10rem;
  padding-bottom: 5rem;
}

.breadcrumbs {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 2rem;
  color: rgba(250, 252, 252, 0.58);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.page-hero h1 {
  margin-bottom: 1.2rem;
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 0.9;
}

.page-hero p {
  max-width: 700px;
  margin-bottom: 0;
  color: rgba(250, 252, 252, 0.76);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

/* Inner-page heroes (not homepage): full photo + diagonal gold panel + corner title */
body:not([data-page="home"]) .page-hero {
  min-height: min(68vh, 620px);
  align-items: end;
  background-image:
    linear-gradient(180deg, rgba(3, 27, 27, 0.22) 0%, rgba(3, 27, 27, 0.05) 48%, rgba(3, 27, 27, 0.38) 100%),
    var(--page-hero-image, url("../images/hero-gardenia.jpg"));
  background-position: center;
  background-size: cover;
}

body:not([data-page="home"]) .page-hero::before {
  inset: 0;
  width: auto;
  height: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 0;
  border-radius: 0;
  /* gold/teal wash — soft spray edge (not hard clip) */
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E"),
    linear-gradient(
      155deg,
      rgba(10, 90, 92, 0.78) 0%,
      rgba(212, 180, 88, 0.82) 100%
    );
  background-blend-mode: soft-light, normal;
  background-size: 180px 180px, auto;
  -webkit-mask-image: linear-gradient(
    115deg,
    transparent 0%,
    transparent 34%,
    rgba(0, 0, 0, 0.06) 42%,
    rgba(0, 0, 0, 0.28) 49%,
    rgba(0, 0, 0, 0.62) 56%,
    rgba(0, 0, 0, 0.9) 62%,
    #000 70%,
    #000 100%
  );
  mask-image: linear-gradient(
    115deg,
    transparent 0%,
    transparent 34%,
    rgba(0, 0, 0, 0.06) 42%,
    rgba(0, 0, 0, 0.28) 49%,
    rgba(0, 0, 0, 0.62) 56%,
    rgba(0, 0, 0, 0.9) 62%,
    #000 70%,
    #000 100%
  );
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  pointer-events: none;
}

body:not([data-page="home"]) .page-hero::after {
  display: none;
}

body:not([data-page="home"]) .page-hero-content {
  max-width: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  text-align: right;
  padding-top: 8rem;
  padding-right: clamp(0.25rem, 2vw, 1rem);
  padding-bottom: clamp(2.2rem, 4.5vw, 3.4rem);
}

body:not([data-page="home"]) .page-hero h1 {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem;
  margin: 0;
  max-width: min(22ch, 94%);
  font-family: var(--font-body);
  font-size: clamp(1.55rem, 2.8vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-shadow: 0 8px 24px rgba(3, 27, 27, 0.28);
}

body:not([data-page="home"]) .page-hero p,
body:not([data-page="home"]) .page-hero .breadcrumbs {
  display: none;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 6vw, 6rem);
}

.content-aside {
  position: sticky;
  top: 130px;
  align-self: start;
}

.content-aside .eyebrow {
  color: var(--green);
}

.content-aside h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1;
}

.prose {
  font-size: 1.06rem;
}

.prose h2 {
  margin: 2.8rem 0 1rem;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 2rem 0 0.75rem;
  font-size: 1.8rem;
}

.prose p,
.prose li {
  color: #506060;
}

.prose strong {
  color: var(--ink);
}

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

.feature-card {
  padding: clamp(1.4rem, 3vw, 2rem);
  background: var(--porcelain);
  border: 0;
  border-radius: 1rem;
}

.feature-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--gold);
  border-radius: 50%;
}

.feature-icon .bi {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: inherit;
  -webkit-text-stroke: 0.6px currentColor;
}

.feature-icon svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 0.6;
}

.feature-card h3 {
  margin: 0.75rem 0 0.5rem;
  font-family: var(--font-body);
  font-size: 1.65rem;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

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

.value-card {
  min-height: 265px;
  padding: 2rem;
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--radius);
}

.value-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 2.5rem;
  color: var(--ink);
  background: var(--gold);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
}

.value-card h3 {
  margin-bottom: 0.65rem;
  font-size: 2rem;
  line-height: 1;
}

.value-card p {
  margin-bottom: 0;
  color: rgba(250, 252, 252, 0.68);
  font-size: 0.9rem;
}

.quote-card {
  padding: clamp(2rem, 5vw, 4.5rem);
  color: var(--paper);
  background: var(--green);
  border-radius: var(--radius);
}

.quote-mark {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.5;
}

.quote-card blockquote {
  margin: 1.4rem 0 2rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(250, 252, 252, 0.72);
  font-size: 0.84rem;
}

.quote-author::before {
  width: 40px;
  height: 1px;
  content: "";
  background: var(--gold);
}

.portrait-panel {
  overflow: hidden;
  background: var(--mist);
  border-radius: var(--radius);
}

.portrait-panel img {
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: top center;
}

.services-list-section {
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding-block: clamp(2.2rem, 4.5vw, 3.8rem);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 110px;
}

.service-detail:last-child {
  border-bottom: 0;
}

.service-detail:nth-child(even) .service-detail-image {
  order: 2;
}

.service-detail-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-copy h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.05;
}

.service-detail-copy p {
  color: #5e6767;
}

.service-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.service-points li {
  padding: 0.5rem 0.8rem;
  color: var(--green);
  background: var(--porcelain);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.service-detail-link {
  margin-top: 1.7rem;
}

/* Service pages — Makhavi manpower template */
.service-intro-section {
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.service-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.75rem, 5vw, 4.5rem);
  align-items: center;
}

.service-intro-image {
  aspect-ratio: 4 / 3.2;
  overflow: hidden;
  background: var(--mist);
  border-radius: var(--radius);
}

.service-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-intro-copy h2 {
  margin: 0 0 1.1rem;
  font-family: var(--font-body);
  font-size: clamp(1.85rem, 3.2vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
}

.service-intro-copy p {
  margin: 0 0 1rem;
  color: #526262;
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  line-height: 1.7;
}

.service-intro-copy p:last-child {
  margin-bottom: 0;
}

.service-offerings-section {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: -4.5rem;
  position: relative;
  z-index: 2;
}

.service-offerings-section + .service-offerings-section {
  margin-top: 5.5rem;
}

.service-offerings-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(2.2rem, 5vw, 3.6rem) clamp(1.5rem, 4vw, 3rem);
  color: var(--paper);
  background: var(--ink);
  border-radius: calc(var(--radius) + 0.15rem);
  box-shadow: 0 24px 55px rgba(3, 27, 27, 0.16);
}

.service-offerings-panel::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(115deg, rgba(3, 27, 27, 0.88) 0%, rgba(3, 27, 27, 0.55) 48%, rgba(3, 27, 27, 0.28) 100%),
    url("../images/hero-gardenia.jpg");
  background-position: center, 68% 40%;
  background-size: auto, cover;
  background-repeat: no-repeat;
  pointer-events: none;
}

.service-offerings-panel > * {
  position: relative;
  z-index: 1;
}

.service-offerings-panel::after {
  position: absolute;
  z-index: 0;
  width: 480px;
  height: 480px;
  content: "";
  right: -210px;
  bottom: -330px;
  border: 1px solid rgba(212, 180, 88, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(212, 180, 88, 0.03);
  pointer-events: none;
}

.service-offerings-panel h2 {
  margin: 0 0 clamp(1.5rem, 3vw, 2.4rem);
  text-align: center;
  font-family: var(--font-body);
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  font-weight: 600;
  line-height: 1.2;
}

.service-offerings-copy {
  margin: 0 auto;
  max-width: 46rem;
  text-align: center;
  color: rgba(250, 252, 252, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.65;
}

.service-offerings-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-offerings-list li {
  position: relative;
  padding-left: 1.1rem;
  color: rgba(250, 252, 252, 0.9);
  font-size: 1.08rem;
  line-height: 1.45;
}

.service-offerings-list li::before {
  position: absolute;
  top: 0.5em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--gold);
  border-radius: 50%;
}

.service-gallery-section {
  padding-top: clamp(6.5rem, 11vw, 8.5rem);
  padding-bottom: clamp(4.5rem, 8vw, 6.5rem);
  background: #f0f3f3;
}

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

.service-gallery-item {
  aspect-ratio: 16 / 10;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: var(--mist);
  border-radius: var(--radius);
}

.service-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.service-gallery-item:hover img {
  transform: scale(1.045);
}

/* Landscape page — selected projects */
.landscape-projects-section {
  padding-top: clamp(5.5rem, 10vw, 8rem);
  padding-bottom: clamp(4rem, 8vw, 6.5rem);
  background: #fafcfc;
}

.landscape-projects-eyebrow,
.landscape-projects-section .home-head {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 1.75rem;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.landscape-projects-eyebrow::before,
.landscape-projects-section .home-head::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  background: currentColor;
}

.landscape-project-list {
  display: grid;
  gap: clamp(2.75rem, 6vw, 4.5rem);
}

.landscape-project {
  display: grid;
  gap: 1.15rem;
  padding: 0;
  border: 0;
}

.landscape-project-head h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}

.landscape-project-meta {
  margin: 0;
  color: rgba(3, 27, 27, 0.62);
  font-size: 0.98rem;
  line-height: 1.5;
}

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

.landscape-shot-grid .landscape-shot:first-child:nth-last-child(1) {
  grid-column: 1 / -1;
}

.landscape-shot-grid .landscape-shot:first-child:nth-last-child(2),
.landscape-shot-grid .landscape-shot:first-child:nth-last-child(2) ~ .landscape-shot {
  grid-column: span 1;
}

.landscape-project-list .landscape-shot-grid .landscape-shot:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 21 / 9;
}

.recreation-gallery-section {
  padding-top: clamp(5.5rem, 10vw, 8rem);
}

.recreation-shot-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  max-width: 920px;
}

.recreation-shot-grid .landscape-shot {
  aspect-ratio: 16 / 10;
  border-radius: 0.85rem;
}

.recreation-shot-grid .landscape-shot:first-child {
  grid-column: auto;
  aspect-ratio: 16 / 10;
}

.landscape-shot {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--mist);
  aspect-ratio: 4 / 3;
}

.landscape-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease;
}

.landscape-shot:hover img {
  transform: scale(1.03);
}

.landscape-categories {
  margin-top: 0;
  display: grid;
  gap: clamp(2.75rem, 6vw, 4.5rem);
}

.landscape-selected-eyebrow,
.landscape-selected-list {
  margin-top: clamp(3.5rem, 7vw, 5.5rem) !important;
}

.landscape-category-meta {
  margin: 0.5rem 0 0;
  color: rgba(3, 27, 27, 0.72);
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 58rem;
}

.landscape-client {
  margin-top: 1.35rem;
}

.landscape-client:first-of-type {
  margin-top: 1rem;
}

.landscape-client-name {
  margin: 0 0 0.75rem;
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.landscape-shot-grid-client .landscape-shot:first-child {
  grid-column: auto;
  aspect-ratio: 4 / 3;
}

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

.landscape-shot-grid-client .landscape-shot:only-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

@media (max-width: 900px) {
  .landscape-shot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landscape-project-list .landscape-shot-grid .landscape-shot:first-child {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
  }

  .recreation-shot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }
}

@media (max-width: 560px) {
  .landscape-shot-grid {
    grid-template-columns: 1fr;
  }

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

.related-service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.related-services-section .text-link {
  display: inline-block;
  margin-top: 2rem;
  color: var(--green);
  font-weight: 700;
}

.related-services-section .text-link:hover {
  color: var(--ink);
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.client-block {
  min-height: 160px;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  text-align: center;
  background: var(--white);
}

.client-block strong {
  max-width: 250px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.1;
}

.career-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.career-copy,
.career-form,
.contact-form-panel {
  padding: clamp(1.5rem, 4vw, 3.5rem);
  background: var(--white);
}

.career-copy h2,
.career-form h2,
.contact-form-panel h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
}

.career-copy p,
.career-form > p,
.contact-form-panel > p {
  color: #5e6767;
}

.career-location {
  width: max-content;
  margin-bottom: 1.4rem;
  padding: 0.45rem 0.75rem;
  color: var(--green);
  background: var(--porcelain);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.field {
  display: grid;
  gap: 0.45rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 0.8rem 0.9rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0.6rem;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--green);
  outline: 2px solid rgba(10, 90, 92, 0.18);
}

.form-status {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 600;
}

/* Careers form — win over global .field boxed inputs */
.careers-join-form .field label {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
}

.careers-join-form .field input,
.careers-join-form .field textarea {
  min-height: 0;
  padding: 0.75rem 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(3, 27, 27, 0.28);
  border-radius: 0;
  outline: none;
  box-shadow: none;
}

.careers-join-form .field textarea {
  min-height: 88px;
  resize: vertical;
}

.careers-join-form .field input:focus,
.careers-join-form .field textarea:focus {
  border-color: transparent;
  border-bottom-color: var(--gold);
  outline: none;
  box-shadow: none;
}

.careers-join-form .field input[type="file"] {
  padding: 0.65rem 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  border-bottom: 1px solid rgba(3, 27, 27, 0.28);
  background: transparent;
}

.careers-join-form .field input[type="file"]::file-selector-button {
  margin-right: 0.85rem;
  padding: 0.45rem 0.9rem;
  color: var(--ink);
  background: var(--porcelain);
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}


.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1.25rem;
  align-items: start;
}

body[data-page="contact"] main > .section {
  padding-block: clamp(2.25rem, 4.5vw, 3.5rem);
}

body[data-page="contact"] .contact-form-panel {
  padding: clamp(1.25rem, 3vw, 2.25rem);
}

body[data-page="contact"] .form-status {
  min-height: 0;
  margin-top: 0.65rem;
}

body[data-page="contact"] .contact-form-panel .button {
  margin-top: 0.35rem;
}

.contact-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--radius);
}

/* Match homepage hero shade — soft lotus wash, no gold diagonal */
.contact-card::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background-color: var(--ink);
  background-image:
    linear-gradient(90deg, rgba(3, 27, 27, 0.9) 0%, rgba(3, 27, 27, 0.54) 55%, rgba(3, 27, 27, 0.25) 100%),
    linear-gradient(0deg, rgba(3, 27, 27, 0.72) 0%, transparent 55%),
    url("../images/hero-gardenia.jpg");
  background-position: center, center, 70% center;
  background-size: auto, auto, cover;
  background-repeat: no-repeat;
  pointer-events: none;
  border-radius: inherit;
}

.contact-card::after {
  display: none;
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-card h2 {
  margin-bottom: 2rem;
  font-size: clamp(2.8rem, 4vw, 4rem);
  line-height: 1;
}

.contact-list {
  display: grid;
  gap: 1.5rem;
  margin: 0;
}

.contact-list div {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-list dt {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.45rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list dt .bi {
  font-size: 1rem;
  line-height: 1;
}

.contact-list dd {
  margin: 0;
  color: rgba(250, 252, 252, 0.76);
}

.contact-list a:hover {
  color: var(--gold);
}

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

.faq-list details {
  padding: 0 1.2rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.8rem;
}

.faq-list summary {
  padding: 1.2rem 2rem 1.2rem 0;
  font-weight: 700;
  cursor: pointer;
}

.faq-list details p {
  padding-bottom: 1.2rem;
  color: #5e6767;
}

.cta-wrap {
  padding-bottom: clamp(3.5rem, 5vw, 5.5rem);
}

.cta-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(2rem, 6vw, 5.5rem);
  color: var(--paper);
  background-color: var(--ink);
  background-image:
    linear-gradient(90deg, rgba(3, 27, 27, 0.92) 0%, rgba(3, 27, 27, 0.72) 48%, rgba(3, 27, 27, 0.55) 100%),
    linear-gradient(0deg, rgba(3, 27, 27, 0.55) 0%, transparent 60%),
    url("../images/hero-gardenia.jpg");
  background-position: center, center, 72% center;
  background-size: auto, auto, cover;
  background-repeat: no-repeat;
  border-radius: calc(var(--radius) * 1.2);
}

.cta-panel::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: linear-gradient(115deg, rgba(10, 90, 92, 0.35) 0%, transparent 55%);
  pointer-events: none;
}

.cta-panel::after {
  position: absolute;
  z-index: 0;
  width: 340px;
  height: 340px;
  content: "";
  right: -100px;
  top: -180px;
  border: 1px solid rgba(212, 180, 88, 0.36);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(212, 180, 88, 0.04);
  pointer-events: none;
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel p {
  max-width: 620px;
  color: rgba(250, 252, 252, 0.72);
}

.cta-panel .button {
  margin-top: 1rem;
}

.site-footer {
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
}

/* Makhavi: card hangs into footer — clear it with real space underneath */
body:has(.footer-grow-wrap) .site-footer,
body:has(.vision-grow-wrap) .site-footer {
  padding-top: 0;
}

body:has(.footer-grow-wrap) .footer-main,
body:has(.vision-grow-wrap) .footer-main {
  /* ~70px overlap + breathing room under the card */
  padding-top: clamp(7rem, 10vw, 9rem);
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem);
}

body:has(.footer-grow-wrap) .footer-bottom,
body:has(.vision-grow-wrap) .footer-bottom {
  padding-block: 1.75rem 2.25rem;
}

/* kill the thin paper strip between last section and footer behind the card */
body:has(.footer-grow-wrap) main {
  position: relative;
  z-index: 2;
  margin-bottom: -1px;
}

/* Same shade stack as homepage hero: lotus photo + soft overlays */
.site-footer::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background: url("../images/hero-gardenia.jpg") 70% center / cover no-repeat;
  opacity: 0.66;
  pointer-events: none;
}

.site-footer::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 27, 27, 0.9) 0%, rgba(3, 27, 27, 0.54) 55%, rgba(3, 27, 27, 0.25) 100%),
    linear-gradient(0deg, rgba(3, 27, 27, 0.72) 0%, transparent 55%);
  pointer-events: none;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.8fr 1.1fr;
  gap: clamp(2rem, 5vw, 5rem);
  padding-block: clamp(4rem, 7vw, 7rem);
}

.footer-brand img {
  width: min(280px, 100%);
}

.footer-brand p {
  max-width: 360px;
  margin: 1.5rem 0 0;
  color: rgba(250, 252, 252, 0.62);
  font-size: 0.9rem;
}

.footer-title {
  margin-bottom: 1.15rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.footer-contact {
  color: rgba(250, 252, 252, 0.7);
  font-size: 0.86rem;
}

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

.footer-contact p {
  margin: 0 0 0.75rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.3rem;
  color: rgba(250, 252, 252, 0.48);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
}


.footer-brand-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: inherit;
}

.footer-brand-credit-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 252, 252, 0.48);
  transition: color 200ms ease, opacity 200ms ease;
}

.footer-brand-credit img {
  display: block;
  height: 31px;
  width: auto;
  opacity: 0.55;
  transition: opacity 200ms ease;
}

.footer-brand-credit:hover .footer-brand-credit-label {
  color: var(--gold);
}

.footer-brand-credit:hover img {
  opacity: 0.85;
}

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  .header-inner { min-height: 80px; }
  .nav-toggle { display: grid; place-items: center; }
  .site-nav {
    position: fixed;
    top: 80px;
    right: 0;
    bottom: 0;
    width: min(430px, 100%);
    display: block;
    padding: 1.5rem;
    overflow-y: auto;
    color: var(--paper);
    background: var(--ink);
    transform: translateX(100%);
    transition: transform 250ms ease;
    pointer-events: none;
  }
  .nav-open .site-nav {
    transform: translateX(0);
    pointer-events: auto;
  }
  .nav-list { display: grid; gap: 0; }
  .nav-item { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .nav-link,
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 1rem 0;
    font-size: 0.9rem;
  }
  .nav-link::after,
  .nav-dropdown-toggle::after { display: none; }
  .nav-dropdown {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    color: var(--paper);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height 240ms ease, padding 240ms ease;
  }
  .nav-item.dropdown-open .nav-dropdown { max-height: 520px; padding-bottom: 0.8rem; }
  .nav-dropdown a { color: rgba(250, 252, 252, 0.72); padding-left: 0.7rem; }
  .nav-dropdown a:hover { color: var(--gold); background: rgba(255, 255, 255, 0.06); }
  .nav-contact { width: 100%; margin-top: 1.5rem; }
  .home-intro-grid,
  .home-proof-panel { grid-template-columns: 1fr; }
  .home-service-grid,
  .home-supply-grid,
  .home-promise-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-client-strip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .home-client-strip a { border-bottom: 1px solid var(--line); }
  .home-promise-grid article + article { border-left: 0; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .related-service-grid,
  .service-gallery-grid,
  .service-offerings-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team-grid,
  .team-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .page-subnav { top: 72px; }
  .page-subnav-inner { gap: 0.25rem 1rem; min-height: 52px; }
  .page-subnav a { font-size: 0.7rem; }
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 1.5rem), var(--container)); }
  .brand { width: 190px; }
  .hero-content { padding-top: 8.5rem; padding-bottom: 7.5rem; }
  .hero h1 { font-size: clamp(3.7rem, 16vw, 5.6rem); }
  .hero-controls {
    position: static;
    width: max-content;
    margin-top: 1.5rem;
  }
  .hero-service-inner { min-height: 54px; }
  .grid-2,
  .project-panel-inner,
  .content-grid,
  .service-detail,
  .service-intro-grid,
  .career-panel,
  .contact-grid { grid-template-columns: 1fr; }
  .content-aside { position: static; }
  .home-service-grid,
  .home-supply-grid,
  .home-promise-grid { grid-template-columns: 1fr; }
  .home-client-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-proof-stats { gap: 1.5rem 1rem; }
  .home-intro-image { aspect-ratio: 16 / 11; }
  .home-service-tile { min-height: 250px; }
  .home-promise-grid article { min-height: 260px; }
  .home-promise-grid article + article { border-top: 1px solid rgba(255, 255, 255, 0.14); }
  .service-detail:nth-child(even) .service-detail-image { order: 0; }
  .service-grid,
  .related-service-grid,
  .service-gallery-grid,
  .service-offerings-list,
  .value-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 440px; }
  .project-list,
  .feature-grid,
  .form-grid { grid-template-columns: 1fr; }
  .field-full { grid-column: auto; }
  .page-hero { min-height: 500px; }
  .page-hero-content { padding-top: 9rem; padding-bottom: 4rem; }
  .page-hero h1 { font-size: clamp(3.5rem, 15vw, 5rem); }
  body:not([data-page="home"]) .page-hero {
    min-height: 420px;
  }
  body:not([data-page="home"]) .page-hero::before {
    -webkit-mask-image: linear-gradient(
      115deg,
      transparent 0%,
      transparent 18%,
      rgba(0, 0, 0, 0.08) 28%,
      rgba(0, 0, 0, 0.4) 40%,
      rgba(0, 0, 0, 0.8) 52%,
      #000 62%,
      #000 100%
    );
    mask-image: linear-gradient(
      115deg,
      transparent 0%,
      transparent 18%,
      rgba(0, 0, 0, 0.08) 28%,
      rgba(0, 0, 0, 0.4) 40%,
      rgba(0, 0, 0, 0.8) 52%,
      #000 62%,
      #000 100%
    );
  }
  body:not([data-page="home"]) .page-hero-content {
    padding-top: 7.5rem;
    padding-bottom: 2.2rem;
  }
  body:not([data-page="home"]) .page-hero h1 {
    font-size: clamp(1.35rem, 5.8vw, 2rem);
  }
  .logo-cloud { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 480px) {
  .header-inner { min-height: 72px; }
  .site-nav { top: 72px; }
  .brand { width: 170px; }
  .nav-toggle { width: 44px; height: 44px; }
  .hero-service-inner { gap: 0.65rem; }
  .hero-service-inner > span:first-child {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }
  .service-ticker {
    min-width: 0;
    overflow: hidden;
    font-size: 1rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .hero-actions .button { width: 100%; }
  .stat { min-height: 155px; padding: 1.2rem; }
  .stat-number { font-size: 3.2rem; }
  .team-grid,
  .team-grid-3 { grid-template-columns: 1fr; }
  .home-client-strip { grid-template-columns: 1fr; }
  .home-proof-stats { grid-template-columns: 1fr 1fr; }
  .logo-cloud { grid-template-columns: 1fr; }
}


/* Certificates — Makhavi gallery inside Gardenia chrome */
.certificates-section {
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.certificates-intro {
  text-align: center;
  margin-bottom: 1.5rem;
}

.certificates-intro h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 0.95;
}

.cert-head {
  position: relative;
  z-index: 0;
  text-align: center;
  font-family: var(--font-body);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 400;
  margin: 2.5rem 0 1.5rem;
}

.cert-head::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 5%;
  right: 5%;
  height: 1px;
  background: rgba(3, 27, 27, 0.18);
}

.cert-head span {
  display: inline-block;
  padding: 0 0.75rem;
  background: var(--paper, #fafcfc);
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  justify-items: center;
  margin-bottom: 1rem;
}

.certificates-grid-wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.certificate-card {
  display: block;
  width: 100%;
  max-width: 260px;
  border-radius: calc(var(--radius) - 0.15rem);
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(3, 27, 27, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.certificate-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(3, 27, 27, 0.16);
}

.certificate-card img {
  width: 100%;
  height: auto;
  display: block;
  background: #fff;
}

@media (max-width: 900px) {
  .certificates-grid,
  .certificates-grid-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .certificates-grid,
  .certificates-grid-wide {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .service-offerings-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .service-intro-grid { grid-template-columns: 1fr; }
  .service-offerings-section { margin-bottom: -3rem; }
  .service-offerings-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .service-offerings-list { grid-template-columns: 1fr; }
  .service-gallery-grid { grid-template-columns: 1fr; }
}

.vision-grow-box h2 { font-family: var(--font-body) !important; }
