/* ============================================================
   Shri Ram Home Decor — Design System
   Palette taken from the logo:
     teal #17868C · vermilion #D63A1F · magenta #B0389E · gold #F4B32C
   ============================================================ */

/* ---------- 1. Tokens ---------- */
:root {
  /* brand (straight off the logo) */
  --teal:       #17868C;
  --vermilion:  #D63A1F;
  --magenta:    #B0389E;
  --gold:       #F4B32C;

  /* dark surfaces — deep teal, so they sit under the logo badge */
  --ink:        #0B383D;
  --ink-2:      #10474D;
  --ink-3:      #17605F;

  /* light surfaces — warm ivory, matches the cream in the badge */
  --cream:      #FBF7F0;
  --sand:       #F3EBDE;
  --sand-2:     #E5D8C4;

  /* accent — the "Shri Ram" vermilion, used for buttons and highlights */
  --accent:     #D63A1F;
  --accent-lt:  #F08A6C;
  --accent-dk:  #B02D14;

  --body:       #55605F;
  --body-lt:    #86918F;
  --line:       #E6DBC9;
  --line-dark:  rgba(255, 255, 255, .14);
  --white:      #FFFFFF;
  --green:      #25D366;

  /* the tri-colour rule under the wordmark */
  --brand-rule: linear-gradient(90deg, var(--gold) 0 33.3%, var(--magenta) 33.3% 66.6%, var(--teal) 66.6% 100%);

  /* type */
  --f-display: "Fraunces", "Playfair Display", Georgia, serif;
  --f-body:    "Plus Jakarta Sans", "Inter", -apple-system, "Segoe UI", sans-serif;

  /* scale */
  --h1: clamp(2.6rem, 6.2vw, 5.1rem);
  --h2: clamp(2rem, 4vw, 3.25rem);
  --h3: clamp(1.3rem, 2vw, 1.65rem);

  /* space */
  --sec:   clamp(72px, 9vw, 130px);
  --gut:   clamp(20px, 4vw, 40px);
  --max:   1280px;

  /* misc */
  --r:     18px;
  --r-sm:  12px;
  --shadow:    0 18px 50px -22px rgba(11, 56, 61, .35);
  --shadow-lg: 0 34px 80px -30px rgba(11, 56, 61, .45);
  --ease:  cubic-bezier(.4, 0, .2, 1);
  --nav-h: 86px;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--f-body);
  font-size: 16.5px;
  line-height: 1.72;
  color: var(--body);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
::selection { background: var(--accent); color: var(--white); }

/* scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--sand); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 10px; }

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--ink);
}
h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); line-height: 1.25; }
p { text-wrap: pretty; }
.lead { font-size: clamp(1.02rem, 1.5vw, 1.18rem); color: var(--body); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-dk);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 3px;
  background: var(--brand-rule);
}
.eyebrow.center::after {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 3px;
  background: var(--brand-rule);
}
.italic-accent { font-style: italic; color: var(--accent-dk); }

/* ---------- 4. Layout ---------- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: var(--sec); position: relative; }
.section--sand { background: var(--sand); }
.section--dark { background: var(--ink); color: rgba(255,255,255,.72); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--white); }
.section--dark .eyebrow { color: var(--accent-lt); }
.sec-head { max-width: 700px; margin-bottom: clamp(40px, 5vw, 64px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head p { margin-top: 18px; }
.grid { display: grid; gap: clamp(20px, 2.4vw, 30px); }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- 5. Buttons ---------- */
.btn {
  --bg: var(--ink);
  --fg: var(--cream);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  background: var(--bg);
  color: var(--fg);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .01em;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--accent);
  transform: translateY(101%);
  transition: transform .45s var(--ease);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 14px 30px -12px rgba(11,56,61,.5); }
