/* ============================================================
   ANKOR — style.css
   Fonts: Inter (body), Raleway (headings)
   Colors:
     --primary:   #2d5a3d  (deep forest green)
     --accent:    #e07b39  (warm amber/orange)
     --bg:        #f9f8f5  (warm off-white)
     --fg:        #1c1a14  (charcoal)
     --muted:     #7a766a  (muted text)
     --card:      #ffffff
     --border:    #e4e0d8
     --secondary: #eef2ec  (light sage)
   ============================================================ */

/* ---- Reset & base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #f9f8f5;
  color: #1c1a14;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  font-family: 'Raleway', sans-serif;
  line-height: 1.2;
  color: #1c1a14;
}
p { line-height: 1.65; }
table { border-collapse: collapse; width: 100%; }

/* ---- CSS Variables ---- */
:root {
  --primary:   #2d5a3d;
  --primary-d: #244931;
  --accent:    #e07b39;
  --accent-d:  #c96c2c;
  --bg:        #f9f8f5;
  --fg:        #1c1a14;
  --muted:     #7a766a;
  --card:      #ffffff;
  --border:    #e4e0d8;
  --secondary: #eef2ec;
  --radius:    6px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,.12);
  --container: 1280px;
  --header-h:  64px;
}

/* ---- Container ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ---- Utility ---- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-muted { color: var(--muted); }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-center { text-align: center; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .625rem 1.25rem;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 600;
  line-height: 1;
  transition: opacity .2s, background .2s, color .2s;
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn--primary  { background: var(--primary); color: #fff; }
.btn--primary:hover  { opacity: .88; }
.btn--accent   { background: var(--accent);  color: #fff; }
.btn--accent:hover   { opacity: .88; }
.btn--outline  { background: transparent; border-color: var(--border); color: var(--fg); }
.btn--outline:hover  { background: var(--secondary); }
.btn--ghost    { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.35); color: #fff; }
.btn--ghost:hover    { background: rgba(255,255,255,.22); }
.btn--full     { width: 100%; }
.btn--lg       { padding: .875rem 2rem; font-size: 1rem; }

/* ---- Badge / chip ---- */
.badge {
  display: inline-block;
  padding: .2rem .6rem;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.badge--primary { background: rgba(45,90,61,.12); color: var(--primary); }
.badge--accent  { background: rgba(224,123,57,.12); color: var(--accent); }
.badge--orange  { background: var(--accent); color: #fff; }
.badge--green   { background: var(--primary); color: #fff; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.topbar {
  background: var(--primary);
  color: rgba(255,255,255,.85);
  font-size: .75rem;
  padding: .375rem 0;
  text-align: center;
}
.header-main { height: var(--header-h); display: flex; align-items: center; }
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: .625rem;
  flex-shrink: 0;
}
.logo__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 4px;
  line-height: 1;
}
.logo__name { display: block; font-family: 'Raleway', sans-serif; font-size: 1.125rem; font-weight: 800; color: var(--fg); text-transform: uppercase; letter-spacing: .06em; line-height: 1.1; }
.logo__sub  { display: none; font-size: .625rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }
@media (min-width: 480px) { .logo__sub { display: block; } }
.logo--light .logo__name { color: #fff; }
.logo--light .logo__sub  { color: rgba(255,255,255,.5); }

/* Desktop Nav */
.nav { display: none; flex: 1; }
@media (min-width: 1024px) { .nav { display: flex; align-items: center; } }
.nav__list { display: flex; align-items: center; gap: .25rem; }
.nav__item { position: relative; }
.nav__link, .nav__link--btn {
  display: flex;
  align-items: center;
  gap: .25rem;
  padding: .5rem .75rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--fg);
  border-radius: var(--radius);
  transition: color .15s, background .15s;
}
.nav__link:hover, .nav__link--btn:hover { color: var(--primary); background: var(--secondary); }
.nav__link--active { color: var(--primary); }
.nav__chevron { width: 14px; height: 14px; transition: transform .2s; flex-shrink: 0; }
.nav__item--dropdown:hover .nav__chevron { transform: rotate(180deg); }
/* Dropdown */
.nav__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: .5rem 0;
  z-index: 200;
}
.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown { display: block; }
.nav__drop-link {
  display: block;
  padding: .5rem 1rem;
  font-size: .875rem;
  color: var(--fg);
  transition: color .15s, background .15s;
}
.nav__drop-link:hover { color: var(--primary); background: var(--secondary); }

/* Header CTA */
.header-cta { display: none; align-items: center; gap: 1rem; margin-left: auto; }
@media (min-width: 1024px) { .header-cta { display: flex; } }
.header-phone {
  display: flex;
  align-items: center;
  gap: .375rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--fg);
  transition: color .15s;
}
.header-phone:hover { color: var(--primary); }
.header-phone svg { width: 16px; height: 16px; }

/* Burger */
.burger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  margin-left: auto;
  padding: 0;
}
@media (min-width: 1024px) { .burger { display: none; } }
.burger span {
  display: block;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.burger.is-open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--card);
}
.mobile-menu.is-open { display: block; }
.mobile-nav { padding: 1rem; }
.mobile-nav__list { display: flex; flex-direction: column; gap: .25rem; }
.mobile-nav__item {}
.mobile-nav__link, .mobile-nav__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: .625rem .75rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--fg);
  border-radius: var(--radius);
  transition: color .15s, background .15s;
  text-align: left;
}
.mobile-nav__link:hover, .mobile-nav__toggle:hover { color: var(--primary); background: var(--secondary); }
.mobile-nav__link--active { color: var(--primary); }
.mobile-nav__sub { display: none; flex-direction: column; gap: .15rem; margin-left: 1rem; margin-top: .25rem; }
.mobile-nav__sub.is-open { display: flex; }
.mobile-nav__sub-link { display: block; padding: .5rem .75rem; font-size: .85rem; color: var(--muted); border-radius: var(--radius); transition: color .15s, background .15s; }
.mobile-nav__sub-link:hover { color: var(--primary); background: var(--secondary); }
.mobile-nav__toggle .nav__chevron { transition: transform .25s; }
.mobile-nav__toggle.is-open .nav__chevron { transform: rotate(180deg); }
.mobile-nav__footer { display: flex; flex-direction: column; gap: .5rem; padding-top: .75rem; margin-top: .5rem; border-top: 1px solid var(--border); }
.mobile-nav__phone {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .625rem .75rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--fg);
}
.mobile-nav__phone svg { width: 16px; height: 16px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--fg);
  color: rgba(255,255,255,.7);
  padding: 3rem 0 0;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand {}
