/* ─────────────────────────────────────────────
   Sinertek Lux base stylesheet
   ───────────────────────────────────────────── */

:root {
  --green-900: #1a3326;
  --green-800: #233f30;
  --green-700: #2d4a3a;
  --green-600: #3a5a47;
  --green-500: #4a6b54;
  --green-200: #c4d3c9;

  --ochre-700: #8e6e2c;
  --ochre-600: #b08d3f;
  --ochre-500: #c9a55c;
  --ochre-300: #e3c98a;

  --cream-50:  #faf6ef;
  --cream-100: #f3ecdc;
  --cream-200: #e8dfc9;

  --graphite-900: #1f2622;
  --graphite-700: #3a4540;
  --graphite-500: #6b756f;
  --graphite-300: #b5bcb7;

  --shadow-sm: 0 1px 2px rgba(31, 38, 34, 0.06);
  --shadow-md: 0 6px 24px rgba(31, 38, 34, 0.08);
  --shadow-lg: 0 18px 48px rgba(31, 38, 34, 0.12);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-control: 10px;

  --container: 1200px;
  --gutter: clamp(20px, 4vw, 40px);

  --font-head: "Unbounded", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--graphite-900);
  background: var(--cream-50);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}

a:hover { color: var(--ochre-600); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--green-900);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 500; }

p { color: var(--graphite-700); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

/* ───── HEADER ───── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(31, 38, 34, 0.06);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--green-900);
}

.logo:hover { color: var(--green-900); }

.logo-image {
  display: block;
  width: clamp(178px, 18vw, 240px);
  height: 58px;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-sm);
}

.site-footer .logo-image {
  width: 220px;
  height: 58px;
}

.logo small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre-600);
  margin-top: 2px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--graphite-700);
  position: relative;
}

.nav a.is-active { color: var(--green-900); }

.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--ochre-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.nav a:hover::after,
.nav a.is-active::after { transform: scaleX(1); }

.nav-dropdown {
  position: relative;
}

.nav-drop-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-chevron {
  width: 14px;
  height: 14px;
  transition: transform .2s ease;
}

.nav-dropdown:hover .nav-chevron,
.nav-dropdown:focus-within .nav-chevron {
  transform: rotate(180deg);
}

.nav-drop-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: -16px;
  min-width: 280px;
  padding: 10px;
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.nav-dropdown:hover .nav-drop-menu,
.nav-dropdown:focus-within .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-drop-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  color: var(--graphite-700);
}

.nav-drop-menu a:hover {
  background: var(--cream-100);
  color: var(--green-900);
}

.nav-drop-menu a::after {
  display: none;
}

.nav-drop-menu-small {
  min-width: 230px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--green-800);
  color: var(--cream-50) !important;
  border-radius: var(--radius-control);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background .2s ease, transform .2s ease;
}

.nav-cta:hover {
  background: var(--green-900);
  transform: translateY(-1px);
}

.nav-cta::after { display: none; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--green-900);
}

@media (max-width: 880px) {
  .site-header {
    background: var(--cream-50);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav {
    display: none;
    position: fixed;
    inset: 78px 0 0 0;
    background: var(--cream-50);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 22px var(--gutter) 34px;
    gap: 12px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    overflow-y: auto;
    box-shadow: 0 26px 60px rgba(31, 38, 34, 0.14);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.64);
    font-size: 1.05rem;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-drop-toggle {
    justify-content: space-between;
  }

  .nav-chevron {
    transform: rotate(180deg);
  }

  .nav-drop-menu {
    position: static;
    min-width: 0;
    width: 100%;
    margin-top: 8px;
    padding: 8px;
    background: var(--cream-100);
    border: 1px solid var(--cream-200);
    border-radius: var(--radius-md);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-drop-menu a {
    width: 100%;
    padding: 11px 12px;
    background: var(--cream-50);
    font-size: 0.98rem;
    color: var(--graphite-700);
    white-space: normal;
  }

  .nav-drop-menu a + a {
    margin-top: 6px;
  }

  .nav-drop-menu a:hover {
    background: #fff;
    color: var(--green-900);
  }

  .menu-toggle { display: block; }
}

/* ───── BUTTONS ───── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--radius-control);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--green-800);
  color: var(--cream-50);
}
.btn-primary:hover {
  background: var(--green-900);
  color: var(--cream-50);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: transparent;
  color: var(--green-900);
  border-color: var(--green-800);
}
.btn-ghost:hover {
  background: var(--green-800);
  color: var(--cream-50);
}

.btn-gold {
  background: var(--ochre-600);
  color: var(--cream-50);
}
.btn-gold:hover {
  background: var(--ochre-700);
  color: var(--cream-50);
}

.btn .arrow {
  width: 16px; height: 16px;
  transition: transform .25s ease;
}
.btn:hover .arrow { transform: translateX(4px); }

/* ───── HERO ───── */
.hero {
  position: relative;
  padding: clamp(80px, 12vw, 140px) 0 clamp(80px, 10vw, 120px);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(201, 165, 92, 0.12), transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(45, 74, 58, 0.08), transparent 50%);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 880px) {
  .hero .container { grid-template-columns: 1fr; gap: 48px; }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

.hero h1 { margin-bottom: 28px; }

.hero h1 .accent {
  display: inline-block;
  color: var(--ochre-600);
  font-style: italic;
  font-weight: 400;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--graphite-700);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 32px;
  border-top: 1px solid var(--cream-200);
}

