@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./assets/fonts/outfit-400.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./assets/fonts/outfit-ext-400.woff2") format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF;
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./assets/fonts/outfit-500.woff2") format("woff2");
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./assets/fonts/outfit-600.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122;
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./assets/fonts/outfit-ext-600.woff2") format("woff2");
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF;
}
@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./assets/fonts/outfit-700.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./assets/fonts/cormorant-600.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("./assets/fonts/cormorant-600i.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./assets/fonts/cormorant-700.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./assets/fonts/cormorant-cyr-600.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./assets/fonts/cormorant-cyr-700.woff2") format("woff2");
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

:root {
  --navy: #07111f;
  --navy-2: #0c1b31;
  --navy-3: #132844;
  --ink: #12151c;
  --muted: #5c6573;
  --paper: #f6f2ea;
  --paper-2: #ece6d8;
  --white: #fbfaf6;
  --gold: #c9a227;
  --gold-2: #e8c547;
  --gold-3: #8a6a16;
  --gold-soft: rgba(201, 162, 39, 0.16);
  --line: rgba(201, 162, 39, 0.28);
  --up: #1f8a4c;
  --down: #c0392b;
  --shadow: 0 24px 60px rgba(7, 17, 31, 0.28);
  --radius: 18px;
  --header-h: 74px;
  --ticker-h: 38px;
  --serif: "Cormorant Garamond", "Songti SC", "Noto Serif SC", "Times New Roman", serif;
  --sans: "Outfit", "PingFang SC", "Hiragino Sans GB", "Noto Sans SC", "Microsoft YaHei", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 10px);
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  min-height: 100vh;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip {
  position: absolute;
  inset-inline-start: -999px;
  top: 8px;
  background: var(--gold);
  color: var(--navy);
  padding: 8px 12px;
  z-index: 80;
}

.skip:focus {
  inset-inline-start: 8px;
}

/* ——— ticker ——— */
.ticker {
  height: var(--ticker-h);
  background: #050b14;
  color: #d7deea;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow: hidden;
  border-bottom: 1px solid rgba(201, 162, 39, 0.22);
}

.ticker-live {
  color: var(--gold-2);
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3dcf7a;
  box-shadow: 0 0 0 0 rgba(61, 207, 122, 0.7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 8px rgba(61, 207, 122, 0);
  }
}

.ticker-track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.tick {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.tick b {
  color: #fff;
  font-weight: 600;
}

.tick .up {
  color: #5ee09a;
}

.tick .down {
  color: #ff8b7a;
}

/* ——— header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 28px;
  background: rgba(7, 17, 31, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  color: #eef2f8;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand img {
  width: 34px;
  height: 34px;
}

.brand-name {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.18em;
  font-weight: 600;
}

.brand-name span {
  color: var(--gold-2);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  opacity: 0.88;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--gold-2);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

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

.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0 12px 0 14px;
  height: 40px;
  min-width: 220px;
}

.search input {
  background: transparent;
  border: 0;
  outline: 0;
  color: #fff;
  width: 100%;
}

.search input::placeholder {
  color: #9aa6b8;
}

.icon-btn,
.lang-select,
.menu-btn {
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 0 14px;
}

.lang-select {
  appearance: none;
  padding-right: 28px;
  color-scheme: dark;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold-2) 50%),
    linear-gradient(135deg, var(--gold-2) 50%, transparent 50%);
  background-position: calc(100% - 14px) 16px, calc(100% - 9px) 16px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.phone-link {
  color: var(--gold-2);
  font-size: 12px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.menu-btn {
  display: none;
  width: 40px;
  padding: 0;
}

.promo {
  background: linear-gradient(90deg, #b48a16, #e8c547 40%, #b48a16);
  color: var(--navy);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 8px 16px;
}

/* ——— hero ——— */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 340px);
  grid-template-rows: 1fr auto;
  min-height: calc(100vh - var(--ticker-h) - var(--header-h) - 34px);
  color: #f7f1e3;
  overflow: hidden;
  isolation: isolate;
}

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 50%;
  transform: scale(1.08);
  animation: kenburns 28s ease-in-out infinite alternate;
  filter: saturate(1.08) contrast(1.05);
}

