/* ═══════════════════════════════════════════
   Gurmadze — Georgian spices (US demand test)
   ═══════════════════════════════════════════ */

:root {
  --ink:        #1c1917;
  --ink-2:      #44403c;
  --ink-3:      #78716c;
  --line:       #e7e2da;
  --line-2:     #d6cfc3;
  --bg:         #fbf8f3;
  --bg-2:       #f4efe6;
  --card:       #ffffff;
  --brand:      #9a2c1f;   /* paprika */
  --brand-dk:   #7c2117;
  --brand-soft: #fdeeea;
  --gold:       #b58b2e;
  --radius:     14px;
  --radius-sm:  9px;
  --shadow:     0 1px 2px rgba(28,25,23,.05), 0 8px 24px -12px rgba(28,25,23,.14);
  --shadow-lg:  0 24px 60px -20px rgba(28,25,23,.30);
  --serif:      'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:       'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.015em;
  margin: 0;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.2rem; }
p  { margin: 0 0 1em; }
a  { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap { width: min(1200px, 100% - 3rem); margin-inline: auto; }
@media (max-width: 600px) { .wrap { width: min(1200px, 100% - 2rem); } }

.eyebrow {
  font-size: .74rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--brand); margin: 0 0 .9rem;
}

/* ── buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; padding: .92rem 1.7rem; border: 1px solid transparent;
  border-radius: 999px; font: 500 .95rem/1 var(--sans); cursor: pointer;
  transition: background .18s, color .18s, border-color .18s, transform .18s;
}
.btn--primary { background: var(--ink); color: #fff; }
.btn--primary:hover { background: var(--brand); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); background: #fff; }
.btn--full { width: 100%; }
.linkbtn {
  background: none; border: 0; padding: 0; cursor: pointer;
  font: inherit; color: var(--brand); text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── header ── */
.hdr {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,248,243,.88); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.hdr__in { display: flex; align-items: center; justify-content: space-between; height: 68px; }

