:root {
  --paper: #fff8ef;
  --paper-2: #f5eadc;
  --ink: #17120f;
  --muted: #776759;
  --line: rgba(55, 38, 27, .16);
  --gold: #c29450;
  --amber: #b86836;
  --burgundy: #74252b;
  --cream: #fffdf8;
  --shadow: 0 28px 70px rgba(67, 40, 20, .14);
  --radius: 30px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 9%, rgba(194, 148, 80, .2), transparent 28rem),
    linear-gradient(180deg, #fffaf3, #f9eddf 45%, #fff8ef);
  overflow-x: clip;
}

body.menu-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; height: auto; }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  background: var(--ink);
  color: white;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  border-radius: 999px;
}
.skip-link:focus-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 74px;
  padding: 10px clamp(16px, 4vw, 54px);
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255, 250, 243, .88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  letter-spacing: .04em;
}
.brand img { width: 48px; height: 48px; }
.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: #514437;
}
.desktop-nav a { text-decoration: none; }
.desktop-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.desktop-nav a:hover { color: var(--burgundy); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang-switch {
  display: flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.62);
}
.lang-switch button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #3d342d;
  cursor: pointer;
  font-weight: 700;
}
.lang-switch button.active {
  background: var(--ink);
  color: #fff;
}
.mini-cta {
  min-height: 44px;
  padding: 13px 20px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fffaf3;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}
.mobile-menu {
  position: absolute;
  left: 12px;
  right: 12px;
  top: calc(100% + 8px);
  display: grid;
  gap: 8px;
  padding: 14px;
  background: rgba(255, 250, 243, .98);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.mobile-menu.open {
  clip-path: inset(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu a {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  text-decoration: none;
  border-radius: 14px;
  background: #fff;
}

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(400px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(50px, 8vw, 96px) clamp(16px, 5vw, 72px);
  overflow: clip;
}
.hero-copy, .hero-media {
  min-width: 0;
  position: relative;
  z-index: 2;
}
.eyebrow {
  margin: 0 0 20px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #6e5945;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: .92;
  letter-spacing: -.05em;
}
h1 {
  max-width: min(100%, 720px);
  margin-bottom: 24px;
  font-size: clamp(50px, 5.2vw, 94px);
}
h2 {
  max-width: 900px;
  font-size: clamp(38px, 5.6vw, 84px);
}
h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.05;
}
p { color: var(--muted); line-height: 1.55; }
.hero-text {
  max-width: 560px;
  font-size: clamp(18px, 1.6vw, 22px);
  margin-bottom: 34px;
}
.hero-actions, .contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
}
.btn.primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 16px 34px rgba(23, 18, 15, .16);
}
.btn.ghost {
  background: rgba(255,255,255,.55);
  color: var(--ink);
  border-color: var(--line);
}
.btn.ghost.dark { background: transparent; border-color: rgba(255,255,255,.28); color: white; }
.hero-media {
  align-self: stretch;
  min-height: 540px;
  border-radius: min(5vw, 58px);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: var(--cream);
}
.hero-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.seal {
  position: absolute;
  right: 24px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px 10px 10px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  color: #261f1a;
  font-size: 13px;
  font-weight: 800;
}
.seal img { width: 58px; height: 58px; }
.scent-line {
  position: absolute;
  inset: 12% -15% auto -8%;
  height: 58%;
  background:
    radial-gradient(ellipse at 30% 66%, rgba(116, 37, 43, .16), transparent 32%),
    linear-gradient(105deg, transparent 10%, rgba(194,148,80,.24), transparent 68%);
  filter: blur(8px);
  transform: rotate(-6deg);
  animation: drift 12s ease-in-out infinite alternate;
  pointer-events: none;
}

.facts {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px clamp(16px, 4vw, 38px) 76px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.facts article {
  padding: 24px;
  background: rgba(255,255,255,.58);
  border: 1px solid var(--line);
  border-radius: 24px;
}
.facts span, .product-card span, .steps span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #f4e2c4;
  color: #5e3a25;
  font-size: 12px;
  font-weight: 900;
}
.facts strong { display: block; margin-bottom: 8px; font-size: 18px; }
.facts p { margin: 0; }

