:root {
  --green: #143528;
  --green-2: #1c4634;
  --green-3: #24563f;
  --ink: #122018;
  --muted: #5c675f;
  --beige: #e6d3b5;
  --beige-2: #d4c09a;
  --cream: #f6f1e8;
  --cream-2: #efe6d6;
  --paper: #fffcf7;
  --gold: #b8956a;
  --gold-2: #c9a97a;
  --line: rgba(20, 53, 40, 0.12);
  --shadow: 0 18px 50px rgba(20, 53, 40, 0.1);
  --radius: 18px;
  --header: 92px;
  --font: "Outfit", "Noto Sans Ethiopic", system-ui, sans-serif;
  --display: "Cormorant Garamond", "Noto Serif Ethiopic", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, .btn, .icon-btn, .chip, .floater {
  touch-action: manipulation;
}
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 0.45em;
}
h1 { font-size: clamp(2.4rem, 6vw, 5.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3.3rem); }
h3 { font-size: 1.45rem; }
p { margin: 0 0 1em; color: var(--muted); }
em { font-style: italic; color: var(--gold); }

.skip {
  position: absolute; left: -999px; top: 8px;
}
.skip:focus { left: 12px; z-index: 80; background: #fff; padding: 8px 12px; }

.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.wide { width: min(1280px, calc(100% - 32px)); margin-inline: auto; }

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600; color: var(--gold); margin-bottom: 10px;
}
.lead { font-size: 1.08rem; max-width: 58ch; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; padding: 13px 22px; border: 1px solid transparent;
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  white-space: nowrap;
  transition: transform .45s cubic-bezier(.16, 1, .3, 1), background .35s ease, color .35s ease, box-shadow .45s ease, border-color .35s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-3); box-shadow: 0 14px 30px rgba(20,53,40,.25); }
.btn-gold { background: var(--gold); color: #142016; }
.btn-gold:hover { background: var(--gold-2); box-shadow: 0 14px 30px rgba(184,149,106,.35); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-line { background: transparent; color: var(--green); border-color: var(--green); }
.btn-line:hover { background: var(--green); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; }

.topbar {
  background: var(--green); color: rgba(255,255,255,.86);
  font-size: 0.82rem; padding: 8px 0;
}
.topbar .wide {
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.top-loc-short { display: none; }
.top-loc-full { display: inline; }
.top-social {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: nowrap;
  min-width: 0;
}
.top-social .top-icons {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
  flex: 0 0 auto;
}
.top-phone {
  font-weight: 600;
  white-space: nowrap;
  flex: 0 0 auto;
  line-height: 1.2;
}

#site-chrome {
  position: sticky;
  top: 0;
  z-index: 200;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 201;
  background: #fbf8f1;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(20, 53, 40, 0.08);
  transition: box-shadow .45s ease;
}
.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 84px;
  position: relative;
}
.nav > .menu-btn { grid-column: 1; }
.brand {
  display: flex; align-items: center; gap: 0;
  line-height: 0;
}
.brand img {
  height: 68px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  background: transparent;
}
.site-header .brand img { mix-blend-mode: multiply; }
.nav-links { display: flex; justify-content: center; gap: 4px; flex-wrap: wrap; }
.nav-links a {
  padding: 8px 12px; border-radius: 999px; font-size: 0.92rem; font-weight: 500; color: var(--green);
}
.nav-links a:hover, .nav-links a.active { background: var(--green); color: #fff; }
.nav-end { display: flex; align-items: center; gap: 8px; }
.lang {
  border: 1px solid var(--line); background: #fff; border-radius: 999px;
  padding: 8px 10px; color: var(--green);
}
.icon-btn {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
  background: #fff; display: grid; place-items: center; cursor: pointer; position: relative;
  color: var(--green);
}
.icon-btn .badge {
  position: absolute; top: -4px; right: -4px; background: var(--green); color: #fff;
  min-width: 18px; height: 18px; border-radius: 99px; font-size: 0.7rem;
  display: grid; place-items: center; padding: 0 4px;
}
.menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  font-size: 1.45rem;
  font-weight: 700;
  border-width: 1.5px;
  box-shadow: 0 2px 10px rgba(20, 53, 40, 0.12);
}

.hero {
  position: relative;
  min-height: min(92vh, 900px);
  color: #fff;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #0d1a12;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slides .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  overflow: hidden;
  transform: translateX(3.5%);
  transition:
    opacity 1.15s cubic-bezier(.4, 0, .2, 1),
    transform 1.25s cubic-bezier(.22, 1, .36, 1),
    visibility 1.15s;
}
.hero-slides .slide.on {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  transform: translateX(0);
}
.hero-slides .slide.is-leaving {
  opacity: 0;
  visibility: visible;
  z-index: 1;
  transform: translateX(-3.5%);
  transition:
    opacity 1.05s cubic-bezier(.4, 0, .2, 1),
    transform 1.15s cubic-bezier(.22, 1, .36, 1);
}
.hero-slides .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.04);
  will-change: transform;
}
.hero-slides .slide.on img {
  animation: heroKenBurns 6.5s ease-out forwards;
}
@keyframes heroKenBurns {
  from { transform: scale(1.04); }
  to { transform: scale(1.12); }
}
/* Andegna-like: keep furniture clearly visible */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(8,16,12,.58) 0%, rgba(8,16,12,.28) 42%, rgba(8,16,12,.12) 100%),
    linear-gradient(180deg, rgba(8,16,12,.18) 0%, rgba(8,16,12,.22) 45%, rgba(8,16,12,.62) 100%);
}
.hero-inner { position: relative; z-index: 2; padding: 90px 0 78px; }
.hero .kicker { color: var(--beige); }
.hero h1 { max-width: 14ch; }
.hero p { color: rgba(255,255,255,.9); max-width: 52ch; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; font-size: 0.92rem; color: var(--beige); }
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  transition: .35s cubic-bezier(.22, 1, .36, 1);
}
.hero-dots button.on {
  background: var(--gold);
  width: 34px;
  border-radius: 99px;
}
.hero-arrows {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  display: flex; align-items: center; justify-content: space-between; padding: 0 18px;
}
.hero-arrows button {
  pointer-events: auto;
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,.4);
  background: rgba(10,22,16,.28); color: #fff; cursor: pointer;
  backdrop-filter: blur(6px); font-size: 1.25rem; line-height: 1;
  transition: .25s;
}
.hero-arrows button:hover { background: var(--gold); color: #142016; border-color: var(--gold); }

.hero-inner > * {
  opacity: 0;
  transform: translateY(56px);
  filter: blur(8px);
}
.hero.ready .hero-inner > * {
  animation: luxHero 1.35s cubic-bezier(.16, 1, .3, 1) forwards;
}
.hero.ready .hero-inner > *:nth-child(1) { animation-delay: .28s; }
.hero.ready .hero-inner > *:nth-child(2) { animation-delay: .52s; }
.hero.ready .hero-inner > *:nth-child(3) { animation-delay: .72s; }
.hero.ready .hero-inner > *:nth-child(4) { animation-delay: .92s; }
.hero.ready .hero-inner > *:nth-child(5) { animation-delay: 1.1s; }
@keyframes luxHero {
  to {
    opacity: 1;
    transform: none;
    filter: blur(0);
  }
}

.hero .kicker {
  letter-spacing: 0.22em;
}
.hero h1 {
  text-wrap: balance;
}
.hero-meta span {
  position: relative;
  padding-left: 14px;
}
.hero-meta span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
}