.footer-desc { font-size: .875rem; line-height: 1.65; color: rgba(255,255,255,.5); margin: .75rem 0 1.25rem; max-width: 280px; }
.footer-contacts { display: flex; flex-direction: column; gap: .75rem; }
.footer-contact-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  transition: color .15s;
}
.footer-contact-link:hover { color: var(--accent); }
.footer-contact-link svg, .footer-contact-addr svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer-contact-addr { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; color: rgba(255,255,255,.6); }
.footer-col__title { font-family: 'Raleway', sans-serif; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.5); transition: color .15s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 1.25rem 0;
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  text-align: center;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom a:hover { color: rgba(255,255,255,.6); }

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  background: var(--secondary);
  border-bottom: 1px solid var(--border);
  padding: .625rem 0;
}
.breadcrumbs__list { display: flex; align-items: center; flex-wrap: wrap; gap: .25rem; }
.breadcrumbs__item { display: flex; align-items: center; gap: .25rem; font-size: .8125rem; }
.breadcrumbs__item::before { content: '/'; color: var(--muted); margin-right: .25rem; }
.breadcrumbs__item:first-child::before { display: none; }
.breadcrumbs__link { color: var(--muted); transition: color .15s; }
.breadcrumbs__link:hover { color: var(--primary); }
.breadcrumbs__current { color: var(--fg); font-weight: 500; }

/* ============================================================
   PAGE HERO (green banner used on inner pages)
   ============================================================ */
.page-hero {
  background: var(--primary);
  color: #fff;
  padding: 3.5rem 0;
}
.page-hero__eyebrow { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.6); margin-bottom: .75rem; }
.page-hero__title   { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 800; margin-bottom: 1rem; color: #fff; }
.page-hero__desc    { font-size: 1.0625rem; color: rgba(255,255,255,.8); max-width: 560px; line-height: 1.65; }

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section { padding: 4rem 0; }
.section--sm { padding: 2.5rem 0; }
.section--lg { padding: 5rem 0; }
.section--muted   { background: var(--secondary); }
.section--dark    { background: var(--primary); color: #fff; }
.section--card    { background: var(--card); }
.section--accent  { background: var(--accent); color: #fff; }

.section-eyebrow { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--accent); margin-bottom: .5rem; }
.section-title { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 800; margin-bottom: 1rem; }
.section-sub { color: var(--muted); max-width: 560px; }

/* ============================================================
   GRID HELPERS
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (min-width: 640px)  { .grid-2 { grid-template-columns: 1fr 1fr; } .grid-3 { grid-template-columns: 1fr 1fr; } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   CARD
   ============================================================ */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, border-color .2s;
}
.card:hover { box-shadow: var(--shadow-md); border-color: rgba(45,90,61,.25); }
.card__body { padding: 1.25rem; }
.card__img  { position: relative; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.card:hover .card__img img { transform: scale(1.04); }

/* ============================================================
   HERO SECTION (homepage)
   ============================================================ */
.hero {
  position: relative;
  min-height: 520px;
  height: 85vh;
  max-height: 860px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,50,30,.82) 0%, rgba(20,50,30,.5) 55%, transparent 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
}
.hero__inner { max-width: 680px; }
.hero__eyebrow { font-size: .8125rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--accent); margin-bottom: 1rem; }
.hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero__desc { font-size: 1.0625rem; color: rgba(255,255,255,.85); line-height: 1.7; margin-bottom: 2rem; max-width: 520px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; }
/* Stats bar */
.hero__stats {
  position: relative;
  z-index: 2;
  background: rgba(45,90,61,.92);
  backdrop-filter: blur(6px);
}
.hero__stats-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 640px) { .hero__stats-inner { grid-template-columns: repeat(4, 1fr); } }
.hero__stat {
  padding: .875rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.15);
}
.hero__stat:last-child { border-right: none; }
.hero__stat-value { font-family: 'Raleway', sans-serif; font-size: 1.375rem; font-weight: 800; color: var(--accent); }
.hero__stat-label { font-size: .75rem; color: rgba(255,255,255,.7); margin-top: .1rem; }

/* ============================================================
   CATALOG SECTION (homepage)
   ============================================================ */
.catalog-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow .25s, border-color .25s, transform .25s;
  text-decoration: none;
  color: inherit;
}
.catalog-card:hover { box-shadow: var(--shadow-md); border-color: rgba(45,90,61,.3); transform: translateY(-2px); }
.catalog-card__img { position: relative; height: 208px; overflow: hidden; }
.catalog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.catalog-card:hover .catalog-card__img img { transform: scale(1.05); }
.catalog-card__badge { position: absolute; top: .75rem; left: .75rem; }
.catalog-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.catalog-card__title { font-family: 'Raleway', sans-serif; font-size: 1.0625rem; font-weight: 700; margin-bottom: .4rem; transition: color .15s; }
.catalog-card:hover .catalog-card__title { color: var(--primary); }
.catalog-card__desc { font-size: .875rem; color: var(--muted); line-height: 1.65; flex: 1; }
.catalog-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; padding-top: .875rem; border-top: 1px solid var(--border); }
.catalog-card__price { font-weight: 700; color: var(--primary); font-size: .9375rem; }
.catalog-card__more { display: flex; align-items: center; gap: .25rem; font-size: .875rem; font-weight: 600; color: var(--primary); }
.catalog-card__more svg { width: 14px; height: 14px; transition: transform .2s; }
.catalog-card:hover .catalog-card__more svg { transform: translateX(3px); }

/* ============================================================
   ADVANTAGES
   ============================================================ */