.hero-stats div { line-height: 1.3; }
.hero-stats .num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  color: var(--green-900);
  font-weight: 500;
}
.hero-stats .lbl {
  font-size: 0.85rem;
  color: var(--graphite-500);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 60%, var(--green-600) 100%);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.home-visual-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-visual .badge {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 28px;
  right: 28px;
  background: rgba(250, 246, 239, 0.96);
  backdrop-filter: blur(8px);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  color: var(--graphite-900);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-visual .badge strong {
  display: block;
  color: var(--green-900);
  font-weight: 600;
  margin-bottom: 2px;
}

.hero-visual .badge-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ochre-500);
  color: var(--cream-50);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ───── SECTIONS ───── */
section { padding: clamp(70px, 9vw, 110px) 0; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(48px, 7vw, 80px);
}

.section-head p {
  margin-top: 18px;
  font-size: 1.08rem;
}

/* Ornament divider */
.divider-orn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px auto;
  color: var(--ochre-500);
  opacity: 0.7;
}

/* ───── DIRECTIONS / CARDS ───── */
.directions {
  background: var(--cream-100);
  position: relative;
}

.dir-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
}

.dir-card {
  grid-column: span 2;
}

@media (max-width: 900px) {
  .dir-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dir-card {
    grid-column: auto;
  }
}

@media (max-width: 580px) {
  .dir-grid { grid-template-columns: 1fr; }
}

.dir-card {
  background: var(--cream-50);
  padding: 30px 24px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-200);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.dir-card::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top right, rgba(201, 165, 92, 0.1), transparent 70%);
  pointer-events: none;
}

.dir-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--ochre-300);
}

.dir-icon {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(142, 110, 44, 0.18);
}

.dir-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dir-card h3 { margin-bottom: 12px; }

.dir-card p {
  font-size: 0.94rem;
  margin-bottom: 24px;
  flex-grow: 1;
}

.dir-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--green-800);
  border-radius: var(--radius-control);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream-50);
  background: var(--green-800);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.dir-link:hover {
  color: var(--cream-50);
  background: var(--green-900);
  border-color: var(--green-900);
  transform: translateY(-1px);
}

/* ───── PROCESS ───── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 4vw, 52px);
}

@media (max-width: 880px) {
  .process-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 520px) {
  .process-grid { grid-template-columns: 1fr; }
}

.step {
  position: relative;
  padding-top: 0;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 32px;
  left: 78px;
  width: calc(100% - 28px);
  height: 1px;
  background: linear-gradient(90deg, var(--ochre-500), rgba(201, 165, 92, 0));
}

.step-icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--cream-100);
  border: 1px solid var(--ochre-300);
  color: var(--green-900);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 24px rgba(31, 38, 34, 0.06);
}

.step-icon svg {
  width: 28px;
  height: 28px;
}

.step h4 { margin-bottom: 10px; color: var(--green-900); }
.step p { font-size: 0.95rem; }

@media (max-width: 880px) {
  .step:not(:last-child)::after { display: none; }
}

/* ───── WHY US ───── */
.why-us {
  background: linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 880px) {
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
}

