/* ============================================================
   TEAMSOH CONSTRUCTION — Site Stylesheet (v2 — light & realistic)
   Bright, airy layout. Green + gold used as refined accents.
   ============================================================ */

:root {
  /* Luxury palette — deep emerald-to-black green + champagne gold + ivory */
  --green-950: #091a14;
  --green-900: #0f271e;
  --green-800: #17392c;
  --green-700: #205040;
  --green-600: #2d6a53;
  --gold: #c2a463;          /* champagne gold */
  --gold-light: #e7d4a6;
  --gold-dark: #9a7b39;
  --gold-deep: #6f5620;     /* text on gold */

  --paper: #ffffff;
  --sand: #f8f5ee;          /* warm ivory section bg */
  --sand-2: #efe8da;
  --line: #e9e3d4;

  --ink: #191f1b;
  --body: #495049;          /* body copy */
  --muted: #7b817a;
  --white: #ffffff;

  --radius: 20px;
  --radius-sm: 12px;
  --shadow-xs: 0 2px 10px rgba(18, 40, 32, 0.06);
  --shadow-sm: 0 8px 24px rgba(18, 40, 32, 0.08);
  --shadow-md: 0 16px 40px rgba(18, 40, 32, 0.12);
  --shadow-lg: 0 30px 70px rgba(12, 46, 36, 0.18);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;               /* contain any reveal/decor overflow */
  -webkit-text-size-adjust: 100%; /* stop iOS/Android auto-inflating text */
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--paper);
  line-height: 1.7;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(1180px, 92%); margin-inline: auto; }

/* ---------- Typography ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.13;
  color: var(--ink);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); }
h3 { font-size: 1.3rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.lead { font-size: 1.1rem; color: var(--body); max-width: 62ch; }

/* Liquid gold — flowing molten metallic gradient */
@keyframes liquidGold {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.gold-text {
  background: linear-gradient(100deg, #6f5620, #e7d4a6 20%, #b8923f 40%, #f6e6ba 58%, #9a7b39 78%, #e7d4a6);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: liquidGold 6s ease-in-out infinite;
  padding: 0 0.04em;
}
/* On the dark hero the whole headline reads clean white */
.hero h1 .gold-text {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
  animation: none;
  padding: 0;
}

/* Reusable liquid-gold surfaces */
.liquid-gold-bar {
  display: block;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(100deg, #6f5620, #e7d4a6, #b8923f, #f6e6ba, #9a7b39, #e7d4a6);
  background-size: 250% auto;
  animation: liquidGold 6s ease-in-out infinite;
}
.hero .lg-divider {
  width: 92px;
  margin: 0.4rem 0 1.7rem;
  box-shadow: 0 2px 18px rgba(231, 212, 166, 0.45);
}
.hero .lg-divider .liquid-gold-bar { width: 100%; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.3s, color 0.3s;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn-gold {
  background: linear-gradient(120deg, var(--gold-dark), var(--gold) 50%, var(--gold-light));
  color: #322408;
  box-shadow: 0 10px 24px rgba(199, 154, 63, 0.35);
}
.btn-gold:hover { box-shadow: 0 16px 34px rgba(199, 154, 63, 0.5); }
.btn-gold::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease-out);
}
.btn-gold:hover::after { transform: translateX(120%); }

.btn-green {
  background: var(--green-800);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(26, 98, 73, 0.3);
}
.btn-green:hover { background: var(--green-700); }

.btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.2); border-color: var(--white); }

.btn-ghost {
  border-color: var(--line);
  color: var(--green-800);
  background: var(--white);
}
.btn-ghost:hover { border-color: var(--green-600); color: var(--green-700); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  padding: 0.5rem 0;
  position: relative;
  z-index: 101;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar a { color: var(--gold-light); font-weight: 700; }
.topbar .top5 {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 800;
  color: var(--gold-light);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  top: var(--topbar-offset, 0px);
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s, top 0.4s;
  padding: 1rem 0;
}
.site-header.scrolled {
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 26px rgba(18, 40, 32, 0.1);
  padding: 0.5rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: color 0.4s;
}
.site-header.scrolled .logo { color: var(--ink); }
.logo .logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.15rem;
  box-shadow: 0 6px 16px rgba(26, 98, 73, 0.4);
}
.logo span.tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; gap: 1.45rem; flex-wrap: nowrap; }
.main-nav a.nav-link {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 0.92rem;
  position: relative;
  padding: 0.3rem 0;
  white-space: nowrap;
  transition: color 0.4s;
}
.site-header.scrolled .main-nav a.nav-link { color: var(--body); }
.main-nav a.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.main-nav a.nav-link:hover,
.main-nav a.nav-link.active { color: var(--gold-light); }
.site-header.scrolled .main-nav a.nav-link:hover,
.site-header.scrolled .main-nav a.nav-link.active { color: var(--green-700); }
.main-nav a.nav-link:hover::after,
.main-nav a.nav-link.active::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  padding: 0.62rem 1.5rem;
  font-size: 0.85rem;
  white-space: nowrap;
  letter-spacing: 0.03em;
  border: 1px solid rgba(231, 212, 166, 0.5);
}

