@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #D4AF37;
  --gold-soft: rgba(212, 175, 55, 0.25);
  --bg: #ffffe4;
  --nav-bg: #0c1020;
  /* --ink: #0f0f10; */
  --ink: #334a60;
  /* --ink-dim: #4b4f56; */
  --ink-dim: #798f9c;
  --ink-accent: #496b84;
  --card: #f7f7f9;
  --ring: rgba(212, 175, 55, 0.35);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

  /* subscribe greens */
  --mg-deep: #0a312d;
  --mg-mid: #113d37;
  --mg-mint: #5b9585;

  --logo-img: url("./assets/logo.png");

}

/* Dark theme overrides – driven only by CSS variables */
body[data-theme="dark"] {
  --bg: #0c1020;
  --ink: #e3edf8;
  --ink-dim: #9aa7b8;
  --ink-accent: #334A60;
  --nav-bg: #ffffe4;
  --card: #0f1118;
  --ring: rgba(212, 175, 55, 0.55);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.85);

  /* subscribe greens tuned for dark */
  --mg-deep: #041716;
  --mg-mid: #0a2623;
  --mg-mint: #7bc3b0;

  --logo-img: url("./assets/logo-dark.png");
}


/* base */
* {
  box-sizing: border-box
}

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--ink);
  margin: 0;
  line-height: 1.6
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: center
}

.cards.grid-3 {
  --gap: clamp(18px, 2vw, 28px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* centers the last row */
  gap: var(--gap);
}

/* 3 equal columns */
.cards.grid-3>.card {
  flex: 0 1 calc((100% - 2*var(--gap)) / 3);
  max-width: calc((100% - 2*var(--gap)) / 3);
}

/* 2 columns on tablets */
@media (max-width: 960px) {
  .cards.grid-3>.card {
    flex-basis: calc((100% - var(--gap)) / 2);
    max-width: calc((100% - var(--gap)) / 2);
  }
}

/* 1 column on phones */
@media (max-width: 600px) {
  .cards.grid-3>.card {
    flex-basis: 100%;
    max-width: 100%;
  }
}

/* ===== Background FX ===== */
.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none
}

.site-header,
.hero,
.section,
.footer {
  position: relative;
  z-index: 1
}

.section {
  background: transparent
}

.section.alt {
  background: transparent
}

/* blobs */
.fx-blob {
  filter: blur(28px);
  opacity: .22;
  border-radius: 50%
}

.fx-blob-1 {
  background: radial-gradient(35% 35% at 20% 25%, var(--gold) 0%, transparent 60%);
  animation: float1 24s ease-in-out infinite
}

.fx-blob-2 {
  background: radial-gradient(35% 35% at 80% 70%, #888 0%, transparent 60%);
  animation: float2 28s ease-in-out infinite
}

.fx-blob-3 {
  background: radial-gradient(35% 35% at 50% 50%, #9bb3ff 0%, transparent 60%);
  animation: float3 32s ease-in-out infinite
}

@keyframes float1 {

  0%,
  100% {
    transform: translate(-6%, -4%)
  }

  50% {
    transform: translate(6%, 4%)
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translate(8%, 6%)
  }

  50% {
    transform: translate(-4%, -2%)
  }
}

@keyframes float3 {

  0%,
  100% {
    transform: translate(-4%, 8%)
  }

  50% {
    transform: translate(6%, -6%)
  }
}

/* glow + sheen + dots */
.fx-glow {
  background:
    radial-gradient(35vmax 35vmax at 20% 25%, rgba(212, 175, 55, .28), transparent 60%),
    radial-gradient(45vmax 45vmax at 80% 70%, rgba(155, 179, 255, .22), transparent 65%),
    radial-gradient(60vmax 60vmax at 50% 50%, rgba(0, 0, 0, .05), transparent 70%);
  animation: glow-drift 30s ease-in-out infinite alternate
}

@keyframes glow-drift {
  0% {
    transform: translate(-1.5%, -1%)
  }

  100% {
    transform: translate(1.5%, 1%)
  }
}

.fx-gold-sheen {
  inset: -10%;
  background: linear-gradient(115deg, rgba(212, 175, 55, 0) 0%, rgba(212, 175, 55, .18) 48%, rgba(212, 175, 55, .38) 50%, rgba(212, 175, 55, .18) 52%, rgba(212, 175, 55, 0) 100%);
  background-size: 300% 100%;
  animation: sheen 22s linear infinite;
  opacity: .28;
  mix-blend-mode: multiply
}

@keyframes sheen {
  0% {
    background-position: 0 0
  }

  100% {
    background-position: 300% 0
  }
}

.fx-dots {
  background-image: radial-gradient(circle, rgba(212, 175, 55, .26) 1px, transparent 1.6px);
  background-size: 28px 28px;
  animation: dots-drift 40s linear infinite;
  opacity: .24
}

@keyframes dots-drift {
  0% {
    background-position: 0 0
  }

  100% {
    background-position: 560px 280px
  }
}

/* circuits + grid + rings */
.fx-circuits {
  opacity: .45
}

.trace {
  stroke-dasharray: 6 10;
  animation: dash 22s linear infinite
}

@keyframes dash {
  to {
    stroke-dashoffset: -800
  }
}

.fx-grid {
  opacity: .35
}

.fx-grid .grid-v line,
.fx-grid .grid-h line {
  stroke-dasharray: 6 10;
  animation: grid-run 18s linear infinite
}

.fx-grid .grid-h line {
  animation-duration: 26s
}

@keyframes grid-run {
  to {
    stroke-dashoffset: -800
  }
}

.fx-rings {
  inset: -20vmax;
  background:
    radial-gradient(closest-side, rgba(212, 175, 55, .22), transparent 55%) 20% 25%/60vmax 60vmax no-repeat,
    radial-gradient(closest-side, rgba(212, 175, 55, .16), transparent 55%) 75% 70%/80vmax 80vmax no-repeat;
  filter: blur(18px);
  animation: rings-spin 20s linear infinite;
  opacity: .22
}

@keyframes rings-spin {
  to {
    transform: rotate(360deg)
  }
}

/* reduced motion */
@media (prefers-reduced-motion:reduce) {

  .fx-blob-1,
  .fx-blob-2,
  .fx-blob-3,
  .fx-glow,
  .fx-gold-sheen,
  .fx-dots,
  .fx-grid .grid-v line,
  .fx-grid .grid-h line,
  .fx-rings,
  .trace {
    animation: none !important
  }

  .fx-gold-sheen {
    opacity: .12
  }
}

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0);
  backdrop-filter: blur(8px);
  /*border-bottom: 1px solid rgba(15, 15, 16, .08);*/
  z-index: 10
}

