/* ==========================================================================
   KrisTep — Custom design system (no framework)
   Modern editorial layout with cream + lime accent.
   ========================================================================== */

:root {
  /* Color palette */
  --cream-50:  #fdfcf7;
  --cream-100: #faf9f5;
  --cream-200: #f4f2e9;
  --cream-300: #ece9d9;
  --ink:       #0e0f10;
  --ink-700:   #1f2023;
  --ink-500:   #4a4d52;
  --ink-400:   #6b6e74;
  --lime-100:  #eefbb4;
  --lime-200:  #e4f88a;
  --lime-300:  #d4f25a;
  --lime-400:  #c2e137;
  --line:      #e7e3d2;
  --white:     #ffffff;

  /* Type */
  --font-display: 'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  /* Sizes */
  --t-xl:   clamp(2.6rem, 6vw, 5rem);
  --t-lg:   clamp(2.1rem, 4.6vw, 3.5rem);
  --t-md:   clamp(1.65rem, 3vw, 2.4rem);
  --t-sm:   clamp(1.25rem, 2vw, 1.5rem);

  /* Layout */
  --max-w: 1200px;
  --gutter-x: 20px;
  --section-y: 64px;
  --radius-sm: 12px;
  --radius:    18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-2xl: 40px;

  /* Shadows */
  --shadow-soft: 0 2px 12px rgba(14, 15, 16, 0.04);
  --shadow-lift: 0 22px 44px -22px rgba(14, 15, 16, 0.22);
  --shadow-pop:  0 30px 60px -28px rgba(14, 15, 16, 0.30);

  /* Transitions */
  --t-fast: 0.18s ease;
  --t-base: 0.28s ease;
  --t-slow: 0.6s ease;
}

@media (min-width: 640px) { :root { --gutter-x: 32px; --section-y: 80px; } }
@media (min-width: 1024px){ :root { --gutter-x: 40px; --section-y: 112px; } }

/* ==========================================================================
   Reset / base
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream-100);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture, iframe, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { padding: 0; margin: 0; list-style: none; }
p { margin: 0 0 1em; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 0.4em;
}

::selection { background: var(--lime-300); color: var(--ink); }

/* Skip link */
.skip-link {
  position: absolute;
  top: -48px; left: 0;
  padding: 10px 16px;
  background: var(--ink); color: var(--cream-100);
  z-index: 9999;
  border-radius: 0 0 8px 0;
  font-weight: 600;
  transition: top var(--t-fast);
}
.skip-link:focus {
  top: 0;
  outline: 2px solid var(--lime-300);
  outline-offset: 2px;
}

/* Focus rings */
:focus-visible {
  outline: none;
}
a:focus-visible, button:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--lime-300);
  outline-offset: 3px;
  border-radius: 8px;
}
input:focus-visible, textarea:focus-visible {
  outline: none;
}

/* ==========================================================================
   Layout primitives
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter-x);
  padding-right: var(--gutter-x);
}

.section {
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
.section--alt {
  background: var(--cream-200);
}
.section--rounded {
  background: var(--cream-200);
  border-radius: var(--radius-2xl);
  margin-left: var(--gutter-x);
  margin-right: var(--gutter-x);
}
@media (min-width: 1024px) {
  .section--rounded {
    margin-left: auto;
    margin-right: auto;
    max-width: calc(var(--max-w) + var(--gutter-x) * 2);
  }
}

/* Eyebrow + accent underline */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cream-200);
  color: var(--ink);
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.eyebrow--lime { background: var(--lime-300); }
.eyebrow--ink  { background: rgba(14,15,16,0.08); }

