:root {
  --bg: #fff8ee;
  --bg-strong: #f8ebd4;
  --surface: rgba(255, 251, 245, 0.82);
  --surface-strong: #fff8ee;
  --text: #2f2015;
  --muted: #6f5544;
  --line: rgba(74, 44, 24, 0.12);
  --shadow: 0 28px 68px rgba(80, 39, 11, 0.14);
  --shadow-soft: 0 12px 28px rgba(85, 43, 8, 0.08);
  --honey: #e0a72a;
  --honey-deep: #c67b12;
  --berry: #8a3d45;
  --pistachio: #8ba15f;
  --night: #2f2435;
  --display: "Noto Serif Georgian", "Book Antiqua", "Palatino Linotype", Georgia, serif;
  --body: "Noto Sans Georgian", "Trebuchet MS", "Gill Sans", "Segoe UI", sans-serif;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 999px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(243, 196, 93, 0.22), transparent 24%),
    radial-gradient(circle at 85% 18%, rgba(138, 61, 69, 0.1), transparent 20%),
    linear-gradient(180deg, #fffaf2 0%, #fff4de 44%, #fff9ef 100%);
  font-family: var(--body);
  line-height: 1.6;
}

body.popup-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 24px 18px, rgba(224, 167, 42, 0.11) 0 12px, transparent 12px),
    radial-gradient(circle at 70px 60px, rgba(139, 161, 95, 0.08) 0 13px, transparent 13px);
  background-size: 96px 84px;
  opacity: 0.26;
  pointer-events: none;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 72%);
}

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

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

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

:focus-visible {
  outline: 3px solid rgba(138, 61, 69, 0.35);
  outline-offset: 4px;
}

.ambient {
  position: fixed;
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.42;
  pointer-events: none;
  z-index: -1;
}

.ambient-left {
  top: -8rem;
  left: -8rem;
  background: rgba(224, 167, 42, 0.42);
}

.ambient-right {
  top: 18rem;
  right: -12rem;
  background: rgba(138, 61, 69, 0.18);
}

.sale-popup[hidden] {
  display: none;
}

.sale-popup {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 1.4rem;
  background: rgba(34, 20, 12, 0.48);
  backdrop-filter: blur(12px);
}

.sale-popup-card {
  position: relative;
  width: min(35rem, 100%);
  padding: 1.55rem;
  border: 1px solid rgba(74, 44, 24, 0.12);
  border-radius: calc(var(--radius-xl) + 2px);
  background:
    radial-gradient(circle at top right, rgba(224, 167, 42, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.98), rgba(255, 238, 205, 0.98));
  box-shadow: 0 36px 80px rgba(55, 28, 8, 0.26);
  animation: popup-appear 220ms ease-out;
}

.sale-popup-card h2 {
  margin: 0;
  max-width: 26rem;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 0.95;
}

.sale-popup-eyebrow {
  margin-bottom: 0.75rem;
}

.sale-popup-lead {
  margin: 1rem 0 0;
  color: var(--text);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.4;
}

.sale-popup-copy {
  margin: 0.9rem 0 0;
  max-width: 29rem;
}

.sale-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.sale-popup-dismiss {
  cursor: pointer;
  font: inherit;
}

.sale-popup-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid rgba(74, 44, 24, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font: inherit;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.sale-popup-close:hover {
  transform: scale(1.04);
  background: rgba(255, 255, 255, 0.94);
}

.site-header,
.section,
.site-footer {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 248, 238, 0.84);
  border: 1px solid rgba(74, 44, 24, 0.08);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--honey) 0%, var(--berry) 100%);
  color: #fff9ef;
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong,
.hero h1,
.section-heading h2,
.contact-card h2,
.english-card h2 {
  font-family: var(--display);
}