/* ---------- Services dropdown ---------- */
.nav-item.nav-dd { position: relative; }
.nav-dd-toggle {
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0;
  white-space: nowrap;
  transition: color 0.4s;
}
.site-header.scrolled .nav-dd-toggle { color: var(--body); }
.nav-dd-toggle .caret { font-size: 0.62rem; transition: transform 0.4s var(--ease-out); }
.nav-dd:hover .nav-dd-toggle,
.nav-dd:focus-within .nav-dd-toggle,
.nav-dd-toggle.active { color: var(--gold-light); }
.site-header.scrolled .nav-dd:hover .nav-dd-toggle,
.site-header.scrolled .nav-dd:focus-within .nav-dd-toggle,
.site-header.scrolled .nav-dd-toggle.active { color: var(--green-700); }
.nav-dd:hover .nav-dd-toggle .caret,
.nav-dd:focus-within .nav-dd-toggle .caret { transform: rotate(180deg); }
/* invisible hover bridge so the menu doesn't close in the gap */
.nav-dd::after { content: ""; position: absolute; top: 100%; left: -10px; right: -10px; height: 20px; }

.nav-dd-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  min-width: 288px;
  background: linear-gradient(180deg, rgba(15, 39, 30, 0.98), rgba(9, 26, 20, 0.98));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(231, 212, 166, 0.22);
  border-radius: 16px;
  padding: 0.55rem;
  box-shadow: 0 30px 70px rgba(4, 20, 15, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.32s var(--ease-out), transform 0.4s var(--ease-out), visibility 0.32s;
  z-index: 120;
}
.nav-dd-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(15, 39, 30, 0.98);
  border-left: 1px solid rgba(231, 212, 166, 0.22);
  border-top: 1px solid rgba(231, 212, 166, 0.22);
}
.nav-dd:hover .nav-dd-menu,
.nav-dd:focus-within .nav-dd-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dd-menu a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.72rem 0.85rem;
  border-radius: 11px;
  color: rgba(255, 255, 255, 0.9);
  transition: background 0.25s, transform 0.3s var(--ease-out);
}
.nav-dd-menu a:hover { background: rgba(45, 106, 83, 0.32); transform: translateX(4px); }
.nav-dd-menu a .dd-ic {
  flex: 0 0 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  background: rgba(231, 212, 166, 0.12);
  border: 1px solid rgba(231, 212, 166, 0.18);
}
.nav-dd-menu a b { display: block; font-family: var(--font-body); font-weight: 800; font-size: 0.92rem; color: #fff; }
.nav-dd-menu a small { display: block; color: rgba(231, 212, 166, 0.7); font-size: 0.76rem; font-weight: 500; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 42px;
  height: 42px;
  position: relative;
  z-index: 110;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  margin: 6px auto;
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out), opacity 0.3s, background 0.3s;
}
.site-header.scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle.open span { background: var(--white); }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--white);
  isolation: isolate;
  overflow: hidden;
  padding: 9rem 0 6rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  will-change: transform;
  /* Cinematic slow "Ken Burns" push + subtle colour grade */
  filter: saturate(1.08) contrast(1.06) brightness(0.96);
  animation: kenburns 30s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0%   { transform: scale(1.04) translate3d(0, 0, 0); }
  100% { transform: scale(1.16) translate3d(-1.5%, -2%, 0); }
}
/* Cinematic graded overlay — warm key light, deep shadow side, teal fill + vignette */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(125% 95% at 50% 40%, transparent 52%, rgba(4, 20, 15, 0.62) 100%),
    linear-gradient(103deg, rgba(8, 33, 25, 0.9) 0%, rgba(10, 40, 31, 0.52) 40%, rgba(12, 46, 36, 0.08) 78%, rgba(201, 154, 63, 0.16) 100%),
    linear-gradient(to top, rgba(6, 26, 20, 0.88) 0%, rgba(8, 33, 25, 0.24) 32%, transparent 56%);
}
/* Fine film grain for a filmic finish */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 170px 170px;
  opacity: 0.07;
  mix-blend-mode: overlay;
}
.hero h1 { color: var(--white); max-width: 17ch; }
.hero .lead { color: rgba(255, 255, 255, 0.9); margin: 1.4rem 0 2.2rem; max-width: 56ch; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid transparent;
  background:
    linear-gradient(rgba(9, 26, 20, 0.35), rgba(9, 26, 20, 0.35)) padding-box,
    linear-gradient(100deg, #6f5620, #e7d4a6, #b8923f, #f6e6ba, #9a7b39, #e7d4a6) border-box;
  background-size: auto, 250% auto;
  color: #fff;
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
  font-weight: 800;
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.6rem;
  backdrop-filter: blur(8px);
  animation: liquidGold 6s ease-in-out infinite, badge-glow 3.4s ease-in-out infinite;
}
@keyframes badge-glow {
  0%, 100% { box-shadow: 0 0 0 rgba(224, 189, 114, 0); }
  50% { box-shadow: 0 0 26px rgba(224, 189, 114, 0.4); }
}
.hero-badge .stars { letter-spacing: 0.12em; color: var(--gold-light); }

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

.hero-stats {
  display: flex;
  gap: clamp(1.5rem, 5vw, 4rem);
  margin-top: 3.2rem;
  flex-wrap: wrap;
}
.hero-stats .stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  color: #fff;
  line-height: 1;
}
.hero-stats .stat span {
  font-size: 0.8rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.scroll-hint .wheel {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  position: relative;
}
.scroll-hint .wheel::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 4px;
  background: var(--gold-light);
  animation: wheel 1.8s ease-in-out infinite;
}
@keyframes wheel {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

.hero.hero-sub { min-height: 66svh; padding-top: 10rem; }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 1.6rem 0;
}
.trust-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2.5rem;
  flex-wrap: wrap;
}
.trust-strip .trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: var(--green-900);
  font-size: 0.92rem;
}
.trust-strip .trust-item .ti {
  font-size: 1.25rem;
  filter: grayscale(0.1);
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--green-950);
  overflow: hidden;
  padding: 0.9rem 0;
}
.marquee-track {
  display: flex;
  gap: 3.2rem;
  width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 800;
  font-size: 0.84rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 3.2rem;
}
.marquee-track span::after { content: "✦"; color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: clamp(4.5rem, 9vw, 7.5rem) 0; position: relative; }
.section-sand { background: var(--sand); }
.section-tint {
  background:
    radial-gradient(900px 500px at 90% 0%, rgba(47, 145, 112, 0.08), transparent 60%),
    var(--sand);
}
.section-dark { background: var(--green-950); color: rgba(255,255,255,0.82); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .lead { color: rgba(255, 255, 255, 0.8); }
.section-dark .eyebrow { color: var(--gold-light); }

.section-head { max-width: 760px; margin-bottom: 3.2rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }

/* ---------- Service cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.6rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.4s;
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card .card-img { height: 210px; overflow: hidden; position: relative; }
.service-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.service-card:hover .card-img img { transform: scale(1.08); }
.service-card .card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 46, 36, 0.35), transparent 55%);
}
.service-card .card-body { padding: 1.5rem 1.6rem 1.8rem; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { margin-bottom: 0.5rem; color: var(--green-900); }
.service-card p { color: var(--muted); font-size: 0.96rem; flex: 1; }
.service-card .card-link {
  margin-top: 1.2rem;
  font-weight: 800;
  color: var(--green-700);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
}
.service-card .card-link .arrow { transition: transform 0.35s var(--ease-out); }
.service-card:hover .card-link .arrow { transform: translateX(6px); }
.service-card .flag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: linear-gradient(120deg, var(--gold-dark), var(--gold-light));
  color: #322408;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
/* text-only service cards (sub pages) */
.service-card .card-body h3:first-child { margin-top: 0.2rem; }

/* ---------- Feature split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.split .split-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.split .split-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease-out); }
.split .split-img:hover img { transform: scale(1.05); }
.split .split-img .img-frame {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: calc(var(--radius) - 6px);
  pointer-events: none;
}
.split .split-img .badge-float {
  position: absolute;
  right: 18px;
  bottom: 18px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--green-900);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  box-shadow: var(--shadow-md);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.split .split-img .badge-float b { font-family: var(--font-display); font-size: 1.5rem; color: var(--green-700); }

.check-list { list-style: none; margin-top: 1.6rem; display: grid; gap: 0.9rem; }
.check-list li { display: flex; gap: 0.8rem; align-items: flex-start; font-weight: 600; color: var(--ink); }
.check-list li::before {
  content: "✓";
  flex: 0 0 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 900;
  margin-top: 2px;
}

/* ---------- Projects ---------- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}
.project-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.project-card:hover img { transform: scale(1.1); }
.project-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 46, 36, 0.9) 0%, rgba(12, 46, 36, 0.15) 55%, transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: var(--white);
  transition: background 0.5s;
}
.project-card .overlay h3 { color: var(--white); font-size: 1.14rem; }
.project-card .overlay .loc {
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.project-card .overlay p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.88);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.55s var(--ease-out), opacity 0.45s, margin 0.45s;
}
.project-card:hover .overlay p { max-height: 130px; opacity: 1; margin-top: 0.5rem; }

/* ---------- Testimonials (light) ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  box-shadow: var(--shadow-xs);
  transition: transform 0.45s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}
.testimonial:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.testimonial .quote-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.6;
  color: var(--gold);
  height: 1.4rem;
}
.testimonial p { margin: 0.6rem 0 1.4rem; color: var(--ink); font-size: 1.02rem; }
.testimonial .who { font-weight: 800; color: var(--green-800); font-size: 0.9rem; }
.testimonial .who span { display: block; color: var(--muted); font-weight: 600; font-size: 0.8rem; }
.testimonial .stars { color: var(--gold); letter-spacing: 0.15em; margin-bottom: 0.4rem; }

/* ---------- Areas ---------- */
.areas-cloud { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.8rem; }
.areas-cloud span {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green-800);
  box-shadow: var(--shadow-xs);
  transition: transform 0.3s var(--ease-out), background 0.3s, color 0.3s, border-color 0.3s;
}
.areas-cloud span:hover {
  transform: translateY(-4px) scale(1.04);
  background: var(--green-800);
  color: #fff;
  border-color: transparent;
}