.accent-underline {
  background-image: linear-gradient(transparent 60%, var(--lime-300) 60%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 0.12em;
}
.accent-underline-ink {
  background-image: linear-gradient(transparent 70%, var(--ink) 70%, var(--ink) 96%, transparent 96%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 0.08em;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-head--left { text-align: left; margin: 0 0 56px; }
.section-head h2 {
  font-size: var(--t-lg);
  margin: 18px 0 14px;
}
.section-head p {
  font-size: 1.075rem;
  color: var(--ink-500);
  margin: 0;
}

/* Type utilities */
.t-xl { font-size: var(--t-xl); }
.t-lg { font-size: var(--t-lg); }
.t-md { font-size: var(--t-md); }
.t-sm { font-size: var(--t-sm); }
.lead {
  font-size: 1.075rem;
  color: var(--ink-500);
  line-height: 1.6;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  transition: transform var(--t-base), background var(--t-base), color var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  line-height: 1;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--ink);
  color: var(--cream-100);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
  background: var(--ink-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.btn-lime {
  background: var(--lime-300);
  color: var(--ink);
}
.btn-lime:hover {
  background: var(--lime-200);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(14,15,16,0.18);
}
.btn-outline:hover {
  background: var(--cream-200);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.btn-outline-light {
  background: transparent;
  color: var(--cream-100);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.30);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.10);
  box-shadow: inset 0 0 0 1px var(--cream-100);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 14px 18px;
}
.btn-ghost:hover { background: var(--cream-200); }

.btn--full { width: 100%; }
.btn--lg  { padding: 18px 32px; font-size: 1rem; }

/* ==========================================================================
   Navigation
   ========================================================================== */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 249, 245, 0.85);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 16px var(--gutter-x);
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--lime-300);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  position: relative;
  display: inline-block;
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-500);
  border-radius: 10px;
  transition: color var(--t-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--lime-300);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after,
.nav-link[aria-current="page"]::after { transform: scaleX(1); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--cream-100);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: background var(--t-fast);
}
.nav-cta::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime-300);
}
.nav-cta:hover { background: var(--ink-700); }

.hamburger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-cta { display: none; }
  .hamburger { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--cream-100);
    border-top: 1px solid var(--line);
    padding: 18px 20px 28px;
    gap: 4px;
    box-shadow: var(--shadow-lift);
    z-index: 60;
  }
  .nav-links.is-open { display: flex; }
  .nav-link { padding: 14px 16px; font-size: 1rem; }
  .nav-link::after { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  padding-top: 32px;
  padding-bottom: 0;
}
@media (min-width: 1024px) { .hero { padding-top: 56px; } }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 7fr 5fr;
    gap: 32px;
  }
}

.hero-card-yellow {
  background: var(--lime-300);
  border-radius: var(--radius-2xl);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) { .hero-card-yellow { padding: 44px 40px; } }
@media (min-width: 1024px){ .hero-card-yellow { padding: 56px; } }

.hero-card-yellow .eyebrow {
  background: rgba(14,15,16,0.08);
  align-self: flex-start;
}
.hero-card-yellow h1 {
  font-size: var(--t-xl);
  color: var(--ink);
  margin: 0;
}
.hero-card-yellow .lead {
  font-size: 1.075rem;
  color: rgba(14,15,16,0.72);
  max-width: 540px;
  margin: 0;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.hero-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--ink);
  font-size: 1rem;
}
.hero-phone::before {
  content: '';
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 4px rgba(14,15,16,0.15);
}

/* Image collage */
.hero-collage {
  position: relative;
  min-height: 440px;
}
@media (min-width: 640px) { .hero-collage { min-height: 520px; } }
@media (min-width: 1024px){ .hero-collage { min-height: 560px; } }

.hero-img {
  position: absolute;
  overflow: hidden;
  background: var(--cream-200);
  border-radius: var(--radius-xl);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.hero-img:hover img { transform: scale(1.04); }

.hero-img--main {
  top: 0; left: 0;
  right: 24%; bottom: 32%;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lift);
}
.hero-img--mini {
  top: 8%; right: 0;
  width: 38%; height: 38%;
  border: 6px solid var(--cream-100);
  box-shadow: var(--shadow-lift);
  transform: rotate(2deg);
  z-index: 2;
}
.hero-img--accent {
  bottom: 0; left: 16%; right: 0;
  height: 28%;
  border: 6px solid var(--cream-100);
  box-shadow: var(--shadow-lift);
}
.hero-badge {
  position: absolute;
  bottom: 6%;
  left: 4%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--ink);
  color: var(--cream-100);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-pop);
  z-index: 4;
}
.hero-badge strong { color: var(--lime-300); font-weight: 700; }
.hero-badge .stars { color: var(--lime-300); letter-spacing: 1.5px; }