.brand-copy strong {
  font-size: 1.08rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav,
.header-actions,
.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem;
  border: 1px solid rgba(74, 44, 24, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.language-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.55rem;
  padding: 0.48rem 0.72rem;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.language-chip:hover {
  color: var(--berry);
  background: rgba(255, 255, 255, 0.74);
}

.language-chip.is-active {
  background: linear-gradient(135deg, rgba(224, 167, 42, 0.22), rgba(138, 61, 69, 0.18));
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(74, 44, 24, 0.08);
}

.site-nav a:hover,
.product-card a:hover,
.link-pill:hover {
  color: var(--berry);
}

.button,
.link-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.button {
  background: linear-gradient(135deg, var(--honey) 0%, var(--honey-deep) 100%);
  color: #fffaf0;
  box-shadow: 0 14px 30px rgba(198, 123, 18, 0.24);
}

.button:hover,
.link-pill:hover {
  transform: translateY(-2px);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.68);
  color: var(--text);
  border: 1px solid rgba(74, 44, 24, 0.12);
  box-shadow: none;
}

.button-small {
  padding: 0.75rem 1rem;
}

.link-pill {
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(74, 44, 24, 0.1);
  color: var(--text);
}

body[data-language="ka"] .eyebrow {
  letter-spacing: 0.08em;
}

body[data-language="ka"] .brand-copy small {
  font-size: 0.78rem;
}

.section {
  padding: 5.5rem 0 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: 2.2rem;
  min-height: calc(100vh - 8rem);
  padding-top: 4rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: var(--berry);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 1.4rem;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.3rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.hero-lead,
.section-heading p,
.panel p,
.faq-item p,
.site-footer p,
.check-list {
  color: var(--muted);
}

.hero-lead {
  max-width: 42rem;
  margin: 1.4rem 0 0;
  font-size: 1.1rem;
}

.hero-stats,
.contact-list,
.check-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-stats li,
.panel {
  background: var(--surface);
  border: 1px solid rgba(74, 44, 24, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.hero-stats li {
  padding: 1.2rem;
}

.hero-stats strong {
  display: block;
  margin-bottom: 0.45rem;
  font-family: var(--display);
  font-size: 1.3rem;
}

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 13rem;
  gap: 1rem;
  align-items: end;
}

.hero-badge {
  position: absolute;
  top: -0.6rem;
  right: 0;
  z-index: 2;
  padding: 0.85rem 1rem;
  max-width: 12rem;
  border-radius: 1.2rem 1.2rem 0.4rem 1.2rem;
  background: var(--berry);
  color: #fff7ef;
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: 0 18px 30px rgba(143, 63, 70, 0.2);
}

.image-card {
  display: grid;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #f2e4cc;
  border: 1px solid rgba(74, 44, 24, 0.08);
  box-shadow: var(--shadow);
}

.image-card img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  min-height: 100%;
  align-self: stretch;
  object-fit: cover;
}

.image-card video {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  min-height: 100%;
  align-self: stretch;
  object-fit: cover;
  background: #d8c2a3;
}

.hero-main-photo {
  min-height: 38rem;
}

.hero-side-stack {
  display: grid;
  gap: 1rem;
  align-self: stretch;
}

.image-card-tall {
  min-height: 23rem;
}

.image-card-wide {
  min-height: 14rem;
}

.media-chip {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.8rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 249, 239, 0.86);
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.media-chip-bottom {
  top: auto;
  bottom: 1rem;
}

.media-chip-soft {
  background: rgba(246, 234, 205, 0.88);
}

.split-section,
.faq-contact {
  display: grid;
  gap: 2rem;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.98;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.4rem;
}

.panel {
  padding: 1.35rem;
}

.panel-text {
  background: linear-gradient(180deg, rgba(255, 249, 236, 0.96), rgba(255, 245, 222, 0.92));
}

.feature-grid,
.catalog-grid,
.review-grid,
.steps {
  display: grid;
  gap: 1rem;
}

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

.feature-card h3,
.product-card h3,
.step-card h3,
.review-card h3,
.faq-item summary,
.contact-card h2,
.story-copy h3 {
  margin-top: 0;
}

.accent-honey { background: linear-gradient(180deg, rgba(255, 247, 223, 0.96), rgba(246, 220, 163, 0.96)); }
.accent-pistachio { background: linear-gradient(180deg, rgba(241, 247, 229, 0.96), rgba(220, 234, 189, 0.96)); }
.accent-berry { background: linear-gradient(180deg, rgba(250, 238, 239, 0.96), rgba(237, 210, 213, 0.96)); }
.accent-night { background: linear-gradient(180deg, rgba(238, 234, 245, 0.96), rgba(222, 214, 236, 0.96)); }

.photo-story .story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 1rem;
  grid-template-areas:
    "lead clean"
    "lead copy";
}

.story-lead {
  grid-area: lead;
  min-height: 34rem;
}

.story-clean {
  grid-area: clean;
  min-height: 16.5rem;
}

.story-copy {
  grid-area: copy;
  background: linear-gradient(180deg, rgba(255, 248, 229, 0.98), rgba(255, 236, 190, 0.98));
}

.video-reel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
  margin-top: 1rem;
  align-items: stretch;
}