.trust {
  display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 18px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 24px;
  padding: 22px; margin-top: -42px; position: relative; z-index: 3; box-shadow: var(--shadow);
}
.trust div b { display: block; font-family: var(--display); font-size: 1.7rem; color: var(--green); }
.trust div span { color: var(--muted); font-size: 0.86rem; }
.trust .note { color: var(--muted); }

section { padding: 84px 0; }
.sec-head {
  display: flex; justify-content: space-between; gap: 24px; align-items: end;
  margin-bottom: 32px;
}
.sec-head p { margin: 0; max-width: 42ch; }

ul { color: var(--muted); padding-left: 1.15em; }
li { margin: 0.4em 0; }
#productMount { padding: 28px 0 56px; }
.cat-grid {
  display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px;
}
.cat-card { grid-column: span 4; }
.cat-card {
  position: relative; min-height: 280px; border-radius: 22px; overflow: hidden;
  color: #fff; isolation: isolate;
}
.cat-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s cubic-bezier(.16, 1, .3, 1), filter 1s ease;
  transform: scale(1.04);
}
.cat-card:hover img { transform: scale(1.14); filter: brightness(1.05); }
.cat-card:hover { box-shadow: 0 28px 60px rgba(20,53,40,.24); }
.cat-card div {
  transition: transform .8s cubic-bezier(.16, 1, .3, 1), opacity .8s ease;
}
.cat-card:hover div { transform: translateY(-10px); }
.cat-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent, rgba(10,22,16,.82));
}
.cat-card div { position: relative; z-index: 1; padding: 22px; height: 100%; display: flex; flex-direction: column; justify-content: end; }
.cat-card span { font-size: 0.78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--beige); }
.cat-card h3 { color: #fff; margin: 6px 0 4px; }

.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
.pcard {
  background: var(--paper); border: 1px solid var(--line); border-radius: 22px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.7s cubic-bezier(.16, 1, .3, 1), box-shadow 0.7s ease, border-color .5s ease;
}
.pcard:hover {
  transform: translateY(-14px);
  box-shadow: 0 30px 70px rgba(20,53,40,.16);
  border-color: rgba(184,149,106,.45);
}
.pcard-photo { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #ddd; }
.pcard-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.35s cubic-bezier(.16, 1, .3, 1), filter 1s ease;
  transform: scale(1.03);
}
.pcard:hover .pcard-photo img { transform: scale(1.12); filter: brightness(1.04); }
.ribbon {
  position: absolute; top: 12px; left: 12px; background: var(--green); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 999px;
}
.ribbon.gold { background: var(--gold); color: #142016; }
.wish {
  position: absolute; top: 12px; right: 12px; width: 36px; height: 36px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,.92); cursor: pointer;
}
.pcard-body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pcard-body p {
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.pcat { font-size: 0.72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--green); font-weight: 700; }
.pcard h3 { font-size: 1.28rem; margin: 0; }
.stars { color: var(--gold); font-size: 0.88rem; }
.stars span { color: var(--muted); }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tags i {
  font-style: normal; font-size: 0.75rem; border: 1px solid var(--line);
  border-radius: 999px; padding: 4px 8px; color: var(--muted);
}
.price-row { display: flex; justify-content: space-between; align-items: center; margin-top: auto; gap: 8px; }
.price { font-weight: 800; color: var(--green); }
.price small { display: block; font-weight: 500; color: var(--muted); font-size: 0.72rem; }

.split {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
}
.split img, .photo {
  border-radius: 24px; width: 100%; height: 100%; object-fit: cover;
  min-height: 420px;
}
.photo-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.photo-stack img { min-height: 210px; border-radius: 20px; object-fit: cover; height: 240px; width: 100%; }

.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.vcard {
  background: var(--paper); border: 1px solid var(--line); border-radius: 22px; padding: 24px;
  transition: transform .75s cubic-bezier(.16, 1, .3, 1), box-shadow .75s ease, border-color .5s ease;
}
.vcard:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 55px rgba(20,53,40,.12);
  border-color: rgba(184,149,106,.4);
}
.vcard .n {
  font-family: var(--display); font-size: 2rem; color: var(--gold); display: block; margin-bottom: 8px;
}

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.step {
  background: var(--green); color: #fff; border-radius: 22px; padding: 24px; min-height: 210px;
  transition: transform .75s cubic-bezier(.16, 1, .3, 1), box-shadow .75s ease;
}
.step:hover { transform: translateY(-10px); box-shadow: 0 26px 55px rgba(20,53,40,.32); }
.step b { color: var(--gold); font-size: 0.78rem; letter-spacing: .14em; }
.step h3 { color: #fff; }
.step p { color: rgba(255,255,255,.78); margin: 0; }

.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.quote {
  background: var(--paper); border-radius: 22px; padding: 24px; border: 1px solid var(--line);
  transition: transform .75s cubic-bezier(.16, 1, .3, 1), box-shadow .75s ease, border-color .5s ease;
}
.quote:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 55px rgba(20,53,40,.12);
  border-color: rgba(184,149,106,.4);
}
.quote p { color: var(--ink); font-family: var(--display); font-size: 1.25rem; font-style: italic; }

