/* ==========================================================================
   Soriano's Landscaping — light theme, logo-matched.
   Palette: lime green / black / white. Pulled straight from the brand mark.
   ========================================================================== */

:root {
  --lime: #A8CE3A;
  --lime-deep: #86A82D;
  --lime-bright: #C4E265;
  --lime-soft: #EAF3C4;

  --black: #0a0a0a;
  --ink: #111111;
  --ink-2: #2a2a2a;
  --ink-3: #4a4a4a;
  --muted: #6b6b6b;
  --muted-2: #8a8a8a;

  --white: #ffffff;
  --cream: #fafaf5;
  --surface: #f4f4ee;
  --surface-2: #ebebe3;

  --line: rgba(10, 10, 10, 0.08);
  --line-strong: rgba(10, 10, 10, 0.14);

  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px -2px rgba(10, 10, 10, 0.08);
  --shadow-md: 0 10px 30px -12px rgba(10, 10, 10, 0.15);
  --shadow-lg: 0 40px 80px -30px rgba(10, 10, 10, 0.25);

  --max: 1240px;

  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-serif: "Fraunces", Georgia, serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

/* Selection highlight */
::selection { background: var(--lime); color: var(--black); }

/* ---------- Reusable ---------- */

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--lime-deep);
  font-weight: 700;
  padding: 6px 12px;
  border: 1px solid var(--lime);
  border-radius: 999px;
  background: var(--lime-soft);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}

.section-head h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 16px 0 18px;
  color: var(--black);
}

.section-head h2 em {
  font-style: italic;
  color: var(--lime-deep);
  font-weight: 400;
}

.section-head p {
  color: var(--ink-3);
  font-size: 17px;
  margin: 0;
}

.section-head--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  text-align: left;
  max-width: none;
  margin-bottom: 56px;
}
.section-head--split p { max-width: 380px; flex-shrink: 0; }
@media (max-width: 800px) {
  .section-head--split { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; }

.btn--primary {
  background: var(--lime);
  color: var(--black);
  box-shadow: 0 12px 30px -10px rgba(168, 206, 58, 0.7);
}
.btn--primary:hover {
  transform: translateY(-1px);
  background: var(--lime-bright);
  box-shadow: 0 16px 38px -10px rgba(168, 206, 58, 0.8);
}

.btn--ghost {
  background: var(--white);
  color: var(--black);
  border-color: var(--line-strong);
}
.btn--ghost:hover {
  border-color: var(--black);
  background: var(--cream);
}

.btn--dark {
  background: var(--black);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--ink-2);
  transform: translateY(-1px);
}

/* ---------- Logo ---------- */

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo__mark {
  width: 48px; height: 48px;
  background: var(--lime);
  border-radius: 12px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 6px -2px rgba(0,0,0,0.15);
}

.brand-logo__mark svg {
  width: 34px;
  height: 34px;
  color: var(--black);
}

.brand-logo__img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 2px 6px -2px rgba(0,0,0,0.15);
}

.brand-logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-logo__name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--black);
}

.brand-logo__sub {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 600;
}

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 28px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid var(--line);
}

.nav__brand { margin-right: auto; }

.nav__links {
  display: flex;
  gap: 28px;
}
.nav__links a {
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
  transition: color .15s;
}
.nav__links a:hover { color: var(--lime-deep); }
[aria-current="page"] { color: var(--lime-deep) !important; }

.lang-toggle {
  display: inline-flex;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  font-size: 12px;
  font-weight: 700;
}
.lang-toggle button {
  background: transparent;
  border: 0;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  color: var(--muted);
  font-family: inherit;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all .2s;
}
.lang-toggle button.is-active {
  background: var(--black);
  color: var(--white);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  background: var(--black);
  color: var(--white);
  transition: all .2s;
}
.nav__cta:hover {
  background: var(--lime);
  color: var(--black);
}
.nav__cta .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime-bright);
  box-shadow: 0 0 0 3px rgba(196, 226, 101, 0.35);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(196, 226, 101, 0.35); }
  50% { box-shadow: 0 0 0 6px rgba(196, 226, 101, 0); }
}

/* Hamburger — hidden on desktop */
.nav__burger { display: none; }