/* ==========================================================================
   About + benefits
   ========================================================================== */

.about-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.about-intro h2 {
  font-size: var(--t-lg);
  margin: 18px 0 18px;
}
.about-intro p {
  font-size: 1.1rem;
  color: var(--ink-500);
  line-height: 1.65;
  margin: 0 0 16px;
}

.bubble-row {
  position: relative;
  height: 96px;
  margin-top: 36px;
}
.bubble-row img {
  position: absolute;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--cream-100);
  box-shadow: var(--shadow-lift);
}
.bubble-row img:nth-child(1) { left: 6%;  top: 12px; width: 72px; height: 72px; }
.bubble-row img:nth-child(2) { left: 28%; top: 0;    width: 60px; height: 60px; }
.bubble-row img:nth-child(3) { right: 28%;top: 8px;  width: 60px; height: 60px; }
.bubble-row img:nth-child(4) { right: 6%; top: 12px; width: 72px; height: 72px; }
@media (max-width: 640px) { .bubble-row { display: none; } }

.benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 56px;
}
@media (min-width: 640px) { .benefits { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1024px){ .benefits { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.benefit-chip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.benefit-chip:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(14,15,16,0.20);
}
.benefit-chip .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--lime-300);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.benefit-chip h3 { font-size: 1.1rem; margin: 0 0 8px; }
.benefit-chip p  { color: var(--ink-500); font-size: 0.93rem; margin: 0; line-height: 1.55; }

/* ==========================================================================
   Feature row-list (data-table style)
   ========================================================================== */

.feature-head {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .feature-head {
    grid-template-columns: 5fr 7fr;
    align-items: end;
  }
}
.feature-head h2 { font-size: var(--t-md); margin: 14px 0 12px; }
.feature-head p  { color: var(--ink-500); margin: 0; }
.feature-head .arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--ink);
  align-self: end;
  justify-self: start;
}
@media (min-width: 1024px) { .feature-head .arrow-link { justify-self: end; } }
.feature-head .arrow-link span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--cream-100);
  transition: transform var(--t-base), background var(--t-base);
}
.feature-head .arrow-link:hover span { transform: translateX(4px); background: var(--lime-400); color: var(--ink); }

.row-list {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.row-list-head {
  display: none;
  grid-template-columns: 1fr 160px 160px 56px;
  gap: 24px;
  padding: 18px 32px;
  background: var(--cream-50);
  border-bottom: 1px solid var(--line);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ink-400);
  font-weight: 600;
}
@media (min-width: 768px) { .row-list-head { display: grid; } }
.row-list-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  transition: background var(--t-fast);
}
.row-list-row:last-child { border-bottom: 0; }
.row-list-row:hover { background: var(--cream-50); }
@media (min-width: 768px) {
  .row-list-row {
    grid-template-columns: 1fr 160px 160px 56px;
    gap: 24px;
    padding: 24px 32px;
  }
}
.row-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
}
.row-sub {
  font-size: 0.88rem;
  color: var(--ink-500);
  margin: 4px 0 0;
}
@media (min-width: 768px) { .row-sub { display: none; } }
.row-tag {
  display: none;
  align-items: center;
  background: var(--cream-200);
  color: var(--ink-500);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  width: fit-content;
}
@media (min-width: 768px) { .row-tag { display: inline-flex; } }
.row-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--cream-200);
  color: var(--ink);
  transition: background var(--t-base), color var(--t-base), transform var(--t-base);
  justify-self: end;
}
.row-list-row:hover .row-arrow {
  background: var(--lime-300);
  transform: rotate(-45deg);
}