.site-header .container {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 0 0
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none
}

.brand-logo {
  height: 96px;
  width: auto;
  display: block
}

.nav-logo-img {
  content: var(--logo-img);
  background-image: var(--logo-img);
}



.nav {
  justify-self: end;
  display: flex;
  gap: 18px;
  align-items: center
}

.nav-link {
  color: var(--ink-dim);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 10px
}

.nav-link:hover {
  color: var(--ink);
  background: rgba(15, 15, 16, .05)
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(15, 15, 16, .12);
  background: var(--bg);
  border-radius: 10px;
  padding: 8px 12px
}

/* active */
.nav-link.active,
.nav-link[aria-current="page"] {
  color: var(--ink);
  background: rgba(212, 175, 55, .16);
  border: 1px solid var(--gold)
}

/* ===== Navbar: Products dropdown ===== */
.nav .has-menu {
  position: relative;
}

.nav .has-menu>.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav .menu {
  position: absolute;
  right: 0;
  top: 100%;
  min-width: 260px;
  display: grid;
  gap: 4px;
  background: var(--bg);
  border: 1px solid rgba(15, 15, 16, .12);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
  z-index: 20;
}

.nav .menu a {
  white-space: nowrap;
}

.nav .has-menu:is(:hover, :focus-within)>.menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Mobile dropdown behavior: show menu inline when toggled */
@media (max-width:860px) {
  .nav .has-menu {
    position: static;
  }

  .nav .menu {
    position: static;
    min-width: unset;
    box-shadow: none;
    border: 1px dashed rgba(15, 15, 16, .12);
    opacity: 1;
    transform: none;
    pointer-events: auto;
    display: none;
    border-radius: 10px;
    padding: 8px;
  }

  .nav .has-menu[data-open="true"]>.menu {
    display: grid;
  }
}

.nav .menu .nav-link {
  background: color-mix(in srgb, var(--nav-bg), transparent 96%);
}

/* optional: normal hover in submenu */
.nav .menu .nav-link:hover {
  background: rgba(0, 0, 0, .04);
}

/* ===== Hero ===== */
.hero {
  padding: clamp(8px, 9vw, 20px) 0 clamp(8px, 6vw, 20px)
}

.hero h1 {
  font-size: clamp(28px, 4.2vw, 40px);
  line-height: 1.15;
  /* margin: 0 0 12px */
  margin: 0;
}

.hero p {
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--ink-dim)
}

.hero .cta-row {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap
}

.hero-media {
  border-radius: 18px;
  overflow: hidden;
}

/* Gold accent sweep under the tagline */
.hero .tagline {
  position: relative;
  display: inline-block;
  /* keeps the underline tight to text width */
  padding-top: clamp(20px, 2vw, 40px);
  /* background: linear-gradient(90deg, var(--ink) 10%, var(--gold) 40%, var(--ink-dim) 60%);
  background-size: 200% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldMove 6s linear infinite; */
  color: var(--ink-dim);
  font-weight: 500;

}