/* ---------- Accreditations ---------- */
.accred-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.4rem;
  margin-top: 2.4rem;
}
.accred {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
  border-top: 3px solid var(--gold);
}
.accred:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.accred .icon { font-size: 2rem; margin-bottom: 0.7rem; }
.accred b { display: block; color: var(--green-900); font-size: 1.02rem; }
.accred span { font-size: 0.85rem; color: var(--muted); }

/* ---------- Process steps (light) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.6rem;
  counter-reset: step;
}
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  position: relative;
  box-shadow: var(--shadow-xs);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}
.step:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.9rem;
}
.step h3 { font-size: 1.14rem; margin-bottom: 0.5rem; color: var(--green-900); }
.step p { font-size: 0.92rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 1rem; }
.faq-item {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item[open] { border-color: rgba(199, 154, 63, 0.6); box-shadow: var(--shadow-sm); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.2rem 1.5rem;
  font-weight: 800;
  color: var(--green-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--gold-dark);
  transition: transform 0.35s var(--ease-out);
  flex: 0 0 auto;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 1.5rem 1.4rem; color: var(--body); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 480px at 85% -10%, rgba(47, 145, 112, 0.35), transparent 60%),
    linear-gradient(120deg, var(--green-950), var(--green-900) 65%, var(--green-800));
  color: var(--white);
  text-align: center;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); margin-bottom: 1rem; }
.cta-band p { color: rgba(255, 255, 255, 0.82); max-width: 56ch; margin: 0 auto 2.2rem; }
.cta-band .btn-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-info { display: grid; gap: 1.1rem; margin-top: 1.8rem; }
.contact-line {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.05rem 1.3rem;
  box-shadow: var(--shadow-xs);
  font-weight: 700;
  color: var(--green-900);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s, border-color 0.3s;
}
.contact-line:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); border-color: var(--green-600); }
.contact-line .ic {
  flex: 0 0 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}
.contact-line small { display: block; color: var(--muted); font-weight: 600; }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--gold);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-grid .full { grid-column: 1 / -1; }
.contact-form label {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-800);
  margin-bottom: 0.4rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.98rem;
  background: var(--sand);
  color: var(--ink);
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(199, 154, 63, 0.16);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .btn { width: 100%; margin-top: 1.2rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.72);
  padding: 4.5rem 0 2rem;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(100deg, #6f5620, #e7d4a6, #b8923f, #f6e6ba, #9a7b39, #e7d4a6);
  background-size: 250% auto;
  animation: liquidGold 6s ease-in-out infinite;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.site-footer .logo { color: #fff; }
.site-footer h4 {
  color: var(--gold-light);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.site-footer ul { list-style: none; display: grid; gap: 0.6rem; }
.site-footer a { transition: color 0.3s, padding-left 0.3s; font-size: 0.94rem; }
.site-footer a:hover { color: var(--gold-light); padding-left: 5px; }
.footer-about p { font-size: 0.94rem; margin-top: 1rem; max-width: 34ch; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
}
.footer-bottom .top5-line { color: var(--gold-light); font-weight: 700; }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.reveal-left { transform: translateX(-44px); }
.reveal.reveal-right { transform: translateX(44px); }
.reveal.reveal-scale { transform: scale(0.92); }
.reveal.visible { opacity: 1; transform: none; }

.hero .rise {
  opacity: 0;
  transform: translateY(38px);
  animation: rise 1s var(--ease-out) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- Floating decor ---------- */
