:root {
  --ink: #201c1d;
  --muted: #75696c;
  --paper: #fffaf8;
  --white: #ffffff;
  --petal: #f7cbd6;
  --rose: #ef789b;
  --rose-deep: #b91f61;
  --olive: #8a9462;
  --aqua: #18b9c2;
  --cream: #f7efe9;
  --line: rgba(32, 28, 29, 0.13);
  --shadow: 0 22px 60px rgba(84, 36, 50, 0.15);
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: clamp(18px, 4vw, 48px);
  padding: 16px clamp(18px, 4vw, 58px);
  color: var(--ink);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 250, 248, 0.92);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 36px rgba(84, 36, 50, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  width: min(190px, 42vw);
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 4vw, 42px);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.site-nav a {
  opacity: 0.78;
  transition: color 160ms ease, opacity 160ms ease;
}

.site-nav a:hover {
  color: var(--rose-deep);
  opacity: 1;
}

.header-order {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: #128c4a;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span[aria-hidden="true"],
.nav-toggle span[aria-hidden="true"]::before,
.nav-toggle span[aria-hidden="true"]::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  content: "";
  transition: transform 160ms ease, background 160ms ease;
}

.nav-toggle span[aria-hidden="true"]::before {
  transform: translateY(-6px);
}

.nav-toggle span[aria-hidden="true"]::after {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] span[aria-hidden="true"] {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] span[aria-hidden="true"]::before {
  transform: translateY(1px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span[aria-hidden="true"]::after {
  transform: translateY(-1px) rotate(-45deg);
}

.hero {
  min-height: 96vh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: 58% center;
}

.hero-wash {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 250, 248, 0.98) 0%, rgba(255, 250, 248, 0.88) 31%, rgba(255, 250, 248, 0.36) 64%, rgba(255, 250, 248, 0.08) 100%),
    linear-gradient(0deg, rgba(239, 120, 155, 0.24), rgba(255, 250, 248, 0));
}

.hero-content {
  width: min(670px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 104px);
  padding-top: var(--header-height);
}

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

.hero h1 {
  margin: 0;
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.5rem, 14vw, 11rem);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: 0;
}

.hero-logo img {
  width: min(680px, 100%);
  height: auto;
}

.hero-copy {
  max-width: 460px;
  margin: 28px 0 0;
  color: #423638;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.72);
  color: var(--rose-deep);
}

.button.whatsapp {
  background: #128c4a;
  border-color: #128c4a;
  color: var(--white);
}

.whatsapp-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
}

.whatsapp-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.quick-notes,
.section,
.ritual,
.about,
.contact,
.site-footer {
  width: min(1180px, calc(100% - 36px));
  margin-inline: auto;
}

.quick-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  background: var(--line);
  border: 1px solid var(--line);
}

.quick-notes article {
  min-height: 210px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
}

.quick-notes span,
.routine-steps span {
  display: block;
  margin-bottom: 26px;
  color: var(--olive);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-notes h2,
.product-card h3,
.routine-steps h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.quick-notes p,
.section-heading p,
.product-card p,
.routine-steps p,
.about-copy p,
.contact p,
.site-footer span:last-child,
.modal-copy p,
.modal-copy li {
  color: var(--muted);
}

.quick-notes p,
.product-card p,
.routine-steps p,
.about-copy p,
.contact p {
  margin: 0;
}

.section {
  padding: clamp(70px, 9vw, 120px) 0;
}

.section-heading {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 28px;
  text-align: center;
}

.section-heading h2,
.ritual h2,
.about-copy h2,
.contact h2,
.modal-copy h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
}

.section-heading h2,
.ritual h2,
.about-copy h2,
.contact h2 {
  font-size: clamp(2.3rem, 5.8vw, 5rem);
}

.section-heading h2 {
  white-space: nowrap;
}

.section-heading p {
  max-width: 520px;
  margin: 0;
  font-size: 1rem;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.filter-button {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.filter-button.is-active {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  color: var(--white);
}

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

.product-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(84, 36, 50, 0.08);
}

.product-media {
  aspect-ratio: 4 / 4.7;
  display: grid;
  place-items: center;
  padding: 26px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 203, 214, 0.28)),
    var(--cream);
}

.product-card[data-accent="olive"] .product-media {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(138, 148, 98, 0.22)),
    var(--cream);
}

.product-card[data-accent="aqua"] .product-media {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(24, 185, 194, 0.18)),
    var(--cream);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 22px rgba(58, 34, 42, 0.1));
}

.product-info {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--rose-deep);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-price {
  white-space: nowrap;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  align-self: end;
}

.product-actions .button {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  font-size: 0.72rem;
}

.details-button {
  background: var(--white);
  color: var(--ink);
}

.ritual {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding: clamp(46px, 7vw, 82px);
  background: #eef3e3;
  border: 1px solid rgba(32, 28, 29, 0.1);
}

.routine-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(32, 28, 29, 0.12);
  border: 1px solid rgba(32, 28, 29, 0.12);
}

.routine-steps article {
  min-height: 220px;
  padding: 24px;
  background: #fbfff2;
}