.btn:hover::before { transform: translateY(0); }
.btn:hover { color: var(--white); }
.btn svg { width: 17px; height: 17px; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--accent { --bg: var(--accent); --fg: var(--white); }
.btn--accent::before { background: var(--ink); }
.btn--accent:hover { color: var(--cream); }

.btn--ghost {
  --bg: transparent;
  --fg: currentColor;
  border: 1.5px solid currentColor;
}
.btn--ghost::before { background: currentColor; }
.btn--ghost:hover { color: var(--ink); border-color: var(--accent); }
.btn--ghost.on-dark:hover { color: var(--white); border-color: var(--accent); }
.btn--ghost.on-dark::before { background: var(--accent); }

.btn--lg { padding: 18px 38px; font-size: .95rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-dk);
}
.link-arrow span { position: relative; }
.link-arrow span::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.link-arrow:hover span::after { transform: scaleX(1); transform-origin: left; }
.link-arrow svg { width: 15px; transition: transform .35s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------- 6. Topbar ---------- */
.topbar {
  background: var(--ink);
  color: rgba(255,255,255,.66);
  font-size: .8rem;
  letter-spacing: .01em;
  border-bottom: 1px solid var(--line-dark);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 42px;
}
.topbar a { transition: color .25s; }
.topbar a:hover { color: var(--accent-lt); }
.topbar__left { display: flex; align-items: center; gap: 26px; }
.topbar__item { display: inline-flex; align-items: center; gap: 8px; }
.topbar__item svg { width: 14px; height: 14px; color: var(--accent); flex: none; }
.topbar__socials { display: flex; gap: 16px; align-items: center; }
.topbar__socials svg { width: 15px; height: 15px; }

/* ---------- 7. Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(251, 248, 243, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.header.is-stuck { box-shadow: 0 10px 40px -22px rgba(11,56,61,.35); }
.header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--brand-rule);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.header.is-stuck::after { opacity: 1; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: var(--nav-h);
}
.nav nav { margin-left: auto; }

/* logo */
.logo { display: inline-flex; align-items: center; flex: none; }
.logo img {
  display: block;
  height: 60px;
  width: auto;
  transition: opacity .25s;
}
.logo:hover img { opacity: .82; }
/* on dark backgrounds the logo sits on a cream plate so it stays legible */
.logo--chip {
  background: var(--cream);
  padding: 12px 20px;
  border-radius: 16px;
}
.logo--chip img { height: 46px; }
@media (max-width: 980px) { .logo img { height: 44px; } }
@media (max-width: 420px) { .logo img { height: 38px; } }

/* menu */
.menu { display: flex; align-items: center; gap: 6px; }
.menu > li { position: relative; }
.menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 15px;
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
  border-radius: 100px;
  transition: color .25s, background .25s;
}
.menu > li > a:hover,
.menu > li.is-active > a { color: var(--accent-dk); background: var(--sand); }
.menu .caret { width: 11px; height: 11px; transition: transform .3s var(--ease); }
.menu > li:hover .caret { transform: rotate(180deg); }

