:root {
  --bg: #f5f0e8;
  --bg-soft: #efe7db;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.88);
  --text: #1b1612;
  --muted: #6e6257;
  --line: rgba(27, 22, 18, 0.1);
  --gold: #a88452;
  --gold-deep: #7a5a33;
  --dark: #120f0d;
  --dark-soft: #1c1714;
  --white: #ffffff;
  --radius: 26px;
  --radius-sm: 18px;
  --shadow: 0 24px 80px rgba(18, 15, 13, 0.16);
  --shadow-soft: 0 10px 34px rgba(18, 15, 13, 0.1);
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(168, 132, 82, 0.18), transparent 24%),
    linear-gradient(180deg, #f8f4ed 0%, #f3ece1 100%);
  line-height: 1.7;
  letter-spacing: 0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(18px);
  background: rgba(245, 240, 232, 0.82);
}

.nav-wrap,
.footer-wrap,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-wrap {
  min-height: 82px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.brand-mark {
  font-family: "Georgia", serif;
  font-size: 1.45rem;
  letter-spacing: 0.16em;
}

.brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav a,
.lang-btn,
.menu-toggle {
  color: var(--muted);
  font-size: 0.95rem;
  transition: 0.18s ease;
}

.nav a:hover,
.nav a.active,
.lang-btn:hover,
.lang-btn.active,
.menu-toggle:hover {
  color: var(--text);
}

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

.lang-switch {
  display: flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.lang-btn,
.menu-toggle {
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  position: relative;
  z-index: 1001;
  -webkit-appearance: none;
  appearance: none;
  touch-action: manipulation;
}

main {
  overflow: clip;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: grid;
  align-items: end;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(10, 8, 7, 0.28) 0%, rgba(10, 8, 7, 0.58) 100%),
    var(--hero-image, linear-gradient(135deg, #6f5636 0%, #201912 100%)) center/cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 7, 6, 0.55), rgba(9, 7, 6, 0.15) 55%, rgba(9, 7, 6, 0.08));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.6fr);
  gap: 40px;
  padding: 110px 0 84px;
  align-items: end;
}

.eyebrow,
.section-label,
.mini-label {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.page-hero .eyebrow,
.section-label,
.mini-label.dark {
  color: var(--gold-deep);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
p {
  margin-top: 0;
}

h1,
.h1,
h2,
.h2 {
  font-family: "Georgia", serif;
  font-weight: 500;
  line-height: 0.98;
}

h1,
.h1 {
  font-size: clamp(3.3rem, 7vw, 6.4rem);
  margin-bottom: 24px;
  max-width: 11ch;
}

h2,
.h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  margin-bottom: 22px;
}

h3,
.h3 {
  font-family: "Georgia", serif;
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.lead {
  font-size: 1.12rem;
  max-width: 60ch;
}

.hero-copy .lead,
.hero-copy p {
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions,
.cta-row,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--white);
  color: var(--dark);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.hero-card,
.glass-card,
.feature-card,
.info-card,
.contact-card,
.stat-card,
.quote-card,
.material-panel,
.gallery-card,
.cta-band,
.spec-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card,
.glass-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(14px);
}

.hero-card {
  padding: 32px;
}

.hero-card ul,
.check-list,
.spec-list {
  margin: 0;
  padding-left: 18px;
}

.hero-card li + li,
.check-list li + li,
.spec-list li + li {
  margin-top: 10px;
}

.section {
  padding: 96px 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(239, 231, 219, 0.72), rgba(243, 236, 225, 0.92));
}

.section.dark {
  background: linear-gradient(180deg, #15110f 0%, #201914 100%);
  color: var(--white);
}

.grid-2,
.two-col,
.contact-grid,
.feature-split,
.story-grid,
.process-grid,
.detail-grid,
.spec-grid,
.hero-metrics,
.footer-grid,
.page-intro {
  display: grid;
  gap: 28px;
}

.grid-2,
.two-col,
.contact-grid,
.feature-split,
.story-grid,
.detail-grid,
.page-intro {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.process-grid,
.spec-grid,
.hero-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid,
.gallery-grid,
.showcase-grid,
.value-grid,
.reference-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

.card-grid.three,
.showcase-grid,
.value-grid,
.reference-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.feature-card,
.info-card,
.stat-card,
.quote-card,
.spec-card,
.contact-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 28px;
}

.feature-card strong,
.stat-card strong {
  font-size: 2rem;
  font-family: "Georgia", serif;
  display: block;
  margin-bottom: 8px;
}

.muted,
.info-card p,
.feature-card p,
.stat-card p,
.quote-card p,
.spec-card p,
.page-hero p,
.two-col p,
.contact-card p,
.footer-note,
.caption,
.text-block p,
.page-links p {
  color: var(--muted);
}

.section.dark .muted,
.section.dark .info-card p,
.section.dark .feature-card p,
.section.dark .quote-card p,
.section.dark .stat-card p,
.section.dark .section-label,
.section.dark p {
  color: rgba(255, 255, 255, 0.74);
}

.section.dark .feature-card,
.section.dark .info-card,
.section.dark .quote-card,
.section.dark .stat-card,
.section.dark .spec-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.media-frame,
.reference-tile,
.page-hero-image,
.gallery-card,
.showcase-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 340px;
  background: linear-gradient(135deg, rgba(168, 132, 82, 0.35), rgba(18, 15, 13, 0.92));
}

.media-frame img,
.page-hero-image img,
.gallery-card img,
.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame::after,
.page-hero-image::after,
.gallery-card::after,
.showcase-card::after,
.reference-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 13, 11, 0.06), rgba(17, 13, 11, 0.55));
}