.reel-copy {
  background: linear-gradient(180deg, rgba(255, 249, 236, 0.96), rgba(255, 240, 214, 0.94));
}

.reel-copy h3 {
  margin-top: 0;
}

.video-card {
  min-height: 22rem;
}

.check-list {
  display: grid;
  gap: 0.7rem;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--honey) 0%, var(--berry) 100%);
}

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

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-height: 19rem;
}

.product-card a {
  margin-top: auto;
  color: var(--berry);
  font-weight: 700;
}

.featured {
  background: linear-gradient(180deg, rgba(255, 248, 229, 0.98), rgba(255, 236, 190, 0.98));
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.product-topline strong {
  font-family: var(--display);
  font-size: 1.2rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
}

.tag-honey { background: rgba(224, 167, 42, 0.16); color: #8b5500; }
.tag-sand { background: rgba(247, 237, 217, 0.95); color: #6f5541; }
.tag-cream { background: rgba(252, 247, 236, 0.95); color: #6f5541; }
.tag-pistachio { background: rgba(139, 161, 95, 0.18); color: #476025; }
.tag-carrot { background: rgba(222, 130, 50, 0.18); color: #914d00; }
.tag-milk { background: rgba(228, 214, 190, 0.45); color: #74593f; }

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

.step-card {
  position: relative;
  overflow: hidden;
}

.step-card::after {
  content: "";
  position: absolute;
  inset: auto -1.5rem -1.8rem auto;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: rgba(224, 167, 42, 0.08);
}

.step-number {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--berry);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

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

.review-card {
  min-height: 12.5rem;
}

.faq-contact {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--berry);
}

.faq-item[open] summary::after {
  content: "−";
}

.contact-card {
  position: sticky;
  top: 6rem;
  background: linear-gradient(180deg, rgba(254, 250, 240, 0.98), rgba(255, 241, 212, 0.98));
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.contact-list li {
  display: grid;
  gap: 0.2rem;
}

.contact-list span {
  color: var(--muted);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-list strong {
  font-size: 1.02rem;
}

.english-card {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.7rem;
  background: linear-gradient(135deg, rgba(47, 36, 53, 0.98), rgba(111, 54, 52, 0.96));
  color: #fff7ef;
}

.english-card p {
  color: rgba(255, 247, 239, 0.82);
}

.site-footer {
  display: grid;
  gap: 0.35rem;
  padding: 3rem 0 4rem;
}

@keyframes popup-appear {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1080px) {
  .site-header {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    padding: 1rem 1.1rem;
  }

  .site-nav,
  .header-actions {
    justify-content: center;
    width: 100%;
  }

  .language-switcher {
    order: -1;
  }

  .site-nav a,
  .link-pill,
  .button-small {
    white-space: nowrap;
  }

  .hero,
  .about-grid,
  .faq-contact,
  .photo-story .story-grid,
  .video-reel {
    grid-template-columns: 1fr;
  }

  .photo-story .story-grid {
    grid-template-areas:
      "lead"
      "clean"
      "copy";
  }

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

  .hero-visual {
    grid-template-columns: 1fr;
  }

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

  .contact-card {
    position: static;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    padding-top: 2.5rem;
  }

  .sale-popup-card {
    padding: 1.25rem;
  }

  .sale-popup-actions {
    flex-direction: column;
  }

  .sale-popup-actions .button,
  .sale-popup-actions .link-pill {
    width: 100%;
  }

  .language-switcher {
    width: 100%;
    justify-content: center;
  }

  .language-chip {
    flex: 1 1 0;
    min-width: 0;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero-stats,
  .catalog-grid,
  .steps,
  .review-grid,
  .feature-grid,
  .hero-side-stack {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 4.2rem;
  }

  .hero-main-photo,
  .story-lead {
    min-height: 26rem;
  }

  .image-card-tall,
  .story-clean {
    min-height: 18rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