/* dropdown */
.drop {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  translate: -50% 0;
  width: 520px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 14px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s var(--ease);
}
.menu > li:hover .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop::before {
  content: "";
  position: absolute;
  top: -14px; left: 0; right: 0; height: 14px;
}
.drop a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 10px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--body);
  transition: background .22s, color .22s;
}
.drop a::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--sand-2);
  flex: none;
  transition: background .22s, scale .22s;
}
.drop a:hover { background: var(--sand); color: var(--ink); }
.drop a:hover::before { background: var(--accent); scale: 1.5; }
.drop__all {
  grid-column: 1 / -1;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.drop__all a { justify-content: center; font-weight: 700; color: var(--accent-dk); }
.drop__all a::before { display: none; }

.nav__cta { display: flex; align-items: center; gap: 14px; flex: none; }

/* burger */
.burger {
  display: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--ink);
  place-items: center;
  gap: 5px;
  flex-direction: column;
}
.burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .2s;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(400px, 88vw);
  background: var(--cream);
  z-index: 1000;
  padding: 26px 24px 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .45s var(--ease);
  box-shadow: -20px 0 60px -30px rgba(0,0,0,.5);
}
.drawer { visibility: hidden; }
.drawer.is-open { transform: translateX(0); visibility: visible; }
.drawer__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; }
.drawer__close { font-size: 1.8rem; line-height: 1; color: var(--ink); }
.drawer__menu > li { border-bottom: 1px solid var(--line); }
.drawer__menu > li > a,
.drawer__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 2px;
  font-family: var(--f-display);
  font-size: 1.22rem;
  font-weight: 500;
  color: var(--ink);
  text-align: left;
}
.drawer__toggle svg { width: 14px; transition: transform .3s var(--ease); }
.drawer__toggle.is-open svg { transform: rotate(180deg); }
.drawer__sub { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.drawer__sub a {
  display: block;
  padding: 10px 0 10px 16px;
  font-size: .92rem;
  color: var(--body);
  border-left: 2px solid var(--line);
}
.drawer__sub a:hover { color: var(--accent-dk); border-color: var(--accent); }
.drawer__foot { margin-top: 30px; display: grid; gap: 14px; }
.overlay {
  position: fixed; inset: 0;
  background: rgba(11,56,61,.55);
  backdrop-filter: blur(3px);
  z-index: 999;
  opacity: 0; visibility: hidden;
  transition: opacity .4s, visibility .4s;
}
.overlay.is-open { opacity: 1; visibility: visible; }

/* ---------- 8. Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 88vh, 880px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
}
.hero__slides { position: absolute; inset: 0; }
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease);
}
.hero__slide.is-active { opacity: 1; }
.hero__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 7s linear;
}
.hero__slide.is-active img { transform: scale(1.16); }
.hero__slides::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(11,56,61,.92) 0%, rgba(11,56,61,.72) 42%, rgba(11,56,61,.35) 100%),
    linear-gradient(to top, rgba(11,56,61,.85), transparent 45%);
}
.hero__inner { position: relative; z-index: 2; padding-block: clamp(70px, 10vh, 120px); }
.hero__content { max-width: 780px; }
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--accent-lt); }
.hero p { color: rgba(255,255,255,.78); max-width: 560px; font-size: clamp(1rem, 1.4vw, 1.13rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px 8px 8px;
  margin-bottom: 26px;
  border-radius: 100px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(8px);
  font-size: .82rem;
  color: rgba(255,255,255,.85);
}
.hero__badge b { color: var(--white); font-weight: 700; }
.hero__badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
  font-size: .8rem;
}
.hero__badge-pill svg { width: 13px; height: 13px; }

/* hero dots */
.hero__dots {
  position: absolute;
  z-index: 3;
  bottom: 42px;
  right: max(var(--gut), calc((100vw - var(--max)) / 2 + var(--gut)));
  display: flex;
  gap: 10px;
}
.hero__dot {
  width: 34px; height: 3px;
  border-radius: 3px;
  background: rgba(255,255,255,.28);
  transition: background .3s, width .3s;
}
.hero__dot.is-active { background: var(--accent); width: 54px; }

/* ---------- 9. Trust strip ---------- */
.trust {
  position: relative;
  z-index: 5;
  margin-top: -58px;
}
.trust__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px 24px;
  border-right: 1px solid var(--line);
}
.trust__item:last-child { border-right: 0; }
.trust__ico {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--sand);
  color: var(--accent-dk);
  flex: none;
}
.trust__ico svg { width: 21px; height: 21px; }
.trust__item b { display: block; color: var(--ink); font-size: 1rem; line-height: 1.3; }
.trust__item span { font-size: .82rem; color: var(--body-lt); }