@keyframes gold-scan {
  0% {
    background-position: 0% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

/* Media wrap: float, tilt and sheen */
.media-wrap {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  transform-style: preserve-3d;
  transform: scale(1.02);
  transition: transform .18s ease;
  /* animation: floatY 6s ease-in-out infinite; */
  box-shadow:
    0 12px 40px rgba(0, 0, 0, .35),
    0 0 0 1px var(--gold-soft);
}

.media-wrap img {
  display: block;
  width: 100%;
  height: auto;

}

/* light sweep overlay */
.media-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  /* stays inside the card */
  pointer-events: none;

  /* narrow highlight band */
  background: linear-gradient(120deg,
      transparent 46%,
      rgba(255, 255, 255, .25) 50%,
      transparent 54%);

  /* make the gradient wider than the box, but don't move the element */
  background-size: 220% 100%;
  background-repeat: no-repeat;

  /* animation: sheen-bg 4s linear infinite 0.3s; */
  mix-blend-mode: screen;
  /* optional, same look */
  will-change: background-position;
}

@keyframes sheen-bg {
  0% {
    background-position: -110% 0;
  }

  100% {
    background-position: 110% 0;
  }
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0) scale(1.);
  }

  50% {
    transform: translateY(-8px) scale(1.05);
  }
}

/* ===== Sections / Cards ===== */
.section {
  padding: clamp(12px, 8vw, 32px) 0
}

.section-head h2 {
  font-size: clamp(22px, 3vw, 34px);
  margin: 0 0 8px
}

.section-head p {
  color: var(--ink-dim);
  margin: 0
}

.lead-block {
  margin-top: 22px;
  padding: 18px 20px;
  background: linear-gradient(180deg, #fff, #fafafa);
  border: 1px solid rgba(15, 15, 16, .06);
  border-radius: 16px;
  box-shadow: var(--shadow)
}

.cards .card {
  background: var(--bg);
  border: 1px solid rgba(15, 15, 16, .06);
  border-radius: 16px;
  padding: 18px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  box-shadow: var(--shadow);
  border-color: var(--ring);

}

.cards .card:hover {
  transform: translateY(-4px);
  border-color: var(--ring);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .08)
}

.cards .card h3 {
  margin: 0 0 8px;
  font-size: 18px
}

.cards .card p {
  margin: 0;
  color: var(--ink-dim)
}

.feature-list {
  display: grid;
  gap: 12px
}

.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px dashed var(--gold-soft);
  border-radius: 14px;
  background: #fff
}

.feature .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, .18)
}

.small-icon-wrap {
  display: flex;
  flex-direction: row;
}

.small-icon {
  width: 24px;
  height: 24px;
  padding-right: 8px;
  filter: invert(75%) sepia(72%) saturate(690%) hue-rotate(14deg) brightness(92%) contrast(90%);
}

/* ===== Subscribe (metallic green) ===== */
#subscribe {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(19, 75, 67, 0.28), rgba(14, 63, 58, 0.28)),
    radial-gradient(60vmax 60vmax at 85% 20%, rgba(39, 72, 62, 0.18), transparent 60%);
  border: 1px solid rgba(18, 71, 64, 0.28);
  box-shadow: 0 12px 40px rgba(10, 52, 48, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px) saturate(1.05);
  -webkit-backdrop-filter: blur(6px) saturate(1.05);
  border-radius: 18px 18px 0 0;
  overflow: hidden
}

#subscribe::after {
  content: "";
  position: absolute;
  inset: -20% -60%;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0) 45%, rgba(212, 175, 55, 0.20) 50%, rgba(255, 255, 255, 0) 55%);
  transform: rotate(6deg);
  animation: sub-sheen 18s linear infinite;
  pointer-events: none;
  z-index: -1
}

@keyframes sub-sheen {
  0% {
    transform: translateX(-30%) rotate(6deg)
  }

  100% {
    transform: translateX(30%) rotate(6deg)
  }
}

#subscribe h2 {
  color: #0f0f10
}

#subscribe .copy p {
  color: rgba(15, 15, 16, 0.85)
}

/* centered stack with inline row form */
#subscribe .subscribe-wrap {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 0;
}

#subscribe h2 {
  margin: 0;
  color: var(--ink);
}

#subscribe p {
  color: var(--ink-dim);
  margin: 0
}

.subscribe-form.inline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 500px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(28, 93, 84, 0.25);
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 8px 24px rgba(14, 63, 58, 0.12)
}

.subscribe-form.inline input {
  flex: 1 1 280px;
  border-radius: 10px;
  border: 1px solid rgba(28, 93, 84, 0.35);
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 14px;
  text-align: left
}

.subscribe-form.inline input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(28, 93, 84, 0.18), 0 0 0 8px rgba(212, 175, 55, 0.18);
  outline: 0
}

.subscribe-form.inline button {
  flex: 0 0 auto;
  padding-inline: 22px
}

.subscribe-form .form-note {
  margin: 0;
  width: 100%;
  font-size: 14px;
  color: var(--ink-dim)
}

.btn-emerald {
  background: linear-gradient(135deg, var(--mg-mid), var(--mg-deep));
  color: #fff;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 10px 24px rgba(28, 93, 84, 0.35)
}

