:root {
  color-scheme: light;
  --ink: #171412;
  --muted: #625d57;
  --line: #e4ddd2;
  --paper: #f7f3ed;
  --white: #fffdf8;
  --dark: #201814;
  --red: #b91f2e;
  --red-dark: #81141e;
  --ethiopia-green: #167146;
  --ethiopia-gold: #f0b83a;
  --coffee: #5b3927;
  --gold: #c29555;
  --green: #637567;
  --shadow: 0 24px 70px rgba(32, 24, 20, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  letter-spacing: 0;
}

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

button,
input,
select {
  font: inherit;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: #fff;
  transition: background 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ethiopia-green) 0 33.3%, var(--ethiopia-gold) 33.3% 66.6%, var(--red) 66.6% 100%);
  content: "";
  opacity: 0.86;
}

.site-header.scrolled {
  background: rgba(255, 253, 248, 0.94);
  color: var(--ink);
  box-shadow: 0 10px 34px rgba(28, 22, 18, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--red) 0 48%, transparent 49%),
    conic-gradient(var(--ethiopia-green) 0 34%, var(--ethiopia-gold) 34% 67%, var(--red) 67% 100%);
  color: #fff;
  font-weight: 800;
}

.brand-mark::after {
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: inherit;
  content: "";
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.08;
}

.brand strong {
  font-size: 17px;
}

.brand small {
  margin-top: 4px;
  font-size: 11px;
  text-transform: uppercase;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  margin-inline: auto;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 100%;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transition: right 180ms ease;
}

.site-nav a:hover::after {
  right: 0;
}

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

.language-picker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 112px;
  height: 42px;
  padding: 0 10px 0 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.1);
  color: currentColor;
  backdrop-filter: blur(12px);
}

.site-header.scrolled .language-picker {
  background: rgba(255, 253, 248, 0.76);
}

.language-picker svg {
  width: 17px;
  height: 17px;
  flex: none;
}

.subpage-language-picker span {
  flex: none;
  font-size: 12px;
  font-weight: 900;
}

.language-picker select {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: currentColor;
  outline: 0;
  cursor: pointer;
}

.language-picker option {
  background: var(--white);
  color: var(--ink);
}

.header-cta {
  min-width: 104px;
  padding: 10px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 10, 8, 0.88), rgba(16, 10, 8, 0.55) 48%, rgba(16, 10, 8, 0.18)),
    linear-gradient(0deg, rgba(16, 10, 8, 0.62), rgba(16, 10, 8, 0.06) 58%),
    radial-gradient(circle at 16% 34%, rgba(185, 31, 46, 0.28), transparent 30%),
    radial-gradient(circle at 74% 16%, rgba(240, 184, 58, 0.14), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(22, 113, 70, 0.16), transparent 24%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  width: min(850px, calc(100% - 36px));
  min-height: 86svh;
  margin-left: clamp(18px, 7vw, 110px);
  padding: 118px 0 150px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd98a;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(58px, 11vw, 128px);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4.8vw, 64px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 670px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.72;
}

.hero-actions,
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.btn.primary {
  background: var(--red);
  color: #fff;
}

.hero .btn.primary {
  background: #fffdf8;
  color: var(--ink);
}

.btn.primary.dark {
  background: var(--ink);
  color: #fff;
}

.btn.secondary {
  border-color: rgba(255, 255, 255, 0.58);
  color: #fff;
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: 28px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(92px, 1fr));
  width: min(540px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.12);
  backdrop-filter: blur(20px);
}

.hero-panel div {
  padding: 18px 20px;
}

.hero-panel div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-panel span,
.hero-panel small {
  display: block;
}

.hero-panel span {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
}

.hero-panel small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.75);
}

.media-toggle {
  position: absolute;
  top: 92px;
  right: clamp(18px, 4vw, 56px);
  z-index: 4;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
  cursor: pointer;
}

.media-toggle svg {
  width: 18px;
  height: 18px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(22, 113, 70, 0.08), rgba(240, 184, 58, 0.1), rgba(185, 31, 46, 0.08)),
    var(--white);
}

