:root {
  --bg: #ffffff;
  --surface: #f7f9f8;
  --surface-strong: #edf4f0;
  --text: #14201c;
  --muted: #5e6d66;
  --line: #dbe5df;
  --accent: #0d865b;
  --accent-dark: #06442f;
  --accent-soft: #e8f6ef;
  --amber: #c47a19;
  --shadow: 0 18px 45px rgba(20, 32, 28, 0.11);
  --shadow-strong: 0 28px 70px rgba(20, 32, 28, 0.16);
  --radius: 8px;
  --display: "Fraunces", Georgia, serif;
  --sans: Inter, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, rgba(239, 246, 242, 0.78), rgba(255, 255, 255, 0) 560px),
    linear-gradient(120deg, rgba(15, 138, 95, 0.05) 0 1px, transparent 1px 96px),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
}

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

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

#brand-story,
#quality,
#wholesale,
#delivery,
#contact,
#catalog {
  scroll-margin-top: 96px;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0;
  font-size: 21px;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #1fa77a);
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(15, 138, 95, 0.28);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  padding: 8px 0;
}

.main-nav a:hover {
  color: var(--accent-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-control {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.language-control select,
.catalog-tools select,
.catalog-tools input {
  height: 42px;
  min-width: 132px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  padding: 0 12px;
  outline: none;
}

.catalog-tools input:focus,
.catalog-tools select:focus,
.language-control select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(15, 138, 95, 0.12);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 13px 28px rgba(15, 138, 95, 0.24);
}

.button-primary:hover {
  background: var(--accent-dark);
}

.button-secondary {
  color: var(--text);
  background: #fff;
  border-color: var(--line);
}

.button-secondary:hover {
  border-color: #b6c5bd;
  box-shadow: 0 10px 26px rgba(23, 33, 29, 0.08);
}

.section-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
  min-height: auto;
  padding: 54px 0 62px;
}

.home-hero {
  position: relative;
  min-height: calc(100vh - 74px);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 22px auto auto 42%;
  width: min(520px, 52vw);
  height: min(520px, 52vw);
  border: 1px solid rgba(15, 138, 95, 0.11);
  border-radius: 50%;
  transform: translateX(-14%);
  pointer-events: none;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  letter-spacing: 0;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: 1.02;
  font-family: var(--display);
  font-weight: 700;
}

.hero-statement {
  max-width: 740px;
  margin: 22px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  background: #f4fbf7;
  color: #30403a;
  font-size: clamp(16px, 1.65vw, 20px);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  max-width: 680px;
}

.proof-row-featured {
  max-width: none;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    var(--accent-dark);
  box-shadow: 0 24px 52px rgba(6, 68, 47, 0.18);
}

.proof-row div {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.proof-row-featured div {
  padding: 18px 20px;
  border-top: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-row-featured div:first-child {
  border-left: 0;
}

.proof-row strong {
  display: block;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}

.proof-row-featured strong {
  color: #fff;
}

.proof-row span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.proof-row-featured span {
  color: rgba(255, 255, 255, 0.72);
}

.hero-visual {
  min-width: 0;
}

.building-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-strong);
  isolation: isolate;
}

.building-card-premium {
  border-color: #cbd8d0;
  box-shadow: 0 30px 90px rgba(6, 68, 47, 0.18);
}

.building-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0) 34%);
  pointer-events: none;
  z-index: 1;
}

.building-card img {
  width: 100%;
  aspect-ratio: 16 / 8.7;
  height: auto;
  object-fit: contain;
  transform: none;
}

.material-ribbon {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: stretch;
  margin-top: -28px;
  padding-bottom: 34px;
}

.material-ribbon-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 46px rgba(20, 32, 28, 0.08);
}

.material-ribbon-image img {
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: contain;
  background: #f3f8f6;
}

.material-ribbon-copy {
  display: grid;
  min-width: 255px;
  align-content: center;
  gap: 10px;
  padding: 24px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
    var(--accent-dark);
  color: #fff;
  box-shadow: 0 20px 42px rgba(6, 68, 47, 0.2);
}