.adv-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  transition: box-shadow .2s, border-color .2s;
}
.adv-card:hover { box-shadow: var(--shadow-sm); border-color: rgba(45,90,61,.25); }
.adv-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(45,90,61,.1);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
}
.adv-card__icon svg { width: 24px; height: 24px; color: var(--primary); fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.adv-card__title { font-family: 'Raleway', sans-serif; font-size: 1.0625rem; font-weight: 700; margin-bottom: .4rem; }
.adv-card__desc  { font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* ============================================================
   ABOUT / TWO-COL
   ============================================================ */
.two-col { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .two-col { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.two-col--rev > :first-child { order: 2; }
.two-col--rev > :last-child  { order: 1; }
@media (min-width: 1024px) { .two-col--rev > :first-child { order: unset; } .two-col--rev > :last-child { order: unset; } }
.two-col__img { position: relative; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-lg); }
.two-col__img img { width: 100%; height: 100%; object-fit: cover; }
.two-col__badge {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: .875rem 1.25rem;
  box-shadow: var(--shadow-md);
  max-width: 190px;
}
.two-col__badge-value { font-family: 'Raleway', sans-serif; font-size: 1.75rem; font-weight: 800; color: var(--accent); line-height: 1; }
.two-col__badge-label { font-size: .8rem; color: rgba(255,255,255,.75); margin-top: .25rem; }

.checklist { display: grid; grid-template-columns: 1fr; gap: .625rem; margin: 1.5rem 0; }
@media (min-width: 640px) { .checklist { grid-template-columns: 1fr 1fr; } }
.checklist li { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; }
.checklist li svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; margin-top: 2px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ============================================================
   HOW WE WORK
   ============================================================ */
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px)  { .steps-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  transition: background .2s;
}
.step-card:hover { background: rgba(255,255,255,.15); }
.step-card__num  { font-family: 'Raleway', sans-serif; font-size: 2.5rem; font-weight: 800; color: rgba(255,255,255,.2); line-height: 1; margin-bottom: .75rem; }
.step-card__title{ font-family: 'Raleway', sans-serif; font-size: 1.0625rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.step-card__desc { font-size: .875rem; color: rgba(255,255,255,.65); line-height: 1.65; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { background: var(--accent); color: #fff; padding: 3.5rem 0; }
.cta-banner__inner { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 1024px) { .cta-banner__inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 2.5rem; } }
.cta-banner__title { font-size: clamp(1.375rem, 3vw, 1.875rem); font-weight: 800; margin-bottom: .5rem; color: #fff; }
.cta-banner__desc { font-size: 1rem; color: rgba(255,255,255,.8); max-width: 540px; }
.cta-banner__actions { display: flex; flex-wrap: wrap; gap: .75rem; flex-shrink: 0; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(45,90,61,.1);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}
.contact-item__icon svg { width: 20px; height: 20px; color: var(--primary); fill: none; stroke: currentColor; stroke-width: 1.8; }
.contact-item__label { font-size: .75rem; color: var(--muted); margin-bottom: .2rem; }
.contact-item__value { font-weight: 600; font-size: .9375rem; }
.contact-item__value a { color: var(--fg); transition: color .15s; }
.contact-item__value a:hover { color: var(--primary); }
.contact-hours { background: rgba(45,90,61,.06); border: 1px solid rgba(45,90,61,.12); border-radius: var(--radius-lg); padding: 1rem 1.25rem; font-size: .875rem; color: var(--muted); margin-top: 1.5rem; }
.contact-hours strong { color: var(--fg); }

/* Contact form card */
.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.form-card__title { font-family: 'Raleway', sans-serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 1.5rem; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { display: flex; flex-direction: column; gap: .375rem; margin-bottom: 1rem; }
.form-label { font-size: .875rem; font-weight: 500; color: var(--fg); }
.form-label .req { color: #dc2626; }
.form-control {
  width: 100%;
  padding: .625rem .875rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--fg);
  font-size: .875rem;
  font-family: inherit;
  line-height: 1.5;
  transition: border-color .15s, box-shadow .15s;
  appearance: none;
}
.form-control::placeholder { color: var(--muted); }
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(45,90,61,.15); }
textarea.form-control { resize: vertical; min-height: 100px; }
select.form-control { cursor: pointer; }
.form-note { font-size: .75rem; color: var(--muted); }
.form-note a { color: var(--primary); text-decoration: underline; }
.form-success {
  background: var(--secondary);
  border: 1px solid rgba(45,90,61,.2);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  text-align: center;
}
.form-success__icon { width: 56px; height: 56px; margin: 0 auto 1rem; background: rgba(45,90,61,.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.form-success__icon svg { width: 28px; height: 28px; color: var(--primary); fill: none; stroke: currentColor; stroke-width: 2; }
.form-success__title { font-family: 'Raleway', sans-serif; font-size: 1.25rem; font-weight: 700; margin-bottom: .5rem; }
.form-success__text { color: var(--muted); font-size: .9rem; }

/* ============================================================
   PRODUCT PAGE LAYOUT
   ============================================================ */
.product-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding: 2.5rem 0 4rem; }
@media (min-width: 1024px) { .product-layout { grid-template-columns: 2fr 1fr; gap: 3rem; } }
.product-main { display: flex; flex-direction: column; gap: 2rem; }
.product-sidebar {}
.product-sidebar__sticky { display: flex; flex-direction: column; gap: 1.25rem; }
@media (min-width: 1024px) { .product-sidebar__sticky { position: sticky; top: calc(var(--header-h) + 1.5rem); } }

/* Product title area */
.product-badges { display: flex; align-items: center; gap: .5rem; margin-bottom: .5rem; }
.product-title { font-size: clamp(1.625rem, 3.5vw, 2.25rem); font-weight: 800; margin-bottom: .625rem; }
.product-subtitle { font-size: 1.0625rem; color: var(--muted); line-height: 1.65; }
.product-price { display: flex; align-items: baseline; gap: .5rem; margin-top: 1rem; }
.product-price__value { font-family: 'Raleway', sans-serif; font-size: 2rem; font-weight: 800; }
.product-price__unit  { font-size: .875rem; color: var(--muted); }

/* Gallery */
.gallery { display: flex; flex-direction: column; gap: .75rem; }
.gallery__main { position: relative; aspect-ratio: 16/9; border-radius: var(--radius-xl); overflow: hidden; background: var(--secondary); }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.gallery__thumbs { display: flex; gap: .5rem; }
.gallery__thumb {
  width: 72px;
  height: 54px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .2s;
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumb.is-active { border-color: var(--primary); }
.gallery__thumb:hover { border-color: rgba(45,90,61,.5); }

/* Specs table */
.specs-table { border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; }
.specs-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .875rem 1.25rem;
  font-size: .875rem;
  border-bottom: 1px solid var(--border);
}
.specs-row:last-child { border-bottom: none; }
.specs-row:nth-child(odd) { background: rgba(0,0,0,.02); }
.specs-row__label { color: var(--muted); flex-shrink: 0; }
.specs-row__value { font-weight: 500; text-align: right; }

/* Types / pricing variants */
.variant-list { display: flex; flex-direction: column; gap: .75rem; }
.variant-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.variant-item__name { font-weight: 600; font-size: .9rem; }
.variant-item__desc { font-size: .8rem; color: var(--muted); margin-top: .15rem; }
.variant-item__price { font-weight: 700; color: var(--primary); font-size: .9rem; flex-shrink: 0; }

/* Advantages mini-grid */
.adv-mini-grid { display: grid; grid-template-columns: 1fr; gap: .875rem; }
@media (min-width: 640px) { .adv-mini-grid { grid-template-columns: 1fr 1fr; } }
.adv-mini {
  display: flex;
  gap: .875rem;
  padding: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.adv-mini__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(45,90,61,.1);
  border-radius: var(--radius);
  flex-shrink: 0;
  margin-top: 2px;
}
.adv-mini__icon svg { width: 20px; height: 20px; color: var(--primary); fill: none; stroke: currentColor; stroke-width: 1.8; }
.adv-mini__title { font-weight: 600; font-size: .9rem; margin-bottom: .2rem; }
.adv-mini__text  { font-size: .8125rem; color: var(--muted); line-height: 1.55; }

/* Included box */
.included-box {
  background: var(--secondary);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
}
.included-box__title { font-family: 'Raleway', sans-serif; font-size: 1.125rem; font-weight: 700; margin-bottom: 1rem; }
.included-list { display: grid; grid-template-columns: 1fr; gap: .5rem; }
@media (min-width: 640px) { .included-list { grid-template-columns: 1fr 1fr; } }
.included-list li { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; }
.included-list li svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; margin-top: 2px; fill: none; stroke: currentColor; stroke-width: 2; }

/* Sidebar related products */
.related-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.25rem;
}
.related-card__title { font-family: 'Raleway', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.related-list { display: flex; flex-direction: column; gap: .25rem; }
.related-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .625rem .75rem;
  border-radius: var(--radius);
  font-size: .875rem;
  color: var(--fg);
  transition: background .15s, color .15s;
}
.related-list a:hover { background: var(--secondary); color: var(--primary); }
.related-list__price { font-size: .75rem; color: var(--muted); white-space: nowrap; }
.related-list a:hover .related-list__price { color: var(--primary); }

/* Inquiry form card in sidebar */
.inquiry-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.inquiry-card__title { font-family: 'Raleway', sans-serif; font-size: 1.0625rem; font-weight: 700; margin-bottom: .375rem; }
.inquiry-card__sub  { font-size: .8125rem; color: var(--muted); margin-bottom: 1.25rem; }

/* ============================================================
   PRICING PAGE
   ============================================================ */
.pricing-cards { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .pricing-cards { grid-template-columns: repeat(3, 1fr); } }
.pricing-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: visible;
  position: relative;
}
.pricing-card--highlight { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(45,90,61,.15); }
.pricing-card__tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: .25rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}
.pricing-card__head { padding: 1.5rem; border-bottom: 1px solid var(--border); }
.pricing-card--highlight .pricing-card__head { border-color: rgba(45,90,61,.15); }
.pricing-card__name { font-family: 'Raleway', sans-serif; font-size: 1.25rem; font-weight: 800; }
.pricing-card__desc { font-size: .875rem; color: var(--muted); margin: .375rem 0 1rem; }
.pricing-card__price { display: flex; align-items: baseline; gap: .25rem; }
.pricing-card__amount { font-family: 'Raleway', sans-serif; font-size: 2rem; font-weight: 800; }
.pricing-card__unit { font-size: .875rem; color: var(--muted); }
.pricing-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.pricing-feat-list { display: flex; flex-direction: column; gap: .625rem; flex: 1; margin-bottom: 1.5rem; }
.pricing-feat { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; }
.pricing-feat svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; fill: none; stroke: currentColor; stroke-width: 2; }
.pricing-feat--yes svg { color: var(--primary); }
.pricing-feat--no  { color: var(--muted); text-decoration: line-through; }
.pricing-feat--no svg { color: var(--muted); }

/* Piles table */
.price-table { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-sm); }
.price-table table { width: 100%; font-size: .875rem; }
.price-table th { text-align: left; padding: .875rem 1.25rem; background: var(--secondary); font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); border-bottom: 1px solid var(--border); }
.price-table td { padding: .875rem 1.25rem; border-bottom: 1px solid var(--border); }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:nth-child(odd) td { background: rgba(0,0,0,.015); }
.price-table tr:hover td { background: var(--secondary); }
.price-table td:last-child { font-weight: 700; color: var(--primary); text-align: right; }
.price-table__note { font-size: .75rem; color: var(--muted); margin-top: .5rem; padding: 0 .25rem; }