.logo { display: flex; align-items: center; gap: .6rem; }
.logo__mark {
  width: 32px; height: 32px; display: grid; place-items: center;
  background: var(--brand); color: #fff; border-radius: 8px;
  font-family: var(--serif); font-size: 1.05rem; padding-bottom: 2px;
}
.logo__txt {
  font-family: var(--serif); font-size: 1.28rem; font-weight: 600;
  color: var(--ink); letter-spacing: -.02em;
}
.logo--light .logo__txt { color: #fff; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav a { font-size: .93rem; color: var(--ink-2); transition: color .16s; }
.nav a:hover { color: var(--brand); }
.nav__cta {
  background: var(--ink); color: #fff !important; padding: .6rem 1.15rem;
  border-radius: 999px; font-weight: 500;
}
.nav__cta:hover { background: var(--brand); }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: .5rem; }
.burger span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  margin: 4px 0; transition: transform .22s, opacity .22s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 860px) {
  .burger { display: block; }
  .nav {
    position: fixed; inset: 68px 0 auto; flex-direction: column;
    align-items: stretch; gap: 0; background: var(--bg);
    border-bottom: 1px solid var(--line); padding: .5rem 1.5rem 1.5rem;
    transform: translateY(-130%); transition: transform .26s ease; box-shadow: var(--shadow);
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: .9rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav__cta { border: 0; text-align: center; margin-top: 1rem; padding: .9rem; }
}

/* ── ticker ── */
.ticker { background: var(--ink); color: #d6d3d1; overflow: hidden; padding: .62rem 0; }
.ticker__in {
  display: flex; align-items: center; gap: 1.6rem;
  white-space: nowrap; width: max-content; animation: slide 42s linear infinite;
  font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
}
.ticker__in i { width: 4px; height: 4px; border-radius: 50%; background: var(--brand); flex: none; }
@keyframes slide { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__in { animation: none; } }

/* ── hero ── */
.hero { padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(3rem, 6vw, 5rem); overflow: hidden; }
.hero__in { display: grid; grid-template-columns: 1.05fr .95fr; gap: 4rem; align-items: center; }
.hero h1 { margin-bottom: 1.4rem; }
.lede { font-size: 1.09rem; line-height: 1.66; color: var(--ink-2); max-width: 34em; }
.hero__actions { display: flex; gap: .75rem; flex-wrap: wrap; margin: 2rem 0 2.6rem; }

.hero__proof { display: flex; gap: 2.6rem; padding-top: 1.8rem; border-top: 1px solid var(--line); }
.hero__proof div { display: flex; flex-direction: column; }
.hero__proof strong {
  font-family: var(--serif); font-size: 1.85rem; color: var(--ink); line-height: 1;
}
.hero__proof span { font-size: .8rem; color: var(--ink-3); margin-top: .35rem; }

.hero__art { position: relative; aspect-ratio: 1 / 1; }
.hero__img { margin: 0; position: absolute; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero__img img { width: 100%; height: 100%; object-fit: cover; }
.hero__img--a { width: 62%; top: 0; right: 0; aspect-ratio: 1; z-index: 2; }
.hero__img--b { width: 47%; bottom: 6%; left: 0; aspect-ratio: 1; z-index: 3; }
.hero__img--c { width: 40%; bottom: 0; right: 12%; aspect-ratio: 1; z-index: 1; opacity: .92; }

@media (max-width: 900px) {
  .hero__in { grid-template-columns: 1fr; gap: 3rem; }
  .hero__art { max-width: 460px; margin-inline: auto; width: 100%; }
}
@media (max-width: 520px) {
  .hero__proof { gap: 1.6rem; }
  .hero__proof strong { font-size: 1.5rem; }
}

/* ── usp ── */
.usp { background: var(--bg-2); border-block: 1px solid var(--line); padding: clamp(3rem, 6vw, 4.5rem) 0; }
.usp__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.4rem; }
.usp article svg {
  width: 26px; height: 26px; fill: none; stroke: var(--brand);
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 1rem;
}
.usp h3 { font-size: 1.06rem; margin-bottom: .55rem; }
.usp p { font-size: .91rem; line-height: 1.6; color: var(--ink-3); margin: 0; }
@media (max-width: 900px) { .usp__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }
@media (max-width: 540px) { .usp__grid { grid-template-columns: 1fr; gap: 1.8rem; } }

/* ── section headers ── */
.sec__hd { max-width: 640px; margin-bottom: 2.6rem; }
.sec__hd--center { margin-inline: auto; text-align: center; }
.sec__sub { font-size: 1.02rem; color: var(--ink-3); margin: 1rem 0 0; }

/* ── shop ── */
.shop { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.shop__controls {
  display: flex; justify-content: space-between; align-items: center;
  gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.6rem;
  padding-bottom: 1.4rem; border-bottom: 1px solid var(--line);
}
.filters { display: flex; gap: .5rem; flex-wrap: wrap; }
.filters button {
  padding: .52rem 1.05rem; border: 1px solid var(--line-2); background: transparent;
  border-radius: 999px; font: 500 .87rem/1 var(--sans); color: var(--ink-2);
  cursor: pointer; transition: all .16s;
}
.filters button:hover { border-color: var(--ink); color: var(--ink); }
.filters button.on { background: var(--ink); border-color: var(--ink); color: #fff; }

.search { position: relative; display: flex; align-items: center; }
.search svg {
  position: absolute; left: .85rem; width: 16px; height: 16px; fill: none;
  stroke: var(--ink-3); stroke-width: 1.8; stroke-linecap: round; pointer-events: none;
}
.search input {
  width: 270px; max-width: 100%; padding: .62rem .9rem .62rem 2.4rem;
  border: 1px solid var(--line-2); border-radius: 999px; background: #fff;
  font: 400 .9rem var(--sans); color: var(--ink); transition: border-color .16s, box-shadow .16s;
}
.search input:focus { outline: 0; border-color: var(--ink); box-shadow: 0 0 0 3px rgba(28,25,23,.07); }

.shop__count { font-size: .84rem; color: var(--ink-3); margin: 0 0 1.4rem; }
.shop__empty { text-align: center; padding: 3rem 0; color: var(--ink-3); }

.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem 1.4rem; }
@media (max-width: 1020px) { .grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .grid { grid-template-columns: repeat(2, 1fr); gap: 1.4rem 1rem; } }
@media (max-width: 400px)  { .grid { grid-template-columns: 1fr; } }

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; cursor: pointer; display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s; text-align: left;
  padding: 0; font: inherit; color: inherit;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--line-2); }
.card:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

.card__media { position: relative; aspect-ratio: 1; background: var(--bg-2); overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__media img { transform: scale(1.05); }
.card__tag {
  position: absolute; top: .7rem; left: .7rem; background: var(--ink); color: #fff;
  font-size: .66rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
  padding: .28rem .6rem; border-radius: 4px;
}
.card__tag[data-t="Signature"], .card__tag[data-t="Rare"] { background: var(--brand); }
.card__tag[data-t="Gift"] { background: var(--gold); }

.card__body { padding: 1rem 1.05rem 1.15rem; display: flex; flex-direction: column; flex: 1; }
.card__cat { font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 .4rem; }
.card__name { font-family: var(--serif); font-size: 1.02rem; font-weight: 600; color: var(--ink); line-height: 1.25; margin: 0 0 .35rem; }
.card__short { font-size: .84rem; color: var(--ink-3); line-height: 1.45; margin: 0 0 .9rem; flex: 1; }
.card__foot { display: flex; align-items: baseline; justify-content: space-between; gap: .5rem; }
.card__price { font-size: 1.02rem; font-weight: 600; color: var(--ink); }
.card__size { font-size: .78rem; color: var(--ink-3); }

/* ── story ── */
.story { background: var(--bg-2); border-block: 1px solid var(--line); padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.story__in { display: grid; grid-template-columns: .85fr 1.15fr; gap: 3.5rem; align-items: center; }
.story__img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; }
.story__img img { width: 100%; height: 100%; object-fit: cover; }
.story__copy h2 { margin-bottom: 1.3rem; }
.story__list { list-style: none; padding: 0; margin: 1.8rem 0 0; display: grid; gap: .7rem; }
.story__list li { position: relative; padding-left: 1.6rem; font-size: .93rem; color: var(--ink-2); }
.story__list li::before {
  content: ''; position: absolute; left: 0; top: .5em; width: 7px; height: 7px;
  border-radius: 50%; background: var(--brand);
}
@media (max-width: 880px) {
  .story__in { grid-template-columns: 1fr; gap: 2.5rem; }
  .story__img { max-width: 380px; aspect-ratio: 3/2; }
}

/* ── waitlist ── */
.waitlist { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.waitlist__in {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center;
  background: var(--ink); color: #d6d3d1; border-radius: 22px;
  padding: clamp(2.2rem, 5vw, 3.6rem); position: relative; overflow: hidden;
}
.waitlist__in::before {
  content: ''; position: absolute; inset: auto -120px -180px auto; width: 420px; height: 420px;
  border-radius: 50%; background: radial-gradient(circle, rgba(154,44,31,.55), transparent 68%);
  pointer-events: none;
}
.waitlist__copy { position: relative; }
.waitlist__copy h2 { color: #fff; margin-bottom: 1rem; }
.waitlist__copy .eyebrow { color: #e8927f; }
.waitlist__copy p { color: #b8b2ac; margin: 0; }

.wform { position: relative; display: grid; gap: .9rem; }
.wform__row { display: grid; grid-template-columns: 1.5fr 1fr; gap: .9rem; }
.wform label { display: grid; gap: .4rem; }
.wform span { font-size: .8rem; color: #b8b2ac; font-weight: 500; }
.wform span em { font-style: normal; color: #78716c; font-weight: 400; }
.wform input, .wform select {
  width: 100%; padding: .82rem 1rem; border-radius: var(--radius-sm);
  border: 1px solid #44403c; background: #292524; color: #fff;
  font: 400 .95rem var(--sans); transition: border-color .16s, box-shadow .16s;
}
.wform select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%23a8a29e' d='M6 8 0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 10px; padding-right: 2.4rem; }
.wform input::placeholder { color: #78716c; }
.wform input:focus, .wform select:focus { outline: 0; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(154,44,31,.28); }
.wform input:invalid:not(:placeholder-shown) { border-color: #b91c1c; }
.wform .btn--primary { background: #fff; color: var(--ink); margin-top: .3rem; }
.wform .btn--primary:hover { background: var(--brand); color: #fff; }
.wform__err { color: #fca5a5; font-size: .84rem; margin: 0; }
.wform__note { font-size: .78rem; color: #78716c; margin: .2rem 0 0; text-align: center; }

.wform__ok { position: relative; text-align: center; padding: 1rem 0; }
.wform__ok svg {
  width: 46px; height: 46px; fill: none; stroke: #4ade80; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round; margin: 0 auto 1rem;
}
.wform__ok h3 { color: #fff; font-size: 1.5rem; margin-bottom: .6rem; }
.wform__ok p { color: #b8b2ac; margin: 0; }

@media (max-width: 860px) {
  .waitlist__in { grid-template-columns: 1fr; gap: 2.2rem; }
}
@media (max-width: 460px) { .wform__row { grid-template-columns: 1fr; } }

/* ── faq ── */
.faq { background: var(--bg-2); border-top: 1px solid var(--line); padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.faq__list { max-width: 760px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line-2); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.25rem 2.5rem 1.25rem 0;
  font-family: var(--serif); font-size: 1.08rem; font-weight: 600; color: var(--ink);
  position: relative; transition: color .16s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brand); }
.faq summary::after {
  content: '+'; position: absolute; right: .3rem; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; font-weight: 400; color: var(--ink-3); transition: transform .2s;
  font-family: var(--sans); line-height: 1;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 2.5rem 1.4rem 0; margin: 0; color: var(--ink-2); font-size: .96rem; }

/* ── footer ── */
.ftr { background: var(--ink); color: #a8a29e; padding: clamp(3rem, 6vw, 4.2rem) 0 1.6rem; }
.ftr__in { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; }
.ftr__brand p { font-size: .88rem; line-height: 1.6; max-width: 32ch; margin: 1rem 0 0; color: #78716c; }
.ftr__col h4 {
  color: #fff; font-family: var(--sans); font-size: .74rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem;
}
.ftr__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.ftr__col a { font-size: .89rem; transition: color .16s; }
.ftr__col a:hover { color: #fff; }
.ftr__btm {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid #292524;
}
.ftr__btm p { font-size: .78rem; color: #57534e; margin: 0; }
@media (max-width: 860px) { .ftr__in { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .ftr__in { grid-template-columns: 1fr; } }

/* ── modal ── */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 1.5rem; }
.modal[hidden] { display: none; }
.modal__bg { position: absolute; inset: 0; background: rgba(28,25,23,.62); backdrop-filter: blur(3px); animation: fade .2s ease; }
.modal__box {
  position: relative; background: var(--card); border-radius: 18px; width: min(920px, 100%);
  max-height: 88vh; overflow: auto; box-shadow: var(--shadow-lg); animation: pop .24s cubic-bezier(.2,.8,.3,1);
}
@keyframes fade { from { opacity: 0; } }
@keyframes pop { from { opacity: 0; transform: translateY(14px) scale(.985); } }

.modal__x {
  position: absolute; top: .7rem; right: .9rem; z-index: 3; width: 34px; height: 34px;
  border: 0; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--ink);
  font-size: 1.5rem; line-height: 1; cursor: pointer; display: grid; place-items: center;
  transition: background .16s;
}
.modal__x:hover { background: var(--bg-2); }

.modal__grid { display: grid; grid-template-columns: 1fr 1fr; }
.modal__media { background: var(--bg-2); padding: 1.2rem; display: flex; flex-direction: column; gap: .7rem; }
.modal__media > img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius-sm); }
.modal__thumbs { display: flex; gap: .5rem; }
.modal__thumbs img {
  width: 58px; height: 58px; object-fit: cover; border-radius: 7px; cursor: pointer;
  border: 2px solid transparent; transition: border-color .16s; opacity: .75;
}
.modal__thumbs img.on, .modal__thumbs img:hover { border-color: var(--ink); opacity: 1; }

.modal__body { padding: 2.2rem 2rem 2rem; }
.modal__cat { font-size: .7rem; letter-spacing: .11em; text-transform: uppercase; color: var(--brand); margin: 0 0 .5rem; }
.modal__body h3 { font-size: 1.65rem; margin-bottom: .7rem; }
.modal__price { display: flex; align-items: baseline; gap: .6rem; margin-bottom: 1.1rem; }
.modal__price span { font-size: 1.45rem; font-weight: 600; color: var(--ink); font-family: var(--serif); }
.modal__price em { font-style: normal; font-size: .87rem; color: var(--ink-3); }
.modal__desc { font-size: .95rem; line-height: 1.62; margin-bottom: 1.3rem; }

.modal__specs { margin: 0 0 1.5rem; display: grid; gap: .7rem; font-size: .87rem; }
.modal__specs > div { display: grid; grid-template-columns: 96px 1fr; gap: .8rem; padding-top: .7rem; border-top: 1px solid var(--line); }
.modal__specs dt { color: var(--ink-3); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }
.modal__specs dd { margin: 0; color: var(--ink-2); }
.modal__note { font-size: .78rem; color: var(--ink-3); text-align: center; margin: .7rem 0 0; }

@media (max-width: 720px) {
  .modal { padding: 0; align-items: end; }
  .modal__box { max-height: 92vh; border-radius: 18px 18px 0 0; }
  .modal__grid { grid-template-columns: 1fr; }
  .modal__media > img { aspect-ratio: 16/10; }
  .modal__body { padding: 1.6rem 1.4rem 2rem; }
}

/* ── toast ── */
.toast {
  position: fixed; bottom: 1.5rem; left: 50%; transform: translate(-50%, 130%);
  background: var(--ink); color: #fff; padding: .85rem 1.5rem; border-radius: 999px;
  font-size: .9rem; z-index: 200; box-shadow: var(--shadow-lg); transition: transform .3s cubic-bezier(.2,.8,.3,1);
  max-width: calc(100% - 2rem); text-align: center;
}
.toast.show { transform: translate(-50%, 0); }

body.lock { overflow: hidden; }