/* ==========================================================================
   Services overlay grid
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1024px){ .services-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; } }

.overlay-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 440px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
  isolation: isolate;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.overlay-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.overlay-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform var(--t-slow);
}
.overlay-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,15,16,0) 30%, rgba(14,15,16,0.45) 60%, rgba(14,15,16,0.92) 100%);
  z-index: -1;
}
.overlay-card:hover img { transform: scale(1.08); }
.overlay-tag {
  position: absolute;
  top: 18px; left: 18px;
  display: inline-flex;
  align-items: center;
  background: var(--lime-300);
  color: var(--ink);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.overlay-body {
  padding: 26px 24px 24px;
  position: relative;
  z-index: 1;
}
.overlay-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--white);
  line-height: 1.15;
}
.overlay-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  margin: 0 0 18px;
  line-height: 1.55;
}
.overlay-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  width: fit-content;
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base);
}
.overlay-card:hover .overlay-cta {
  background: var(--lime-300);
  color: var(--ink);
  border-color: var(--lime-300);
}

/* ==========================================================================
   Gallery (bento)
   ========================================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px) { .gallery-grid { gap: 16px; } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; } }

.gallery-grid figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cream-200);
  aspect-ratio: 1 / 1;
}
.gallery-grid figure:nth-child(1) {
  grid-column: span 2;
}
@media (min-width: 1024px) {
  .gallery-grid figure:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
  }
}
.gallery-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.gallery-grid figure:hover img { transform: scale(1.06); }
.gallery-grid figcaption {
  position: absolute;
  bottom: 12px; left: 12px;
  background: var(--cream-100);
  color: var(--ink);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
}

/* ==========================================================================
   Process (pill row + step cards)
   ========================================================================== */

.process-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}
.process-pills .pill {
  display: inline-flex;
  align-items: center;
  background: var(--cream-200);
  color: var(--ink);
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: background var(--t-base);
}
.process-pills .pill:hover { background: var(--cream-300); }
.process-pills .pill--active {
  background: var(--lime-300);
  box-shadow: 0 0 0 6px rgba(212,242,90,0.30);
}
.process-pills .arrow {
  font-size: 1.4rem;
  color: var(--ink-400);
  font-weight: 300;
  user-select: none;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1024px){ .process-grid { grid-template-columns: repeat(4, 1fr); } }

.process-step {
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 26px;
  transition: transform var(--t-base), border-color var(--t-base);
}
.process-step:hover { transform: translateY(-3px); border-color: rgba(14,15,16,0.2); }
.process-step--active {
  background: var(--lime-300);
  border-color: var(--lime-400);
}
.process-step .step-label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-400);
  margin-bottom: 10px;
}
.process-step--active .step-label { color: rgba(14,15,16,0.65); }
.process-step h3 { font-size: 1.15rem; margin: 0 0 8px; }
.process-step p  { font-size: 0.9rem; color: var(--ink-500); margin: 0; line-height: 1.55; }
.process-step--active p { color: rgba(14,15,16,0.78); }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: background var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}
.faq-item.is-open {
  background: var(--cream-50);
  border-color: rgba(14,15,16,0.2);
  box-shadow: var(--shadow-soft);
}
.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  border-radius: var(--radius-lg);
}
.faq-item .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 999px;
  background: var(--cream-200);
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform var(--t-base), background var(--t-base);
}
.faq-item.is-open .icon {
  transform: rotate(45deg);
  background: var(--lime-300);
}
.faq-item .answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--t-base);
}
.faq-item.is-open .answer { grid-template-rows: 1fr; }
.faq-item .answer > div { overflow: hidden; }
.faq-item .answer p {
  padding: 0 26px 24px;
  margin: 0;
  color: var(--ink-500);
  line-height: 1.65;
}

/* ==========================================================================
   Map preview
   ========================================================================== */

.map-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}
@media (min-width: 1024px) { .map-preview { grid-template-columns: 1fr 1fr; gap: 64px; } }
.map-preview h2 { font-size: var(--t-md); margin: 14px 0 14px; }
.map-preview p  { color: var(--ink-500); margin: 0 0 28px; line-height: 1.6; }
.map-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }
.map-large {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16 / 9;
  margin-bottom: 56px;
}
.map-large iframe { width: 100%; height: 100%; border: 0; }