.material-ribbon-copy span,
.material-ribbon-copy strong {
  font-size: 14px;
  font-weight: 800;
}

.material-ribbon-copy strong {
  color: #dff6ea;
  font-size: 22px;
  line-height: 1.1;
}

.building-overlay {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  gap: 7px;
  max-width: min(360px, calc(100% - 36px));
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 32px rgba(23, 33, 29, 0.12);
  backdrop-filter: blur(12px);
}

.building-overlay span {
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.building-overlay strong {
  font-size: 18px;
  line-height: 1.18;
}

.building-overlay p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.quality-band,
.language-band {
  background: var(--surface);
}

.brand-story {
  padding: 82px 0;
}

.section-heading-split {
  align-items: start;
  margin-bottom: 34px;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: stretch;
}

.story-grid-visual {
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.92fr) minmax(320px, 0.9fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: start;
}

.story-lead {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(15, 138, 95, 0.08), rgba(255, 255, 255, 0) 42%),
    #fff;
  box-shadow: 0 14px 34px rgba(20, 32, 28, 0.06);
}

.story-lead p {
  margin: 0;
  color: #35443e;
  font-size: clamp(16px, 1.7vw, 19px);
}

.story-grid-visual .story-lead p {
  font-size: clamp(15px, 1.2vw, 17px);
}

.story-ledger {
  display: grid;
  gap: 12px;
}

.story-image-card {
  overflow: hidden;
  display: grid;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 46px rgba(20, 32, 28, 0.08);
}

.story-image-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #eef5f1;
}

.story-image-card div {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.story-image-card strong {
  font-size: 18px;
}

.story-image-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.story-ledger div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  row-gap: 5px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 30px rgba(20, 32, 28, 0.05);
}

.story-ledger span {
  grid-row: span 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
}

.story-ledger strong {
  font-size: 18px;
}

.story-ledger p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.quality-grid,
.language-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(32px, 5vw, 72px);
  padding: 76px 0;
}

.quality-grid-visual {
  grid-template-columns: minmax(0, 0.74fr) minmax(420px, 1.1fr);
  align-items: center;
}

.quality-grid-visual .service-list {
  grid-column: 1 / -1;
}

.quality-image-card {
  overflow: hidden;
  border: 1px solid #cbd8d0;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 24px 64px rgba(20, 32, 28, 0.12);
}

.quality-image-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #eef5f1;
}

.quality-copy h2,
.section-heading h2,
.language-grid h2,
.wholesale h2,
.delivery h2,
.promise-copy h2,
.catalog-teaser-panel h2,
.catalog-hero h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
  font-family: var(--display);
  font-weight: 700;
}

.quality-copy p,
.section-heading p,
.language-grid p,
.wholesale p,
.delivery p,
.promise-copy p,
.catalog-teaser-panel p,
.catalog-hero p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

.service-list div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 250, 248, 0.94)),
    #fff;
  box-shadow: 0 14px 34px rgba(20, 32, 28, 0.06);
}

.service-icon {
  display: block;
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
}

.service-list strong {
  display: block;
  margin-top: 22px;
  font-size: 18px;
}

.service-list p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.brand-promise {
  padding: 86px 0;
}

.promise-copy {
  max-width: 780px;
  margin-bottom: 30px;
}

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

.promise-grid article {
  display: grid;
  align-content: start;
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(20, 32, 28, 0.06);
}

.promise-grid span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.promise-grid h3 {
  margin: 28px 0 10px;
  font-size: 21px;
  line-height: 1.18;
}

.promise-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.catalog-teaser {
  padding: 0 0 82px;
}

.catalog-material-ribbon {
  margin-top: 0;
  padding: 0 0 26px;
}

.catalog-teaser-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    var(--accent-dark);
  color: #fff;
  box-shadow: 0 24px 58px rgba(6, 68, 47, 0.2);
}

.catalog-teaser-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.catalog-teaser-panel .button-primary {
  background: #fff;
  color: var(--accent-dark);
  box-shadow: none;
}

.catalog {
  padding: 64px 0 86px;
}

.catalog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.55fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
  padding: 58px 0 34px;
}