.why-list {
  list-style: none;
  margin-top: 32px;
}

.why-list li {
  padding: 22px 0;
  border-top: 1px solid var(--cream-200);
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 18px;
  align-items: start;
}

.why-list li:last-child { border-bottom: 1px solid var(--cream-200); }

.why-list .check {
  width: 24px;
  height: 24px;
  color: var(--ochre-600);
  flex-shrink: 0;
  margin-top: 2px;
}

.why-list h4 { margin-bottom: 4px; }
.why-list p { font-size: 0.94rem; }

.why-visual {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(45, 74, 58, 0.0) 60%, rgba(26, 51, 38, 0.7) 100%),
    linear-gradient(135deg, var(--green-700), var(--green-600));
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-visual::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, rgba(26, 51, 38, 0), rgba(26, 51, 38, 0.86));
  pointer-events: none;
}

.why-visual .quote {
  position: absolute;
  z-index: 2;
  left: 32px;
  right: 32px;
  bottom: 32px;
  color: var(--cream-50);
  font-family: var(--font-head);
  font-size: 1.4rem;
  line-height: 1.4;
  font-style: italic;
}

.why-visual .quote::before {
  content: "«";
  display: block;
  font-size: 3rem;
  color: var(--ochre-500);
  line-height: 1;
  margin-bottom: 8px;
}

/* ───── CTA SECTION ───── */
.cta-block {
  background: var(--green-800);
  color: var(--cream-50);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 7vw, 80px);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(201, 165, 92, 0.2), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(201, 165, 92, 0.1), transparent 60%);
  pointer-events: none;
}

.cta-block .ornament {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  color: var(--ochre-500);
  opacity: 0.5;
}

.cta-block h2 { color: var(--cream-50); margin-bottom: 18px; position: relative; }
.cta-block p {
  color: rgba(250, 246, 239, 0.78);
  max-width: 560px;
  margin: 0 auto 36px;
  position: relative;
  font-size: 1.08rem;
}
.cta-block .btn { position: relative; }

/* ───── FORM ───── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}

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

.contact-info h3 { margin-bottom: 24px; }

.contact-info dl {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.contact-info dt {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ochre-600);
  margin-bottom: 6px;
}

.contact-info dd {
  font-size: 1.05rem;
  color: var(--graphite-900);
}

.contact-info a { color: var(--graphite-900); border-bottom: 1px dashed var(--graphite-300); }
.contact-info a:hover { color: var(--ochre-600); border-color: var(--ochre-600); }

.form {
  background: var(--cream-50);
  padding: clamp(28px, 4vw, 44px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-200);
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-field { margin-bottom: 16px; }

.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--graphite-700);
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--graphite-900);
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-sm);
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(45, 74, 58, 0.08);
}

.form-field textarea { resize: vertical; min-height: 110px; }

.form-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 18px 0 24px;
  font-size: 0.85rem;
  color: var(--graphite-500);
  line-height: 1.5;
}

.form-consent input { margin-top: 4px; accent-color: var(--green-700); }

.form-consent a {
  color: var(--graphite-700);
  border-bottom: 1px dashed var(--graphite-300);
}

.form .btn { width: 100%; justify-content: center; }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.is-visible { display: block; }
.form-success svg { margin: 0 auto 20px; color: var(--ochre-600); }
.form-success h3 { margin-bottom: 8px; }

/* ───── FOOTER ───── */
/* About and contact pages */
.eyebrow {
  margin-bottom: 18px;
  color: var(--ochre-600);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-hero {
  padding: clamp(92px, 11vw, 150px) 0 clamp(64px, 8vw, 110px);
  background: linear-gradient(180deg, var(--cream-100) 0%, var(--cream-50) 100%);
  overflow: hidden;
}

.about-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.88fr);
  gap: clamp(40px, 7vw, 86px);
  align-items: center;
}

.about-hero-copy p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 24px;
  font-size: 1.12rem;
}