.cta-band {
  background: var(--green); color: #fff; border-radius: 28px; padding: 48px;
  display: flex; justify-content: space-between; gap: 24px; align-items: center;
}
.cta-band p { color: rgba(255,255,255,.8); margin: 0; }

.page-hero {
  background: var(--green);
  color: #fff;
  padding: 88px 0 64px;
  min-height: min(44vh, 440px);
  overflow: hidden;
  position: relative;
  display: grid;
  align-items: end;
}
.page-hero-media {
  position: absolute;
  inset: -6%;
  background-color: var(--green);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
  animation: pageHeroZoom 16s cubic-bezier(.16, 1, .3, 1) forwards;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(10,22,16,.7) 0%, rgba(20,53,40,.45) 52%, rgba(10,22,16,.66) 100%);
  z-index: 1;
  pointer-events: none;
}
@keyframes pageHeroZoom {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero p { color: rgba(255,255,255,.9); }
.page-hero .container > * {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(5px);
  animation: luxHero 1.2s cubic-bezier(.16, 1, .3, 1) forwards;
}
.page-hero .container > *:nth-child(1) { animation-delay: .15s; }
.page-hero .container > *:nth-child(2) { animation-delay: .32s; }
.page-hero .container > *:nth-child(3) { animation-delay: .48s; }

.filters {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
  margin: 28px 0 18px;
}
.search {
  flex: 1; min-width: 220px; display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 10px 16px;
}
.search input { border: 0; outline: 0; width: 100%; background: transparent; }
.chip {
  border: 1px solid var(--line); background: #fff; border-radius: 999px;
  padding: 8px 14px; cursor: pointer; color: var(--green); font-weight: 600; font-size: 0.88rem;
}
.chip.on, .chip:hover { background: var(--green); color: #fff; border-color: var(--green); }
.sort { border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 10px 14px; }

.pdetail {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; padding: 48px 0;
}
.gallery-main { border-radius: 24px; overflow: hidden; background: #f5f0ea; aspect-ratio: 4/3; }
.gallery-main img { width: 100%; height: 100%; object-fit: contain; }
.thumbs { display: flex; gap: 8px; margin-top: 10px; }
.thumbs img {
  width: 86px; height: 68px; object-fit: contain; background: #f5f0ea; border-radius: 12px; cursor: pointer;
  border: 2px solid transparent;
}
.thumbs img.on { border-color: var(--green); }
.specs { display: grid; gap: 8px; margin: 18px 0; }
.specs div {
  display: grid; grid-template-columns: 140px 1fr; gap: 8px;
  border-bottom: 1px solid var(--line); padding: 8px 0; font-size: 0.95rem;
}
.specs b { color: var(--green); }

.ggrid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.ggrid a, .ggrid button {
  padding: 0; border: 0; background: none; cursor: pointer; border-radius: 16px; overflow: hidden;
  aspect-ratio: 1; position: relative; width: 100%; margin: 0;
  transition: transform .7s cubic-bezier(.16, 1, .3, 1), box-shadow .7s ease;
}
.ggrid a:hover, .ggrid button:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.ggrid img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.16, 1, .3, 1); }
.ggrid a:hover img, .ggrid button:hover img { transform: scale(1.1); }
.ggrid .span2 { grid-column: span 2; aspect-ratio: 2/1; }

.lightbox {
  position: fixed; inset: 0; background: rgba(10,16,12,.92); z-index: 70;
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 86vh; border-radius: 12px; }
.lightbox button {
  position: absolute; top: 18px; right: 18px; background: #fff; border: 0;
  width: 42px; height: 42px; border-radius: 50%; cursor: pointer;
}

.form {
  display: grid; gap: 12px; background: var(--paper); border: 1px solid var(--line);
  border-radius: 24px; padding: 28px;
  box-shadow: 0 16px 40px rgba(20,53,40,.06);
}
.form h2 { margin-bottom: 0; }
.form > p { margin-top: 0; }
.form label { display: grid; gap: 6px; font-size: 0.88rem; font-weight: 600; color: var(--green); }
.form input, .form select, .form textarea {
  border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; background: #fff;
}
.form textarea { min-height: 120px; resize: vertical; }
.form .two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.success {
  display: none; background: #e8f3ea; color: var(--green); border-radius: 16px; padding: 14px;
}
.success.show { display: block; }

.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 32px; align-items: start; }
.info-list { display: grid; gap: 12px; }