/* Service price rows */
.service-rows { display: grid; grid-template-columns: 1fr; gap: .5rem; }
@media (min-width: 640px) { .service-rows { grid-template-columns: 1fr 1fr; } }
.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .875rem 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: .875rem;
}
.service-row__name { color: var(--fg); }
.service-row__price { font-weight: 700; color: var(--primary); white-space: nowrap; }

/* ============================================================
   PROJECTS PAGE
   ============================================================ */
.project-filters { display: flex; gap: .375rem; overflow-x: auto; padding-bottom: .25rem; }
.project-filter-btn {
  flex-shrink: 0;
  padding: .375rem 1rem;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--card);
  border: 1px solid var(--border);
  transition: background .15s, color .15s;
}
.project-filter-btn:hover, .project-filter-btn.is-active { background: var(--primary); color: #fff; border-color: var(--primary); }
.project-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s;
}
.project-card:hover { box-shadow: var(--shadow-md); }
.project-card__img { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.project-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.project-card:hover .project-card__img img { transform: scale(1.04); }
.project-card__cat { position: absolute; top: .75rem; left: .75rem; background: var(--primary); color: #fff; font-size: .7rem; font-weight: 700; padding: .25rem .625rem; border-radius: var(--radius); text-transform: uppercase; letter-spacing: .04em; }
.project-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.project-card__title { font-family: 'Raleway', sans-serif; font-size: 1.0625rem; font-weight: 700; }
.project-card__desc { font-size: .875rem; color: var(--muted); line-height: 1.6; flex: 1; }
.project-card__meta { display: flex; flex-wrap: wrap; gap: .75rem; font-size: .75rem; color: var(--muted); border-top: 1px solid var(--border); padding-top: .75rem; }
.project-card__meta span { display: flex; align-items: center; gap: .3rem; }
.project-card__meta svg { width: 13px; height: 13px; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 1.8; }
.project-card__link { display: inline-flex; align-items: center; gap: .3rem; font-size: .875rem; font-weight: 600; color: var(--primary); margin-top: .25rem; }
.project-card__link svg { width: 14px; height: 14px; transition: transform .2s; }
.project-card__link:hover svg { transform: translateX(3px); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.stats-band { background: var(--accent); }
.stats-band .container { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.stats-band-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (min-width: 1024px) { .stats-band-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-block { text-align: center; }
.stat-block__value { font-family: 'Raleway', sans-serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; line-height: 1; }
.stat-block__label { font-size: .875rem; color: rgba(255,255,255,.8); margin-top: .3rem; }

.values-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px)  { .values-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.value-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 1.5rem; }
.value-card__icon { width: 48px; height: 48px; background: rgba(45,90,61,.1); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.value-card__icon svg { width: 24px; height: 24px; color: var(--primary); fill: none; stroke: currentColor; stroke-width: 1.8; }
.value-card__title { font-family: 'Raleway', sans-serif; font-size: 1.0625rem; font-weight: 700; margin-bottom: .4rem; }
.value-card__desc  { font-size: .875rem; color: var(--muted); line-height: 1.6; }

/* Timeline */
.timeline { position: relative; display: flex; flex-direction: column; gap: 1.5rem; }
.timeline::before { content: ''; position: absolute; left: 12px; top: 0; bottom: 0; width: 2px; background: var(--border); }
@media (min-width: 768px) { .timeline::before { left: 50%; transform: translateX(-50%); } }
.timeline-item { position: relative; display: flex; gap: 1.5rem; }
@media (min-width: 768px) { .timeline-item { justify-content: center; } }
.timeline-item::before { content: ''; position: absolute; left: 6px; top: 1.25rem; width: 14px; height: 14px; border-radius: 50%; background: var(--primary); border: 3px solid var(--bg); z-index: 1; }
@media (min-width: 768px) { .timeline-item::before { left: 50%; transform: translateX(-50%); } }
.timeline-item__card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.125rem 1.25rem; box-shadow: var(--shadow-sm); margin-left: 2rem; flex: 1; max-width: 100%; }
@media (min-width: 768px) { .timeline-item__card { max-width: calc(50% - 2rem); margin-left: 0; margin-right: 0; } .timeline-item:nth-child(even) .timeline-item__card { margin-left: calc(50% + 2rem); } .timeline-item:nth-child(odd) .timeline-item__card { margin-right: calc(50% + 2rem); text-align: right; } }
.timeline-item__year { font-family: 'Raleway', sans-serif; font-size: 1.25rem; font-weight: 800; color: var(--primary); }
.timeline-item__text { font-size: .875rem; color: var(--fg); line-height: 1.55; margin-top: .2rem; }

/* Team */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 1.5rem; text-align: center; }
.team-card__avatar { width: 64px; height: 64px; border-radius: 50%; background: rgba(45,90,61,.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.team-card__avatar svg { width: 32px; height: 32px; color: var(--primary); fill: none; stroke: currentColor; stroke-width: 1.5; }
.team-card__name { font-family: 'Raleway', sans-serif; font-size: 1rem; font-weight: 700; }
.team-card__role { font-size: .875rem; color: var(--primary); font-weight: 600; margin: .2rem 0; }
.team-card__exp  { font-size: .8rem; color: var(--muted); }

/* ============================================================
   REVIEWS PAGE
   ============================================================ */
.reviews-summary { display: flex; align-items: center; flex-wrap: wrap; gap: 2rem; padding: 1.5rem 0; border-bottom: 1px solid var(--border); margin-bottom: 2.5rem; }
.rating-big { font-family: 'Raleway', sans-serif; font-size: 3.5rem; font-weight: 800; color: var(--fg); line-height: 1; }
.stars { display: flex; gap: 3px; }
.star { width: 16px; height: 16px; color: var(--accent); }
.star--empty { color: var(--border); }
.reviews-total { font-size: .875rem; color: var(--muted); }
.review-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.review-card__quote { width: 32px; height: 32px; color: rgba(45,90,61,.15); }
.review-card__text  { font-size: .875rem; line-height: 1.7; color: var(--fg); flex: 1; }
.review-card__footer { border-top: 1px solid var(--border); padding-top: 1rem; display: flex; align-items: flex-start; justify-content: space-between; gap: .75rem; }
.review-card__name   { font-weight: 700; font-size: .9rem; }
.review-card__loc    { font-size: .8rem; color: var(--muted); }
.review-card__service{ font-size: .8rem; color: var(--primary); margin-top: .15rem; }
.review-card__date   { font-size: .75rem; color: var(--muted); }

/* ============================================================
   CAREERS PAGE
   ============================================================ */
.vacancy-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 1.75rem 2rem; }
.vacancy-card__head { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .vacancy-card__head { flex-direction: row; align-items: flex-start; justify-content: space-between; } }
.vacancy-card__title { font-family: 'Raleway', sans-serif; font-size: 1.25rem; font-weight: 800; margin-bottom: .5rem; }
.vacancy-meta { display: flex; flex-wrap: wrap; gap: .75rem; font-size: .8125rem; color: var(--muted); }
.vacancy-meta span { display: flex; align-items: center; gap: .3rem; }
.vacancy-meta svg  { width: 13px; height: 13px; flex-shrink: 0; fill: none; stroke: currentColor; stroke-width: 1.8; }
.vacancy-body { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .vacancy-body { grid-template-columns: 1fr 1fr; } }
.vacancy-body h4 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: .75rem; }
.bullet-list { display: flex; flex-direction: column; gap: .5rem; }
.bullet-list li { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; color: var(--muted); }
.bullet-list li::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex-shrink: 0; margin-top: 7px; }
.bullet-list--accent li::before { background: var(--accent); }

/* ============================================================
   DELIVERY PAGE
   ============================================================ */
.delivery-table-wrap { overflow-x: auto; }

/* ============================================================
   DOCUMENTS PAGE
   ============================================================ */
.doc-cat-title { font-family: 'Raleway', sans-serif; font-size: 1.125rem; font-weight: 700; padding-bottom: .75rem; border-bottom: 1px solid var(--border); margin-bottom: 1.25rem; }
.doc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color .15s;
  margin-bottom: .5rem;
}
.doc-item:hover { border-color: rgba(45,90,61,.3); }
.doc-item__info { display: flex; align-items: center; gap: .75rem; }
.doc-item__icon { color: var(--primary); flex-shrink: 0; }
.doc-item__icon svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.doc-item__name { font-size: .9rem; font-weight: 500; color: var(--fg); }
.doc-item__date { font-size: .75rem; color: var(--muted); margin-top: .15rem; }
.doc-item__dl { display: flex; align-items: center; gap: .3rem; font-size: .8rem; color: var(--muted); transition: color .15s; flex-shrink: 0; }
.doc-item:hover .doc-item__dl { color: var(--primary); }
.doc-item__dl svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; }