.catalog-hero-copy h1 {
  max-width: 760px;
  letter-spacing: 0;
  font-size: clamp(42px, 5vw, 64px);
}

.catalog-hero-panel {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.catalog-hero-panel div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.catalog-hero-panel div:first-child {
  border-top: 0;
}

.catalog-hero-panel span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.catalog-hero-panel strong {
  color: var(--accent-dark);
  font-size: 24px;
  overflow-wrap: anywhere;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section-heading p {
  max-width: 760px;
}

.catalog-tools {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(190px, 0.45fr) minmax(190px, 0.45fr);
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.catalog-tools label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.catalog-tools input,
.catalog-tools select {
  width: 100%;
}

.catalog-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 20px 0;
  color: var(--muted);
  font-size: 14px;
}

.catalog-meta strong,
#resultCount {
  color: var(--text);
  font-weight: 800;
}

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

.compact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 70px;
}

.product-card {
  display: grid;
  overflow: hidden;
  min-width: 0;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(23, 33, 29, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: #b7c8c0;
  box-shadow: var(--shadow);
}

.product-media {
  position: relative;
  display: grid;
  aspect-ratio: 4 / 3;
  min-height: 0;
  place-items: center;
  background: linear-gradient(180deg, #f9fbfa, #edf4f0);
}

.product-media img {
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  max-height: 190px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 10px 18px rgba(23, 33, 29, 0.08));
}

.video-chip {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 5px 8px;
  border-radius: 6px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.product-body {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.product-category {
  color: var(--amber);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-card h3 {
  min-height: 42px;
  margin: 0;
  font-size: 16px;
  line-height: 1.32;
  font-weight: 800;
}

.product-description {
  display: -webkit-box;
  min-height: 42px;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-meta {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
}

.card-meta span {
  overflow-wrap: anywhere;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 4px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.price {
  color: var(--text);
  font-size: 22px;
  font-weight: 800;
}

.open-product {
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 800;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

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

.language-list button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  font-weight: 800;
  text-align: left;
  padding: 0 12px;
}

.language-list button:hover,
.language-list button.is-active {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: #f1faf6;
}

.wholesale {
  padding: 82px 0 24px;
}

.wholesale-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(285px, 0.45fr);
  gap: 24px;
  align-items: stretch;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(135deg, #063f2c, #0b6f4d 72%, #0f8a5f);
  color: #fff;
  box-shadow: 0 26px 70px rgba(6, 68, 47, 0.2);
}

.wholesale-copy {
  display: grid;
  align-content: center;
  min-width: 0;
}

.wholesale-copy p,
.wholesale-points p,
.wholesale-card p {
  color: rgba(255, 255, 255, 0.78);
}

.wholesale-card {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.wholesale-card span,
.wholesale-points span {
  color: #dff6ea;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.wholesale-card a {
  color: #fff;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.wholesale-card p {
  margin: 0;
  font-size: 14px;
}

.wholesale-points {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.wholesale-points article {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.wholesale-points strong {
  font-size: 18px;
}

.wholesale-points p {
  margin: 0;
  font-size: 14px;
}

.delivery {
  padding: 80px 0;
}

.delivery-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.92fr) minmax(250px, 0.44fr);
  gap: 24px;
  align-items: center;
  overflow: hidden;
  padding: 26px;
  border: 1px solid #b8d8ca;
  border-radius: 8px;
  background:
    linear-gradient(135deg, #f3fbf7, #ffffff 68%);
  box-shadow: 0 18px 48px rgba(20, 32, 28, 0.08);
}

.delivery-copy {
  min-width: 0;
}

.delivery-map {
  overflow: hidden;
  border: 1px solid rgba(15, 138, 95, 0.16);
  border-radius: var(--radius);
  background: #edf7f2;
}

.delivery-map img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #eef7f2;
}

.contact-box {
  display: grid;
  gap: 8px;
  min-width: 265px;
  padding: 22px;
  border-left: 4px solid var(--accent);
  background: #fff;
  box-shadow: 0 14px 30px rgba(23, 33, 29, 0.08);
}

.contact-box span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-box a {
  color: var(--accent-dark);
  font-size: 20px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer span:first-child {
  color: var(--text);
  font-weight: 800;
}

.product-page {
  padding: 42px 0 56px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 800;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.gallery {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 12px;
  max-width: 520px;
}

.main-image {
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #f9fbfa, #edf4f0);
  aspect-ratio: 1 / 1;
}

.main-image img {
  width: calc(100% - 36px);
  height: calc(100% - 36px);
  max-height: 410px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 12px 20px rgba(23, 33, 29, 0.08));
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.thumbs button {
  aspect-ratio: 1 / 1;
  height: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.thumbs button.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15, 138, 95, 0.12);
}

.thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 8px;
}

.detail-copy {
  min-width: 0;
}

.detail-category {
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-copy h1 {
  margin: 10px 0 16px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.04;
  font-family: var(--display);
  font-weight: 700;
}

.detail-price {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--accent-dark);
  font-size: 34px;
  font-weight: 800;
}

.detail-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  margin: 0 0 22px;
  max-width: 360px;
}

.detail-meta div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.detail-meta dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-meta dd {
  margin: 6px 0 0;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.order-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 26px;
}

.detail-section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.detail-section h2 {
  margin: 0 0 12px;
  font-size: 22px;
}

.detail-section p {
  margin: 0;
  color: var(--muted);
}

.image-links {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.image-links a {
  display: block;
  overflow: hidden;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.video-frame {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #000;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.not-found {
  padding: 64px 0;
}

.related-section {
  padding-bottom: 12px;
}

.image-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: var(--muted);
  font-weight: 800;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1060px) {
  #brand-story,
  #quality,
  #wholesale,
  #delivery,
  #contact,
  #catalog {
    scroll-margin-top: 176px;
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .main-nav {
    justify-content: start;
    overflow-x: auto;
  }

  .header-actions {
    flex-wrap: wrap;
  }

  .hero,
  .quality-grid,
  .language-grid,
  .product-detail,
  .story-grid,
  .wholesale-panel,
  .catalog-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .gallery {
    position: static;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .section-heading,
  .delivery-panel,
  .catalog-meta,
  .material-ribbon {
    align-items: stretch;
    flex-direction: column;
  }

  .section-heading,
  .catalog-meta,
  .material-ribbon {
    display: flex;
  }

  .delivery-panel {
    grid-template-columns: 1fr;
  }

  .delivery-map {
    order: 2;
  }

  .contact-box {
    order: 3;
  }

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

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

  .service-list,
  .product-grid,
  .compact-grid,
  .language-list,
  .wholesale-points,
  .promise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-row {
    grid-template-columns: 1fr;
  }

  .proof-row-featured div {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .proof-row-featured div:first-child {
    border-top: 0;
  }

  .main-image {
    max-height: 430px;
  }
}

@media (max-width: 560px) {
  #brand-story,
  #quality,
  #wholesale,
  #delivery,
  #contact,
  #catalog {
    scroll-margin-top: 260px;
  }

  .site-header {
    padding: 12px 16px;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px 14px;
    overflow: visible;
    font-size: 13px;
  }

  .main-nav a {
    padding: 0;
    line-height: 1.2;
  }

  .section-shell {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding: 44px 0;
  }

  .home-hero {
    min-height: auto;
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .building-overlay {
    position: static;
    max-width: none;
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
  }

  .home-hero::before {
    display: none;
  }

  .material-ribbon {
    margin-top: -10px;
  }

  .service-list,
  .product-grid,
  .compact-grid,
  .language-list,
  .wholesale-points,
  .promise-grid,
  .detail-meta,
  .thumbs {
    grid-template-columns: 1fr;
  }

  .story-lead,
  .story-ledger div,
  .promise-grid article,
  .catalog-teaser-panel,
  .wholesale-panel,
  .wholesale-card,
  .delivery-panel {
    padding: 20px;
  }

  .catalog-hero-panel strong {
    font-size: 20px;
  }

  .language-control {
    width: 100%;
    justify-content: space-between;
  }

  .language-control select,
  .header-actions .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}