.float-shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(47, 145, 112, 0.18), transparent 70%);
  filter: blur(2px);
  animation: floaty 9s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-26px) rotate(6deg); }
}
.section > .container { position: relative; z-index: 1; }

/* ---------- Back to top & call fab ---------- */
.back-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s var(--ease-out);
  z-index: 90;
  border: 0;
  cursor: pointer;
}
.back-top.show { opacity: 1; transform: none; pointer-events: auto; }
.back-top:hover { transform: translateY(-4px); }

.call-fab {
  position: fixed;
  left: 1.4rem;
  bottom: 1.4rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(120deg, var(--gold-dark), var(--gold));
  color: #322408;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0.8rem 1.3rem;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  animation: badge-glow 3s ease-in-out infinite;
}
.call-fab:hover { filter: brightness(1.05); transform: translateY(-2px); }

/* ---------- Value / "what you get" cards ---------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.4rem;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  box-shadow: var(--shadow-xs);
  transition: transform 0.45s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(var(--green-700), var(--green-600));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s var(--ease-out);
}
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.value-card:hover::before { transform: scaleY(1); }
.value-card .v-ic {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 1.5rem;
  background: linear-gradient(135deg, rgba(26,98,73,0.12), rgba(47,145,112,0.12));
  color: var(--green-700);
  margin-bottom: 1.1rem;
}
.value-card h3 { color: var(--green-900); font-size: 1.14rem; margin-bottom: 0.5rem; }
.value-card p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Expertise credentials band ---------- */
.cred-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.4rem;
  margin-top: 2.6rem;
}
.cred {
  text-align: center;
  padding: 1.4rem 1rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--line);
}
.cred b {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--green-700);
  line-height: 1;
}
.cred span { font-size: 0.85rem; color: var(--muted); font-weight: 700; letter-spacing: 0.03em; }