@keyframes kenburns {
  to {
    transform: scale(1.16) translate3d(-1.5%, -1%, 0);
  }
}

.hero-coin {
  position: absolute;
  right: -6%;
  top: 8%;
  width: min(46vw, 620px);
  height: min(46vw, 620px);
  object-fit: cover;
  border-radius: 50%;
  mask-image: radial-gradient(circle at 50% 50%, #000 52%, transparent 72%);
  opacity: 0.55;
  mix-blend-mode: screen;
  animation: spinsoft 48s linear infinite;
  pointer-events: none;
}

@keyframes spinsoft {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 10, 18, 0.92) 0%, rgba(5, 10, 18, 0.72) 38%, rgba(5, 10, 18, 0.22) 68%, rgba(5, 10, 18, 0.55) 100%),
    linear-gradient(180deg, rgba(5, 10, 18, 0.2) 0%, rgba(5, 10, 18, 0.08) 40%, rgba(5, 10, 18, 0.78) 100%);
}

.hero-frame {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(232, 197, 71, 0.28);
  pointer-events: none;
}

.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  border: 1px solid var(--gold-2);
}

.hero-frame::before {
  top: -1px;
  left: -1px;
  border-right: 0;
  border-bottom: 0;
}

.hero-frame::after {
  right: -1px;
  bottom: -1px;
  border-left: 0;
  border-top: 0;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.09;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 72px 6vw 48px;
  align-self: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--gold-2);
  margin: 0 0 18px;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold-2);
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(44px, 6.4vw, 92px);
  line-height: 0.94;
  margin: 0 0 22px;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-2);
}

.lede {
  max-width: 54ch;
  color: #d9d0bc;
  font-size: 18px;
  margin: 0 0 28px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
}