/* ============================================================
   PROSE / LEGAL PAGES
   ============================================================ */
.prose { max-width: 720px; margin: 0 auto; }
.prose p  { font-size: .9375rem; color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
.prose h2 { font-family: 'Raleway', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--fg); margin: 2rem 0 .75rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.prose ul { margin: .5rem 0 1rem 1.25rem; list-style: disc; }
.prose ul li { font-size: .9375rem; color: var(--muted); line-height: 1.7; margin-bottom: .3rem; }
.prose a { color: var(--primary); text-decoration: underline; }

/* ============================================================
   CONTACT PAGE — map/photo block
   ============================================================ */
.office-photo { position: relative; border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/3; background: var(--secondary); }
.office-photo img { width: 100%; height: 100%; object-fit: cover; }
.office-photo__overlay { position: absolute; inset: 0; background: rgba(28,26,20,.42); display: flex; align-items: flex-end; padding: 1.25rem; }
.office-photo__label { color: #fff; }
.office-photo__city { font-family: 'Raleway', sans-serif; font-size: 1.125rem; font-weight: 700; }
.office-photo__addr { font-size: .875rem; color: rgba(255,255,255,.75); }
.directions-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 1.25rem; }
.directions-card h3 { font-family: 'Raleway', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: .875rem; }
.directions-list { display: flex; flex-direction: column; gap: .625rem; }
.directions-list li { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; color: var(--muted); }
.directions-list li::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex-shrink: 0; margin-top: 7px; }