.about-hero-copy .hero-actions {
  margin-top: 42px;
}

.about-hero h1 {
  max-width: 700px;
  font-size: clamp(2.15rem, 4.35vw, 3.65rem);
}

.about-hero-card {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--green-800);
  box-shadow: var(--shadow-lg);
}

.about-hero-card::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(180deg, rgba(26, 51, 38, 0), rgba(26, 51, 38, 0.9));
  pointer-events: none;
}

.about-hero-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.about-hero-note {
  position: absolute;
  z-index: 2;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  background: rgba(250, 246, 239, 0.94);
  box-shadow: var(--shadow-md);
}

.about-hero-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green-900);
  font-family: var(--font-head);
  font-size: 1rem;
}

.about-hero-note span {
  color: var(--graphite-700);
  font-size: 0.94rem;
}

.about-story {
  padding: clamp(70px, 9vw, 112px) 0;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: clamp(44px, 7vw, 90px);
  align-items: start;
}

.about-story-grid h2 {
  margin-bottom: 22px;
}

.about-story-grid p {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: 1.12rem;
  line-height: 1.72;
}

.about-facts {
  display: grid;
  gap: 16px;
}

.about-facts div {
  position: relative;
  padding: 28px 30px;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  background: var(--cream-50);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.about-facts div::before {
  content: "";
  display: block;
  width: 46px;
  height: 2px;
  margin-bottom: 18px;
  background: var(--ochre-500);
}

.about-facts strong {
  display: block;
  margin-bottom: 12px;
  color: var(--green-900);
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.15;
}

.about-facts span {
  color: var(--graphite-700);
  font-size: 0.98rem;
  line-height: 1.58;
}

.values-grid-wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.docs-list {
  display: grid;
  gap: 14px;
}

.docs-list a {
  display: grid;
  gap: 6px;
  padding: 22px 24px;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  background: var(--cream-50);
  box-shadow: var(--shadow-sm);
}

.docs-list a:hover {
  border-color: var(--ochre-300);
  color: var(--green-900);
  transform: translateY(-1px);
}

.docs-list span {
  color: var(--green-900);
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 500;
}

.docs-list small {
  color: var(--graphite-500);
  font-size: 0.92rem;
}

.contact-hero {
  padding: clamp(92px, 11vw, 148px) 0 clamp(48px, 7vw, 86px);
  background: var(--green-900);
  color: var(--cream-50);
  overflow: hidden;
}

.contact-hero .container {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(36px, 7vw, 76px);
  align-items: end;
}

.contact-hero h1 {
  max-width: 560px;
  font-size: clamp(2.2rem, 4vw, 3.45rem);
  color: var(--cream-50);
}

.contact-hero-copy p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(250, 246, 239, 0.78);
  font-size: 1.12rem;
}

.contact-quick {
  display: grid;
  gap: 14px;
}

.contact-quick a,
.contact-quick div {
  display: grid;
  gap: 8px;
  padding: 22px 24px;
  border: 1px solid rgba(250, 246, 239, 0.16);
  border-radius: var(--radius-md);
  background: rgba(250, 246, 239, 0.07);
}

.contact-quick a:hover {
  background: rgba(250, 246, 239, 0.12);
  color: var(--cream-50);
}

.contact-quick small {
  color: var(--ochre-500);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-quick strong {
  color: var(--cream-50);
  font-family: var(--font-head);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 500;
  line-height: 1.35;
}

.contact-main {
  padding-top: clamp(70px, 9vw, 112px);
}

.contact-grid-expressive {
  align-items: stretch;
}

.contact-info-panel {
  height: 100%;
  padding: clamp(28px, 4vw, 42px);
  border-radius: var(--radius-lg);
  background: var(--cream-100);
  border: 1px solid var(--cream-200);
}

.contact-info-panel dl > div {
  padding: 18px 0;
  border-top: 1px solid var(--cream-200);
}

.contact-info-panel dl > div:first-child {
  padding-top: 0;
  border-top: 0;
}

.form-accent {
  box-shadow: var(--shadow-md);
}

.map-section {
  padding-top: 0;
}

.map-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--cream-200);
  background: var(--cream-100);
  box-shadow: var(--shadow-md);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: clamp(360px, 48vw, 520px);
  border: 0;
}

