/* =====================================================================
   Verdant Dynamics — Core Stylesheet
   Hand-authored from the approved design tokens (DESIGN.md). No Tailwind
   runtime. Mobile-first, uses fluid clamps + CSS custom properties.
   ===================================================================== */

/* ----------------------------------------------------------------- */
/* 1. Design Tokens                                                   */
/* ----------------------------------------------------------------- */
:root {
  /* Surfaces & neutrals */
  --surface: #fcf9f8;
  --surface-dim: #dcd9d9;
  --surface-bright: #fcf9f8;
  --surface-container-lowest: #ffffff;
  --surface-container-low: #f6f3f2;
  --surface-container: #f0edec;
  --surface-container-high: #ebe7e7;
  --surface-container-highest: #e5e2e1;
  --surface-variant: #e5e2e1;
  --background: #fcf9f8;

  /* Text / on-colors */
  --on-surface: #1c1b1b;
  --on-surface-variant: #40493d;
  --on-background: #1c1b1b;
  --inverse-surface: #313030;
  --inverse-on-surface: #f3f0ef;

  /* Primary — Forest Green */
  --primary: #0d631b;
  --on-primary: #ffffff;
  --primary-container: #2e7d32;
  --on-primary-container: #cbffc2;
  --primary-fixed: #a3f69c;
  --primary-fixed-dim: #88d982;
  --on-primary-fixed: #002204;
  --on-primary-fixed-variant: #005312;
  --inverse-primary: #88d982;
  --surface-tint: #1b6d24;

  /* Secondary — Earth Brown */
  --secondary: #79564b;
  --on-secondary: #ffffff;
  --secondary-container: #fed0c1;
  --on-secondary-container: #79574c;
  --secondary-fixed: #ffdbcf;
  --secondary-fixed-dim: #e9bdae;
  --on-secondary-fixed: #2d150d;
  --on-secondary-fixed-variant: #5e3f35;

  /* Tertiary */
  --tertiary: #57564f;
  --on-tertiary: #ffffff;
  --tertiary-container: #706e67;
  --on-tertiary-container: #f5f1e8;

  /* Accent CTA (bright green) */
  --accent: #4caf50;

  /* Feedback */
  --error: #ba1a1a;
  --on-error: #ffffff;
  --error-container: #ffdad6;
  --on-error-container: #93000a;

  /* Lines */
  --outline: #707a6c;
  --outline-variant: #bfcaba;

  /* Typography */
  --font-head: "Montserrat", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Source Sans 3", ui-sans-serif, system-ui, sans-serif;

  /* Radius */
  --radius-sm: 0.25rem;
  --radius: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Spacing */
  --space-base: 8px;
  --gutter: 24px;
  --margin-mobile: 16px;
  --margin-desktop: 80px;
  --section-gap: 120px;
  --container-max: 1280px;

  /* Elevation (diffused, low-opacity per design spec) */
  --shadow-sm: 0 1px 2px rgba(28, 27, 27, 0.05);
  --shadow-md: 0 4px 12px rgba(28, 27, 27, 0.06);
  --shadow-lg: 0 12px 28px rgba(28, 27, 27, 0.08);
  --shadow-xl: 0 24px 48px rgba(28, 27, 27, 0.10);

  --header-h: 76px;
}

/* ----------------------------------------------------------------- */
/* 2. Reset & Base                                                    */
/* ----------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--on-background);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }

::selection { background: var(--primary-container); color: var(--on-primary-container); }

/* Accessible focus ring */
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: 2px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -999px; top: 8px; z-index: 100000;
  background: var(--primary); color: #fff; padding: 10px 18px;
  border-radius: var(--radius); font-weight: 600;
}
.skip-link:focus { left: 8px; }