.btn-emerald:hover {
  filter: brightness(1.02);
  transform: translateY(-1px)
}

/* ===== Satisfaction (card + KPIs + timeline) ===== */
#satisfaction .section-head p {
  color: var(--ink-dim)
}

.guarantee-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(12px, 2vw, 16px);
  align-items: stretch;
  margin-top: 18px;

}

/* split card image | text */
.guarantee-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 12px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg);
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.guarantee-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: conic-gradient(from 180deg, rgba(212, 175, 55, .0), rgba(212, 175, 55, .35), rgba(244, 230, 176, .6), rgba(212, 175, 55, .35), rgba(212, 175, 55, .0));
  filter: blur(18px);
  z-index: -1;
  animation: spin 10s linear infinite
}

@keyframes spin {
  to {
    transform: rotate(360deg)
  }
}

.gc-media {
  position: relative;
  margin: 0;
  /* add */
  height: 260px;
  align-self: stretch;
  /* add */
  padding-right: 16px;
}

.gc-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.gc-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(212, 175, 55, 0.10), rgba(212, 175, 55, 0.00) 35%, rgba(0, 0, 0, 0.12) 100%);
  mix-blend-mode: soft-light;
  pointer-events: none
}

.gc-body {
  padding: clamp(16px, 2.6vw, 28px);
  display: grid;
  align-content: center
}

.checks {
  list-style: none;
  margin: 24px 0 24px;
  padding: 0;
  display: grid;
  gap: 14px;
  color: var(--ink-dim);
}

.checks li {
  display: flex;
  align-items: center;
  gap: 10px
}

.checks li span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #F4E6B0, #D4AF37 60%, #A38323);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18)
}

.guarantee-card:hover {
  transform: translateY(-2px);
  border-color: var(--ring);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease
}

/* KPIs */
.kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 16px)
}

.kpi {
  background: var(--bg);
  border: 1px solid rgba(15, 15, 16, 0.08);
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-color: var(--ring);
}

.kpi .num {
  font-weight: 700;
  font-size: clamp(22px, 3.2vw, 34px);
  line-height: 1;
  background: linear-gradient(135deg, var(--gold), #f4e6b0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent
}

.kpi .label {
  color: var(--ink-dim);
  margin-top: 8px
}

/* process timeline */
.process {
  margin-top: clamp(22px, 3vw, 32px);
  border-radius: 18px;
  padding: clamp(16px, 2.4vw, 22px);
  background: rgba(212, 175, 55, 0.06);
  border: 1px dashed rgba(212, 175, 55, 0.28)
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px
}

.process .step {
  background: var(--bg);
  border: 1px solid rgba(15, 15, 16, 0.06);
  border-radius: 14px;
  padding: 14px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  border-color: var(--ring);
}

.process .step:hover {
  transform: translateY(-3px);
  border-color: var(--ring);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .08)
}

.process .step h3 {
  margin: 0 0 6px;
  font-size: 16px
}

.process .step p {
  margin: 0;
  color: var(--ink-dim)
}

.process .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18);
  margin-bottom: 10px
}

/* ===== Footer ===== */
.footer {
  background: #111214;
  color: #e9e9eb;
  padding: 36px 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: start
}

.footer a {
  color: #cfcfd6;
  text-decoration: none
}

.footer a:hover {
  color: #fff
}

.f-nav {
  display: grid;
  gap: 8px;
  justify-items: start
}

.f-copy {
  grid-column: 1 / -1;
  margin-top: 12px;
  color: #a8a8b0;
  font-size: 14px
}

.footer .brand-logo {
  height: 128px !important
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #f4e6b0);
  color: var(--ink-accent);
  box-shadow: 0 8px 24px rgba(212, 175, 55, .35)
}

.btn-primary:hover {
  filter: brightness(.98);
  transform: translateY(-1px)
}

.btn-ghost {
  background: var(--bg);
  border-color: var(--gold);
  /*rgba(15, 15, 16, .12);*/
  color: var(--ink-dim)
}

.btn-ghost:hover {
  border-color: var(--ring)
}

/* ===== Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 1s ease, transform 1s ease
}

.reveal.is-visible {
  opacity: 1;
  transform: none
}

/* ===== A11y ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0
}

/* ===== Responsive ===== */
@media (max-width:1024px) {
  .grid-2 {
    grid-template-columns: 1fr
  }

  .hero {
    padding-top: 108px
  }
}