/* ---------- 10. About ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}
.about__media { position: relative; }
.about__img-a {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  background: var(--sand-2);
  box-shadow: var(--shadow);
}
.about__img-a img { width: 100%; height: 100%; object-fit: cover; }
.about__img-b {
  position: absolute;
  right: -6%;
  bottom: -8%;
  width: 52%;
  aspect-ratio: 1 / 1;
  border-radius: var(--r);
  overflow: hidden;
  border: 8px solid var(--cream);
  background: var(--sand-2);
  box-shadow: var(--shadow-lg);
}
.about__img-b img { width: 100%; height: 100%; object-fit: cover; }
.about__badge {
  position: absolute;
  top: 26px; left: -22px;
  padding: 18px 22px;
  border-radius: 16px;
  background: var(--gold);
  color: var(--ink);
  box-shadow: var(--shadow);
  text-align: center;
}
.about__badge b { display: block; font-family: var(--f-display); font-size: 2.1rem; line-height: 1; }
.about__badge span { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }

.tick-list { display: grid; gap: 14px; margin-top: 28px; }
.tick-list li { display: flex; gap: 12px; align-items: flex-start; }
.tick-list svg { width: 20px; height: 20px; color: var(--accent-dk); flex: none; margin-top: 3px; }
.tick-list b { color: var(--ink); font-weight: 700; }

.about__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.owner { display: flex; align-items: center; gap: 14px; }
.owner__ava {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--teal), var(--ink));
  display: grid; place-items: center;
  font-family: var(--f-display);
  color: var(--cream);
  font-size: 1.1rem;
  flex: none;
}
.owner b { display: block; color: var(--ink); line-height: 1.3; }
.owner span { font-size: .82rem; color: var(--body-lt); }

/* ---------- 11. Service cards ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2vw, 26px); }
.svc {
  position: relative;
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.svc:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc__img { aspect-ratio: 4 / 3.1; overflow: hidden; background: var(--sand-2); }
.svc__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.svc:hover .svc__img img { transform: scale(1.09); }
.svc__body { padding: 22px 22px 24px; }
.svc__body h3 { font-size: 1.16rem; margin-bottom: 8px; transition: color .3s; }
.svc:hover .svc__body h3 { color: var(--accent-dk); }
.svc__body p { font-size: .89rem; line-height: 1.6; color: var(--body-lt); }
.svc__num {
  position: absolute;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(11,56,61,.55);
  backdrop-filter: blur(6px);
  color: var(--accent-lt);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.svc__more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent-dk);
}
.svc__more svg { width: 14px; transition: transform .35s var(--ease); }
.svc:hover .svc__more svg { transform: translateX(5px); }

/* ---------- 11b. Service detail rows ---------- */
.srv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  padding-block: clamp(38px, 4.5vw, 64px);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 110px;
}
.srv-row:last-child { border-bottom: 0; }
.srv-row:nth-child(even) .srv-row__media { order: 2; }
.srv-row__media {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--sand-2);
  box-shadow: var(--shadow);
  position: relative;
}
.srv-row__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.srv-row:hover .srv-row__media img { transform: scale(1.05); }
.srv-row__tag {
  position: absolute;
  top: 16px; left: 16px;
  padding: 7px 15px;
  border-radius: 100px;
  background: var(--cream);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-dk);
}
.srv-row h2 { font-size: clamp(1.6rem, 2.8vw, 2.3rem); margin-bottom: 14px; }
.srv-row p { font-size: .98rem; }
.srv-row .link-arrow + .link-arrow { margin-left: 26px; }
.chips { display: flex; flex-wrap: wrap; gap: 9px; margin: 22px 0 26px; }
.chip {
  padding: 8px 15px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: .82rem;
  font-weight: 600;
  color: var(--body);
}
.section--sand .chip { background: var(--cream); }

@media (max-width: 860px) {
  .srv-row { grid-template-columns: 1fr; }
  .srv-row:nth-child(even) .srv-row__media { order: 0; }
}

/* ---------- 12. Stats ---------- */
.stats { position: relative; overflow: hidden; }
.stats__bg { position: absolute; inset: 0; }
.stats__bg img { width: 100%; height: 100%; object-fit: cover; }
.stats__bg::after { content: ""; position: absolute; inset: 0; background: rgba(11,56,61,.9); }
.stats__inner { position: relative; z-index: 2; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { text-align: center; padding: 10px; }
.stat b {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1;
  color: var(--accent-lt);
  letter-spacing: -.03em;
}
.stat span {
  display: block;
  margin-top: 12px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.66);
}