.site-footer {
  background: var(--green-900);
  color: rgba(250, 246, 239, 0.7);
  padding: 70px 0 30px;
  margin-top: 60px;
}

.site-footer .container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

@media (max-width: 880px) {
  .site-footer .container { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  .site-footer .container { grid-template-columns: 1fr; }
}

.footer-brand .logo { color: var(--cream-50); }
.footer-logo {
  width: max-content;
  padding: 8px 12px;
  background: var(--cream-50);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}
.footer-brand p {
  color: rgba(250, 246, 239, 0.6);
  font-size: 0.92rem;
  margin-top: 16px;
  max-width: 320px;
}

.footer-col h5 {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ochre-500);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(250, 246, 239, 0.75); font-size: 0.94rem; }
.footer-col a:hover { color: var(--ochre-500); }

.footer-bar {
  border-top: 1px solid rgba(250, 246, 239, 0.1);
  margin-top: 60px;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84rem;
  color: rgba(250, 246, 239, 0.5);
  flex-wrap: wrap;
  gap: 12px;
}

/* ───── COOKIE BANNER ───── */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 520px;
  margin-inline: auto;
  background: var(--green-900);
  color: var(--cream-50);
  padding: 22px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  z-index: 100;
  transform: translateY(120%);
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner p {
  color: rgba(250, 246, 239, 0.8);
  font-size: 0.92rem;
  margin-bottom: 16px;
  line-height: 1.55;
}
.cookie-banner p a {
  color: var(--ochre-500);
  border-bottom: 1px dashed var(--ochre-500);
}
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner .btn { padding: 10px 20px; font-size: 0.88rem; }
.cookie-banner .btn-primary {
  background: var(--ochre-600);
  color: var(--cream-50);
}
.cookie-banner .btn-primary:hover { background: var(--ochre-700); }
.cookie-banner .btn-ghost {
  background: transparent;
  color: var(--cream-50);
  border-color: rgba(250, 246, 239, 0.3);
}
.cookie-banner .btn-ghost:hover {
  background: rgba(250, 246, 239, 0.1);
  color: var(--cream-50);
}

/* ───── PAGE HEADER (subpages) ───── */
.page-head {
  padding: clamp(70px, 10vw, 130px) 0 clamp(40px, 6vw, 70px);
  background: linear-gradient(180deg, var(--cream-100) 0%, var(--cream-50) 100%);
  position: relative;
  overflow: hidden;
}

.page-head::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(201, 165, 92, 0.15), transparent 70%);
  pointer-events: none;
}

.page-head .container { position: relative; max-width: 880px; }
.page-head h1 { margin-bottom: 20px; }
.page-head p {
  font-size: 1.15rem;
  color: var(--graphite-700);
  max-width: 640px;
}

/* ───── SERVICE DETAILS (poslugy) ───── */
.service {
  padding: clamp(70px, 9vw, 110px) 0;
  border-bottom: 1px solid var(--cream-200);
}
.service:last-of-type { border-bottom: none; }

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.service:nth-of-type(even) .service-grid {
  grid-template-columns: 1.1fr 1fr;
}
.service:nth-of-type(even) .service-visual { order: -1; }

@media (max-width: 880px) {
  .service-grid, .service:nth-of-type(even) .service-grid { grid-template-columns: 1fr; gap: 40px; }
  .service:nth-of-type(even) .service-visual { order: 0; }
}

.service-content h2 { margin-bottom: 20px; }
.service-content > p {
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.service-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.feature-list {
  list-style: none;
  margin: 28px 0;
}
.feature-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--cream-200);
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 0.98rem;
  color: var(--graphite-700);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .dot {
  width: 8px; height: 8px;
  background: var(--ochre-500);
  border-radius: 50%;
  margin-top: 9px;
  margin-left: 8px;
}