.about {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(280px, 0.8fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  padding: clamp(70px, 10vw, 124px) 0;
}

.about-art {
  min-height: 430px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #b886a9;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-art img {
  width: 86%;
  max-height: 84%;
  object-fit: contain;
}

.about-copy p {
  margin-top: 20px;
  font-size: 1rem;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(34px, 6vw, 62px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(247, 203, 214, 0.5), rgba(255, 255, 255, 0.86)),
    var(--white);
}

.contact h2 {
  margin-bottom: 10px;
}

.floating-whatsapp {
  position: fixed;
  right: clamp(14px, 2vw, 24px);
  bottom: clamp(14px, 2vw, 24px);
  z-index: 18;
}

.floating-whatsapp a {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #128c4a;
  color: var(--white);
  box-shadow: 0 16px 34px rgba(18, 140, 74, 0.25);
}

.floating-whatsapp svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.product-modal {
  width: min(980px, calc(100% - 28px));
  max-height: calc(100vh - 36px);
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(32, 28, 29, 0.24);
  overflow: auto;
}

.product-modal::backdrop {
  background: rgba(32, 28, 29, 0.48);
  backdrop-filter: blur(8px);
}

.modal-body {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(300px, 1fr);
  min-height: 590px;
}

.modal-image-wrap {
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 48px);
  background: linear-gradient(180deg, rgba(247, 203, 214, 0.32), rgba(255, 250, 248, 0.94));
}

.modal-image-wrap img {
  width: 100%;
  height: min(520px, 70vh);
  object-fit: contain;
  filter: drop-shadow(0 20px 28px rgba(58, 34, 42, 0.12));
}

.modal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 5vw, 54px);
}

.modal-kicker {
  margin: 0 0 12px;
  color: var(--rose-deep);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.modal-copy h2 {
  font-size: clamp(2.1rem, 5vw, 4rem);
}

.modal-price {
  margin: 16px 0 18px;
  color: var(--ink);
  font-weight: 900;
}

.modal-copy ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 24px 0 28px;
  list-style: none;
}

.modal-copy li {
  position: relative;
  padding-left: 18px;
}

.modal-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rose);
}

.modal-close {
  position: sticky;
  top: 12px;
  left: calc(100% - 56px);
  z-index: 2;
  width: 44px;
  height: 44px;
  margin: 12px 12px -56px auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  cursor: pointer;
}

.modal-close span,
.modal-close span::after {
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
  display: block;
}

.modal-close span {
  transform: rotate(45deg);
}

.modal-close span::after {
  transform: rotate(90deg);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 38px;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer span:first-child {
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

@media (max-width: 940px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    padding: 13px 18px;
  }

  .brand {
    width: 146px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .header-order {
    min-height: 42px;
    padding: 0 12px;
    font-size: 0.68rem;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    left: 18px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 8px;
    background: rgba(255, 250, 248, 0.97);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 160ms ease, opacity 160ms ease;
    backdrop-filter: blur(18px);
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px 10px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 88vh;
    align-items: end;
  }

  .hero-image {
    object-position: 72% center;
  }

  .hero-wash {
    background:
      linear-gradient(0deg, rgba(255, 250, 248, 0.98) 0%, rgba(255, 250, 248, 0.72) 42%, rgba(255, 250, 248, 0.2) 100%),
      linear-gradient(90deg, rgba(247, 203, 214, 0.36), rgba(255, 250, 248, 0.08));
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding: 112px 0 44px;
  }

  .hero h1 {
    font-size: clamp(4.2rem, 22vw, 7.2rem);
  }

  .quick-notes,
  .section,
  .ritual,
  .about,
  .contact,
  .site-footer {
    width: min(100% - 28px, 720px);
  }

  .quick-notes,
  .section-heading,
  .ritual,
  .about,
  .modal-body {
    grid-template-columns: 1fr;
  }

  .quick-notes article,
  .routine-steps article {
    min-height: auto;
  }

  .section {
    padding: 68px 0;
  }

  .product-grid,
  .routine-steps {
    grid-template-columns: 1fr;
  }

  .ritual {
    padding: 34px 24px;
  }

  .about {
    padding: 68px 0;
  }

  .about-art {
    min-height: 330px;
  }

  .contact,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .modal-body {
    min-height: auto;
  }

  .modal-image-wrap img {
    height: min(420px, 54vh);
  }
}

@media (max-width: 560px) {
  .header-order {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 132px;
  }

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

  .hero-actions,
  .product-actions,
  .contact .button {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .section-heading h2,
  .ritual h2,
  .about-copy h2,
  .contact h2 {
    font-size: clamp(2.15rem, 13vw, 3.2rem);
  }

  .section-heading h2 {
    white-space: normal;
  }

  .product-info {
    padding: 18px;
  }

  .product-media {
    aspect-ratio: 1 / 1.12;
    padding: 20px;
  }

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

  .floating-whatsapp a {
    width: 52px;
    height: 52px;
  }

  .product-modal {
    width: min(100% - 16px, 520px);
    max-height: calc(100vh - 16px);
  }

  .modal-copy {
    padding: 24px;
  }
}