/* ---------- 13. Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2.5vw, 32px); }
.step { position: relative; padding-top: 34px; }
.step::before {
  content: "";
  position: absolute;
  top: 15px; left: 0; right: 0;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--sand-2) 0 6px, transparent 6px 12px);
}
.step__n {
  position: relative;
  z-index: 2;
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--accent);
  color: var(--accent-dk);
  font-family: var(--f-display);
  font-size: 1.15rem;
  margin: -42px 0 20px;
  transition: background .35s, color .35s;
}
.step:hover .step__n { background: var(--accent); color: var(--white); }
.section--sand .step__n { background: var(--sand); }
.step h3 { font-size: 1.18rem; margin-bottom: 10px; }
.step p { font-size: .9rem; color: var(--body-lt); }

/* ---------- 14. Projects ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; }
.filter {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: .86rem;
  font-weight: 600;
  color: var(--body);
  transition: all .3s var(--ease);
}
.filter:hover { border-color: var(--accent); color: var(--ink); }
.filter.is-active { background: var(--ink); border-color: var(--ink); color: var(--cream); }

.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 26px); }
.proj {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4 / 4.7;
  background: var(--sand-2);
  display: block;
}
.proj.is-hidden { display: none; }
.proj.tall { aspect-ratio: 4 / 5; }
.proj img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.proj:hover img { transform: scale(1.08); }
.proj__ov {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  background: linear-gradient(to top, rgba(11,56,61,.9) 0%, rgba(11,56,61,.35) 45%, transparent 75%);
  opacity: 0;
  transition: opacity .45s var(--ease);
}
.proj:hover .proj__ov { opacity: 1; }
.proj__ov span {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-lt);
  transform: translateY(14px);
  transition: transform .45s var(--ease) .05s;
}
.proj__ov h3 {
  color: var(--white);
  font-size: 1.28rem;
  margin-top: 8px;
  transform: translateY(14px);
  transition: transform .45s var(--ease) .1s;
}
.proj:hover .proj__ov span, .proj:hover .proj__ov h3 { transform: translateY(0); }
.proj__ico {
  position: absolute;
  top: 20px; right: 20px;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--ink);
  transform: scale(0) rotate(-45deg);
  transition: transform .45s var(--ease);
}
.proj:hover .proj__ico { transform: scale(1) rotate(0); }
.proj__ico svg { width: 17px; }

/* ---------- 15. Testimonials ---------- */
.tst-wrap { position: relative; overflow: hidden; }
.tst-track { display: flex; transition: transform .6s var(--ease); }
.tst-slide { flex: 0 0 100%; padding-inline: 6px; }
.tst {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(30px, 4vw, 48px);
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
  box-shadow: var(--shadow);
}
.tst__quote { font-size: 2.4rem; color: var(--accent); font-family: var(--f-display); line-height: 1; }
.tst__stars { display: inline-flex; gap: 4px; margin: 16px 0 20px; color: var(--gold); }
.tst__stars svg { width: 17px; height: 17px; }
.tst p {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -.01em;
}
.tst__by { margin-top: 26px; display: flex; align-items: center; justify-content: center; gap: 13px; }
.tst__ava {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--sand);
  border: 1px solid var(--sand-2);
  display: grid; place-items: center;
  font-family: var(--f-display);
  color: var(--accent-dk);
  flex: none;
}
.tst__by b { display: block; color: var(--ink); line-height: 1.3; }
.tst__by span { font-size: .82rem; color: var(--body-lt); }
.tst-nav { display: flex; justify-content: center; gap: 12px; margin-top: 32px; }
.tst-btn {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  transition: all .3s var(--ease);
}
.tst-btn:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.tst-btn svg { width: 17px; }

/* ---------- 16. Blog ---------- */
.post {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.post:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.post__img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--sand-2); position: relative; }
.post__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.post:hover .post__img img { transform: scale(1.07); }
.post__date {
  position: absolute;
  left: 16px; bottom: 16px;
  padding: 7px 14px;
  border-radius: 100px;
  background: var(--cream);
  font-size: .74rem;
  font-weight: 700;
  color: var(--ink);
}
.post__body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post__cat {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-dk);
}
.post__body h3 { font-size: 1.16rem; transition: color .3s; }
.post:hover h3 { color: var(--accent-dk); }
.post__body p { font-size: .89rem; color: var(--body-lt); }
.post__body .link-arrow { margin-top: auto; padding-top: 10px; }