/* ==========================================================================
   CTA strip (bottom dark card)
   ========================================================================== */

.cta-strip {
  background: var(--ink);
  color: var(--cream-100);
  border-radius: var(--radius-2xl);
  padding: 56px 32px;
  text-align: center;
}
@media (min-width: 768px) { .cta-strip { padding: 72px 56px; } }
@media (min-width: 1024px){ .cta-strip { padding: 96px 64px; } }
.cta-strip h2 {
  color: var(--white);
  font-size: var(--t-md);
  margin: 0 0 14px;
}
.cta-strip p {
  color: rgba(255,255,255,0.72);
  font-size: 1.075rem;
  max-width: 540px;
  margin: 0 auto 32px;
}
.cta-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ==========================================================================
   Subpage hero
   ========================================================================== */

.page-hero {
  padding: 56px 0 32px;
}
@media (min-width: 768px) { .page-hero { padding: 80px 0 56px; } }
.page-hero h1 {
  font-size: var(--t-lg);
  max-width: 880px;
  margin: 14px 0 18px;
}
.page-hero .lead {
  font-size: 1.125rem;
  color: var(--ink-500);
  max-width: 680px;
  margin: 0;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--ink-400);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--ink-400); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb [aria-current="page"] { color: var(--ink); font-weight: 600; }
.breadcrumb .sep { color: var(--ink-400); opacity: 0.45; }

/* Service detail hero variant: side-by-side text + lime image card */
.service-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (min-width: 1024px) { .service-hero { grid-template-columns: 1.1fr 0.9fr; gap: 48px; } }
.service-hero-image {
  position: relative;
  background: var(--lime-300);
  border-radius: var(--radius-2xl);
  padding: 24px;
  min-height: 360px;
  overflow: hidden;
}
.service-hero-image img {
  position: absolute;
  inset: 24px;
  width: calc(100% - 48px);
  height: calc(100% - 48px);
  object-fit: cover;
  border-radius: var(--radius-xl);
}

/* ==========================================================================
   Content + side card layout (service detail body)
   ========================================================================== */

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 1024px) {
  .content-grid {
    grid-template-columns: 1.4fr 0.6fr;
    gap: 64px;
  }
}

.prose h2 {
  font-size: var(--t-sm);
  margin: 56px 0 16px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.2rem; margin: 28px 0 10px; }
.prose p {
  color: var(--ink-500);
  font-size: 1.025rem;
  line-height: 1.7;
  margin: 0 0 16px;
}
.prose strong { color: var(--ink); font-weight: 600; }
.prose a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--lime-300);
  text-decoration-thickness: 4px;
  text-underline-offset: 2px;
  transition: text-decoration-color var(--t-fast);
}
.prose a:hover { text-decoration-color: var(--lime-400); }
.prose ul.check-list,
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--ink-700);
  font-size: 1rem;
  line-height: 1.55;
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  margin-top: 6px;
  display: inline-block;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--lime-300);
  box-shadow: 0 0 0 5px rgba(212,242,90,0.30);
}

.side-card {
  background: var(--lime-300);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: sticky;
  top: 96px;
}
.side-card h3 { font-size: 1.3rem; margin: 0 0 10px; color: var(--ink); }
.side-card p  { color: rgba(14,15,16,0.72); margin: 0 0 24px; font-size: 0.95rem; }
.side-card .btn { width: 100%; margin-bottom: 10px; }
.side-card .btn:last-child { margin-bottom: 0; }
@media (max-width: 1023px) { .side-card { position: static; } }

/* Related links */
.related {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) { .related { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.related a {
  display: block;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  transition: transform var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}
.related a:hover {
  transform: translateY(-3px);
  border-color: rgba(14,15,16,0.2);
  box-shadow: var(--shadow-lift);
}
.related a span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-500);
  margin-top: 6px;
}

/* ==========================================================================
   Contact form
   ========================================================================== */