@media (max-width:860px) {
  .nav-toggle {
    display: inline-block
  }

  .nav {
    position: fixed;
    top: 64px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 8px;
    background: var(--bg);
    border: 1px solid rgba(15, 15, 16, .08);
    border-radius: 14px;
    padding: 12px;
    transform-origin: top right;
    transform: scale(.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease
  }

  .nav.open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto
  }

  .guarantee-wrap {
    grid-template-columns: 1fr
  }

  .guarantee-card {
    grid-template-columns: 1fr
  }

  .gc-media {
    aspect-ratio: 16/10;
    min-height: unset
  }

  .process {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:700px) {
  .grid-3 {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width:520px) {
  .subscribe-form.inline {
    flex-direction: column;
    align-items: stretch
  }

  .subscribe-form.inline button {
    width: 100%
  }

  .process {
    grid-template-columns: 1fr
  }
}

/* ===== ABOUT PAGE (FINAL CLEAN VERSION | TWO-LANE ALTERNATING) ===== */

/* Header */
.page-head h1 {
  margin: 0 0 6px;
  font-size: clamp(26px, 3.6vw, 40px)
}

.page-sub {
  color: var(--ink-dim);
  margin: 0
}

/* Text blocks */
.prose {
  max-width: 80ch;
  color: var(--ink-dim);
  border-radius: 18px;
  padding: clamp(16px, 2.4vw, 28px);
  background: var(--bg);
  border: 1px solid rgba(15, 15, 16, .08);
  border-color: rgba(212, 175, 55, .35);
  text-align: justify;
}

.prose p {
  margin: 0 0 12px
}

.prose p+p {
  margin-top: 10px
}

/* WHO WE ARE: image left, text right */
.who-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(20px, 4vw, 40px);
}

.who-layout .media-slot {
  border-radius: 16px;
  overflow: hidden;
  min-height: 200px;
  margin: 0;
  transform-style: preserve-3d;
  transition: transform .18s ease;
  border: 1px solid var(--ring);
  /* animation: floatY 6s ease-in-out infinite; */
}

.who-layout .media-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width:900px) {
  .who-layout {
    grid-template-columns: 1fr
  }

  .who-layout .media-slot {
    order: -1
  }
}

/* DIRECTOR LETTER */
.letter {
  display: grid;
  grid-template-columns: 1.2fr .6fr;
  gap: clamp(16px, 3vw, 24px);
  align-items: start;
  background: var(--bg);
  border: 1px solid rgba(212, 175, 55, .28);
  border-radius: 18px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.letter::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--gold), #f4e6b0);
}

.letter-body {
  padding: clamp(16px, 2.6vw, 24px);
  text-align: justify;
}

.letter-body p {
  margin: 0 0 12px;
  color: var(--ink-dim)
}

.letter-aside {
  padding: clamp(12px, 2vw, 16px)
}

.letter-aside img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(15, 15, 16, .08);
  object-fit: cover;
  aspect-ratio: 3/4;
}

.signature {
  margin-top: 8px;
  color: var(--ink)
}

.sig-name {
  font-weight: 600
}

.sig-role {
  color: var(--ink-dim);
  font-size: 14px
}

/* ===== PILLARS: Alternating Left / Right (two lanes only) ===== */
.pillars-spine {
  position: relative;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: clamp(24px, 3vw, 36px);
}

/* Central gold spine */
.pillars-spine::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--gold), #f7eec7);
  border-radius: 3px;
  opacity: .85;
}

/* Two lanes: left and right */
.pillar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  /* centers icon + panel vertically */
  gap: clamp(16px, 3vw, 32px);
  position: relative;
}

/* Panels alternate sides */
.pillar:nth-child(odd) .panel {
  grid-column: 2;
  justify-self: end
}

.pillar:nth-child(even) .panel {
  grid-column: 2;
  justify-self: end
}

/* Icons alternate with their panels */
.icon {
  position: static;
  align-self: center;
  width: 160px;
  height: 160px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, var(--gold) 0%, #b78e1f 100%);
  border-radius: 20%;
  box-shadow: 0 6px 24px rgba(212, 175, 55, .35);
  z-index: 2;
}

.icon img {
  width: 80px;
  height: 80px;
  filter: brightness(0) invert(1);
}

/* Odd = left lane, hug right side of spine */
.pillar:nth-child(odd) .icon {
  grid-column: 1;
  justify-self: center;
  margin-right: 36px;
  /* half icon overlap toward spine */
}

/* Even = right lane, hug left side of spine */
.pillar:nth-child(even) .icon {
  grid-column: 1;
  justify-self: center;
  margin-left: -36px;
}

/* Panel styling */
.panel {
  background: var(--bg);
  border: 1px solid rgba(15, 15, 16, .08);
  border-color: rgba(212, 175, 55, .35);
  border-radius: 18px;
  padding: clamp(16px, 2.4vw, 28px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  z-index: 1;
}

.panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(212, 175, 55, .15);
  border-color: rgba(212, 175, 55, .35);
}

.panel h3 {
  margin: 0 0 8px;
  font-size: clamp(18px, 2.2vw, 22px);
  color: var(--ink);
}

.panel p {
  margin: 0;
  color: var(--ink-dim)
}

/* Connector lines */
.pillar::before,
.pillar::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  background: rgba(212, 175, 55, .35);
}

.pillar::before {
  left: 0;
  right: calc(50% + 36px);
}