/* Contact cards row */
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (min-width: 1024px) { .contact-cards { grid-template-columns: repeat(4, 1fr); } }
.contact-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 1.25rem; }
.contact-card__icon { width: 40px; height: 40px; background: rgba(45,90,61,.1); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.contact-card__icon svg { width: 20px; height: 20px; color: var(--primary); fill: none; stroke: currentColor; stroke-width: 1.8; }
.contact-card__title { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: .5rem; }
.contact-card__lines { display: flex; flex-direction: column; gap: .15rem; font-size: .9rem; color: var(--fg); }
.contact-card__action { display: inline-flex; align-items: center; gap: .25rem; margin-top: .5rem; font-size: .875rem; font-weight: 600; color: var(--primary); }
.contact-card__action:hover { text-decoration: underline; }

/* ============================================================
   NOTICE BAR
   ============================================================ */
.notice-bar { background: rgba(224,123,57,.1); border-bottom: 1px solid rgba(224,123,57,.2); }
.notice-bar .container { padding-top: .75rem; padding-bottom: .75rem; display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; color: var(--fg); }
.notice-bar svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 2px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.notice-bar a { color: var(--primary); font-weight: 500; }
.notice-bar a:hover { text-decoration: underline; }

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.section-header { margin-bottom: 3rem; }
.section-header--center { text-align: center; }
.section-header--center .section-sub { margin: .75rem auto 0; }
.section-header--between { display: flex; flex-direction: column; gap: .75rem; }
@media (min-width: 640px) { .section-header--between { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.more-link { display: inline-flex; align-items: center; gap: .3rem; font-size: .875rem; font-weight: 700; color: var(--primary); }
.more-link svg { width: 14px; height: 14px; transition: transform .2s; }
.more-link:hover svg { transform: translateX(3px); }

/* ============================================================
   RESPONSIVE MISC
   ============================================================ */
@media (max-width: 639px) {
  .hide-xs { display: none !important; }
}
.overflow-x-auto { overflow-x: auto; }

/* ============================================================
   PAGE HERO SMALL VARIANT
   ============================================================ */
.page-hero--sm { padding: 2.5rem 0; }
.page-hero__sub { font-size: 1rem; color: rgba(255,255,255,.8); max-width: 560px; line-height: 1.65; margin-top: .5rem; }

/* ============================================================
   ABOUT PAGE — layout helpers
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4,1fr); } }
.stat-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 1.5rem; text-align: center; }
.stat-card__num   { font-family: 'Raleway', sans-serif; font-size: 2rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-card__label { font-size: .875rem; color: var(--muted); margin-top: .35rem; }

.about-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .about-layout { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.about-layout__img { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/3; }
.about-layout__img img { width: 100%; height: 100%; object-fit: cover; }

.check-list { display: flex; flex-direction: column; gap: .625rem; margin: 1.25rem 0; }
.check-list li { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; color: var(--muted); }
.check-list li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; }

/* adv-card text alias */
.adv-card__text { font-size: .875rem; color: var(--muted); line-height: 1.65; }

/* timeline year */
.timeline-item__year { display: none; }

/* ============================================================
   PROJECTS PAGE — filter tabs
   ============================================================ */
.filter-tabs { display: flex; gap: .375rem; overflow-x: auto; padding-bottom: .375rem; margin-bottom: 2rem; }
.filter-tab {
  flex-shrink: 0;
  padding: .4rem 1rem;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--card);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.filter-tab:hover, .filter-tab--active { background: var(--primary); color: #fff; border-color: var(--primary); }
.projects-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px)  { .projects-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .projects-grid { grid-template-columns: repeat(3,1fr); } }

/* project-card already defined above; ensure img-wrap exists */
.project-card__img-wrap { display: block; position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--secondary); }
.project-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.project-card:hover .project-card__img-wrap img { transform: scale(1.04); }
.project-card__cat { position: absolute; top: .75rem; left: .75rem; background: var(--primary); color: #fff; font-size: .7rem; font-weight: 700; padding: .25rem .625rem; border-radius: var(--radius); text-transform: uppercase; letter-spacing: .04em; }
.project-card__body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: .5rem; }
.project-card__title { font-family: 'Raleway', sans-serif; font-size: 1.0625rem; font-weight: 700; }
.project-card__meta { display: flex; flex-wrap: wrap; gap: .5rem .75rem; font-size: .75rem; color: var(--muted); border-top: 1px solid var(--border); padding-top: .75rem; }

/* ============================================================
   PRICING PAGE (new style)
   ============================================================ */
.pricing-card { padding: 0; }
.pricing-card--featured { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(45,90,61,.1); }
.pricing-card__badge {
  background: var(--accent);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-align: center;
  padding: .35rem;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.pricing-card__name  { font-family: 'Raleway', sans-serif; font-size: 1.25rem; font-weight: 800; }
.pricing-card__desc  { font-size: .875rem; color: var(--muted); margin: .375rem 0 .75rem; }
.pricing-card__price { font-family: 'Raleway', sans-serif; font-size: 1.75rem; font-weight: 800; color: var(--primary); margin-bottom: 1rem; }
.pricing-card__list  { display: flex; flex-direction: column; gap: .5rem; flex: 1; margin-bottom: 1.5rem; }
.pricing-card__list li { display: flex; align-items: flex-start; gap: .5rem; font-size: .875rem; color: var(--muted); }
.pricing-card__list li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--primary); fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
/* add padding to inner area */
.pricing-card .btn { margin: 0 1.5rem 1.5rem; width: calc(100% - 3rem); }
.pricing-card__name, .pricing-card__desc, .pricing-card__price, .pricing-card__list { padding: 0 1.5rem; }
.pricing-card__name { padding-top: 1.5rem; }

/* info-boxes for delivery page */
.info-boxes { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .info-boxes { grid-template-columns: repeat(3,1fr); } }
.info-box { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 1.25rem; text-align: center; }
.info-box__num   { font-family: 'Raleway', sans-serif; font-size: 2rem; font-weight: 800; color: var(--accent); }
.info-box__label { font-size: .875rem; color: var(--muted); margin-top: .25rem; }

.info-section-title { font-family: 'Raleway', sans-serif; font-size: 1.375rem; font-weight: 800; margin-bottom: 1.25rem; }
.info-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 1024px) { .info-layout { grid-template-columns: 2fr 1fr; gap: 3rem; } }
.info-main {}
.info-sidebar {}
.info-sidebar .inquiry-card { position: sticky; top: calc(var(--header-h) + 1.5rem); }

.steps-list { display: flex; flex-direction: column; gap: 1rem; list-style: none; }
.steps-list__item { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 1.25rem; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.steps-list__num { font-family: 'Raleway', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--accent); flex-shrink: 0; width: 2rem; }
.steps-list__item strong { display: block; font-weight: 700; margin-bottom: .25rem; }
.steps-list__item p { font-size: .875rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ============================================================
   CONTACTS PAGE
   ============================================================ */
.contacts-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 3rem; }
@media (min-width: 1024px) { .contacts-layout { grid-template-columns: 1fr 1fr; } }
.contacts-form-wrap__title { font-family: 'Raleway', sans-serif; font-size: 1.375rem; font-weight: 800; margin-bottom: .375rem; }
.contacts-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-block {}
.contact-block__title { font-family: 'Raleway', sans-serif; font-size: .875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: .375rem; }
.contact-link-big { font-size: 1.125rem; font-weight: 700; color: var(--fg); transition: color .15s; display: block; margin-bottom: .25rem; }
.contact-link-big:hover { color: var(--primary); }
.map-placeholder { position: relative; border-radius: var(--radius-xl); overflow: hidden; height: 340px; background: var(--secondary); }
.map-placeholder__label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.92);
  border-radius: var(--radius-lg);
  padding: .625rem .875rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--fg);
  box-shadow: var(--shadow-md);
}
.map-placeholder__label svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 0 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   REVIEWS PAGE (new cards)
   ============================================================ */
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px)  { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3,1fr); } }
.review-card__header { display: flex; align-items: center; gap: .75rem; margin-bottom: .875rem; }
.review-card__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--primary); color: #fff; font-family: 'Raleway', sans-serif; font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.review-card__name  { font-weight: 700; font-size: .9rem; }
.review-card__loc   { font-size: .75rem; color: var(--muted); }
.review-card__stars { display: flex; gap: 2px; flex-shrink: 0; }
.review-card__stars svg { width: 14px; height: 14px; }
.review-card__service { font-size: .75rem; font-weight: 600; color: var(--primary); background: rgba(45,90,61,.08); display: inline-block; padding: .15rem .5rem; border-radius: 999px; margin-bottom: .75rem; }
.review-card__text  { font-size: .875rem; line-height: 1.7; color: var(--fg); flex: 1; }
.review-card__date  { font-size: .75rem; color: var(--muted); margin-top: .75rem; padding-top: .75rem; border-top: 1px solid var(--border); }
.ml-auto { margin-left: auto; }