.scent-showcase {
  max-width: var(--max);
  margin: 0 auto 26px;
  padding: 18px clamp(16px, 4vw, 38px) 58px;
  display: grid;
  grid-template-columns: minmax(250px, .78fr) minmax(0, 1.22fr);
  gap: 18px;
  align-items: stretch;
}
.scent-copy {
  padding: clamp(26px, 4vw, 44px);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 12%, rgba(194, 148, 80, .18), transparent 34%),
    #17120f;
  color: #fff;
  overflow: hidden;
}
.scent-copy .eyebrow { color: #d8b878; }
.scent-copy h2 {
  font-size: clamp(34px, 3.4vw, 58px);
  color: #fff;
}
.scent-copy p {
  max-width: 560px;
  margin-bottom: 0;
  color: rgba(255,255,255,.74);
}
.scent-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.scent-grid article {
  min-height: 310px;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 20px 44px rgba(80, 50, 25, .11);
}
.scent-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scent-grid span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 250, 243, .82);
  color: #221816;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 82px clamp(16px, 4vw, 38px);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.product-rail {
  display: grid;
  grid-template-columns: 1.25fr .9fr .9fr;
  grid-auto-rows: minmax(330px, auto);
  gap: 16px;
}
.product-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 20px 50px rgba(80, 50, 25, .10);
}
.product-card.large { grid-row: span 2; }
.product-card img, .bottle-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card::after {
  content: "";
  position: absolute;
  inset: 36% 0 0;
  background: linear-gradient(180deg, transparent, rgba(20, 16, 13, .82));
}
.product-card > div:not(.bottle-art) {
  position: relative;
  z-index: 2;
  color: white;
}
.product-card p { color: rgba(255,255,255,.82); margin: 0; }
.product-card span { background: rgba(255,255,255,.24); color: #fff; }
.burgundy {
  background:
    radial-gradient(circle at 74% 22%, rgba(255,232,177,.22), transparent 28%),
    linear-gradient(145deg, #40191c, #8c2c32);
}
.bottle-art::before {
  content: "";
  position: absolute;
  width: 38%;
  height: 60%;
  left: 34%;
  top: 18%;
  border-radius: 30px 30px 48px 48px;
  background: linear-gradient(160deg, #f5d48b, #76242a 54%, #2b1616);
  box-shadow: 0 24px 60px rgba(0,0,0,.26);
}
.bottle-art::after {
  content: "TBOÉ";
  position: absolute;
  left: 41%;
  top: 47%;
  color: #fff8e6;
  font-family: Georgia, serif;
  font-size: 34px;
}

.how {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 34px;
  align-items: start;
}
.how-copy {
  position: sticky;
  top: 108px;
  padding: 34px;
  border-radius: var(--radius);
  background: #17120f;
  color: #fff;
  overflow: hidden;
}
.how-copy::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(194,148,80,.36);
  border-radius: 50%;
  right: -96px;
  bottom: -96px;
}
.how-copy p { color: rgba(255,255,255,.72); }
.how-copy .eyebrow { color: #d8b878; }
.how-copy h2 { font-size: clamp(38px, 4.6vw, 66px); }
.steps {
  display: grid;
  gap: 14px;
}
.steps article {
  padding: 30px;
  border-radius: 26px;
  background: rgba(255,255,255,.64);
  border: 1px solid var(--line);
}
.steps p { margin-bottom: 0; }

.mood {
  position: relative;
  text-align: center;
}
.mood h2 { margin-inline: auto; }
.mood-grid {
  max-width: 900px;
  margin: 34px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.mood-grid span {
  padding: 16px 22px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: #5b493b;
  font-weight: 900;
}

.questions {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 30px;
}
.questions .section-head {
  display: block;
  margin: 0;
}
.faq-list {
  display: grid;
  gap: 12px;
}
details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,.68);
  overflow: hidden;
}
summary {
  min-height: 58px;
  padding: 18px 52px 18px 20px;
  cursor: pointer;
  font-weight: 900;
  position: relative;
}
summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 18px;
  font-size: 24px;
}
details[open] summary::after { content: "−"; }
details p { padding: 0 20px 20px; margin: 0; }

.contacts {
  max-width: none;
  margin-top: 40px;
  padding-inline: clamp(16px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  gap: 18px;
  align-items: stretch;
}
.contact-card {
  padding: clamp(28px, 4vw, 50px);
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
}
.contact-card .eyebrow { color: #d5b479; }
.contact-card p { color: rgba(255,255,255,.72); }
.contact-card h2 { color: white; }
.address-block {
  margin-top: 26px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
}
.address-block span {
  display: block;
  margin-bottom: 9px;
  color: #d5b479;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
}
.address-block strong {
  display: block;
  margin-bottom: 14px;
  font-size: 22px;
}
.address-block a { color: #fff; font-weight: 900; }
.address-block a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.map-wrap {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
}
.map-fallback {
  position: absolute;
  left: 16px;
  bottom: 16px;
  min-height: 44px;
  padding: 12px 16px;
  border-radius: 999px;
  background: white;
  box-shadow: 0 12px 28px rgba(0,0,0,.14);
  text-decoration: none;
  font-weight: 900;
}

footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px clamp(16px, 4vw, 38px) 86px;
  color: #5f5146;
}
.footer-brand { margin-bottom: 16px; }

.float-action {
  position: fixed;
  z-index: 70;
  bottom: max(18px, env(safe-area-inset-bottom));
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 0;
  text-decoration: none;
  font-weight: 1000;
  cursor: pointer;
  box-shadow: 0 18px 36px rgba(31, 21, 15, .18);
}
.whatsapp { left: max(18px, env(safe-area-inset-left)); background: #1fa463; color: #fff; }
.to-top {
  right: max(18px, env(safe-area-inset-right));
  background: #fff;
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: .25s ease;
}
.to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }

@keyframes drift {
  from { transform: translateX(-2%) rotate(-6deg); opacity: .72; }
  to { transform: translateX(4%) rotate(-3deg); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

@media (max-width: 1024px) {
  .site-header { padding-inline: 18px; }
  .desktop-nav, .mini-cta { display: none; }
  .menu-toggle { display: block; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 64px;
  }
  .hero-media { min-height: 460px; order: -1; }
  .facts { grid-template-columns: 1fr; padding-bottom: 46px; }
  .scent-showcase { grid-template-columns: 1fr; }
  .scent-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-rail { grid-template-columns: 1fr 1fr; }
  .how, .questions, .contacts { grid-template-columns: 1fr; }
  .how-copy { position: relative; top: auto; }
}

@media (max-width: 700px) {
  .site-header { min-height: 66px; padding: 8px 12px; }
  .brand img { width: 44px; height: 44px; }
  .brand span { font-size: 19px; }
  .lang-switch button { width: 44px; height: 44px; }
  .menu-toggle { width: 44px; height: 44px; }
  .hero {
    padding: 24px 14px 84px;
    gap: 16px;
  }
  .hero-media {
    min-height: 250px;
    border-radius: 30px;
  }
  .hero-media > img { object-position: 58% 46%; }
  .seal {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: center;
    font-size: 12px;
  }
  .seal img { width: 46px; height: 46px; }
  h1 {
    font-size: clamp(38px, 10.1vw, 54px);
    letter-spacing: -.055em;
  }
  h2 { font-size: clamp(36px, 12vw, 54px); }
  .hero-text {
    margin-bottom: 24px;
    font-size: 16px;
  }
  .hero-actions, .contact-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions { padding-left: 64px; }
  .btn { width: 100%; }
  .facts { padding-inline: 14px; }
  .scent-showcase {
    padding: 0 14px 48px;
    margin-bottom: 0;
  }
  .scent-copy { padding: 24px; border-radius: 24px; }
  .scent-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .scent-grid article {
    min-height: 230px;
  }
  .section { padding: 58px 14px; }
  .section-head { display: block; }
  .product-rail {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .product-card {
    min-height: 360px;
  }
  .product-card.large { grid-row: auto; }
  .how-copy, .steps article, .contact-card { padding: 24px; border-radius: 24px; }
  .mood { text-align: left; }
  .mood-grid { justify-content: flex-start; }
  .questions { gap: 22px; }
  .contacts { padding-inline: 14px; }
  .map-wrap, .map-wrap iframe { min-height: 360px; }
  footer { padding-bottom: 92px; }
  .float-action { width: 50px; height: 50px; }
}

@media (max-width: 380px) {
  .brand span { display: none; }
  h1 { font-size: clamp(35px, 10vw, 40px); }
  h2 { font-size: clamp(32px, 11vw, 46px); }
  .hero-media { min-height: 228px; }
  .scent-grid { grid-template-columns: 1fr; }
  .product-card { flex-basis: 88%; min-height: 372px; }
  .eyebrow { font-size: 11px; }
}