/* left half */
.pillar::after {
  left: calc(50% + 36px);
  right: 0;
}

/* right half */
.pillar .icon,
.pillar .panel {
  grid-row: 1;
  align-self: center;
}

/* ===== Responsive stack ===== */
@media (max-width:960px) {
  .pillars-spine::before {
    left: 28px;
    transform: none
  }

  .pillar {
    grid-template-columns: 72px 1fr;
    row-gap: 10px;
  }

  .icon {
    grid-column: 1;
    justify-self: start;
    margin: 0;
    width: 60px;
    height: 60px;
  }

  .panel {
    grid-column: 2;
    justify-self: stretch;
  }

  .pillar::before,
  .pillar::after {
    display: none
  }
}

/* Optional small image row (if used) */
.media-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.media-row img {
  border-radius: 14px;
  border: 1px solid rgba(15, 15, 16, .08);
  background: #fff;
  aspect-ratio: 16/10;
  object-fit: cover;
}

/* Scroll offset for anchors */
#who-we-are .container,
#pillars .container,
#manager-message .container {
  scroll-margin-top: 80px;
}

/* ============================================================
   CONTACT PAGE 
   ============================================================ */

/* ---------- Hero ---------- */
#contact-hero .page-head h1 {
  margin: 0 0 6px;
}

/* ---------- Layout ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(12px, 2vw, 20px);
  align-items: stretch;
}

@media (max-width: 980px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }
}

/* ---------- Cards ---------- */
.contact-card,
.contact-form-card {
  background: var(--bg);
  border: 1px solid rgba(15, 15, 16, 0.08);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: clamp(16px, 2.2vw, 22px);
  display: flex;
  flex-direction: column;
  height: 100%;
  border-color: var(--ring);
}

/* ---------- Info list ---------- */
.contact-card h2,
.contact-form-card h2 {
  margin: 0 0 10px;
  font-size: clamp(20px, 2.2vw, 26px);
}

.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.info-list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  align-items: start;
  padding: 12px;
  border: 1px dashed var(--gold-soft);
  border-radius: 14px;
  background: var(--bg);
}

.info-list .lbl {
  font-weight: 600;
  color: var(--ink);
}

.info-list .val {
  color: var(--ink-dim);
}

.info-list a {
  color: var(--ink);
  text-decoration: none;
}

.info-list a:hover {
  text-decoration: underline;
}

/* ---------- Map ---------- */
.map-box {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15, 15, 16, .08);
  margin-top: 10px;
}

.gmap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- Form ---------- */
.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form .field {
  display: grid;
  gap: 6px;
}

.contact-form label {
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(15, 15, 16, .12);
  border-radius: 12px;
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18);
}

.contact-form .req {
  color: var(--gold);
  margin-left: 4px;
}

.recaptcha-note {
  font-size: 14px;
  color: var(--ink-dim);
  margin-top: 4px;
}

.actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

#contact-form-note {
  margin: 0;
  font-size: 14px;
  color: var(--ink-dim);
}

/* ---------- Animated background for form ---------- */
.contact-form-card {
  position: relative;
  overflow: hidden;
}

.contact-form-card>* {
  position: relative;
  z-index: 1;
}

.contact-fx {
  position: absolute;
  inset: -6%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
  background:
    repeating-linear-gradient(115deg,
      rgba(212, 175, 55, 0.22) 0 2px,
      rgba(212, 175, 55, 0) 2px 32px),
    radial-gradient(circle at 30% 10%, rgba(212, 175, 55, 0.12) 0%, rgba(212, 175, 55, 0) 70%);
  background-size: 260px 260px, 200% 200%;
  animation:
    move-lines 18s linear infinite,
    glow-shift 12s ease-in-out infinite alternate;
  mask-image: radial-gradient(140% 140% at 50% 50%, #000 60%, transparent 100%);
}

@keyframes move-lines {
  0% {
    background-position: 0 0, 0 0;
  }

  50% {
    background-position: 200px 200px, 50% 40%;
  }

  100% {
    background-position: 400px 400px, 100% 80%;
  }
}

@keyframes glow-shift {
  0% {
    background-size: 260px 260px, 180% 180%;
    opacity: 0.4;
  }

  50% {
    background-size: 260px 260px, 200% 200%;
    opacity: 0.55;
  }

  100% {
    background-size: 260px 260px, 180% 180%;
    opacity: 0.4;
  }
}

/* ---------- Visit section ---------- */
.visit-card {
  background: var(--bg);
  border: 1px solid rgba(15, 15, 16, 0.08);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: clamp(16px, 2.2vw, 22px);
  border-color: var(--ring);
}

.visit-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(16px, 2vw, 28px);
  align-items: center;
}

.visit-left h3 {
  margin: 0 0 6px;
  font-size: clamp(20px, 2.2vw, 26px);
}

.visit-left p {
  margin: 0;
  color: var(--ink-dim);
}