.btn-gold {
  background: linear-gradient(180deg, #f0d36a, #c9a227);
  color: var(--navy);
  box-shadow: 0 10px 30px rgba(201, 162, 39, 0.28);
}

.btn-gold:hover {
  filter: brightness(1.06);
}

.btn-line {
  border: 1px solid #eadfcb;
  background: #fff;
  color: var(--ink);
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.card-actions .btn {
  flex: 1;
}

.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cart-count {
  min-width: 18px;
  height: 18px;
  border-radius: 99px;
  background: var(--gold-2);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

.cart-mask {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 18, 0.46);
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
  z-index: 80;
}

.cart-mask.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100%;
  background: #fbfaf6;
  color: var(--ink);
  z-index: 81;
  transform: translateX(110%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

html[dir="rtl"] .cart-drawer {
  right: auto;
  left: 0;
  transform: translateX(-110%);
}

.cart-drawer.open,
html[dir="rtl"] .cart-drawer.open {
  transform: none;
}

.cart-head,
.cart-foot {
  padding: 18px 18px;
  border-bottom: 1px solid #eadfcb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-foot {
  border-bottom: 0;
  border-top: 1px solid #eadfcb;
  flex-direction: column;
  align-items: stretch;
}

.cart-head h2 {
  font-family: var(--serif);
  margin: 0;
  font-size: 28px;
}

.cart-items {
  overflow: auto;
  flex: 1;
  padding: 8px 18px 18px;
}

.cart-empty {
  color: var(--muted);
  padding: 24px 8px;
}

.cart-line {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eadfcb;
  align-items: center;
}

.cart-line img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  background: #111;
}

.cart-line h3 {
  margin: 0 0 4px;
  font-size: 14px;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-row button {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid #eadfcb;
  background: #fff;
}

.line-price {
  font-family: var(--serif);
  font-size: 18px;
  text-align: end;
}

.saved-box {
  margin-top: 16px;
  padding: 14px;
  border: 1px dashed rgba(232, 197, 71, 0.35);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.saved-box h3 {
  margin: 0 0 8px;
  font-size: 14px;
}

.saved-box ul {
  margin: 0;
  padding-inline-start: 18px;
  color: #d9d0bc;
  font-size: 13px;
}

.icon-btn.ghost {
  background: transparent;
}

.btn-ghost {
  border-color: rgba(232, 197, 71, 0.45);
  color: #f3ead4;
  background: rgba(255, 255, 255, 0.04);
}

.hero-note {
  color: #b7b09f;
  font-size: 13px;
}

.hero-quotes {
  position: relative;
  z-index: 1;
  align-self: center;
  width: auto;
  margin-inline-end: 5vw;
  display: grid;
  gap: 10px;
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.quote-card {
  background: rgba(8, 16, 28, 0.62);
  border: 1px solid rgba(232, 197, 71, 0.22);
  backdrop-filter: blur(18px);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
}

.quote-card .k {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #cbbd93;
}

.quote-card .v {
  font-family: var(--serif);
  font-size: 30px;
  margin: 4px 0;
}

.quote-card .d {
  font-size: 12px;
}

.hero-floor {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(232, 197, 71, 0.18);
  background: rgba(5, 10, 18, 0.55);
  backdrop-filter: blur(12px);
}

.floor-item {
  padding: 16px 22px;
  border-inline-end: 1px solid rgba(232, 197, 71, 0.12);
}

.floor-item:last-child {
  border-inline-end: 0;
}

.floor-item strong {
  display: block;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floor-item span {
  color: #b7b09f;
  font-size: 13px;
}

/* ——— layout blocks ——— */
.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 84px 0;
  scroll-margin-top: calc(var(--header-h) + 8px);
}

.section-kicker {
  color: var(--gold-3);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 8px;
}

.section h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  margin: 0 0 12px;
  line-height: 1.05;
}

.section-lead {
  color: var(--muted);
  max-width: 62ch;
  margin: 0 0 36px;
}

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

.cat {
  position: relative;
  min-height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.cat img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cat:hover img {
  transform: scale(1.06);
}

.cat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 17, 31, 0.05), rgba(7, 17, 31, 0.78));
}

.cat-copy {
  position: relative;
  z-index: 1;
  padding: 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.cat-copy small {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-2);
}

.cat-copy b {
  font-family: var(--serif);
  font-size: 32px;
}

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

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 22px;
}

.filters button {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #eadfcb;
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filters button.is-on {
  background: var(--navy);
  color: var(--gold-2);
  border-color: var(--navy);
}

.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #eadfcb;
  box-shadow: 0 10px 30px rgba(18, 21, 28, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(18, 21, 28, 0.1);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.card-media {
  background: #111;
  aspect-ratio: 1;
  overflow: hidden;
}

.card-body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.pill {
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-3);
  background: var(--gold-soft);
  border-radius: 999px;
  padding: 4px 8px;
}

.card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.3;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: auto;
}

.price {
  font-family: var(--serif);
  font-size: 26px;
}

.stock {
  color: var(--up);
  font-size: 12px;
}

.card .btn {
  min-height: 36px;
  padding: 0 14px;
  font-size: 11px;
}

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

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.why-card {
  background: #fff;
  border: 1px solid #eadfcb;
  border-radius: 16px;
  padding: 18px;
}

.why-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

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

.why-visual {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 460px;
}

.why-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.story {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.story img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 22px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.stat b {
  display: block;
  font-family: var(--serif);
  font-size: 34px;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.review {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid #eadfcb;
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.review p {
  margin: 0 0 16px;
}

.review cite {
  font-style: normal;
  color: var(--muted);
  font-size: 13px;
}

.faq {
  display: grid;
  gap: 10px;
  max-width: 860px;
}

details {
  background: #fff;
  border: 1px solid #eadfcb;
  border-radius: 14px;
  padding: 14px 18px;
}

summary {
  cursor: pointer;
  font-weight: 600;
}

details p {
  color: var(--muted);
  margin: 10px 0 0;
}

.split-faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.faq-photo {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 22px;
}

@media (max-width: 900px) {
  .split-faq {
    grid-template-columns: 1fr;
  }
}

.desk {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  background: var(--navy-2);
  color: #f4efe4;
  border-radius: 28px;
  overflow: hidden;
}

.desk-copy {
  padding: 36px;
}

.desk form {
  padding: 28px;
  background: rgba(255, 255, 255, 0.04);
}

.fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
}

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

.field input,
.field select,
.field textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 12px;
  padding: 12px 12px;
  outline: none;
}

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

.form-msg {
  min-height: 22px;
  font-size: 13px;
  margin: 8px 0 0;
}

.form-msg.ok {
  color: #7be3a6;
}

.form-msg.err {
  color: #ffb4a8;
}

.site-footer {
  background: #050b14;
  color: #c5cdd8;
  padding: 48px 0 24px;
  margin-top: 12px;
}

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

.site-footer h3,
.site-footer h4 {
  color: #fff;
  margin: 0 0 12px;
}

.site-footer a:hover {
  color: var(--gold-2);
}

.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 28px;
  padding-top: 16px;
  font-size: 12px;
  color: #8b95a4;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.empty-search {
  display: none;
  text-align: center;
  color: var(--muted);
  padding: 20px;
}

body.searching .empty-search.show {
  display: block;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--navy);
  color: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 70;
}