@media (max-width: 960px) {
  .nav { gap: 12px; }
  .brand-logo__text { display: none; }

  .nav__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0 11px;
    background: var(--black);
    border: 0;
    border-radius: 12px;
    cursor: pointer;
    flex-shrink: 0;
  }
  .nav__burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease;
  }
  .nav.nav--open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.nav--open .nav__burger span:nth-child(2) { opacity: 0; }
  .nav.nav--open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Slide-down panel */
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 6px 0;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
    z-index: 49;
  }
  .nav.nav--open .nav__links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav__links a {
    padding: 16px 28px;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
  }
  .nav__links a:last-child { border-bottom: 0; }

  /* Tighten the phone CTA so it fits next to the burger */
  .nav__cta {
    padding: 9px 14px;
    font-size: 13px;
  }
}

@media (max-width: 420px) {
  .nav { padding: 12px 16px; }
  .nav__cta { font-size: 0; gap: 0; padding: 11px; }
  .nav__cta::after { content: "Call"; font-size: 13px; }
  .nav__cta .dot { margin: 0; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 28px 140px;
  overflow: hidden;
  background: var(--cream);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.4) 60%, rgba(255,255,255,0.95) 100%),
    linear-gradient(90deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.4) 55%, rgba(255,255,255,0.1) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  margin-bottom: 28px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime);
  animation: pulse-lime 2s ease-in-out infinite;
}
@keyframes pulse-lime {
  0%, 100% { box-shadow: 0 0 0 0 rgba(168, 206, 58, 0.6); }
  50% { box-shadow: 0 0 0 10px rgba(168, 206, 58, 0); }
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(44px, 7.5vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  color: var(--black);
}
.hero__title em {
  font-style: italic;
  color: var(--lime-deep);
  font-weight: 400;
}

.hero__lede {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ink-2);
  max-width: 640px;
  margin: 0 0 36px;
}
.hero__lede strong {
  color: var(--black);
  font-weight: 700;
  background: var(--lime-soft);
  padding: 1px 6px;
  border-radius: 4px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.proof { display: flex; align-items: center; gap: 12px; }
.proof__stars {
  display: inline-flex;
  gap: 2px;
  color: #f5b700;
}
.proof__stars svg { width: 16px; height: 16px; }
.proof__text { font-size: 14px; color: var(--ink-3); }
.proof__text strong { color: var(--black); font-weight: 700; }

.proof--split {
  display: flex;
  gap: 28px;
  padding-left: 28px;
  border-left: 1px solid var(--line-strong);
}
.proof--split > div { display: flex; flex-direction: column; line-height: 1.2; }
.proof--split strong {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--black);
  font-weight: 500;
}
.proof--split span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 2px;
  font-weight: 600;
}

.hero__ticker {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  overflow: hidden;
  z-index: 2;
  background: var(--black);
  padding: 14px 0;
}
.ticker__track {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  gap: 16px;
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--white);
}
.ticker__track .dot-sep {
  color: var(--lime);
  font-style: normal;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 600px) {
  .proof--split {
    padding-left: 0;
    border-left: 0;
    padding-top: 20px;
    border-top: 1px solid var(--line-strong);
    width: 100%;
  }
}

/* ---------- Pitch strip ---------- */

.pitch {
  padding: 90px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.pitch__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.pitch__item {
  padding: 0 28px;
  border-right: 1px solid var(--line);
}
.pitch__item:last-child { border-right: 0; }

.pitch__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--lime-deep);
  letter-spacing: 0.12em;
  font-weight: 600;
}

.pitch__item h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin: 10px 0 10px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--black);
}
.pitch__item p {
  color: var(--ink-3);
  font-size: 14.5px;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .pitch__grid { grid-template-columns: repeat(2, 1fr); row-gap: 36px; }
  .pitch__item:nth-child(2) { border-right: 0; }
  .pitch__item { padding: 0 20px; }
}
@media (max-width: 560px) {
  .pitch__grid { grid-template-columns: 1fr; }
  .pitch__item { border-right: 0; padding: 0; }
}

/* ---------- Services ---------- */

.services {
  padding: 130px 0 110px;
  background: var(--cream);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.svc {
  grid-column: span 2;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  box-shadow: var(--shadow-sm);
}
.svc:hover { border-color: var(--lime); transform: translateY(-3px); box-shadow: var(--shadow-md); }

.svc--tall { grid-column: span 3; grid-row: span 2; }
.svc--wide { grid-column: span 6; flex-direction: row; align-items: stretch; }

.svc__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface);
}
.svc--tall .svc__media { aspect-ratio: 4 / 5; }
.svc--wide .svc__media { aspect-ratio: unset; flex: 0 0 55%; }

.svc__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.svc:hover .svc__media img { transform: scale(1.04); }

.svc__body {
  padding: 26px 28px 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}