.contact-card {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 14px 16px;
  text-decoration: none;
  color: inherit;
  transition:
    transform .45s cubic-bezier(.16, 1, .3, 1),
    box-shadow .45s ease,
    border-color .35s ease,
    background .35s ease;
  -webkit-tap-highlight-color: transparent;
}
.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(184,149,106,.45);
  box-shadow: 0 18px 40px rgba(20,53,40,.12);
  outline: none;
}
.contact-card:active { transform: translateY(-1px) scale(.99); }

.contact-ico {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 10px 24px rgba(8,18,12,.18), inset 0 1px 0 rgba(255,255,255,.25);
  transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}
.contact-card:hover .contact-ico,
.contact-card:focus-visible .contact-ico {
  transform: scale(1.08) rotate(-4deg);
}
.contact-ico svg { width: 22px; height: 22px; fill: currentColor; display: block; }

.contact-ico.wa { background: linear-gradient(145deg, #2fe074, #1fbe5a); }
.contact-ico.tg { background: linear-gradient(145deg, #4bb4ef, #229ed9); }
.contact-ico.ig { background: linear-gradient(145deg, #f58529, #dd2a7b 48%, #8134af); }
.contact-ico.tt { background: linear-gradient(145deg, #2a2a2a, #111); }
.contact-ico.fb { background: linear-gradient(145deg, #4b79c8, #1877f2); }
.contact-ico.pin { background: linear-gradient(145deg, #1f4a36, #143528); }
.contact-ico.clock { background: linear-gradient(145deg, #c9a97a, #b8956a); color: #142016; }

.contact-meta { min-width: 0; }
.contact-meta .label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 2px;
}
.contact-meta .value {
  display: block;
  font-family: var(--display);
  font-size: 1.28rem;
  line-height: 1.2;
  color: var(--green);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.contact-go {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(20,53,40,.06);
  color: var(--green);
  font-size: 1.1rem;
  transition: background .3s ease, color .3s ease, transform .35s ease;
}
.contact-card:hover .contact-go {
  background: var(--green);
  color: #fff;
  transform: translateX(2px);
}

.contact-card.is-static {
  cursor: default;
}
.contact-card.is-static:hover {
  transform: none;
  box-shadow: none;
  border-color: var(--line);
}
.contact-card.is-static .contact-go { display: none; }

.map {
  border: 0;
  width: 100%;
  height: 360px;
  border-radius: 24px;
  margin-top: 16px;
  box-shadow: 0 16px 40px rgba(20,53,40,.08);
}

.faq { display: grid; gap: 10px; }
.faq details {
  background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 14px 18px;
}
.faq summary { cursor: pointer; font-weight: 700; color: var(--green); }
.faq p { margin: 10px 0 4px; }

.inquiry-list { display: grid; gap: 10px; margin-bottom: 16px; }
.inquiry-item {
  display: grid; grid-template-columns: 72px 1fr auto; gap: 12px; align-items: center;
  background: var(--paper); border: 1px solid var(--line); border-radius: 16px; padding: 8px;
}
.inquiry-item img { width: 72px; height: 56px; object-fit: cover; border-radius: 10px; }
.inquiry-item button { border: 0; background: none; color: #8a3b3b; cursor: pointer; }

.footer {
  background: #0d1c14; color: rgba(255,255,255,.82); padding: 56px 0 24px; margin-top: 40px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
.footer h4 { color: var(--beige); font-family: var(--font); letter-spacing: .08em; text-transform: uppercase; font-size: 0.8rem; }
.footer a { display: block; padding: 4px 0; color: rgba(255,255,255,.78); }
.footer a:hover { color: #fff; }
.footer p { color: rgba(255,255,255,.7); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 32px; padding-top: 16px; font-size: 0.84rem;
}
.footer .brand img {
  height: 48px;
  width: auto;
  max-width: 200px;
  mix-blend-mode: normal;
}

.footer-logo {
  display: inline-block;
  line-height: 0;
  margin-bottom: 16px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}
.footer-logo img {
  height: 72px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  display: block;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
  padding: 0;
  transition: .25s;
}
.socials a:hover { background: var(--gold); color: #142016; transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; fill: currentColor; }
.top-social .socials a,
.top-icons a {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,.12);
  flex: 0 0 32px;
  display: grid;
}

/* Luxury scroll reveals — soft, slow, cinematic */
.reveal {
  opacity: 0;
  transform: translate3d(0, 64px, 0) scale(.985);
  filter: blur(6px);
  transition:
    opacity 1.25s cubic-bezier(.16, 1, .3, 1),
    transform 1.25s cubic-bezier(.16, 1, .3, 1),
    filter 1.1s cubic-bezier(.16, 1, .3, 1);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform, filter;
}
.reveal.from-left {
  transform: translate3d(-48px, 24px, 0) scale(.98);
}
.reveal.from-right {
  transform: translate3d(48px, 24px, 0) scale(.98);
}
.reveal.zoom {
  transform: translate3d(0, 28px, 0) scale(.92);
}
.reveal.soft {
  transform: translate3d(0, 36px, 0);
  filter: blur(4px);
}
.reveal.clip {
  transform: translate3d(0, 40px, 0) scale(1.02);
  clip-path: inset(8% 8% 8% 8%);
  filter: blur(2px);
  transition:
    opacity 1.35s cubic-bezier(.16, 1, .3, 1),
    transform 1.35s cubic-bezier(.16, 1, .3, 1),
    filter 1.2s cubic-bezier(.16, 1, .3, 1),
    clip-path 1.35s cubic-bezier(.16, 1, .3, 1);
  transition-delay: var(--d, 0ms);
}
.reveal.fade {
  transform: none;
  filter: blur(8px);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
.reveal.clip.is-in {
  clip-path: inset(0);
}

.sec-head.reveal .kicker {
  letter-spacing: 0.08em;
  transition: letter-spacing 1.2s cubic-bezier(.16, 1, .3, 1);
}
.sec-head.reveal.is-in .kicker {
  letter-spacing: 0.18em;
}

.site-header.is-scrolled {
  box-shadow: 0 16px 40px rgba(20, 53, 40, 0.12);
}

@keyframes rise {
  to { opacity: 1; transform: none; filter: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .hero-inner > *,
  .page-hero .container > * {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
    animation: none !important;
    transition: none !important;
  }
  .hero-slides .slide,
  .hero-slides .slide img,
  .page-hero-media {
    transition: opacity .25s ease;
    transform: none !important;
    animation: none !important;
    filter: none !important;
  }
  .pcard:hover, .vcard:hover, .step:hover, .quote:hover, .cat-card:hover div, .btn:hover { transform: none; }
}

.mobile-panel {
  position: fixed; inset: 0; z-index: 220;
  background: #fbf8f1;
  display: flex; flex-direction: column;
  padding: 18px 22px 32px;
  transform: translateX(110%);
  transition: transform .7s cubic-bezier(.16, 1, .3, 1);
}
.mobile-panel.open { transform: translateX(0); }
.mobile-panel-top {
  display: flex; justify-content: space-between; align-items: center;
}
.mobile-panel-top img { height: 56px; mix-blend-mode: multiply; }
.mobile-panel nav {
  display: flex; flex-direction: column; gap: 6px;
  margin: 36px 0 auto;
}
.mobile-panel nav a {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--green);
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(18px);
  filter: blur(4px);
}
.mobile-panel.open nav a { animation: luxHero .9s cubic-bezier(.16, 1, .3, 1) forwards; }
.mobile-panel.open nav a:nth-child(1) { animation-delay: .12s; }
.mobile-panel.open nav a:nth-child(2) { animation-delay: .2s; }
.mobile-panel.open nav a:nth-child(3) { animation-delay: .28s; }
.mobile-panel.open nav a:nth-child(4) { animation-delay: .36s; }
.mobile-panel.open nav a:nth-child(5) { animation-delay: .44s; }
.mobile-panel.open nav a:nth-child(6) { animation-delay: .52s; }
.mobile-panel .socials a { background: var(--green); color: #fff; width: 44px; height: 44px; }
.menu-btn .bars, .menu-btn .x { display: none; }
.menu-btn .bars { display: block; }
body.menu-open { overflow: hidden; }
body.menu-open .menu-btn .bars { display: none; }
body.menu-open .menu-btn .x { display: block; }

@media (max-width: 980px) {
  .cat-card { grid-column: span 6; }
  .nav {
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
    min-height: 64px;
  }
  .nav > .menu-btn {
    display: grid;
    grid-column: 1;
    justify-self: start;
  }
  .nav > .brand {
    grid-column: 2;
    justify-self: center;
  }
  .nav-links { display: none; }
  .nav-end {
    grid-column: 3;
    justify-self: end;
    gap: 6px;
  }
  .trust, .product-grid, .values, .quotes, .steps, .split, .contact-grid, .pdetail, .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ggrid { grid-template-columns: 1fr 1fr; }
  .cta-band, .sec-head { flex-direction: column; align-items: start; }
  .hero-arrows { display: none; }
  .container { width: min(1180px, calc(100% - 32px)); }
  .wide { width: min(1280px, calc(100% - 24px)); }
}

@media (max-width: 680px) {
  :root { --header: 64px; }

  .container { width: calc(100% - 28px); }
  .wide { width: calc(100% - 20px); }

  /* Topbar: compact, no wrap chaos */
  .topbar {
    font-size: 0.72rem;
    padding: 6px 0;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
  .topbar .wide {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }
  .topbar .wide > .top-loc,
  .topbar .wide > span:first-child {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 1.25;
  }
  .top-loc-full { display: none; }
  .top-loc-short { display: inline; }
  .top-social {
    width: auto;
    flex: 0 0 auto;
    gap: 8px;
  }
  .top-phone { font-size: 0.72rem; }
  .top-social .top-icons { gap: 6px; }
  .top-social .socials a,
  .top-icons a {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
  }

  /* Header / logo */
  .site-header {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }
  .site-header .brand img { height: 48px; max-width: min(180px, 46vw); }
  .nav { min-height: 60px; gap: 6px; }
  .nav-end > .btn { display: none; }
  .nav-end .lang { padding: 7px 8px; font-size: 0.8rem; }
  .icon-btn { width: 40px; height: 40px; }
  .menu-btn {
    width: 52px;
    height: 52px;
    font-size: 1.55rem;
  }

  /* Hero — native full-bleed feel */
  .hero {
    min-height: 100svh;
    min-height: 100dvh;
    max-height: none;
    align-items: end;
  }
  .hero-inner {
    padding: 72px 0 calc(56px + env(safe-area-inset-bottom));
  }
  .hero h1 {
    font-size: clamp(2.1rem, 9vw, 2.7rem);
    max-width: 12ch;
  }
  .hero p { font-size: 0.98rem; max-width: 34ch; }
  .hero-meta {
    gap: 10px 14px;
    font-size: 0.8rem;
    margin-top: 20px;
  }
  .hero-dots { bottom: calc(18px + env(safe-area-inset-bottom)); }
  .hero .btn-row { gap: 8px; }
  .hero .btn { padding: 12px 18px; font-size: 0.9rem; }

  .page-hero {
    min-height: 38vh;
    padding: 64px 0 40px;
  }
  .page-hero h1 { font-size: clamp(1.9rem, 8vw, 2.5rem); }

  /* Sections & type */
  section { padding: 48px 0; }
  h2 { font-size: clamp(1.65rem, 7vw, 2.2rem); }
  h3 { font-size: 1.25rem; }
  .sec-head { margin-bottom: 22px; gap: 12px; }
  .btn-row { gap: 8px; }
  .btn { padding: 12px 18px; font-size: 0.9rem; }

  /* Grids — single column native stack */
  .cat-card {
    grid-column: span 12;
    min-height: 220px;
    border-radius: 18px;
  }
  .trust,
  .product-grid,
  .values,
  .quotes,
  .steps,
  .split,
  .contact-grid,
  .pdetail,
  .footer-grid,
  .form .two {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .trust {
    margin-top: -28px;
    padding: 16px;
    border-radius: 18px;
    gap: 14px;
  }
  .trust div b { font-size: 1.45rem; }
  .pcard { border-radius: 18px; }
  .pcard:hover { transform: none; }
  .vcard:hover, .step:hover, .quote:hover { transform: none; }
  .split img, .photo { min-height: 240px; border-radius: 18px; }
  .photo-stack { grid-template-columns: 1fr 1fr; gap: 8px; }
  .photo-stack img { height: 140px; min-height: 140px; border-radius: 14px; }
  .step { min-height: 0; padding: 20px; }
  .cta-band { padding: 24px; border-radius: 20px; }
  .filters { margin: 18px 0 12px; gap: 8px; }
  .search { min-width: 0; width: 100%; }
  .chip { padding: 8px 12px; font-size: 0.82rem; }
  .ggrid { gap: 8px; }
  .ggrid .span2 { grid-column: span 2; }
  .thumbs { flex-wrap: wrap; }
  .thumbs img { width: 72px; height: 58px; }
  .specs div { grid-template-columns: 110px 1fr; font-size: 0.9rem; }
  .footer { padding: 40px 0 calc(28px + env(safe-area-inset-bottom)); margin-top: 24px; }
  .footer-logo img { height: 64px; max-width: 260px; }
  .inquiry-item { grid-template-columns: 64px 1fr auto; }
  .map { height: 280px; border-radius: 18px; }

  .contact-card {
    grid-template-columns: 48px 1fr auto;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 18px;
  }
  .contact-ico { width: 48px; height: 48px; }
  .contact-ico svg { width: 20px; height: 20px; }
  .contact-meta .value { font-size: 1.15rem; }
  .contact-card:hover { transform: none; }
  .contact-card:active {
    transform: scale(.98);
    background: #fff;
    box-shadow: 0 10px 28px rgba(20,53,40,.1);
  }

  /* Mobile menu — app-like full screen */
  .mobile-panel {
    padding:
      calc(14px + env(safe-area-inset-top))
      calc(18px + env(safe-area-inset-right))
      calc(24px + env(safe-area-inset-bottom))
      calc(18px + env(safe-area-inset-left));
  }
  .mobile-panel nav a {
    font-size: clamp(1.7rem, 8vw, 2.1rem);
    padding: 12px 0;
  }
  .mobile-panel-top img { height: 48px; }

  /* Bottom app bar + floaters */
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .mobile-cta {
    display: flex;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    gap: 8px;
    box-shadow: 0 -8px 28px rgba(8,18,12,.18);
  }
  .mobile-cta .btn { flex: 1; padding: 12px 14px; }
  .floaters {
    right: max(10px, env(safe-area-inset-right));
    bottom: calc(82px + env(safe-area-inset-bottom));
    gap: 10px;
  }
  .floater { width: 48px; height: 48px; }
  .floater svg { width: 21px; height: 21px; }
  .floater-tip { display: none; }
  .floater.call { display: none; } /* Call is in bottom bar */
  .floater.wa::before,
  .floater.wa::after {
    animation-duration: 3s;
  }

  /* Softer motion on small screens for native feel */
  .reveal {
    transform: translate3d(0, 28px, 0);
    filter: blur(2px);
    transition-duration: .7s;
  }
  .reveal.from-left,
  .reveal.from-right {
    transform: translate3d(0, 24px, 0);
  }
}

.floaters {
  position: fixed;
  right: 16px;
  bottom: 86px;
  z-index: 55;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  pointer-events: none;
}
.floater {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  border: 0;
  outline: none;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  isolation: isolate;
  box-shadow:
    0 12px 30px rgba(8, 18, 12, .28),
    inset 0 1px 0 rgba(255,255,255,.22);
  transform: translateX(28px) scale(.86);
  opacity: 0;
  transition:
    transform .65s cubic-bezier(.16, 1, .3, 1),
    opacity .55s ease,
    box-shadow .4s ease,
    filter .4s ease;
}
.floaters.is-in .floater {
  opacity: 1;
  transform: translateX(0) scale(1);
}
.floaters.is-in .floater:nth-child(1) { transition-delay: .08s; }
.floaters.is-in .floater:nth-child(2) { transition-delay: .18s; }
.floaters.is-in .floater:nth-child(3) { transition-delay: .28s; }
.floaters.is-in .floater:hover,
.floaters.is-in .floater:focus-visible,
.floaters.is-in:hover .floater {
  transition-delay: 0s;
}

.floater-ico {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  transition: transform .45s cubic-bezier(.16, 1, .3, 1);
}
.floater svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  display: block;
}
.floater-tip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  white-space: nowrap;
  background: rgba(12, 24, 18, .92);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 8px 12px;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
  transition:
    opacity .35s ease,
    transform .45s cubic-bezier(.16, 1, .3, 1);
}
.floater-tip::after {
  content: "";
  position: absolute;
  right: -4px;
  top: 50%;
  width: 8px;
  height: 8px;
  background: rgba(12, 24, 18, .92);
  transform: translateY(-50%) rotate(45deg);
}
.floater:hover .floater-tip,
.floater:focus-visible .floater-tip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.floater:hover,
.floater:focus-visible {
  transform: translateY(-4px) scale(1.08);
  box-shadow:
    0 18px 40px rgba(8, 18, 12, .34),
    inset 0 1px 0 rgba(255,255,255,.28);
  outline: none;
  filter: brightness(1.05);
}
.floater:hover .floater-ico,
.floater:focus-visible .floater-ico {
  transform: scale(1.08) rotate(-6deg);
}
.floater:active {
  transform: translateY(-1px) scale(.98);
}

.floater.wa { background: linear-gradient(145deg, #2fe074, #1fbe5a 55%, #18a34a); }
.floater.tg { background: linear-gradient(145deg, #4bb4ef, #229ed9 55%, #1a86c0); }
.floater.call { background: linear-gradient(145deg, #1f4a36, #143528 55%, #0f2a1f); }

.floater.wa::before,
.floater.wa::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  border: 1.5px solid rgba(37, 211, 102, .55);
  animation: floaterRipple 2.6s cubic-bezier(.22, 1, .36, 1) infinite;
}
.floater.wa::after { animation-delay: 1.3s; }
.floater-ring { display: none; }

@keyframes floaterRipple {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(1.75); opacity: 0; }
}

@media (hover: hover) {
  .floaters:hover .floater:not(:hover) {
    transform: scale(.94);
    filter: saturate(.85) brightness(.95);
  }
  .floaters.is-in:hover .floater:hover {
    transform: translateY(-5px) scale(1.1);
    filter: none;
  }
}

@media (max-width: 680px) {
  .floaters { right: max(10px, env(safe-area-inset-right)); bottom: calc(82px + env(safe-area-inset-bottom)); gap: 10px; }
  .floater { width: 48px; height: 48px; }
  .floater svg { width: 21px; height: 21px; }
  .floater-tip { display: none; }
  .floater.call { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .floater,
  .floater-tip,
  .floater-ico {
    transition: none !important;
  }
  .floater.wa::before,
  .floater.wa::after {
    animation: none !important;
    display: none;
  }
  .floaters .floater {
    opacity: 1 !important;
    transform: none !important;
  }
}
.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  background: var(--green);
  color: #fff;
  padding: 12px 16px;
  justify-content: center;
  gap: 10px;
  padding-left: max(16px, env(safe-area-inset-left));
  padding-right: max(16px, env(safe-area-inset-right));
}

.empty { text-align: center; padding: 40px 16px; color: var(--muted); }

html[lang="am"] body { font-size: 1.02rem; }
html[lang="am"] h1, html[lang="am"] h2, html[lang="am"] h3 { font-family: "Noto Serif Ethiopic", var(--display); }

html[data-lang="en"] .lang-am,
html[data-lang="am"] .lang-en,
html:not([data-lang="am"]) .lang-am { display: none !important; }
html[data-lang="am"] .lang-en { display: none !important; }
html[data-lang="am"] .lang-am { display: revert; }
html[data-lang="en"] .lang-en,
html:not([data-lang="am"]) .lang-en { display: revert; }

.contact-grid { display: grid; gap: 32px; grid-template-columns: 1fr 1fr; }
.contact-cards { display: grid; gap: 14px; }
.contact-card {
  display: block;
  padding: 18px 20px;
  border: 1px solid rgba(20,53,40,.12);
  background: rgba(255,255,255,.55);
  text-decoration: none;
  color: inherit;
}
.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.gallery-item img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}