.service-visual {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
}
.service:nth-of-type(2) .service-visual { background: linear-gradient(135deg, var(--green-800), var(--ochre-700)); }
.service:nth-of-type(3) .service-visual { background: linear-gradient(135deg, var(--ochre-700), var(--green-700)); }
.service:nth-of-type(4) .service-visual { background: linear-gradient(135deg, var(--green-600), var(--green-800)); }
.service:nth-of-type(5) .service-visual { background: linear-gradient(135deg, var(--graphite-700), var(--green-800)); }
#turnkey .service-visual { background: linear-gradient(135deg, var(--green-800), var(--ochre-600)); }

.service-photo {
  background: var(--cream-100);
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-visual .ornament {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  color: var(--ochre-500);
}

.service-visual .icon-big {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(250, 246, 239, 0.9);
}

.service-visual-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-visual-image img {
  width: min(58%, 240px);
  height: auto;
  border-radius: 50%;
  box-shadow: 0 20px 48px rgba(31, 38, 34, 0.22);
}

/* ───── PRODUCT DETAIL PAGE ───── */
.product-page {
  background: var(--cream-50);
}

.product-hero {
  min-height: calc(100vh - 78px);
  padding: clamp(96px, 12vw, 150px) 0 44px;
  color: var(--cream-50);
  background-image:
    linear-gradient(90deg, rgba(12, 28, 19, 0.82) 0%, rgba(18, 36, 26, 0.58) 42%, rgba(18, 36, 26, 0.18) 100%),
    var(--product-hero-image);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.product-hero .container {
  width: 100%;
}

.product-hero-content {
  max-width: 760px;
}

.product-hero h1 {
  color: var(--cream-50);
  max-width: 840px;
  margin-bottom: 24px;
}

.product-hero p {
  color: rgba(250, 246, 239, 0.84);
  font-size: 1.16rem;
  max-width: 660px;
  margin-bottom: 34px;
}

.btn-hero-ghost {
  color: var(--cream-50);
  border-color: rgba(250, 246, 239, 0.64);
  background: rgba(250, 246, 239, 0.08);
}

.btn-hero-ghost:hover {
  color: var(--green-900);
  background: var(--cream-50);
  border-color: var(--cream-50);
}

.product-hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 900px;
  margin-top: clamp(54px, 8vw, 86px);
  padding-top: 24px;
  border-top: 1px solid rgba(250, 246, 239, 0.28);
}

.product-hero-facts div {
  display: grid;
  gap: 6px;
}

.product-hero-facts strong {
  color: var(--cream-50);
  font-family: var(--font-head);
  font-weight: 500;
  line-height: 1.25;
}

.product-hero-facts span {
  color: rgba(250, 246, 239, 0.72);
  font-size: 0.95rem;
  line-height: 1.45;
}

.product-nav {
  position: sticky;
  top: 78px;
  z-index: 40;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--cream-200);
}

.product-nav .container {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-block: 12px;
}

.product-nav a {
  flex: 0 0 auto;
  padding: 9px 16px;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-control);
  color: var(--green-900);
  font-size: 0.92rem;
  font-weight: 600;
  background: var(--cream-50);
}

.product-nav a:hover {
  color: var(--cream-50);
  background: var(--green-800);
  border-color: var(--green-800);
}

.product-section {
  padding: clamp(70px, 9vw, 112px) 0;
}

.product-section-soft {
  background: var(--cream-100);
}

.product-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 58px;
  align-items: center;
}

.product-copy h2 {
  margin-bottom: 22px;
}

.product-copy > p {
  font-size: 1.06rem;
}

.product-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: var(--cream-100);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scenario-grid,
.sample-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.scenario-card,
.sample-card {
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
}

.scenario-card {
  padding: 30px 26px;
}

.scenario-card::before {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  background: var(--ochre-500);
  margin-bottom: 22px;
}

.scenario-card h3,
.sample-card h3 {
  margin-bottom: 12px;
}

.scenario-card p,
.sample-card p {
  font-size: 0.96rem;
}

.sample-card {
  display: flex;
  flex-direction: column;
  padding: 18px;
}

.sample-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--cream-100);
  margin-bottom: 22px;
}