/* Rating summary */
.rating-summary { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 640px) { .rating-summary { grid-template-columns: auto 1fr; align-items: center; } }
.rating-summary__score { text-align: center; }
.rating-summary__num   { font-family: 'Raleway', sans-serif; font-size: 3.5rem; font-weight: 800; color: var(--fg); line-height: 1; display: block; }
.rating-summary__stars { display: flex; justify-content: center; gap: 4px; margin: .375rem 0; }
.rating-summary__stars svg { width: 18px; height: 18px; }
.rating-summary__count { font-size: .875rem; color: var(--muted); }
.rating-summary__bars  { display: flex; flex-direction: column; gap: .5rem; max-width: 320px; }
.rating-bar { display: flex; align-items: center; gap: .5rem; font-size: .8rem; color: var(--muted); }
.rating-bar__track { flex: 1; height: 8px; background: var(--border); border-radius: 999px; overflow: hidden; }
.rating-bar__fill  { height: 100%; background: #f59e0b; border-radius: 999px; }

/* ============================================================
   CAREERS PAGE (new components)
   ============================================================ */
.job-list { display: flex; flex-direction: column; gap: 1rem; }
.job-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color .2s;
}
.job-item[open] { border-color: rgba(45,90,61,.3); }
.job-item__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.job-item__header::-webkit-details-marker { display: none; }
.job-item__info { flex: 1; min-width: 0; }
.job-item__title { font-family: 'Raleway', sans-serif; font-size: 1.0625rem; font-weight: 700; margin-bottom: .375rem; }
.job-item__meta  { display: flex; flex-wrap: wrap; gap: .375rem; }
.job-item__salary { font-family: 'Raleway', sans-serif; font-size: 1rem; font-weight: 800; color: var(--primary); white-space: nowrap; }
.job-item__chevron { width: 20px; height: 20px; color: var(--muted); transition: transform .25s; flex-shrink: 0; }
details[open] .job-item__chevron { transform: rotate(180deg); }
.job-item__body { padding: 0 1.5rem 1.5rem; }
.job-item__desc { font-size: .9rem; color: var(--muted); margin-bottom: 1.25rem; line-height: 1.65; }
.job-item__cols { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .job-item__cols { grid-template-columns: 1fr 1fr; } }
.job-item__cols h4 { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); margin-bottom: .75rem; }
.badge--outline { background: transparent; border: 1px solid var(--border); color: var(--muted); }