/* ----------------------------------------------------------------- */
/* 3. Typography scale                                                */
/* ----------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); margin: 0; color: var(--on-surface); }

.display-lg {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.headline-lg { font-weight: 600; font-size: clamp(26px, 3.6vw, 32px); line-height: 1.3; }
.headline-md { font-weight: 600; font-size: 24px; line-height: 1.4; }
.body-lg { font-size: 18px; line-height: 1.6; }
.body-md { font-size: 16px; line-height: 1.6; }
.label-md {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 600; line-height: 1.2; letter-spacing: 0.05em;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--primary);
}

/* ----------------------------------------------------------------- */
/* 4. Layout helpers                                                  */
/* ----------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--margin-mobile);
}
@media (min-width: 1024px) {
  .container { padding-inline: var(--margin-desktop); }
}

.section { padding-block: clamp(64px, 12vw, var(--section-gap)); }
.section--tight { padding-block: clamp(48px, 8vw, 96px); }
.bg-lowest { background: var(--surface-container-lowest); }
.bg-low { background: var(--surface-container-low); }
.bg-container { background: var(--surface-container); }
.bg-primary { background: var(--primary); color: var(--on-primary); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(40px, 6vw, 64px); }
.section-head p { color: var(--on-surface-variant); margin-top: 16px; }
.section-head--split {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: flex-end; gap: 24px; text-align: left; max-width: none;
}

.grid { display: grid; gap: var(--gutter); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ----------------------------------------------------------------- */
/* 5. Buttons                                                         */
/* ----------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px; letter-spacing: 0.02em;
  padding: 14px 28px; border-radius: var(--radius-full);
  border: 2px solid transparent; transition: all 0.25s ease; text-align: center;
  line-height: 1;
}
.btn:active { transform: scale(0.97); }
.btn--primary { background: var(--primary); color: var(--on-primary); box-shadow: var(--shadow-md); }
.btn--primary:hover { background: var(--primary-container); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--accent { background: var(--accent); color: #fff; box-shadow: var(--shadow-md); }
.btn--accent:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--secondary { background: transparent; color: var(--secondary); border-color: var(--secondary); }
.btn--secondary:hover { background: var(--secondary); color: var(--on-secondary); }
.btn--white { background: #fff; color: var(--primary); box-shadow: var(--shadow-lg); }
.btn--white:hover { background: var(--on-primary-container); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn--block { width: 100%; }
.btn--pill-square { border-radius: var(--radius); }

/* Icon (Material Symbols) baseline */
.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal; font-style: normal; line-height: 1;
  letter-spacing: normal; text-transform: none; display: inline-block;
  white-space: nowrap; direction: ltr; vertical-align: middle;
  -webkit-font-feature-settings: "liga"; font-feature-settings: "liga";
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.material-symbols-outlined.fill { font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24; }

/* ----------------------------------------------------------------- */
/* 6. Header / Nav                                                    */
/* ----------------------------------------------------------------- */
.site-header {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  /* Own compositing layer → prevents Chrome fixed-header paint/ghost artifacts. */
  transform: translateZ(0);
  backface-visibility: hidden;
  background-color: transparent;
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding-block: 18px;
}
/* Solid state: OPAQUE background (no backdrop-filter — that caused the white
   flash/ghost on scroll over the hero image). */
.site-header--solid,
.site-header.is-stuck {
  background-color: var(--surface);
  box-shadow: var(--shadow-sm);
}
.site-header.is-stuck .site-header__inner { padding-block: 12px; }
/* Transparent-over-hero state (home). A soft top scrim keeps the nav legible
   over any hero image without a solid bar. */