.sample-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sample-photo-line {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sample-photo-line img {
  width: 116px;
  height: 116px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(142, 110, 44, 0.18);
}

.sample-card h3,
.sample-card p {
  padding-inline: 8px;
}

.sample-card p {
  flex-grow: 1;
  margin-bottom: 22px;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.catalog-card {
  display: flex;
  flex-direction: column;
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.catalog-photo {
  aspect-ratio: 4 / 3;
  background: var(--cream-100);
  overflow: hidden;
}

.catalog-photo-product {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.catalog-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-photo-product img {
  object-fit: contain;
}

.catalog-photo-line {
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-photo-line img {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(142, 110, 44, 0.18);
}

.catalog-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 22px 18px 18px;
}

.catalog-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  color: var(--graphite-500);
  font-size: 0.84rem;
  font-weight: 600;
}

.catalog-power {
  width: max-content;
  padding: 5px 9px;
  border-radius: var(--radius-sm);
  background: var(--cream-100);
  color: var(--ochre-700);
  font-weight: 700;
  font-size: 0.86rem;
}

.catalog-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.08rem, 1.4vw, 1.24rem);
}

.catalog-card p {
  font-size: 0.92rem;
  line-height: 1.55;
}

.catalog-specs {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  color: var(--graphite-700);
  font-size: 0.9rem;
}

.catalog-specs li {
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.catalog-specs li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ochre-500);
  flex: 0 0 auto;
}

.catalog-card .dir-link {
  width: calc(100% - 36px);
  margin: 0 18px 18px;
}

.catalog-actions {
  margin-top: auto;
}

.catalog-detail-btn {
  border: 1px solid var(--green-800);
  cursor: pointer;
  font-family: var(--font-body);
}

.building-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.building-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.building-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--ochre-300);
}

.building-photo {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: #fff;
  border-bottom: 1px solid var(--cream-200);
}

.building-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.building-body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 20px 18px 18px;
}

.building-body h3 {
  margin-bottom: 14px;
  font-size: clamp(1.05rem, 1.25vw, 1.18rem);
}

.building-items {
  list-style: none;
  display: grid;
  gap: 7px;
  color: var(--graphite-700);
  font-size: 0.92rem;
  line-height: 1.42;
}

.building-items li {
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.building-items li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ochre-500);
  flex: 0 0 auto;
}

.building-card .dir-link {
  width: calc(100% - 36px);
  margin: 0 18px 18px;
}

.modal-lock {
  overflow: hidden;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  padding: clamp(16px, 3vw, 34px);
}

.product-modal.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(31, 38, 34, 0.58);
}

.product-modal-dialog {
  position: relative;
  width: min(1040px, 100%);
  max-height: min(860px, calc(100vh - 32px));
  overflow: auto;
  background: var(--cream-50);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.product-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-control);
  background: var(--cream-50);
  color: var(--green-900);
  cursor: pointer;
}

.product-modal-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
}

.product-modal-media {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(34px, 5vw, 58px);
  background: #fff;
  border-right: 1px solid var(--cream-200);
}

.product-modal-media img {
  width: 100%;
  max-height: 460px;
  object-fit: contain;
}

.product-modal-content {
  padding: clamp(34px, 5vw, 58px);
}

.product-modal-content .catalog-power {
  display: inline-flex;
  margin-bottom: 16px;
}

.product-modal-content h3 {
  margin-bottom: 16px;
  padding-right: 42px;
}

.product-modal-content p {
  margin-bottom: 22px;
}

.product-modal-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}

.product-modal-specs div {
  padding: 12px;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-sm);
  background: var(--cream-100);
}

.product-modal-specs dt {
  color: var(--graphite-500);
  font-size: 0.78rem;
  margin-bottom: 4px;
}

.product-modal-specs dd {
  color: var(--green-900);
  font-weight: 700;
}

.product-modal-details {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.product-modal-details li {
  position: relative;
  padding-left: 18px;
  color: var(--graphite-700);
}

.product-modal-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ochre-500);
}

.product-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  background: var(--green-800);
  color: var(--cream-50);
  border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 58px);
  overflow: hidden;
  position: relative;
}

.product-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at right, rgba(201, 165, 92, 0.22), transparent 58%);
  pointer-events: none;
}

.product-cta > * {
  position: relative;
}

.product-cta h2 {
  color: var(--cream-50);
  margin-bottom: 14px;
}

.product-cta p {
  color: rgba(250, 246, 239, 0.76);
  max-width: 650px;
}