/* ============================================================
   DOCUMENTS PAGE (new layout)
   ============================================================ */
.docs-layout { display: flex; flex-direction: column; gap: 2.5rem; }
.doc-group {}
.doc-group__title { font-family: 'Raleway', sans-serif; font-size: 1.125rem; font-weight: 700; margin-bottom: 1rem; padding-bottom: .75rem; border-bottom: 1px solid var(--border); }
.doc-list { display: flex; flex-direction: column; gap: .5rem; }
.doc-item { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: border-color .15s; }
.doc-item:hover { border-color: rgba(45,90,61,.3); }
.doc-item__icon { color: var(--primary); flex-shrink: 0; }
.doc-item__icon svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.doc-item__info { flex: 1; min-width: 0; }
.doc-item__name { font-size: .9rem; font-weight: 500; color: var(--fg); display: block; }
.doc-item__size { font-size: .75rem; color: var(--muted); }
.btn--sm { padding: .375rem .875rem; font-size: .8125rem; }

/* ============================================================
   LEGAL PAGES (new .legal-content alias)
   ============================================================ */
.legal-content { max-width: 740px; }
.legal-content h2 { font-family: 'Raleway', sans-serif; font-size: 1.125rem; font-weight: 700; margin: 2rem 0 .625rem; padding-top: 1rem; border-top: 1px solid var(--border); color: var(--fg); }
.legal-content p  { font-size: .9375rem; color: var(--muted); line-height: 1.75; margin-bottom: .875rem; }
.legal-content ul { margin: .375rem 0 1rem 1.25rem; list-style: disc; }
.legal-content ul li { font-size: .9375rem; color: var(--muted); line-height: 1.7; margin-bottom: .3rem; }
.legal-content a  { color: var(--primary); text-decoration: underline; }

/* ============================================================
   CTA SECTION (used on multiple pages)
   ============================================================ */
.cta-section { background: var(--accent); color: #fff; padding: 3.5rem 0; }
.cta-section__inner { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 1024px) { .cta-section__inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 2.5rem; } }
.cta-section__title { font-size: clamp(1.375rem, 3vw, 1.875rem); font-weight: 800; color: #fff; margin-bottom: .375rem; }
.cta-section__sub   { font-size: .9375rem; color: rgba(255,255,255,.85); }
.cta-section__actions { display: flex; flex-wrap: wrap; gap: .75rem; flex-shrink: 0; }
.btn--white { background: #fff; color: var(--accent); }
.btn--white:hover { opacity: .9; }
.btn--outline-white { background: transparent; border: 2px solid rgba(255,255,255,.55); color: #fff; }
.btn--outline-white:hover { background: rgba(255,255,255,.12); }

/* ============================================================
   FAQ LIST (pricing page)
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: .5rem; max-width: 780px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color .2s;
}
.faq-item[open] { border-color: rgba(45,90,61,.3); }
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  font-size: .9375rem;
  list-style: none;
  user-select: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__chevron { width: 16px; height: 16px; flex-shrink: 0; transition: transform .25s; fill: none; stroke: currentColor; stroke-width: 1.5; }
details[open] .faq-item__chevron { transform: rotate(180deg); }
.faq-item__a { padding: 0 1.25rem 1rem; font-size: .875rem; color: var(--muted); line-height: 1.7; }

/* section-badge used on several pages */
.section-badge { display: inline-block; font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); margin-bottom: .5rem; }