.visit-right .lbl {
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

/* ---------- Circular hours visualization ---------- */
.hours-circle {
  position: relative;
  width: 160px;
  height: 160px;
}

.hours-svg {
  width: 100%;
  height: 100%;
}

.track {
  fill: none;
  stroke: rgba(212, 175, 55, .15);
  stroke-width: 10;
}

.progress {
  fill: none;
  stroke: var(--gold);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 335.10 167.55;
  /* visible 8-hour arc */
  stroke-dashoffset: -377;
  /* start at 09:00, clockwise */
  filter: drop-shadow(0 0 6px rgba(212, 175, 55, .35));
  animation:
    hoursSweep 2s ease-in-out infinite alternate,
    hoursGlow 3s ease-in-out infinite;
}

/* subtle back-and-forth sweep along the same arc */
@keyframes hoursSweep {
  0% {
    stroke-dashoffset: -377;
  }

  50% {
    stroke-dashoffset: -367;
  }

  /* small motion ~10 px */
  100% {
    stroke-dashoffset: -377;
  }
}

/* breathing light intensity */
@keyframes hoursGlow {

  0%,
  100% {
    opacity: .7;
    filter: drop-shadow(0 0 4px rgba(212, 175, 55, .3));
  }

  50% {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, .55));
  }
}

.hours-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hours-day {
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
}

.hours-range {
  font-size: 13px;
  color: var(--ink-dim);
}

@media (max-width: 780px) {
  .visit-row {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

/* ============================================================
   Services PAGE 
   ============================================================ */
/* ===== Orbit layout (clean, upright) ===== */
.orbit-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 24px);
  align-items: center;
  padding-block: clamp(12px, 6vw, 28px);
  padding-inline: 4%;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  color: var(--ink-dim);
}

.orbit-section .col {
  position: relative
}

.orbit-col {
  display: grid;
  place-items: center
}

.orbit-wrap {
  position: relative;
  width: min(520px, 90vw);
  aspect-ratio: 1/1
}

.orbit-wrap .sphere {
  position: absolute;
  inset: 12% 12%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, #F4E6B0 0%, rgba(244, 230, 176, .6) 20%, rgba(212, 175, 55, .35) 45%, rgba(212, 175, 55, .12) 65%, transparent 70%),
    radial-gradient(circle at 65% 70%, rgba(212, 175, 55, .30), transparent 60%);
  box-shadow: inset 0 0 40px rgba(212, 175, 55, .25), 0 20px 60px rgba(0, 0, 0, .06);
  filter: saturate(1.05);
}

/* ring: NO rotation animation */
.orbit-wrap .ring {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  transform: none !important;
  animation: none !important
}

/* nodes are absolutely positioned by JS, labels stay upright */
.orbit-wrap .node {
  position: absolute;
  transform: translate(-50%, -50%) !important
}

.orbit-wrap .orb {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 10px;
  border: 1px solid rgba(212, 175, 55, .45);
  background: radial-gradient(circle at 30% 30%, #F4E6B0 0%, #D4AF37 60%, #A38323 100%);
  box-shadow: 0 10px 26px rgba(212, 175, 55, .35), inset 0 1px 0 rgba(255, 255, 255, .35);
  cursor: pointer;
}

.orbit-wrap .orb .label {
  font-size: 12px;
  line-height: 1.15;
  color: var(--ink-accent);
  font-weight: 600
}

/* active/hover */
.orbit-wrap .orb:is(:hover, .active) {
  filter: brightness(1.02);
  box-shadow: 0 14px 36px rgba(212, 175, 55, .45)
}

@media (max-width:980px) {
  .orbit-section {
    grid-template-columns: 1fr
  }

  .orbit-wrap {
    width: min(440px, 96vw)
  }
}

@media (min-width: 1280px) {
  .orbit-section {
    max-width: 1200px;
    margin-inline: auto;
  }
}

.orbit-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 72px;
  height: 72px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  z-index: 3;
}

.orbit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  /* nodes still clickable */
  filter: drop-shadow(0 4px 12px rgba(212, 175, 55, .45));
}

.orbit-icon img {
  filter:
    brightness(0) saturate(100%) invert(55%) sepia(66%) saturate(598%) hue-rotate(8deg) drop-shadow(0 4px 12px rgba(212, 175, 55, .45));
}


@media (max-width:980px) {
  .orbit-section {
    grid-template-columns: 1fr;
  }

  /* already present */
  .products .orbit-col {
    order: -1;
  }

  /* put orbit above details */
  .products .details-col {
    order: 0;
  }

  .services .orbit-col {
    order: -1;
  }

  /* put orbit above details */
  .services .details-col {
    order: 0;
  }
}


/* ===== Minimal Footer ===== */
.footer-min {
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(212, 175, 55, .10), transparent 60%),
    #0c1020;
  color: #e9e9eb;
  padding: 18px 0;
  border-top: 1px solid rgba(212, 175, 55, .25);
  position: relative;
  isolation: isolate;
}