.reference-tile {
  min-height: 300px;
  display: flex;
  align-items: end;
  padding: 24px;
  box-shadow: var(--shadow);
}

.reference-tile > div,
.media-overlay,
.page-hero-copy {
  position: relative;
  z-index: 1;
}

.reference-tile span,
.media-overlay span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.reference-tile h3,
.media-overlay h3 {
  color: var(--white);
  margin-bottom: 0;
}

.page-hero {
  padding: 72px 0 28px;
}

.page-hero-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: stretch;
}

.page-hero-image {
  min-height: 520px;
}

.page-hero-copy {
  padding: 48px;
  border-radius: var(--radius);
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow);
}

.kpi-row {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.kpi {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.kpi strong {
  display: block;
  font-family: "Georgia", serif;
  font-size: 2rem;
  margin-bottom: 6px;
}

.band {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.44);
}

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

.band-item {
  font-size: 0.95rem;
  color: var(--muted);
}

.band-item strong {
  display: block;
  color: var(--text);
  margin-bottom: 6px;
}

.quote-card {
  position: relative;
}

.quote-card::before {
  content: "“";
  position: absolute;
  top: 10px;
  right: 24px;
  font-family: "Georgia", serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(168, 132, 82, 0.2);
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
}

.timeline-item:first-child {
  border-top: none;
  padding-top: 0;
}

.timeline-step {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 8px;
}

.material-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.material-copy {
  padding: 36px;
}

.material-image {
  min-height: 360px;
}

.material-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-band {
  padding: 38px;
  background: linear-gradient(135deg, #1b1612 0%, #2b221b 100%);
  color: var(--white);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.72);
}

.form-shell {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(27, 22, 18, 0.12);
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
  color: var(--text);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.site-footer {
  padding: 52px 0 30px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.36);
}

.footer-grid {
  grid-template-columns: 1.4fr 0.8fr 0.8fr 0.9fr;
  margin-bottom: 24px;
}

.footer-links,
.page-links {
  display: grid;
  gap: 10px;
}

.footer-title {
  margin-bottom: 14px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.footer-bottom {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.page-links a:hover,
.footer-links a:hover {
  color: var(--gold-deep);
}

@media (max-width: 1080px) {
  .hero-inner,
  .page-hero-wrap,
  .grid-2,
  .two-col,
  .contact-grid,
  .feature-split,
  .story-grid,
  .detail-grid,
  .gallery-grid,
  .footer-grid,
  .page-intro,
  .material-panel,
  .form-grid,
  .band-grid,
  .card-grid.three,
  .showcase-grid,
  .value-grid,
  .reference-grid,
  .process-grid,
  .spec-grid,
  .hero-metrics,
  .kpi-row {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
    position: fixed;
    left: 16px;
    right: 16px;
    top: 88px;
    max-height: calc(100vh - 112px);
    overflow: auto;
    padding: 20px;
    background: rgba(245, 240, 232, 0.985);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    z-index: 999;
    -webkit-overflow-scrolling: touch;
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
  }

  h1,
  .h1 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .nav-wrap,
  .nav-right,
  .footer-wrap,
  .footer-bottom,
  .hero-actions,
  .cta-row,
  .button-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-hero-copy,
  .hero-card,
  .feature-card,
  .info-card,
  .contact-card,
  .stat-card,
  .quote-card,
  .spec-card,
  .cta-band,
  .material-copy {
    padding: 24px;
  }

  .section {
    padding: 78px 0;
  }

  .site-header {
    position: static;
  }
}

body.nav-open {
  overflow: hidden;
}

.nav a { position: relative; }
.nav a::after { content:""; position:absolute; left:0; right:0; bottom:-8px; height:1px; background:rgba(122,90,51,0.35); transform:scaleX(0); transform-origin:left; transition:transform .18s ease; }
.nav a:hover::after, .nav a.active::after { transform:scaleX(1); }
.showcase-card, .gallery-card, .reference-tile, .page-hero-image { box-shadow: var(--shadow); }
.hero-card, .feature-card, .info-card, .contact-card, .quote-card, .spec-card { backdrop-filter: blur(10px); }
.footer-links a { transition: color .18s ease, transform .18s ease; }
.footer-links a:hover { transform: translateX(2px); }


.hero-copy h1, .page-hero-copy .h1 { text-wrap: balance; }
.page-hero-copy, .feature-card, .info-card, .contact-card, .quote-card, .spec-card, .cta-band { position: relative; overflow: hidden; }
.page-hero-copy::before, .feature-card::before, .info-card::before, .contact-card::before, .quote-card::before, .spec-card::before, .cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.14), transparent 48%);
  pointer-events: none;
}
.feature-card, .info-card, .contact-card, .quote-card, .spec-card {
  border-color: rgba(168,132,82,0.14);
}
.text-block p, .feature-card p, .info-card p, .contact-card p, .quote-card p, .spec-card p {
  max-width: 62ch;
}
.footer-grid { align-items: start; }

.page-hero-copy, .contact-card, .feature-card, .info-card, .quote-card, .spec-card { word-break: normal; overflow-wrap: anywhere; }
.card-grid.three { align-items: stretch; }
.contact-card a { overflow-wrap: anywhere; }
.caption, [data-form-status] { min-height: 1.5em; }