.form-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}
@media (min-width: 1024px) {
  .form-wrap {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
  }
}
#contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-2xl);
  padding: 32px;
}
@media (min-width: 768px) { #contact-form { padding: 48px; } }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink-700);
}
.form-group input,
.form-group textarea {
  display: block;
  width: 100%;
  padding: 16px 18px;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream-50);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--ink-400); opacity: 0.6; }
.form-group input:focus,
.form-group textarea:focus {
  background: var(--white);
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(212,242,90,0.45);
  outline: none;
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--ink-500);
  margin-bottom: 28px;
}
.form-consent input {
  margin-top: 4px;
  width: 18px; height: 18px;
  accent-color: var(--ink);
}
.form-consent a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--lime-300); text-decoration-thickness: 3px; }
#contact-form button[type="submit"] {
  width: 100%;
  padding: 18px 24px;
  background: var(--ink);
  color: var(--cream-100);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  transition: background var(--t-base), transform var(--t-base);
}
#contact-form button[type="submit"]:hover { background: var(--ink-700); transform: translateY(-2px); }
#contact-form button[type="submit"]:active { transform: scale(0.98); }

/* Info card on contact / location pages */
.info-card {
  background: var(--lime-300);
  color: var(--ink);
  border-radius: var(--radius-2xl);
  padding: 32px;
}
@media (min-width: 768px) { .info-card { padding: 40px; } }
.info-card h3 { color: var(--ink); font-size: 1.3rem; margin: 0 0 8px; }
.info-card .info-card-lead {
  color: rgba(14,15,16,0.72);
  font-size: 0.95rem;
  margin: 0 0 24px;
}
.info-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(14,15,16,0.15);
}
.info-row:last-child { border-bottom: 0; padding-bottom: 0; }
.info-row strong {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(14,15,16,0.55);
  font-weight: 600;
}
.info-row span,
.info-row a {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
}
.info-row a:hover { color: var(--ink-700); text-decoration: underline; }

/* Location page chips */
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 48px;
}
.area-chip {
  display: inline-flex;
  align-items: center;
  background: var(--cream-200);
  color: var(--ink);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--t-fast), transform var(--t-fast);
}
.area-chip:hover { background: var(--lime-300); transform: translateY(-2px); }

/* ==========================================================================
   404
   ========================================================================== */

.error-page {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px var(--gutter-x);
}
.error-page .num-card {
  background: var(--lime-300);
  border-radius: var(--radius-2xl);
  padding: 24px 56px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-lift);
}
.error-page .num-card .num {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 9rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.04em;
}
.error-page h1 { font-size: var(--t-lg); margin-bottom: 14px; }
.error-page p  { color: var(--ink-500); margin-bottom: 28px; max-width: 480px; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.62);
  padding: 72px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 56px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px){ .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; } }

.site-footer .logo-text { color: var(--cream-100); }
.site-footer .logo-mark { background: var(--lime-300); color: var(--ink); }
.footer-brand p { max-width: 280px; font-size: 0.92rem; line-height: 1.55; margin-top: 18px; }

.site-footer h4 {
  font-family: var(--font-display);
  color: var(--cream-100);
  font-size: 0.95rem;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.site-footer ul li { margin-bottom: 10px; }
.site-footer a {
  color: rgba(255,255,255,0.55);
  font-size: 0.92rem;
  transition: color var(--t-fast);
}
.site-footer a:hover { color: var(--lime-300); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a:hover { color: var(--lime-300); }

/* ==========================================================================
   Cookie banner
   ========================================================================== */

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 480px;
  background: var(--ink);
  color: var(--cream-100);
  padding: 22px 26px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-pop);
  z-index: 200;
}
@media (min-width: 640px) {
  .cookie-banner { left: auto; right: 24px; bottom: 24px; }
}
.cookie-banner.is-visible { display: block; }
.cookie-banner p {
  margin: 0 0 16px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-actions .btn { padding: 10px 20px; font-size: 0.85rem; }

/* ==========================================================================
   Animations
   ========================================================================== */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    transition: none !important;
  }
  .fade-up { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