.svc--wide .svc__body { padding: 40px; }

.svc__body h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--black);
}
.svc--tall .svc__body h3 { font-size: 28px; }
.svc--wide .svc__body h3 { font-size: 32px; }

.svc__body p {
  color: var(--ink-3);
  font-size: 15px;
  margin: 0;
}

.svc__list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.svc__list li {
  font-size: 13.5px;
  color: var(--ink-2);
  padding-left: 20px;
  position: relative;
}
.svc__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 10px; height: 2px;
  background: var(--lime);
  border-radius: 2px;
}

.svc-more {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.svc-more span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 1000px) {
  .svc-grid { grid-template-columns: repeat(4, 1fr); }
  .svc { grid-column: span 2; }
  .svc--tall { grid-column: span 2; grid-row: span 1; }
  .svc--wide { grid-column: span 4; flex-direction: column; }
  .svc--wide .svc__media { flex: unset; aspect-ratio: 16 / 9; }
}
@media (max-width: 640px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc, .svc--tall, .svc--wide { grid-column: span 1; }
}

/* ---------- Work / Gallery ---------- */

.work {
  padding: 120px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}

.gallery__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}

.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.gallery__item:hover img { transform: scale(1.05); }

.gallery__item--xl { grid-column: span 2; grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

@media (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery__item--xl { grid-column: span 2; grid-row: span 2; }
  .gallery__item--wide { grid-column: span 2; }
}
@media (max-width: 500px) {
  .gallery { grid-auto-rows: 160px; }
}

/* ---------- Reviews ---------- */

.reviews {
  padding: 130px 0;
  background: var(--cream);
}

.reviews__grid {
  columns: 3 340px;
  column-gap: 20px;
}

.review {
  break-inside: avoid;
  margin-bottom: 20px;
  padding: 26px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color .2s, transform .2s, box-shadow .2s;
  box-shadow: var(--shadow-sm);
}
.review:hover { border-color: var(--lime); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.review--highlight {
  background: linear-gradient(165deg, var(--lime-soft), var(--white));
  border-color: var(--lime);
}

.review__stars {
  color: #f5b700;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 12px;
}

.review p {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.5;
  color: var(--black);
  margin: 0 0 18px;
}
.review--highlight p { font-size: 20px; }

.review footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.review footer strong {
  color: var(--black);
  font-family: var(--font-sans);
  font-weight: 700;
}
.review footer span { color: var(--muted); }

/* ---------- Service area ---------- */

.area {
  padding: 120px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.area__chips {
  list-style: none;
  padding: 0;
  margin: 0 auto 36px;
  max-width: 900px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.area__chips li {
  padding: 12px 22px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 14.5px;
  color: var(--black);
  background: var(--white);
  font-family: var(--font-serif);
  letter-spacing: -0.01em;
  transition: all .2s;
}
.area__chips li:hover {
  border-color: var(--lime);
  background: var(--lime-soft);
  color: var(--lime-deep);
}

.area__note {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  max-width: 540px;
  margin: 0 auto;
}

/* ---------- Contact ---------- */

.contact {
  padding: 130px 0;
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 20%, rgba(168, 206, 58, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 95% 95%, rgba(196, 226, 101, 0.12), transparent 60%);
  pointer-events: none;
}

.contact .tag {
  background: rgba(168, 206, 58, 0.15);
  color: var(--lime-bright);
  border-color: var(--lime-deep);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact__copy h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 16px 0 20px;
  color: var(--white);
}
.contact__copy h2 em {
  font-style: italic;
  color: var(--lime-bright);
  font-weight: 400;
}
.contact__copy p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  max-width: 520px;
  margin: 0 0 32px;
}

.contact__actions { display: flex; gap: 12px; flex-wrap: wrap; }

.contact__card {
  padding: 36px 36px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
}

.contact__card h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  letter-spacing: -0.01em;
  color: var(--white);
}

.hours {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.hours li {
  display: flex;
  justify-content: space-between;
  padding: 9px 0;
  font-size: 14.5px;
  border-bottom: 1px dashed rgba(255,255,255,0.08);
}
.hours li:last-child { border-bottom: 0; }
.hours span:first-child { color: rgba(255,255,255,0.6); }
.hours span:last-child { color: var(--white); font-weight: 500; }

.contact__meta {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.contact__meta > div { flex: 1; display: flex; flex-direction: column; line-height: 1.2; }
.contact__meta span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 4px;
  font-weight: 600;
}
.contact__meta strong {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--white);
  font-weight: 500;
}

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Footer ---------- */

.footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer__brand .brand-logo { margin-bottom: 18px; }
.footer__brand .brand-logo__name { color: var(--white); }
.footer__brand .brand-logo__sub { color: rgba(255,255,255,0.55); }
.footer__brand p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  max-width: 360px;
  line-height: 1.6;
  margin: 0;
}

.footer__col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--lime);
  margin: 0 0 16px;
  font-weight: 700;
}
.footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a, .footer__col li {
  color: rgba(255,255,255,0.7);
  font-size: 14.5px;
  transition: color .15s;
}
.footer__col a:hover { color: var(--lime-bright); }

