:root {
  color-scheme: light;
  --ink: #1b2430;
  --muted: #667085;
  --paper: #f7f3ed;
  --surface: #fffdfa;
  --line: #e4d8cb;
  --rose: #b85b68;
  --rose-dark: #8e3f4d;
  --amber: #d89a45;
  --sage: #59796b;
  --shadow: 0 24px 70px rgba(27, 36, 48, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(rgba(228, 216, 203, 0.34) 1px, transparent 1px),
    linear-gradient(90deg, rgba(228, 216, 203, 0.34) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 70px);
  background: rgba(247, 243, 237, 0.9);
  border-bottom: 1px solid rgba(228, 216, 203, 0.9);
  backdrop-filter: blur(14px);
}

.brand,
.nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--rose);
  border-radius: 8px;
  font-size: 15px;
  letter-spacing: 0;
}

.nav {
  gap: 22px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.nav a:hover {
  color: var(--rose-dark);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(32px, 6vw, 86px);
  min-height: calc(100vh - 75px);
  padding: clamp(44px, 7vw, 88px) clamp(20px, 5vw, 70px);
}

.hero-copy {
  max-width: 740px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.hero-text {
  max-width: 650px;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
}

.button.primary {
  color: #fff;
  background: var(--rose);
  box-shadow: 0 14px 28px rgba(184, 91, 104, 0.25);
}

.button.primary:hover {
  background: var(--rose-dark);
}

.button.secondary {
  color: var(--rose-dark);
  background: var(--surface);
  border-color: var(--line);
}

.perfume-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: 30px;
  background:
    radial-gradient(circle at 22% 18%, rgba(216, 154, 69, 0.24), transparent 27%),
    radial-gradient(circle at 78% 24%, rgba(184, 91, 104, 0.2), transparent 26%),
    linear-gradient(135deg, #fffdfa, #eadccc);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.scent-ring {
  position: absolute;
  border: 1px solid rgba(184, 91, 104, 0.22);
  border-radius: 50%;
}

.scent-ring.one {
  width: 250px;
  height: 250px;
  top: 42px;
  right: 36px;
}

.scent-ring.two {
  width: 190px;
  height: 190px;
  right: 124px;
  bottom: 58px;
}

.bottle {
  position: absolute;
  bottom: 58px;
  left: 50%;
  width: 170px;
  height: 270px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent 38%),
    linear-gradient(160deg, rgba(184, 91, 104, 0.75), rgba(89, 121, 107, 0.86));
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px 22px 34px 34px;
  box-shadow: 0 28px 60px rgba(27, 36, 48, 0.18);
  transform: translateX(-50%);
}

.bottle::before {
  content: "";
  position: absolute;
  top: -76px;
  left: 50%;
  width: 86px;
  height: 78px;
  background: linear-gradient(#c99b7c, #8e6c58);
  border-radius: 16px 16px 8px 8px;
  transform: translateX(-50%);
}

.bottle::after {
  content: "EAU";
  position: absolute;
  top: 92px;
  left: 50%;
  display: grid;
  width: 98px;
  height: 72px;
  place-items: center;
  color: rgba(27, 36, 48, 0.76);
  background: rgba(255, 253, 250, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  font-size: 22px;
  font-weight: 900;
  transform: translateX(-50%);
}

.sample-card {
  position: absolute;
  right: 26px;
  bottom: 28px;
  display: grid;
  gap: 8px;
  width: min(220px, calc(100% - 52px));
  padding: 16px;
  background: rgba(255, 253, 250, 0.88);
  border: 1px solid rgba(228, 216, 203, 0.9);
  border-radius: 8px;
  box-shadow: 0 18px 38px rgba(27, 36, 48, 0.12);
}

.sample-card span {
  color: var(--ink);
  font-weight: 800;
}

.section {
  padding: clamp(52px, 7vw, 92px) clamp(20px, 5vw, 70px);
}

.intro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
}

.intro > div {
  padding: clamp(24px, 4vw, 38px);
  background: var(--surface);
  border: 1px solid var(--line);
}

.stat {
  display: block;
  margin-bottom: 12px;
  color: var(--rose);
  font-size: 36px;
  font-weight: 900;
}

.split,
.method,
.local-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.topic-grid,
.province-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.topic-card,
.province-card,
.step {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.topic-card p,
.province-card p,
.step p {
  margin-bottom: 0;
}

.province-card {
  display: block;
}

.province-card:hover {
  border-color: rgba(184, 91, 104, 0.55);
  box-shadow: 0 16px 34px rgba(27, 36, 48, 0.1);
}

.steps {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step span {
  display: block;
  margin-bottom: 10px;
  color: var(--amber);
  font-weight: 900;
}

.faq {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 70px);
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: clamp(22px, 5vw, 70px);
  padding: clamp(30px, 5vw, 56px);
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
}

.contact h2,
.contact p {
  max-width: 780px;
}

.contact p {
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 0;
}

.site-footer {
  padding: clamp(34px, 5vw, 58px) clamp(20px, 5vw, 70px);
  background: #151a22;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.footer-brand {
  color: #fff;
  margin-bottom: 14px;
}

.site-footer p {
  max-width: 540px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.footer-links a {
  display: block;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 15px;
  font-weight: 800;
}

.footer-links a:hover {
  color: #fff;
  background: rgba(184, 91, 104, 0.55);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  color: #fff;
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(18, 140, 126, 0.34);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  background: #1fb85a;
  box-shadow: 0 18px 38px rgba(18, 140, 126, 0.42);
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@media (max-width: 860px) {
  .site-header,
  .hero,
  .split,
  .method,
  .local-grid,
  .faq,
  .intro,
  .contact,
  .footer-inner {
    display: block;
  }

  .site-header {
    position: static;
  }

  .nav {
    margin-top: 16px;
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
  }

  .perfume-visual {
    min-height: 430px;
    margin-top: 42px;
  }

  .topic-grid,
  .province-grid {
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .steps,
  .faq-list {
    margin-top: 26px;
  }

  .faq-heading {
    position: static;
  }

  .contact .button {
    width: 100%;
    margin-top: 24px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 26px;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 16px;
  }

  .brand {
    align-items: flex-start;
  }

  .nav {
    gap: 14px;
  }

  .hero,
  .section {
    padding-right: 16px;
    padding-left: 16px;
  }

  h1 {
    font-size: 40px;
  }

  .hero-text,
  p {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .perfume-visual {
    min-height: 360px;
    padding: 18px;
  }

  .bottle {
    width: 136px;
    height: 220px;
  }

  .sample-card {
    left: 18px;
    right: 18px;
    width: auto;
  }

  .contact {
    margin: 16px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}