@media (max-width: 900px) {
  .product-hero {
    min-height: auto;
    padding-top: 96px;
    background-position: 58% center;
  }

  .product-hero-facts,
  .product-split,
  .scenario-grid,
  .sample-grid,
  .catalog-grid,
  .building-grid,
  .product-cta {
    grid-template-columns: 1fr;
  }

  .catalog-grid,
  .building-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .product-modal-layout {
    grid-template-columns: 1fr;
  }

  .product-modal-media {
    border-right: 0;
    border-bottom: 1px solid var(--cream-200);
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .product-hero {
    padding-bottom: 34px;
  }

  .product-hero .hero-actions,
  .service-actions {
    width: 100%;
  }

  .product-hero .btn,
  .service-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .building-grid {
    grid-template-columns: 1fr;
  }

  .product-modal {
    padding: 10px;
  }

  .product-modal-dialog {
    max-height: calc(100vh - 20px);
    border-radius: var(--radius-md);
  }

  .product-modal-media {
    padding: 28px 22px;
  }

  .product-modal-content {
    padding: 28px 22px 24px;
  }

  .product-modal-content h3 {
    padding-right: 38px;
    font-size: 1.25rem;
  }

  .product-modal-specs {
    grid-template-columns: 1fr;
  }

  .product-modal-content .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ───── ABOUT ───── */
.about-text {
  max-width: 760px;
  margin: 0 auto;
}
.about-text p {
  font-size: 1.08rem;
  margin-bottom: 22px;
  line-height: 1.7;
}
.about-text p:first-of-type::first-letter {
  font-family: var(--font-head);
  font-size: 3.2rem;
  float: left;
  line-height: 1;
  color: var(--ochre-600);
  margin: 6px 12px 0 0;
  font-weight: 500;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 60px;
}

.value {
  padding: 32px 28px;
  background: var(--cream-100);
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-200);
}
.value h4 {
  color: var(--green-900);
  margin-bottom: 10px;
}
.value p { font-size: 0.95rem; }
.value::before {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  background: var(--ochre-500);
  margin-bottom: 18px;
}

/* ───── LEGAL / TEXT PAGES ───── */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding-block: 60px;
  padding-inline: clamp(22px, 4vw, 52px);
  background: var(--cream-50);
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.legal-content h2 {
  margin: 48px 0 18px;
  font-size: 1.5rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 16px; line-height: 1.7; }
.legal-content ul { margin: 12px 0 20px 24px; }
.legal-content ul li { margin-bottom: 8px; color: var(--graphite-700); }
.legal-content strong { color: var(--graphite-900); }

@media (max-width: 980px) {
  .about-hero .container,
  .about-story-grid,
  .contact-hero .container {
    grid-template-columns: 1fr;
  }

  .values-grid-wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-hero-card {
    min-height: 420px;
  }

  .about-hero-card img {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .about-hero,
  .contact-hero {
    padding-top: 86px;
  }

  .about-hero-card {
    min-height: 390px;
  }

  .about-hero-card img {
    min-height: 390px;
  }

  .about-hero h1 {
    font-size: clamp(2rem, 8.4vw, 2.35rem);
  }

  .contact-hero h1 {
    font-size: clamp(2.05rem, 8.6vw, 2.38rem);
  }

  .about-hero-note {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 18px;
  }

  .values-grid-wide {
    grid-template-columns: 1fr;
  }

  .contact-quick a,
  .contact-quick div,
  .contact-info-panel {
    padding: 20px;
  }

  .map-frame iframe {
    height: 360px;
  }

  .legal-content {
    border-radius: var(--radius-md);
  }
}

/* ───── UTIL ───── */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }

.fade-in {
  opacity: 1;
  transform: none;
  transition: opacity .8s ease, transform .8s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 560px) {
  .hero .container > * {
    min-width: 0;
  }

  .hero h1 {
    font-size: clamp(2rem, 9.5vw, 2.35rem);
  }

  .hero-lead {
    max-width: 100%;
    font-size: 1.03rem;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 44px;
  }

  .hero-stats > div {
    max-width: 100%;
  }

  .hero-visual {
    width: 100%;
  }
}