.footer-min::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(212, 175, 55, 0) 0%, rgba(212, 175, 55, .12) 48%, rgba(212, 175, 55, 0) 52%);
  background-size: 300% 100%;
  animation: sheen 22s linear infinite;
  opacity: .18;
  pointer-events: none;
}

.footer-min .container {
  position: relative;
  z-index: 1
}

.f-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.f-nav {
  justify-self: center;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.f-nav a {
  color: #cfcfd6;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 8px;
  border-radius: 10px;
}

.f-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .06)
}

.to-top {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, .35);
  text-decoration: none;
  color: #e9e9eb;
}

.to-top:hover {
  background: rgba(212, 175, 55, .12)
}

.f-bottom {
  margin-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 10px;
  color: #a8a8b0;
  text-align: center;
}

@media (max-width:640px) {
  .f-row {
    grid-template-columns: 1fr;
    justify-items: center
  }

  .to-top {
    justify-self: center
  }
}

/* ========== MOBILE FIXES ========== */

/* 1) Navbar */
@media (max-width: 860px) {
  .brand-logo {
    height: 56px !important;
  }

  .nav-toggle {
    padding: 0;
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border-radius: 10px;
    margin-right: 0;
    margin-left: auto;
    right: 0;
    color: var(--ink);
  }

  .nav-toggle svg,
  .nav-toggle img {
    width: 22px;
    height: 22px;
  }

  .nav {
    top: 64px;
    right: 12px;
    left: auto;
    width: min(88vw, 420px);
  }

  .nav a.nav-link {
    padding: 10px 12px;
  }


}

/* 2) Home Page */
@media (max-width: 520px) {
  .subscribe-form.inline input {
    height: 44px;
    line-height: 1;
    font-size: 16px;
    flex: none;
  }

  .checks {
    padding-left: 16px;
  }
}

/* 3) About page */
@media (max-width: 900px) {

  #who-we-are .who-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  #who-we-are .prose {
    max-width: 100%;
  }
}

@media (max-width: 820px) {

  .letter {
    grid-template-columns: 1fr;
  }

  .letter-body {
    order: 2;
  }

  .letter-aside {
    order: 1;
  }

}

@media (max-width: 960px) {
  .pillars-spine {
    gap: 18px;
  }

  .panel {
    padding: 14px;
  }

  .panel h3 {
    font-size: 18px;
  }

  .panel p {
    font-size: 14px;
  }

  .pillar:nth-child(odd) .panel {
    grid-column: 2;
    justify-self: end
  }

  .pillar:nth-child(even) .panel {
    grid-column: 2;
    justify-self: start
  }

  .pillar:nth-child(odd) .icon {
    grid-column: 1;
    justify-self: center;
    margin-left: -48px;
  }

  .pillar:nth-child(even) .icon {
    grid-column: 1;
    justify-self: center;
    margin-right: -24px;
  }
}

.moving-gold {
  background: linear-gradient(90deg, #cfcfd6 20%, var(--gold) 40%, #cfcfd6 60%);
  background-size: 200% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldMove 6s linear infinite;
  font-weight: 500;
}

@keyframes goldMove {
  0% {
    background-position: 200% center;
  }

  100% {
    background-position: -200% center;
  }
}

/* Product Edit*/
/* ===== Product page ===== */
.product-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(18px, 3.2vw, 28px);
  align-items: stretch;
  margin-top: 16px;
}

.product-info {
  background: None;
  padding: clamp(16px, 2.4vw, 24px);
  display: grid;
  align-content: center;
  gap: 14px;
}

.product-info h1 {
  margin: 0;
  text-align: left;
}

.product-cta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.product-media {
  overflow: hidden;
  background: None;
  min-height: 320px;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width:1024px) {
  .product-wrap {
    grid-template-columns: 1fr;
  }

  .product-media {
    order: -1;
    min-height: auto;
  }

  .product-media img {
    object-fit: contain;
    height: auto;
  }
}

/* Service page uses the same two-column layout as product */
.service-points {
  margin: 8px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: var(--ink-dim);
  list-style: disc;
}

/* Optional: ensure service hero image or page media behaves like product */
#service-page .product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width:1024px) {
  #service-page .product-media img {
    object-fit: contain;
    height: auto;
  }
}

/* ===== Theme toggle ===== */
.theme-toggle {
  border: 1px solid rgba(15, 15, 16, 0.18);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 13px;
  line-height: 1;
  color: var(--ink-dim);
  max-width: 64px;
}

.theme-toggle .theme-icon {
  font-size: 18px;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.theme-toggle .theme-icon-sun {
  opacity: 1;
  color: var(--gold);
}

.theme-toggle .theme-icon-moon {
  opacity: 0.4;
  color: var(--ink-dim);
}

.theme-toggle.is-dark {
  background: rgba(5, 6, 10, 0.9);
  border-color: var(--gold);
}

.theme-toggle.is-dark .theme-icon-sun {
  opacity: 0.4;
}

.theme-toggle.is-dark .theme-icon-moon {
  opacity: 1;
}