/* ---------- 17. CTA band ---------- */
.cta {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  border-radius: clamp(20px, 3vw, 30px);
  padding: clamp(40px, 6vw, 76px);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 40px;
  align-items: center;
}
.cta::before {
  content: "";
  position: absolute;
  right: -80px; top: -120px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,179,44,.22), transparent 68%);
}
.cta > * { position: relative; z-index: 2; }
.cta h2 { color: var(--white); }
.cta p { color: rgba(255,255,255,.72); margin-top: 16px; max-width: 520px; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- 18. Marquee ---------- */
.marquee {
  position: relative;
  overflow: hidden;
  background: var(--gold);
  color: var(--ink);
  padding-block: 16px;
}
.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 3px;
  background: var(--ink);
  opacity: .85;
  z-index: 2;
}
.marquee::before { top: 0; }
.marquee::after  { bottom: 0; }
.marquee__track {
  display: flex;
  gap: 46px;
  width: max-content;
  animation: slide 34s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 46px;
  font-family: var(--f-display);
  font-size: 1.28rem;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: -.01em;
}
.marquee__item::after { content: "✦"; font-size: .85rem; opacity: .65; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- 19. Forms ---------- */
.form { display: grid; gap: 16px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .82rem; font-weight: 700; color: var(--ink); letter-spacing: .01em; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--white);
  font-size: .93rem;
  transition: border-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 128px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(214,58,31,.15);
}
.field input::placeholder, .field textarea::placeholder { color: #B3A99D; }
.form__note { font-size: .8rem; color: var(--body-lt); }
.form__msg {
  display: none;
  padding: 13px 16px;
  border-radius: var(--r-sm);
  font-size: .88rem;
  font-weight: 600;
}
.form__msg.ok { display: block; background: #E7F6EC; color: #1B7A3E; border: 1px solid #BFE5CC; }
.form__msg.err { display: block; background: #FDECEC; color: #B3261E; border: 1px solid #F5C9C7; }

/* ---------- 20. Page hero (inner pages) ---------- */
.phero {
  position: relative;
  padding-block: clamp(80px, 12vw, 150px);
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  text-align: center;
}
.phero__bg { position: absolute; inset: 0; }
.phero__bg img { width: 100%; height: 100%; object-fit: cover; }
.phero__bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(11,56,61,.86), rgba(11,56,61,.94));
}
.phero__inner { position: relative; z-index: 2; }
.phero h1 { color: var(--white); }
.phero p { color: rgba(255,255,255,.72); max-width: 620px; margin: 18px auto 0; }
.crumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  font-size: .84rem;
  color: rgba(255,255,255,.6);
}
.crumbs a:hover { color: var(--accent-lt); }
.crumbs span { color: var(--accent-lt); }