.footer__base {
  margin-top: 56px;
  padding: 22px 28px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__brand { grid-column: span 2; }
  .footer__base { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ==========================================================================
   SERVICES PAGE
   ========================================================================== */

.page-hero {
  position: relative;
  padding: 160px 28px 120px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.page-hero__media { position: absolute; inset: 0; z-index: 0; }
.page-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 55%;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.5) 60%, rgba(250,250,245,1) 100%),
    linear-gradient(90deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.4) 80%);
}
.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.breadcrumb {
  display: inline-flex;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  font-weight: 600;
}
.breadcrumb a { color: var(--lime-deep); }
.breadcrumb a:hover { text-decoration: underline; }

.page-hero h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(40px, 6.2vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  color: var(--black);
}
.page-hero h1 em {
  font-style: italic;
  color: var(--lime-deep);
  font-weight: 400;
}
.page-hero p {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-2);
  max-width: 640px;
  margin: 0 0 32px;
}
.page-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Quick index */
.svc-index {
  padding: 40px 0 20px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.svc-index .tag { margin-bottom: 20px; }
.svc-index__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.svc-index__grid a {
  display: block;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 14px;
  color: var(--ink-2);
  text-align: center;
  transition: all .2s;
  font-family: var(--font-serif);
  letter-spacing: -0.01em;
  background: var(--white);
}
.svc-index__grid a:hover {
  border-color: var(--lime);
  color: var(--lime-deep);
  background: var(--lime-soft);
  transform: translateY(-1px);
}
@media (max-width: 900px) {
  .svc-index__grid { grid-template-columns: repeat(2, 1fr); }
}

/* Detailed rows */
.svc-detail { padding: 100px 0 80px; background: var(--cream); }

.svc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 90px;
}
.svc-row:last-child { border-bottom: 0; }
.svc-row--reverse .svc-row__media { order: 2; }

.svc-row__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.svc-row__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.svc-row:hover .svc-row__media img { transform: scale(1.03); }

.svc-row__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--lime-deep);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.svc-row__body h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
  color: var(--black);
}
.svc-row__body > p {
  color: var(--ink-3);
  font-size: 16px;
  margin: 0 0 20px;
  max-width: 540px;
}

.svc-row__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.svc-row__list li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.5;
}
.svc-row__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 2px;
  background: var(--lime);
  border-radius: 2px;
}

.svc-row__meta {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--white);
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}
.svc-row__meta span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 600;
}
.svc-row__meta strong {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--black);
}
.svc-row__meta em {
  font-style: normal;
  font-size: 12.5px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .svc-row { grid-template-columns: 1fr; gap: 28px; padding: 44px 0; }
  .svc-row--reverse .svc-row__media { order: 0; }
  .svc-row__list { grid-template-columns: 1fr; }
}

/* Big CTA */
.big-cta {
  padding: 130px 0 140px;
  background: var(--black);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.big-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 30%, rgba(168, 206, 58, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 85% 85%, rgba(196, 226, 101, 0.12), transparent 60%);
}

.big-cta__inner { max-width: 780px; margin: 0 auto; position: relative; z-index: 1; }

.big-cta .tag {
  background: rgba(168, 206, 58, 0.15);
  color: var(--lime-bright);
  border-color: var(--lime-deep);
}

.big-cta h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin: 18px 0 22px;
  color: var(--white);
}
.big-cta h2 em {
  font-style: italic;
  color: var(--lime-bright);
  font-weight: 400;
}
.big-cta p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  max-width: 580px;
  margin: 0 auto 40px;
}

.big-cta__actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn--xl { padding: 18px 30px; font-size: 16px; }

.big-cta__trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 680px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  gap: 20px;
}
.big-cta__trust > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.25;
}
.big-cta__trust strong {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
}
.big-cta__trust span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  font-weight: 600;
}

@media (max-width: 720px) {
  .big-cta__trust { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