.toast.show {
  transform: none;
  opacity: 1;
}

/* splash */
.splash {
  min-height: 100vh;
  background: #050b14 url("./assets/images/hero-cover.jpg") center/cover no-repeat;
  color: #f4efe4;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
}

.splash::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 18, 0.72);
}

.splash-inner {
  position: relative;
  z-index: 1;
}

.splash h1 {
  font-family: var(--serif);
  letter-spacing: 0.22em;
  font-size: 42px;
  margin: 12px 0 8px;
}

.spinner {
  width: 28px;
  height: 28px;
  border: 2px solid rgba(232, 197, 71, 0.2);
  border-top-color: var(--gold-2);
  border-radius: 50%;
  margin: 18px auto 0;
  animation: spinsoft 0.8s linear infinite;
}

.lang-fallback {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.lang-fallback a {
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
}

html[dir="rtl"] .eyebrow::before {
  order: 2;
}

html[dir="rtl"] .hero-quotes {
  margin-inline-end: 0;
  margin-inline-start: 5vw;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-photo,
  .hero-coin,
  .ticker-track,
  .pulse,
  .spinner,
  .card,
  .card-media img,
  .cat img {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

@media (max-width: 1100px) {
  .nav {
    display: none;
  }
  .nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 45;
    background: #0c1b31;
    flex-direction: column;
    padding: 18px;
    align-items: flex-start;
    gap: 14px;
    border-bottom: 1px solid var(--line);
  }
  .menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .search {
    min-width: 0;
    width: 140px;
  }
  .cats,
  .products,
  .reviews,
  .hero-floor {
    grid-template-columns: 1fr 1fr;
  }
  .why,
  .story,
  .desk,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-quotes {
    margin: 0;
    padding: 0 6vw 24px;
    grid-template-columns: 1fr 1fr;
  }
  .hero-copy {
    padding: 56px 6vw 28px;
  }
  .hero-coin {
    opacity: 0.28;
  }
  .phone-link {
    display: none;
  }
}

@media (max-width: 720px) {
  .ticker {
    padding: 0 12px;
  }
  .site-header {
    padding: 0 12px;
  }
  .search {
    display: flex;
    flex: 1;
    min-width: 0;
    width: auto;
  }
  .icon-btn:not(.cart-btn) {
    display: none;
  }
  .faq-photo {
    height: 240px;
  }
  .cats,
  .products,
  .reviews,
  .hero-floor,
  .hero-quotes,
  .why-grid,
  .stats,
  .fields {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding: 56px 20px 24px;
  }
  .hero-quotes {
    padding: 0 20px 20px;
  }
  .hero-frame {
    inset: 10px;
  }
  .wrap {
    width: min(1180px, calc(100% - 24px));
  }
  .section {
    padding: 56px 0;
  }
  .legal {
    flex-direction: column;
  }
  .why-visual {
    min-height: 260px;
  }
}

@media (max-width: 560px) {
  .search {
    display: none;
  }
  .cart-btn {
    padding-inline: 10px;
    font-size: 0;
    gap: 0;
  }
  .cart-count {
    font-size: 11px;
  }
}