/* ---------- 21. Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 4vw, 60px); align-items: start; }
.cinfo { display: grid; gap: 14px; }
.cinfo__item {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition: border-color .3s, transform .3s var(--ease);
}
.cinfo__item:hover { border-color: var(--accent); transform: translateX(4px); }
.cinfo__ico {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--sand);
  color: var(--accent-dk);
  flex: none;
}
.cinfo__ico svg { width: 20px; height: 20px; }
.cinfo__item b { display: block; color: var(--ink); margin-bottom: 3px; }
.cinfo__item a, .cinfo__item p { font-size: .93rem; color: var(--body); }
.cinfo__item a:hover { color: var(--accent-dk); }
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(26px, 3.4vw, 42px);
  box-shadow: var(--shadow);
}
.map {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--line);
  line-height: 0;
  box-shadow: var(--shadow);
}
.map iframe { width: 100%; height: 440px; border: 0; filter: grayscale(.25) contrast(1.05); }

/* ---------- 22. FAQ ---------- */
.faq { display: grid; gap: 12px; max-width: 860px; margin-inline: auto; }
.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.faq__item.is-open { border-color: var(--accent); box-shadow: var(--shadow); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--f-display);
  font-size: 1.08rem;
  color: var(--ink);
}
.faq__q i {
  position: relative;
  width: 20px; height: 20px;
  flex: none;
}
.faq__q i::before, .faq__q i::after {
  content: "";
  position: absolute;
  inset: 50% 0 auto 0;
  height: 2px;
  background: var(--accent-dk);
  border-radius: 2px;
  transition: transform .35s var(--ease);
}
.faq__q i::after { transform: rotate(90deg); }
.faq__item.is-open .faq__q i::after { transform: rotate(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a p { padding: 0 24px 22px; font-size: .93rem; color: var(--body); }

/* ---------- 23. Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.62); padding-top: clamp(56px, 7vw, 88px); }
.footer h4 {
  font-family: var(--f-body);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: clamp(28px, 3.6vw, 52px);
  padding-bottom: 52px;
}
.footer__about p { margin-top: 20px; font-size: .92rem; line-height: 1.75; }
.footer__list { display: grid; gap: 11px; }
.footer__list a { font-size: .92rem; transition: color .25s, padding-left .25s; }
.footer__list a:hover { color: var(--accent-lt); padding-left: 6px; }
.footer__contact li { display: flex; gap: 12px; margin-bottom: 16px; font-size: .92rem; }
.footer__contact svg { width: 17px; height: 17px; color: var(--accent); flex: none; margin-top: 4px; }
.footer__contact a:hover { color: var(--accent-lt); }
.socials { display: flex; gap: 10px; margin-top: 24px; }
.socials a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 11px;
  border: 1px solid var(--line-dark);
  transition: all .3s var(--ease);
}
.socials a:hover { background: var(--accent); border-color: var(--accent); color: var(--white); transform: translateY(-3px); }
.socials svg { width: 17px; height: 17px; }
.footer__bar {
  border-top: 1px solid var(--line-dark);
  padding-block: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  font-size: .85rem;
}
.footer__bar a:hover { color: var(--accent-lt); }
.footer__bar nav { display: flex; gap: 22px; }

/* ---------- 24. Floating actions ---------- */
.floats {
  position: fixed;
  right: 20px; bottom: 22px;
  z-index: 800;
  display: grid;
  gap: 12px;
}
.float {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 12px 28px -10px rgba(0,0,0,.45);
  transition: transform .3s var(--ease);
}
.float:hover { transform: scale(1.09); }
.float svg { width: 25px; height: 25px; }
.float--wa { background: var(--green); }
.float--call { background: var(--ink); }
.float--top {
  background: var(--gold);
  color: var(--ink);
  opacity: 0;
  visibility: hidden;
}
.float--top.is-on { opacity: 1; visibility: visible; }
.float--top svg { width: 20px; height: 20px; }

/* ---------- 25. Reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- 26. Responsive ---------- */
@media (max-width: 1100px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 980px) {
  :root { --nav-h: 74px; }
  .menu, .nav__cta .btn { display: none; }
  .burger { display: grid; }
  .topbar__left .topbar__item:nth-child(3) { display: none; }
  .about__grid, .contact-grid, .cta { grid-template-columns: 1fr; }
  .cta { text-align: left; }
  .trust__inner { grid-template-columns: 1fr 1fr; }
  .trust__item:nth-child(2) { border-right: 0; }
  .trust__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .proj-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .g-3, .g-4 { grid-template-columns: repeat(2, 1fr); }
  .about__badge { left: 10px; }
}
@media (max-width: 760px) {
  body { font-size: 15.8px; }
  .topbar__left { gap: 16px; }
  .topbar__item:not(:first-child) { display: none; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .form__row { grid-template-columns: 1fr; }
  .trust { margin-top: -30px; }
  .hero__dots { right: var(--gut); bottom: 30px; }
  .about__img-b { width: 46%; right: 0; }
  .footer__bar { flex-direction: column; text-align: center; align-items: center; }
  .footer__bar nav { justify-content: center; flex-wrap: wrap; }
}
@media (max-width: 540px) {
  .svc-grid, .proj-grid, .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
  .trust__inner { grid-template-columns: 1fr; }
  .trust__item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust__item:last-child { border-bottom: 0; }
  .steps { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .floats { right: 14px; bottom: 14px; }
  .float { width: 48px; height: 48px; }
}

/* ---------- 27. Service plate (used where we have no photo yet) ---------- */
.srv-row__media--plate {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 28% 18%, rgba(244,179,44,.20), transparent 62%),
    linear-gradient(145deg, var(--ink), var(--ink-3));
}
.srv-row__media--plate .srv-row__tag {
  background: rgba(255, 255, 255, .14);
  color: var(--gold);
  backdrop-filter: blur(4px);
}
.srv-row__plate { text-align: center; padding: 24px; }
.srv-row__plate svg {
  width: 76px; height: 76px;
  margin-inline: auto;
  color: var(--gold);
}
.srv-row__plate b {
  display: block;
  margin-top: 20px;
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
}
.srv-row__plate span {
  display: block;
  margin-top: 8px;
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}