.site-header--transparent:not(.is-stuck) { background-color: transparent; box-shadow: none; }
.site-header--transparent:not(.is-stuck)::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(to bottom, rgba(0,0,0,0.42), rgba(0,0,0,0));
}
.site-header--transparent:not(.is-stuck) .nav__link { color: rgba(255,255,255,0.9); }
.site-header--transparent:not(.is-stuck) .nav__link:hover,
.site-header--transparent:not(.is-stuck) .nav__link.is-active { color: #fff; }
.site-header--transparent:not(.is-stuck) .brand__name { color: #fff; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { height: 40px; width: 40px; object-fit: contain; }
.brand__name { font-family: var(--font-head); font-weight: 700; font-size: 22px; color: var(--primary); letter-spacing: -0.01em; }

.nav { display: none; align-items: center; gap: 32px; }
@media (min-width: 1024px) { .nav { display: flex; } }
.nav__link {
  font-family: var(--font-body); font-weight: 600; font-size: 14px; letter-spacing: 0.04em;
  color: var(--secondary); transition: color 0.2s ease; padding-block: 4px;
  border-bottom: 2px solid transparent;
}
.nav__link:hover { color: var(--primary); }
.nav__link.is-active { color: var(--primary); border-bottom-color: var(--primary); }
.site-header__actions { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: none; background: transparent; color: var(--primary);
  border-radius: var(--radius);
}
.site-header--transparent:not(.is-stuck) .nav-toggle { color: #fff; }
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.header-cta { display: none; }
@media (min-width: 700px) { .header-cta { display: inline-flex; } }

/* Mobile slide-out */
.mobile-nav {
  position: fixed; inset: 0; z-index: 1100; visibility: hidden; pointer-events: none;
}
.mobile-nav__overlay {
  position: absolute; inset: 0; background: rgba(28,27,27,0.5);
  opacity: 0; transition: opacity 0.3s ease;
}
.mobile-nav__panel {
  position: absolute; inset-block: 0; inset-inline-end: 0; width: min(85vw, 340px);
  background: var(--surface-container-lowest); box-shadow: var(--shadow-xl);
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column; padding: 24px; overflow-y: auto;
}
.mobile-nav.is-open { visibility: visible; pointer-events: auto; }
.mobile-nav.is-open .mobile-nav__overlay { opacity: 1; }
.mobile-nav.is-open .mobile-nav__panel { transform: translateX(0); }
.mobile-nav__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.mobile-nav__links { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav__links a {
  font-family: var(--font-head); font-weight: 600; font-size: 20px; color: var(--on-surface);
  padding: 12px 8px; border-radius: var(--radius); transition: background 0.2s ease, color 0.2s ease;
}
.mobile-nav__links a:hover, .mobile-nav__links a.is-active { background: var(--surface-container); color: var(--primary); }
.mobile-nav__cta { margin-top: auto; padding-top: 24px; }

/* ----------------------------------------------------------------- */
/* 7. Hero                                                            */
/* ----------------------------------------------------------------- */
.hero {
  position: relative; min-height: 90vh;
  display: flex; align-items: center; overflow: hidden;
  /* Top padding clears the fixed header; bottom padding clears the trust bar.
     min-height (not fixed height) lets the hero grow if content is tall,
     so the headline never rides up under the navbar. */
  padding-top: 132px; padding-bottom: 72px;
}
@media (min-width: 768px) { .hero { padding-bottom: 200px; } }
body.admin-bar .hero { padding-top: 156px; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.15) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__content { max-width: 720px; }
.hero__title { color: #fff; margin-bottom: 24px; }
.hero__sub { color: rgba(255,255,255,0.9); font-size: 18px; max-width: 560px; margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.scroll-cue {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 3;
  color: #fff; opacity: 0.85;
}
.scroll-cue .material-symbols-outlined { animation: vd-bob 2s ease-in-out infinite; }
@keyframes vd-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* Trust indicators glass bar */
.trust-bar {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  width: min(100% - 32px, 1000px); z-index: 4; display: none;
}
@media (min-width: 768px) { .trust-bar { display: block; } }
.glass-card {
  background: rgba(255,255,255,0.72); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25); border-radius: var(--radius-md); box-shadow: var(--shadow-xl);
}
.trust-bar__grid { display: flex; justify-content: space-around; align-items: center; gap: 24px; padding: 28px; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item .material-symbols-outlined { color: var(--primary); font-size: 30px; }
.trust-item strong { color: var(--on-surface); display: block; }
.trust-item span { color: var(--on-surface-variant); font-size: 14px; }
.trust-divider { width: 1px; height: 40px; background: var(--outline-variant); }

/* Generic inner-page hero (non-image) */
.page-hero { position: relative; padding-block: clamp(112px, 13vw, 148px) clamp(48px, 7vw, 72px); overflow: hidden; }
.page-hero--pattern::before {
  content: ""; position: absolute; inset: 0; opacity: 0.2;
  background-image: radial-gradient(var(--outline-variant) 0.5px, transparent 0.5px);
  background-size: 24px 24px;
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero--center { text-align: center; }
.page-hero--center .page-hero__inner { max-width: 760px; margin-inline: auto; }
.page-hero__sub { color: var(--tertiary); font-size: 18px; margin-top: 20px; }

/* Image hero (about) */
.image-hero { position: relative; height: 80vh; min-height: 520px; display: flex; align-items: center; justify-content: center; overflow: hidden; text-align: center; }
.image-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.image-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.6)); }
.image-hero__content { position: relative; z-index: 2; color: #fff; padding-inline: var(--margin-mobile); max-width: 860px; }
.image-hero__content h1 { color: #fff; }
.image-hero__content p { color: rgba(255,255,255,0.9); font-size: 18px; margin-top: 20px; }

/* ----------------------------------------------------------------- */
/* 8. Stats                                                           */
/* ----------------------------------------------------------------- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gutter); text-align: center; }
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; } }
.stat__num { font-family: var(--font-head); font-weight: 700; color: var(--primary); font-size: clamp(36px, 5vw, 56px); line-height: 1.1; }
.stat__label { font-size: 14px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--secondary); margin-top: 8px; }

/* ----------------------------------------------------------------- */
/* 9. Cards (services / values / why)                                 */
/* ----------------------------------------------------------------- */
.icon-card {
  background: var(--surface); border: 1px solid var(--outline-variant);
  padding: 32px; border-radius: var(--radius-md); transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex; flex-direction: column; height: 100%;
}
.icon-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.icon-card__icon {
  width: 56px; height: 56px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  background: rgba(46,125,50,0.10); color: var(--primary); margin-bottom: 24px; transition: background 0.3s ease, color 0.3s ease;
}
.icon-card__icon .material-symbols-outlined { font-size: 28px; }
.icon-card:hover .icon-card__icon { background: var(--primary); color: var(--on-primary); }
.icon-card h3 { margin-bottom: 12px; }
.icon-card p { color: var(--on-surface-variant); margin: 0 0 24px; }
.icon-card__link { margin-top: auto; color: var(--primary); font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
.icon-card__link .material-symbols-outlined { font-size: 18px; transition: transform 0.2s ease; }
.icon-card:hover .icon-card__link .material-symbols-outlined { transform: translateX(4px); }

/* Feature list (why choose us) */
.feature-list { display: flex; flex-direction: column; gap: 24px; }
.feature-row { display: flex; gap: 16px; }
.feature-row__icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: var(--radius-full);
  background: rgba(121,86,75,0.10); color: var(--secondary);
  display: flex; align-items: center; justify-content: center;
}
.feature-row h4 { font-size: 18px; margin-bottom: 4px; }
.feature-row p { color: var(--on-surface-variant); margin: 0; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.badge-float {
  position: absolute; bottom: -32px; right: -32px; width: 180px; height: 180px;
  background: var(--primary); color: var(--on-primary); border-radius: var(--radius-xl);
  display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; box-shadow: var(--shadow-xl);
}
@media (min-width: 768px) { .badge-float { display: flex; } }
.badge-float strong { font-size: 40px; font-family: var(--font-head); }
.badge-float span { font-size: 13px; padding-inline: 16px; letter-spacing: 0.04em; }

/* ----------------------------------------------------------------- */
/* 10. Masonry / project grids                                        */
/* ----------------------------------------------------------------- */
.masonry {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: 200px; gap: var(--gutter);
}
.masonry--lg { grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); }
.m-tall { grid-row: span 2; }
.m-tall-3 { grid-row: span 3; }
.m-square { grid-row: span 2; }
.m-wide { grid-column: span 2; }
@media (max-width: 768px) { .m-wide { grid-column: span 1; } }

.project-card {
  position: relative; overflow: hidden; border-radius: var(--radius-md);
  background: var(--surface-container); border: 1px solid var(--outline-variant);
  transition: box-shadow 0.3s ease;
}
.project-card:hover { box-shadow: var(--shadow-lg); }
.project-card__img { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.7s ease; }
.project-card__img img { width: 100%; height: 100%; object-fit: cover; }
.project-card:hover .project-card__img { transform: scale(1.1); }
.project-card__overlay {
  position: absolute; inset: 0; padding: 24px; display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff; background: linear-gradient(to top, rgba(0,0,0,0.82), transparent 60%);
  opacity: 0; transition: opacity 0.3s ease;
}
.project-card:hover .project-card__overlay, .project-card:focus-within .project-card__overlay { opacity: 1; }
.project-card__cat { font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary-fixed); margin-bottom: 8px; }
.project-card__overlay h3 { color: #fff; margin-bottom: 4px; }
.project-card__meta { display: flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.project-card__link { position: absolute; inset: 0; z-index: 3; text-indent: -9999px; }

/* Portfolio filter bar */
.filter-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.filter-btn {
  padding: 12px 28px; border-radius: var(--radius-full); border: none;
  background: var(--surface-container); color: var(--secondary); font-weight: 600; font-size: 14px;
  transition: all 0.25s ease;
}
.filter-btn:hover { background: var(--surface-container-high); }
.filter-btn.is-active { background: var(--primary); color: var(--on-primary); box-shadow: var(--shadow-md); }
.is-filtering { opacity: 0.4; transition: opacity 0.2s ease; }

/* ----------------------------------------------------------------- */
/* 11. Service cards (image top)                                      */
/* ----------------------------------------------------------------- */
.service-card {
  display: flex; flex-direction: column; background: var(--surface-container-lowest);
  border: 1px solid var(--surface-container); border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card__media { position: relative; height: 256px; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card__media img { transform: scale(1.05); }
.service-card__body { padding: 32px; display: flex; flex-direction: column; flex-grow: 1; }
.service-card__body h3 { margin-bottom: 16px; }
.check-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; flex-grow: 1; }
.check-list li { display: flex; align-items: center; gap: 12px; color: var(--tertiary); }
.check-list .material-symbols-outlined { color: var(--primary-container); font-size: 18px; }

/* Process steps */
.process { position: relative; }
.process__line { position: absolute; top: 48px; left: 0; width: 100%; height: 2px; display: none;
  background: linear-gradient(90deg, transparent, var(--surface-tint), transparent); }
@media (min-width: 768px) { .process__line { display: block; } }
.process__grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gutter); }
@media (max-width: 768px) { .process__grid { grid-template-columns: 1fr; gap: 48px; } }
.process__step { text-align: center; display: flex; flex-direction: column; align-items: center; }
.process__badge { position: relative; width: 96px; height: 96px; border-radius: var(--radius-full);
  background: var(--surface-container-lowest); border: 1px solid var(--outline-variant); box-shadow: var(--shadow-sm);
  display: flex; align-items: center; justify-content: center; margin-bottom: 32px; }
.process__badge .material-symbols-outlined { font-size: 36px; color: var(--primary); }
.process__num { position: absolute; top: -8px; right: -8px; width: 32px; height: 32px; border-radius: var(--radius-full);
  background: var(--primary-container); color: var(--on-primary-container); font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; }
.process__step h4 { margin-bottom: 12px; }
.process__step p { color: var(--tertiary); margin: 0; }

/* ----------------------------------------------------------------- */
/* 12. Testimonials                                                   */
/* ----------------------------------------------------------------- */
.testimonial-card {
  position: relative; overflow: hidden; background: var(--surface-container-lowest);
  padding: 32px; border-radius: var(--radius-xl); border: 1px solid var(--surface-variant);
  box-shadow: var(--shadow-sm); transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-card__quote-icon { position: absolute; top: -16px; left: -16px; font-size: 120px; color: rgba(13,99,27,0.08); pointer-events: none; }
.stars { display: flex; gap: 2px; color: var(--secondary); margin-bottom: 16px; }
.stars .material-symbols-outlined { font-variation-settings: 'FILL' 1; font-size: 20px; }
.testimonial-card p.quote { color: var(--on-surface-variant); font-style: italic; margin: 0 0 32px; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-author__avatar { width: 48px; height: 48px; border-radius: var(--radius-full); overflow: hidden; flex-shrink: 0; }
.testimonial-author__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author strong { display: block; }
.testimonial-author small { color: var(--secondary); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }

/* Swiper tweaks */
.testi-swiper { padding-bottom: 56px !important; }
.testi-swiper .swiper-pagination-bullet { background: var(--outline); }
.testi-swiper .swiper-pagination-bullet-active { background: var(--primary); }
.testi-swiper .swiper-button-next, .testi-swiper .swiper-button-prev { color: var(--primary); }

/* Masonry (columns) testimonial variant */
.testi-columns { columns: 3; column-gap: var(--gutter); }
@media (max-width: 1024px) { .testi-columns { columns: 2; } }
@media (max-width: 680px) { .testi-columns { columns: 1; } }
.testi-columns > * { break-inside: avoid; margin-bottom: var(--gutter); }
.testimonial-card--dark { background: var(--primary); color: var(--on-primary); }
.testimonial-card--dark h4 { color: var(--primary-fixed); }
.testimonial-card--dark p { color: rgba(255,255,255,0.92); }

/* ----------------------------------------------------------------- */
/* 13. Before / After slider                                          */
/* ----------------------------------------------------------------- */
.ba-slider { position: relative; width: 100%; aspect-ratio: 21/9; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-xl); border: 1px solid var(--outline-variant); background: var(--surface); user-select: none; }
@media (max-width: 640px) { .ba-slider { aspect-ratio: 4/3; } }
.ba-slider__after, .ba-slider__before { position: absolute; inset: 0; background-size: cover; background-position: center; }
.ba-slider__after img, .ba-slider__before img { width: 100%; height: 100%; object-fit: cover; }
.ba-slider__before { width: 50%; overflow: hidden; border-right: 4px solid #fff; z-index: 2; }
.ba-slider__before .ba-inner { width: 100vw; max-width: none; height: 100%; }
.ba-handle { position: absolute; top: 0; bottom: 0; width: 2px; background: #fff; z-index: 3; left: 50%; transform: translateX(-50%);
  cursor: ew-resize; touch-action: none; display: flex; align-items: center; justify-content: center; }
.ba-handle__knob { width: 44px; height: 44px; border-radius: var(--radius-full); background: #fff; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center; color: var(--primary); }
.ba-handle__knob .material-symbols-outlined { transform: rotate(90deg); }
.ba-label { position: absolute; bottom: 24px; z-index: 4; padding: 6px 16px; border-radius: var(--radius-full);
  font-size: 14px; font-weight: 600; letter-spacing: 0.05em; color: #fff; backdrop-filter: blur(6px); }
.ba-label--before { left: 24px; background: rgba(0,0,0,0.5); }
.ba-label--after { right: 24px; background: rgba(13,99,27,0.8); }

/* ----------------------------------------------------------------- */
/* 14. Service-area map                                               */
/* ----------------------------------------------------------------- */
.map-wrap { position: relative; height: 450px; border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--outline-variant); box-shadow: var(--shadow-md); }
.map-wrap iframe, .map-wrap img { width: 100%; height: 100%; border: 0; object-fit: cover; }
.map-pin { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.map-pin__chip { background: var(--surface); box-shadow: var(--shadow-xl); padding: 14px 18px; border-radius: var(--radius);
  display: flex; align-items: center; gap: 10px; font-weight: 700; animation: vd-bob 2.4s ease-in-out infinite; }
.map-pin__chip .material-symbols-outlined { color: var(--primary); font-variation-settings: 'FILL' 1; }
.area-list { display: flex; flex-direction: column; gap: 12px; }
.area-list li { display: flex; align-items: center; gap: 12px; }
.area-list .material-symbols-outlined { color: var(--primary); }

/* ----------------------------------------------------------------- */
/* 15. CTA banner                                                     */
/* ----------------------------------------------------------------- */
.cta-banner { position: relative; overflow: hidden; border-radius: var(--radius-xl); background: var(--primary);
  color: #fff; text-align: center; padding: clamp(48px, 8vw, 80px) clamp(24px, 5vw, 40px); }
.cta-banner__bg { position: absolute; inset: 0; z-index: 0; object-fit: cover; width: 100%; height: 100%; opacity: 0.25; }
.cta-banner__inner { position: relative; z-index: 1; }
.cta-banner h2 { color: #fff; max-width: 640px; margin-inline: auto; }
.cta-banner p { color: var(--on-primary-container); max-width: 560px; margin: 20px auto 32px; font-size: 18px; }
.cta-banner__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }

/* ----------------------------------------------------------------- */
/* 16. Forms (quote request)                                          */
/* ----------------------------------------------------------------- */
.form-card { position: relative; overflow: hidden; background: var(--surface); padding: clamp(24px, 4vw, 48px);
  border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); border: 1px solid var(--outline-variant); }
.quote-form { display: flex; flex-direction: column; gap: 24px; position: relative; z-index: 1; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field > label { font-size: 14px; font-weight: 600; letter-spacing: 0.03em; color: var(--on-surface-variant); }
.field .req { color: var(--error); }
.field input[type="text"], .field input[type="email"], .field input[type="tel"],
.field select, .field textarea {
  width: 100%; padding: 14px 16px; font-family: var(--font-body); font-size: 16px; color: var(--on-surface);
  background: var(--surface-container-low); border: 0; border-bottom: 2px solid transparent;
  border-radius: var(--radius) var(--radius) 0 0; transition: border-color 0.3s ease, background 0.3s ease;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--primary); background: var(--surface-container); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2340493d' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-bottom-color: var(--error); background: var(--error-container); }
.field__error { color: var(--on-error-container); font-size: 13px; }

.chip-group { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
@media (max-width: 560px) { .chip-group { grid-template-columns: repeat(2, 1fr); } }
.chip { padding: 12px 8px; border: 1px solid var(--outline-variant); border-radius: var(--radius); background: transparent;
  font-weight: 600; font-size: 14px; color: var(--on-surface); transition: all 0.2s ease; }
.chip:hover { background: rgba(46,125,50,0.08); }
.chip.is-selected { background: var(--primary); color: var(--on-primary); border-color: var(--primary); }

.dropzone { border: 2px dashed var(--outline-variant); border-radius: var(--radius-md); padding: 32px; text-align: center;
  position: relative; transition: border-color 0.2s ease, background 0.2s ease; }
.dropzone:hover, .dropzone.is-drag { border-color: var(--primary); background: rgba(46,125,50,0.04); }
.dropzone input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.dropzone .material-symbols-outlined { font-size: 36px; color: var(--secondary); margin-bottom: 8px; }
.dropzone__hint { font-size: 12px; color: var(--tertiary); margin-top: 4px; }
.dropzone__files { margin-top: 12px; font-size: 13px; color: var(--primary); font-weight: 600; }

.form-note { font-size: 13px; color: var(--tertiary); }
.form-message { padding: 16px; border-radius: var(--radius); font-weight: 600; }
.form-message--success { background: rgba(46,125,50,0.12); color: var(--on-primary-fixed-variant); }
.form-message--error { background: var(--error-container); color: var(--on-error-container); }
.form-progress { height: 4px; background: var(--surface-container-high); border-radius: var(--radius-full); overflow: hidden; }
.form-progress__bar { height: 100%; width: 0; background: var(--primary); transition: width 0.4s ease; }

/* Contact info list */
.contact-list { display: flex; flex-direction: column; gap: 24px; }
.contact-list__item { display: flex; align-items: flex-start; gap: 16px; }
.contact-list__icon { width: 48px; height: 48px; border-radius: var(--radius-full); background: rgba(46,125,50,0.10);
  color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.25s ease; }
.contact-list__item:hover .contact-list__icon { background: var(--primary); color: var(--on-primary); }
.contact-list__item small { display: block; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--secondary); }
.contact-list__item strong { font-size: 18px; font-weight: 600; }

/* Newsletter */
.newsletter { display: flex; }
.newsletter input { flex: 1; border: 0; padding: 10px 14px; background: var(--surface-container); border-radius: var(--radius) 0 0 var(--radius); outline: none; }
.newsletter input:focus { box-shadow: inset 0 0 0 1px var(--primary); }
.newsletter button { border: 0; background: var(--primary); color: var(--on-primary); padding-inline: 16px; border-radius: 0 var(--radius) var(--radius) 0; transition: background 0.2s ease; }
.newsletter button:hover { background: var(--primary-container); }

/* ----------------------------------------------------------------- */
/* 17. Footer                                                         */
/* ----------------------------------------------------------------- */
.site-footer { background: var(--surface-container-lowest); border-top: 1px solid var(--outline-variant);
  padding-block: clamp(64px, 10vw, var(--section-gap)) var(--space-base); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--gutter); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 40px; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--primary); margin-bottom: 24px; font-family: var(--font-body); font-weight: 700; }
.footer-col p { color: var(--secondary); margin: 0 0 24px; }
.footer-links { display: flex; flex-direction: column; gap: 16px; }
.footer-links a { color: var(--secondary); transition: color 0.2s ease; }
.footer-links a:hover { color: var(--primary); text-decoration: underline; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.footer-brand img { height: 36px; width: 36px; }
.footer-brand span { font-family: var(--font-head); font-weight: 700; font-size: 24px; color: var(--primary); }
.social-row { display: flex; gap: 12px; }
.social-row a { width: 40px; height: 40px; border-radius: var(--radius-full); background: var(--surface-container);
  display: flex; align-items: center; justify-content: center; color: var(--secondary); transition: all 0.2s ease; }
.social-row a:hover { background: var(--primary); color: var(--on-primary); }
.footer-contact { display: flex; flex-direction: column; gap: 16px; color: var(--secondary); }
.footer-contact p { display: flex; align-items: flex-start; gap: 12px; margin: 0; }
.footer-contact .material-symbols-outlined { color: var(--primary); font-size: 20px; }
.footer-bottom { max-width: var(--container-max); margin: clamp(48px,8vw,var(--section-gap)) auto 0; padding: 32px var(--margin-mobile) 0;
  border-top: 1px solid rgba(191,202,186,0.4); text-align: center; }
@media (min-width: 1024px) { .footer-bottom { padding-inline: var(--margin-desktop); } }
.footer-bottom p { color: var(--secondary); font-size: 14px; margin: 0; }
.footer-bottom a { margin-left: 16px; }
.footer-bottom a:hover { text-decoration: underline; }

/* ----------------------------------------------------------------- */
/* 18. Blog                                                           */
/* ----------------------------------------------------------------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gutter); }
@media (max-width: 900px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .post-grid { grid-template-columns: 1fr; } }
.post-card { background: var(--surface-container-lowest); border: 1px solid var(--surface-container); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.3s ease, box-shadow 0.3s ease; display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.post-card__media { aspect-ratio: 16/10; overflow: hidden; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__body { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
.post-card__cat { font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); margin-bottom: 10px; }
.post-card__body h3 { font-size: 20px; margin-bottom: 12px; }
.post-card__body h3 a:hover { color: var(--primary); }
.post-card__excerpt { color: var(--on-surface-variant); margin: 0 0 16px; }
.post-card__meta { margin-top: auto; font-size: 13px; color: var(--tertiary); display: flex; gap: 12px; align-items: center; }

.single-content { max-width: 760px; margin-inline: auto; }
.single-content p, .single-content ul, .single-content ol, .single-content blockquote { margin-block: 1.2em; }
.single-content ul { list-style: disc; padding-left: 1.4em; }
.single-content ol { list-style: decimal; padding-left: 1.4em; }
.single-content h2 { font-size: 28px; margin-top: 1.6em; margin-bottom: 0.5em; }
.single-content h3 { font-size: 22px; margin-top: 1.4em; margin-bottom: 0.5em; }
.single-content img { border-radius: var(--radius-md); margin-block: 1.6em; }
.single-content blockquote { border-left: 4px solid var(--primary); padding-left: 24px; font-style: italic; color: var(--on-surface-variant); }
.single-content a { color: var(--primary); text-decoration: underline; }

.entry-hero { padding-block: clamp(120px, 16vw, 160px) 40px; }
.entry-meta { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; color: var(--tertiary); font-size: 14px; margin-top: 16px; }
.author-box { display: flex; gap: 16px; align-items: center; background: var(--surface-container-low); padding: 24px; border-radius: var(--radius-md); margin-top: 48px; }
.author-box img { width: 64px; height: 64px; border-radius: var(--radius-full); }
.share-row { display: flex; gap: 12px; align-items: center; margin-top: 32px; }
.share-row a { width: 40px; height: 40px; border-radius: var(--radius-full); background: var(--surface-container); display: flex; align-items: center; justify-content: center; color: var(--secondary); transition: all 0.2s ease; }
.share-row a:hover { background: var(--primary); color: #fff; }

/* Breadcrumbs */
.breadcrumbs { font-size: 14px; color: var(--tertiary); display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.breadcrumbs a:hover { color: var(--primary); text-decoration: underline; }
.breadcrumbs .sep { opacity: 0.5; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 56px; flex-wrap: wrap; }
.pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding-inline: 12px;
  border-radius: var(--radius); background: var(--surface-container); color: var(--on-surface); font-weight: 600; transition: all 0.2s ease; }
.pagination .page-numbers:hover { background: var(--surface-container-high); }
.pagination .page-numbers.current { background: var(--primary); color: #fff; }

/* ----------------------------------------------------------------- */
/* 19. Single service / project layouts                              */
/* ----------------------------------------------------------------- */
.faq-item { border: 1px solid var(--outline-variant); border-radius: var(--radius-md); overflow: hidden; margin-bottom: 12px; background: var(--surface-container-lowest); }
.faq-item summary { cursor: pointer; padding: 20px 24px; font-weight: 600; font-family: var(--font-head); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .material-symbols-outlined { transition: transform 0.25s ease; color: var(--primary); }
.faq-item[open] summary .material-symbols-outlined { transform: rotate(180deg); }
.faq-item__body { padding: 0 24px 24px; color: var(--on-surface-variant); }

.benefit-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 640px) { .benefit-list { grid-template-columns: 1fr; } }
.benefit-list li { display: flex; gap: 12px; align-items: flex-start; }
.benefit-list .material-symbols-outlined { color: var(--primary); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 700px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-grid a { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; display: block; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-grid a:hover img { transform: scale(1.06); }

/* Certifications strip */
.cert-strip { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; opacity: 0.6; }
.cert-strip .cert { display: flex; align-items: center; gap: 12px; }
.cert-strip .material-symbols-outlined { font-size: 32px; }
.cert-strip span { font-weight: 700; text-transform: uppercase; font-size: 14px; letter-spacing: 0.06em; color: var(--secondary); }

/* Team cards */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gutter); }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .team-grid { grid-template-columns: 1fr; } }
.team-card__media { aspect-ratio: 4/5; overflow: hidden; border-radius: var(--radius-md); margin-bottom: 24px; background: var(--surface-container); }
.team-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-card:hover .team-card__media img { transform: scale(1.05); }
.team-card h4 { margin-bottom: 6px; }
.team-card .role { color: var(--primary); font-size: 14px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 12px; }
.team-card p { color: var(--on-surface-variant); margin: 0; }
.team-card__social { display: flex; gap: 10px; margin-top: 16px; }
.team-card__social a { color: var(--secondary); }
.team-card__social a:hover { color: var(--primary); }

/* Big pull-quote testimonial */
.pull-quote { position: relative; padding: clamp(40px, 6vw, 80px); border-radius: var(--radius-xl); overflow: hidden; }
.pull-quote__icon { position: absolute; top: -40px; right: -40px; font-size: 300px; color: rgba(13,99,27,0.05); }
.pull-quote h3 { font-size: clamp(24px, 3.4vw, 40px); font-style: italic; line-height: 1.3; margin-bottom: 32px; position: relative; z-index: 1; }

/* ----------------------------------------------------------------- */
/* 20. Scroll-reveal animation utility                               */
/* ----------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* Utility spacing */
.mt-0 { margin-top: 0; }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.stack > * + * { margin-top: 24px; }
.text-primary { color: var(--primary); }
.text-muted { color: var(--on-surface-variant); }
.maxw-2xl { max-width: 640px; }
.maxw-3xl { max-width: 760px; }
.divider-rule { width: 96px; height: 4px; background: var(--primary-container); margin: 16px auto 0; border-radius: var(--radius-full); }