.trust-strip span {
  display: grid;
  min-height: 76px;
  place-items: center;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.trust-strip span:last-child {
  border-right: 0;
}

.section {
  padding: clamp(74px, 9vw, 128px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 980px;
  margin-bottom: clamp(34px, 5vw, 60px);
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.62fr);
  align-items: end;
  gap: 42px;
  max-width: none;
}

.section-heading.split > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.intro-section,
.products-section {
  background:
    linear-gradient(135deg, rgba(22, 113, 70, 0.05) 0 12%, transparent 12% 100%),
    linear-gradient(315deg, rgba(240, 184, 58, 0.09) 0 10%, transparent 10% 100%),
    var(--white);
}

.portal-section,
.subpage-section {
  background: var(--paper);
}

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

.portal-card,
.quick-card,
.faq-card {
  display: grid;
  gap: 16px;
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.portal-card span,
.quick-card span {
  color: var(--red);
  font-weight: 900;
}

.portal-card p,
.quick-card p,
.faq-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.portal-card:hover,
.quick-card:hover {
  border-color: rgba(185, 31, 46, 0.45);
  box-shadow: 0 18px 48px rgba(32, 24, 20, 0.1);
  transform: translateY(-2px);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.intro-grid article {
  min-height: 244px;
  padding: clamp(24px, 4vw, 44px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-grid span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--red);
  font-weight: 900;
}

.intro-grid p,
.workflow-grid p,
.visit-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.collections-section {
  background:
    repeating-linear-gradient(135deg, rgba(91, 57, 39, 0.035) 0 1px, transparent 1px 18px),
    #f0e9df;
}

.collection-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-auto-rows: minmax(300px, 42vw);
  gap: 18px;
}

.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
}

.collection-card:first-child {
  grid-row: span 2;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.collection-card:hover img {
  transform: scale(1.045);
}

.collection-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 10, 8, 0.8), rgba(16, 10, 8, 0.08) 58%);
  content: "";
}

.collection-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  height: 5px;
  background: linear-gradient(90deg, var(--ethiopia-green) 0 33.3%, var(--ethiopia-gold) 33.3% 66.6%, var(--red) 66.6% 100%);
  content: "";
}

.collection-card-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: clamp(22px, 4vw, 42px);
}

.collection-card-content h3 {
  font-size: clamp(26px, 4vw, 44px);
}

.collection-card-content p {
  max-width: 560px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-row span,
.feature-list span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.showroom-section {
  background:
    linear-gradient(135deg, rgba(22, 113, 70, 0.05) 0 14%, transparent 14% 100%),
    linear-gradient(315deg, rgba(185, 31, 46, 0.05) 0 12%, transparent 12% 100%),
    var(--white);
}

.showroom-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 0.95fr;
  gap: 18px;
}

.showroom-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
}

.showroom-card:first-child {
  grid-row: span 2;
}

.showroom-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.showroom-card:hover img {
  transform: scale(1.04);
}

.showroom-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 10, 8, 0.72), rgba(16, 10, 8, 0.04) 56%);
  content: "";
}

.showroom-card-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 22px;
}

.showroom-card-content h3 {
  margin-bottom: 6px;
  font-size: 22px;
}

.showroom-card-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.filter-tabs button {
  min-height: 38px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
}

.filter-tabs button.active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

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

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.product-card[hidden] {
  display: none;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e7e0d6;
}

.product-body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.product-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.product-top h3 {
  margin-bottom: 0;
  font-size: 20px;
}

.price {
  flex: none;
  color: var(--red);
  font-weight: 900;
}

.product-body p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-tags span {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
  font-size: 12px;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.72fr);
  min-height: 620px;
  background:
    linear-gradient(135deg, rgba(22, 113, 70, 0.1), transparent 34%),
    linear-gradient(315deg, rgba(185, 31, 46, 0.1), transparent 32%),
    #e5ddd2;
}

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

.feature-content {
  display: grid;
  align-content: center;
  padding: clamp(44px, 7vw, 88px);
}

.feature-content h2 {
  margin-bottom: 24px;
}

.feature-content p {
  color: #4d4943;
  font-size: 18px;
  line-height: 1.75;
}

.feature-list {
  margin: 18px 0 30px;
}

.feature-list span {
  border-color: rgba(23, 20, 18, 0.22);
  color: #45413c;
}

.workflow-section {
  background:
    repeating-linear-gradient(90deg, rgba(22, 113, 70, 0.035) 0 1px, transparent 1px 28px),
    var(--paper);
}

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

.workflow-grid article {
  min-height: 264px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(240, 184, 58, 0.08), transparent 42%),
    var(--white);
}

.workflow-grid svg {
  width: 32px;
  height: 32px;
  margin-bottom: 34px;
  color: var(--red);
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 5vw, 72px);
  background:
    radial-gradient(circle at 10% 12%, rgba(240, 184, 58, 0.14), transparent 30%),
    radial-gradient(circle at 92% 88%, rgba(22, 113, 70, 0.18), transparent 28%),
    var(--dark);
  color: #fff;
}

.visit-copy {
  align-self: center;
}

.visit-copy h2 {
  margin-bottom: 26px;
}

.visit-copy p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.visit-info {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.visit-info span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.visit-info svg {
  width: 18px;
  height: 18px;
  color: #ffc0aa;
}

.visit-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.08);
}

.visit-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.visit-form input,
.visit-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: 0;
}

.visit-form input::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.visit-form select option {
  color: var(--ink);
}

.form-submit {
  width: 100%;
  margin-top: 10px;
  border: 0;
}

.form-submit svg {
  width: 18px;
  height: 18px;
}

.form-note {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  line-height: 1.6;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 5vw, 72px);
  background: #14100e;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer strong {
  color: #fff;
}

.site-footer p {
  margin: 8px 0 0;
}

.site-footer a {
  color: #fff;
}