/* ---------- Comparison "why us vs others" ---------- */
.compare {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  align-items: center;
}
.compare-row + .compare-row { border-top: 1px solid var(--line); }
.compare-row > div { padding: 1rem 1.2rem; }
.compare-head {
  background: var(--green-950);
  color: #fff;
}
.compare-head > div { padding: 1.15rem 1.2rem; font-weight: 800; }
.compare-head .c-them { color: rgba(255,255,255,0.7); text-align: center; font-size: 0.9rem; }
.compare-head .c-us { color: var(--gold-light); text-align: center; }
.compare-row .c-feat { font-weight: 700; color: var(--ink); font-size: 0.96rem; }
.compare-row .c-them,
.compare-row .c-us { text-align: center; font-weight: 800; }
.compare-row .c-them { color: #c05656; }
.compare-row .c-us { color: var(--green-700); }
.compare-row:nth-child(even) { background: var(--sand); }
.compare .c-us-col { background: rgba(47,145,112,0.06); }

/* ---------- Pricing plans ---------- */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
  align-items: stretch;
}
.plan {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.45s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
  backdrop-filter: blur(4px);
}
.plan:hover { transform: translateY(-8px); border-color: rgba(224,189,114,0.5); }
.plan.featured {
  border: 2px solid transparent;
  background:
    linear-gradient(180deg, #17402f, #0c241b) padding-box,
    linear-gradient(120deg, #6f5620, #e7d4a6, #b8923f, #f6e6ba, #9a7b39, #e7d4a6) border-box;
  background-size: auto, 250% auto;
  animation: liquidGold 7s ease-in-out infinite;
  box-shadow: 0 24px 60px rgba(0,0,0,0.32), inset 0 0 44px rgba(199,154,63,0.1);
}
.plan .plan-tag {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(120deg, var(--gold-dark), var(--gold-light));
  color: #322408;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}
.plan .plan-ic { font-size: 1.8rem; margin-bottom: 0.6rem; }
.plan h3 { color: #fff; font-size: 1.35rem; margin-bottom: 0.3rem; }
.plan .plan-for { color: var(--gold-light); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1.2rem; }
.plan .plan-price {
  font-family: var(--font-display);
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.plan .plan-price small { font-family: var(--font-body); font-size: 0.95rem; color: rgba(255,255,255,0.7); font-weight: 600; }
.plan .plan-note { color: rgba(255,255,255,0.6); font-size: 0.82rem; margin-bottom: 1.4rem; }
.plan ul { list-style: none; display: grid; gap: 0.7rem; margin-bottom: 1.8rem; flex: 1; }
.plan ul li { display: flex; gap: 0.65rem; align-items: flex-start; color: rgba(255,255,255,0.88); font-size: 0.93rem; }
.plan ul li::before {
  content: "✓";
  flex: 0 0 22px; height: 22px;
  border-radius: 50%;
  background: rgba(47,145,112,0.35);
  color: var(--gold-light);
  display: grid; place-items: center;
  font-size: 0.72rem; font-weight: 900;
  margin-top: 2px;
}
.plan .btn { width: 100%; }
.plans-foot {
  text-align: center;
  color: rgba(255,255,255,0.7);
  margin-top: 2.4rem;
  font-size: 0.95rem;
}
.plans-foot a { color: var(--gold-light); font-weight: 700; }

/* ============================================================
   CINEMATIC LAYER — filmic grading, depth, glow & focus-pull
   ============================================================ */

/* Consistent colour grade across all showcase photography */
.service-card .card-img img,
.project-card img,
.split-img img {
  filter: saturate(1.06) contrast(1.05);
}

/* Deeper, more cinematic scrims on imagery */
.service-card .card-img::after {
  background: linear-gradient(to top, rgba(6, 26, 20, 0.55), rgba(6,26,20,0.05) 45%, transparent 70%);
}
.project-card .overlay {
  background: linear-gradient(to top, rgba(5, 22, 17, 0.94) 0%, rgba(6, 26, 20, 0.35) 52%, rgba(6,26,20,0.05) 78%, transparent);
}
/* Vignette on project tiles for a framed, filmic look */
.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 90px rgba(4, 20, 15, 0.55);
  border-radius: var(--radius);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
}
.project-card:hover::after { opacity: 1; }

/* Warm glow on gold elements */
.btn-gold { box-shadow: 0 10px 26px rgba(194, 164, 99, 0.38), 0 0 0 rgba(231,212,166,0); }
.btn-gold:hover { box-shadow: 0 16px 40px rgba(194, 164, 99, 0.5), 0 0 22px rgba(231, 212, 166, 0.4); }
.logo .logo-mark { box-shadow: 0 6px 20px rgba(15, 39, 30, 0.5), 0 0 18px rgba(45,106,83,0.3); }

/* Cinematic depth for the dark sections (plans / CTA / footer) */
.section-dark {
  background:
    radial-gradient(1000px 600px at 82% -12%, rgba(45, 106, 83, 0.28), transparent 62%),
    radial-gradient(800px 500px at 8% 110%, rgba(194, 164, 99, 0.14), transparent 60%),
    linear-gradient(165deg, #0d241b 0%, #071710 55%, #0d241b 100%);
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 170px 170px;
  opacity: 0.05;
  mix-blend-mode: overlay;
  z-index: 0;
}
.cta-band {
  background:
    radial-gradient(1100px 480px at 85% -12%, rgba(45, 106, 83, 0.42), transparent 60%),
    radial-gradient(700px 420px at 10% 120%, rgba(194, 164, 99, 0.2), transparent 58%),
    linear-gradient(120deg, #071710, #0d241b 62%, #17392c);
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(120% 130% at 50% 50%, transparent 55%, rgba(3, 17, 13, 0.6) 100%);
}
.site-footer {
  background:
    radial-gradient(800px 400px at 90% -20%, rgba(47, 145, 112, 0.14), transparent 60%),
    #071f18;
}

/* Cinematic "focus-pull" reveal — items rise, scale in and sharpen */
.reveal {
  filter: blur(8px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out), filter 1s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.visible { filter: blur(0); }

/* Section-head headings get a subtle luminous lift */
.section-dark h2 { text-shadow: 0 2px 30px rgba(47, 145, 112, 0.35); }
.hero h1 { text-shadow: 0 4px 40px rgba(3, 17, 13, 0.55); }

@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; transform: none; }
  .reveal { filter: none; }
}

/* ============================================================
   STYLISH MOTION LAYER (Framer / "Fugazi"-inspired)
   ============================================================ */

/* Branded intro wipe on first load */
.intro {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: linear-gradient(160deg, #0d241b, #071710);
  display: grid;
  place-items: center;
  transition: transform 0.85s var(--ease-out), opacity 0.6s ease;
}
.intro.hide { transform: translateY(-100%); opacity: 0; pointer-events: none; }
.intro .intro-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(18px);
  animation: introUp 0.7s var(--ease-out) 0.05s forwards;
}
.intro .intro-logo .logo-mark {
  width: 54px; height: 54px; border-radius: 13px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  color: var(--gold-light);
  font-size: 1.5rem;
  box-shadow: 0 8px 22px rgba(45, 106, 83, 0.5);
}
@keyframes introUp { to { opacity: 1; transform: none; } }
.intro .intro-bar {
  position: absolute;
  bottom: 20%;
  width: 170px; height: 2px;
  background: rgba(231, 212, 166, 0.2);
  overflow: hidden;
  border-radius: 2px;
}
.intro .intro-bar::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  transform: translateX(-100%);
  animation: introBar 1s var(--ease-out) 0.15s forwards;
}
@keyframes introBar { to { transform: translateX(0); } }

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  box-shadow: 0 0 12px rgba(231, 212, 166, 0.6);
  z-index: 200;
  transition: width 0.1s linear;
}

/* Cinematic line-reveal for section headings (only ones set to animate) */
.section-head.reveal h2 {
  clip-path: inset(0 0 110% 0);
  transform: translateY(6px);
  transition: clip-path 1.1s var(--ease-out), transform 1.1s var(--ease-out);
  transition-delay: 0.12s;
}
.section-head.reveal.visible h2 { clip-path: inset(0 0 -10% 0); transform: none; }

/* WhatsApp button */
.btn-whatsapp {
  background: linear-gradient(120deg, #1ea952, #25d366);
  color: #fff;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover { box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5), 0 0 22px rgba(37, 211, 102, 0.45); }
.btn-whatsapp .wa-ico { display: inline-flex; align-items: center; }
.btn-whatsapp.is-sending { opacity: 0.7; pointer-events: none; }

.form-note { margin-top: 0.9rem; font-size: 0.82rem; color: var(--muted); text-align: center; }
.form-note b { color: var(--green-800); }
.form-note.form-note-ok { color: var(--green-700); font-weight: 700; }

/* Floating WhatsApp button */
.wa-fab {
  position: fixed;
  left: 1.4rem;
  bottom: 5.4rem;
  z-index: 91;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1ea952, #25d366);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  animation: wa-pulse 3s ease-in-out infinite;
  transition: transform 0.35s var(--ease-out);
}
.wa-fab:hover { transform: translateY(-3px) scale(1.05); }
.wa-fab svg { width: 30px; height: 30px; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 10px 34px rgba(37, 211, 102, 0.75); }
}

/* "View" tag revealed on project hover */
.project-card .overlay::before {
  content: "View ↗";
  position: absolute;
  top: 1rem; right: 1rem;
  background: rgba(231, 212, 166, 0.16);
  border: 1px solid rgba(231, 212, 166, 0.45);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.4s ease, transform 0.4s var(--ease-out);
  z-index: 2;
}
.project-card:hover .overlay::before { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .section-head h2 { clip-path: none; transform: none; }
  .intro .intro-logo { opacity: 1; transform: none; animation: none; }
  .wa-fab { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 700px) {
  .compare-row { grid-template-columns: 1.4fr 0.8fr 0.8fr; }
  .compare-row > div, .compare-head > div { padding: 0.85rem 0.7rem; font-size: 0.9rem; }
}
@media (max-width: 960px) {
  .split, .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split .split-img { order: -1; }
  /* Reveal vertically only on stacked layouts — horizontal shift caused
     off-screen overflow that made phones zoom inconsistently. */
  .reveal.reveal-left,
  .reveal.reveal-right { transform: translateY(32px); }
  .reveal.reveal-left.visible,
  .reveal.reveal-right.visible { transform: none; }
}
/* Full horizontal nav only shows when it comfortably fits; below this the
   hamburger + full-screen overlay menu takes over so nothing wraps or spills. */
@media (max-width: 1000px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 0;
    background:
      radial-gradient(900px 500px at 80% -10%, rgba(45, 106, 83, 0.3), transparent 60%),
      radial-gradient(700px 420px at 12% 115%, rgba(194, 164, 99, 0.14), transparent 60%),
      linear-gradient(160deg, rgba(13, 36, 27, 0.99), rgba(7, 23, 16, 0.99));
    backdrop-filter: blur(18px);
    flex-direction: column;
    justify-content: center;
    gap: 1.7rem;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.55s var(--ease-out), opacity 0.4s ease;
    z-index: 105;
  }
  .main-nav.open { transform: none; opacity: 1; }
  .main-nav a.nav-link,
  .site-header.scrolled .main-nav a.nav-link { color: #fff; font-size: 1.4rem; }
  .main-nav a.nav-link::after { height: 3px; }
  .main-nav .nav-cta,
  .site-header.scrolled .main-nav .nav-cta { color: #322408; margin-top: 0.6rem; font-size: 1rem; padding: 0.85rem 2.2rem; }

  /* Premium staggered reveal of menu items when opened */
  .main-nav > * {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  }
  .main-nav.open > * { opacity: 1; transform: none; }
  .main-nav.open > *:nth-child(1) { transition-delay: 0.10s; }
  .main-nav.open > *:nth-child(2) { transition-delay: 0.16s; }
  .main-nav.open > *:nth-child(3) { transition-delay: 0.22s; }
  .main-nav.open > *:nth-child(4) { transition-delay: 0.28s; }
  .main-nav.open > *:nth-child(5) { transition-delay: 0.34s; }
  .main-nav.open > *:nth-child(6) { transition-delay: 0.40s; }
  .main-nav.open > *:nth-child(7) { transition-delay: 0.46s; }
  .main-nav.open > *:nth-child(8) { transition-delay: 0.52s; }

  /* Services dropdown expands inline (no hover) inside the mobile menu */
  .nav-item.nav-dd { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
  .nav-dd-toggle,
  .site-header.scrolled .nav-dd-toggle { color: var(--gold-light); font-size: 1.4rem; cursor: default; }
  .nav-dd-toggle .caret { display: none; }
  .nav-dd::after { display: none; }
  .nav-dd-menu,
  .nav-dd:hover .nav-dd-menu,
  .nav-dd:focus-within .nav-dd-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: none;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
  }
  .nav-dd-menu::before { display: none; }
  .nav-dd-menu a { justify-content: center; padding: 0; gap: 0.6rem; }
  .nav-dd-menu a:hover { background: none; transform: none; }
  .nav-dd-menu a .dd-ic { display: none; }
  .nav-dd-menu a b { font-size: 1.12rem; font-weight: 700; color: rgba(255,255,255,0.9); }
  .nav-dd-menu a:hover b { color: var(--gold-light); }
  .nav-dd-menu a small { display: none; }

  .topbar { display: none; }
  .trust-strip .container { justify-content: center; text-align: center; }
}
@media (max-width: 640px) {
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 7.5rem; }

  /* Split the floating buttons to opposite corners so they don't
     cluster over the hero CTAs / form. WhatsApp bottom-left,
     Call bottom-right, Back-to-top stacks above Call. */
  .call-fab {
    left: auto;
    right: 1.1rem;
    bottom: 1.1rem;
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    gap: 0;
    font-size: 1.25rem;
  }
  .call-fab .txt { display: none; }
  .wa-fab {
    left: 1.1rem;
    bottom: 1.1rem;
    width: 52px;
    height: 52px;
  }
  .back-top {
    right: 1.1rem;
    bottom: 4.9rem;
  }
}

/* ---------- Reduced motion ---------- */
@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;
  }
  .reveal, .hero .rise { opacity: 1; transform: none; }
}