.page-hero {
  display: grid;
  min-height: 54svh;
  align-content: end;
  padding: 132px clamp(18px, 6vw, 90px) 76px;
  background:
    linear-gradient(90deg, rgba(18, 12, 9, 0.82), rgba(18, 12, 9, 0.42)),
    var(--dark);
  color: #fff;
}

.page-hero.products {
  background:
    linear-gradient(90deg, rgba(18, 12, 9, 0.82), rgba(18, 12, 9, 0.42)),
    url("https://images.unsplash.com/photo-1555041469-a586c61ea9bc?auto=format&fit=crop&w=1800&q=85") center / cover;
}

.page-hero.showroom {
  background:
    linear-gradient(90deg, rgba(18, 12, 9, 0.82), rgba(18, 12, 9, 0.38)),
    url("https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=1800&q=85") center / cover;
}

.page-hero.visit-page {
  background:
    linear-gradient(90deg, rgba(18, 12, 9, 0.86), rgba(18, 12, 9, 0.5)),
    url("https://images.unsplash.com/photo-1598928506311-c55ded91a20c?auto=format&fit=crop&w=1800&q=85") center / cover;
}

.page-hero.contact {
  background:
    linear-gradient(90deg, rgba(18, 12, 9, 0.86), rgba(18, 12, 9, 0.44)),
    url("https://images.unsplash.com/photo-1615873968403-89e068629265?auto=format&fit=crop&w=1800&q=85") center / cover;
}

.page-hero-inner {
  width: min(980px, 100%);
}

.page-hero h1 {
  font-size: clamp(46px, 8vw, 92px);
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.75;
}

.page-nav-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.page-nav-strip a {
  padding: 9px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
}

.page-nav-strip a.active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.catalog-list {
  display: grid;
  gap: 18px;
}

.catalog-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.4fr) 1fr minmax(160px, 0.22fr);
  gap: 24px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.catalog-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
}

.catalog-row p,
.catalog-meta {
  color: var(--muted);
  line-height: 1.7;
}

.catalog-meta {
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-item.tall img {
  aspect-ratio: 4 / 5;
}

.gallery-item div {
  padding: 18px;
}

.gallery-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.58fr);
  gap: 18px;
}

.contact-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.contact-lines {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-lines span,
.contact-lines a {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.map-placeholder {
  display: grid;
  min-height: 360px;
  place-items: center;
  border: 1px dashed rgba(32, 24, 20, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(22, 113, 70, 0.08), rgba(240, 184, 58, 0.1), rgba(185, 31, 46, 0.08)),
    var(--white);
  color: var(--muted);
  text-align: center;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  max-width: min(380px, calc(100vw - 44px));
  padding: 14px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .product-grid,
  .workflow-grid,
  .portal-grid,
  .quick-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-band,
  .visit-section,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-media {
    min-height: 420px;
  }
}

@media (max-width: 860px) {
  h1,
  h2,
  h3 {
    word-break: break-word;
  }

  p,
  span,
  a,
  button {
    word-break: break-word;
  }

  .site-header {
    justify-content: flex-start;
    gap: 14px;
    padding: 14px 16px;
  }

  .brand {
    max-width: calc(100% - 118px);
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .site-nav {
    display: none;
  }

  .header-actions {
    position: absolute;
    top: 14px;
    right: 16px;
    gap: 8px;
    margin-left: 0;
  }

  .language-picker {
    width: 92px;
    min-width: 92px;
    height: 38px;
    padding: 0 8px 0 10px;
  }

  .language-picker select {
    font-size: 13px;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .hero-content {
    min-height: 80svh;
  }

  .hero-content {
    width: calc(100% - 32px);
    margin-left: 16px;
    padding: 98px 0 170px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.2;
  }

  .hero-panel {
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: auto;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-panel > div,
  .trust-strip span,
  .product-card,
  .workflow-grid article {
    min-width: 0;
  }

  .hero-panel div {
    padding: 14px 12px;
  }

  .hero-panel small {
    font-size: 12px;
  }

  .media-toggle {
    top: 78px;
    right: 16px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip span {
    min-height: 62px;
    padding: 0 12px;
  }

  .section-heading.split,
  .intro-grid,
  .collection-grid,
  .showroom-grid,
  .visit-section,
  .catalog-row,
  .gallery-masonry {
    grid-template-columns: 1fr;
  }

  .section-heading.split {
    gap: 20px;
  }

  .collection-grid {
    grid-auto-rows: minmax(360px, auto);
  }

  .collection-card:first-child {
    grid-row: span 1;
  }

  .showroom-card:first-child {
    grid-row: span 1;
  }

  .filter-tabs {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  h2 {
    font-size: clamp(25px, 7vw, 32px);
  }

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

  .product-grid,
  .workflow-grid,
  .portal-grid,
  .quick-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .product-top {
    align-items: flex-start;
  }

  .feature-media {
    min-height: 320px;
  }

  .visit-form {
    padding: 20px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
