:root {
  --white: #ffffff;
  --soft: #f7f7f5;
  --blush: #e7bdb7;
  --espresso: #3f2f26;
  --ink: #0b0a0a;
  --muted: rgba(11, 10, 10, 0.62);
  --line: rgba(11, 10, 10, 0.12);
  --shadow: 0 22px 64px rgba(11, 10, 10, 0.12);
  --serif: "Libre Baskerville", Georgia, serif;
  --script: "Brittany", "Great Vibes", cursive;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: 240ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  border-bottom-color: var(--line);
  box-shadow: 0 12px 34px rgba(11, 10, 10, 0.06);
}

.brand-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(1rem, 2vw, 1.62rem);
  font-weight: 500;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-mark em {
  margin-inline: -2px;
  color: var(--ink);
  font-family: var(--script);
  font-size: 1.45em;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: lowercase;
  transform: rotate(-5deg);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 34px);
  color: rgba(11, 10, 10, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding-block: 8px;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transition: 220ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-link,
.menu-toggle {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 13px 20px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  transition: 220ms ease;
}

.btn svg,
.icon-link svg,
.menu-toggle svg,
.floating-whatsapp svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.8;
}

.instagram-glyph {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--espresso);
  border-color: var(--espresso);
  transform: translateY(-2px);
}

.btn-light {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.btn-light:hover {
  border-color: var(--blush);
  transform: translateY(-2px);
}

.btn-compact {
  min-height: 42px;
  padding: 12px 16px;
}

.hero-section {
  position: relative;
  min-height: 92svh;
  overflow: hidden;
  background: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--white);
}

.hero-media::before {
  display: none;
  content: "";
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.84) 38%, rgba(255, 255, 255, 0.36) 72%, rgba(255, 255, 255, 0.06) 100%),
    linear-gradient(0deg, rgba(11, 10, 10, 0.12), rgba(255, 255, 255, 0.02) 45%);
  content: "";
}

.hero-media img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 24%;
  filter: saturate(0.96) contrast(1.02);
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 92svh;
  max-width: 720px;
  flex-direction: column;
  justify-content: center;
  padding: 128px clamp(22px, 7vw, 96px) 92px;
}

.eyebrow {
  margin: 0 0 18px;
  color: rgba(11, 10, 10, 0.48);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.hero-content h1,
.shop-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.9rem, 8vw, 9.4rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.hero-content .hero-title {
  max-width: 760px;
  font-family: var(--sans);
  font-size: clamp(3.45rem, 6.8vw, 7.4rem);
  font-weight: 500;
  letter-spacing: 0.055em;
  line-height: 0.88;
}

.hero-title span {
  display: inline-block;
}

.hero-title span:last-child {
  display: block;
}

.hero-title em {
  display: inline-block;
  margin-inline: 0.05em;
  color: var(--ink);
  font-family: var(--script);
  font-size: 0.54em;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
  transform: rotate(-5deg) translateY(-0.08em);
}

.hero-content p:not(.eyebrow),
.shop-hero p,
.section-copy p,
.feature-copy p,
.recommendation-copy p,
.booking-card p,
.selection-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.17rem);
  line-height: 1.8;
}

.hero-content > p:not(.eyebrow) {
  max-width: 540px;
  margin: 24px 0 0;
}

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

.hero-card {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: clamp(20px, 5vw, 62px);
  z-index: 3;
  width: min(360px, calc(100% - 40px));
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(11, 10, 10, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.hero-card span,
.service-card span,
.product-card span,
.contact-details span,
.feature-panel > p {
  color: rgba(11, 10, 10, 0.46);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.5;
}

.service-ribbon {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.service-ribbon div {
  display: flex;
  width: max-content;
  animation: ribbon 32s linear infinite;
}

.service-ribbon span {
  padding: 16px 28px;
  font-family: var(--serif);
  font-size: clamp(0.92rem, 1.6vw, 1.3rem);
  font-style: italic;
  white-space: nowrap;
}

@keyframes ribbon {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding: clamp(72px, 9vw, 132px) clamp(20px, 5vw, 78px);
}

.two-column,
.split-feature,
.booking-section,
.recommendations-preview,
.selection-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}

.section-white {
  background: var(--white);
}

.section-heading {
  max-width: 900px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading h2,
.section-copy h2,
.feature-copy h2,
.recommendation-copy h2,
.booking-card h2,
.selection-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.4vw, 5rem);
  line-height: 1.08;
}

.image-stack {
  position: relative;
  min-height: 620px;
}

.image-stack-main {
  width: min(82%, 680px);
  height: 580px;
  object-fit: cover;
  object-position: 60% center;
  box-shadow: var(--shadow);
}

.image-stack-float {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(48%, 360px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 12px solid var(--white);
  box-shadow: var(--shadow);
}

.section-copy {
  max-width: 620px;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 32px;
}

.stats-row div {
  padding: 20px;
  border: 1px solid var(--line);
  background: var(--white);
}

.stats-row strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.4rem;
}

.stats-row span {
  color: var(--muted);
  font-size: 0.82rem;
}

.service-grid {
  display: grid;
  max-width: 1360px;
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-grid.four-up {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  display: grid;
  grid-template-rows: 360px 1fr;
  min-height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(11, 10, 10, 0.1);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card div {
  padding: 26px;
}

.service-card h3,
.product-card h3,
.selection-copy h2 {
  margin: 10px 0 12px;
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.25;
}

.service-card p,
.product-card p {
  color: var(--muted);
  line-height: 1.7;
}

.service-card a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card a svg,
.text-link svg {
  width: 16px;
}

.split-feature {
  background: var(--ink);
  color: var(--white);
}

.split-feature .eyebrow,
.split-feature p,
.split-feature .check-list {
  color: rgba(255, 255, 255, 0.72);
}

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

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}

.check-list svg {
  width: 18px;
  min-width: 18px;
  margin-top: 3px;
  color: var(--blush);
}

.feature-panel {
  padding: clamp(28px, 5vw, 56px);
  background: var(--white);
  color: var(--ink);
}

.menu-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
}

.menu-line strong {
  font-family: var(--serif);
  text-align: right;
  white-space: nowrap;
}

.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr 0.92fr 1.08fr;
  gap: 16px;
  align-items: stretch;
}

.gallery-grid img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.gallery-grid img:nth-child(even) {
  margin-top: 54px;
}

.recommendations-preview {
  background: var(--soft);
}

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

.product-mini-grid article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
}

.product-mini-grid svg {
  width: 28px;
  height: 28px;
  color: var(--ink);
}

.product-mini-grid strong,
.product-mini-grid span {
  display: block;
}

.product-mini-grid strong {
  margin: 42px 0 8px;
  font-family: var(--serif);
  font-size: 1.2rem;
}

.product-mini-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.booking-section {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.booking-card {
  max-width: 760px;
}

.booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-details {
  display: grid;
  gap: 14px;
}

.contact-details div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 4px 18px;
  padding: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.contact-details svg {
  grid-row: span 2;
  width: 26px;
  height: 26px;
}

.contact-details strong {
  font-family: var(--serif);
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(11, 10, 10, 0.28);
  transition: 220ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
}

.site-footer {
  display: grid;
  gap: 24px;
  justify-items: center;
  padding: 54px 24px;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.footer-brand {
  color: var(--white);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.85rem;
}

.shop-hero {
  display: grid;
  min-height: 100svh;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 132px clamp(20px, 5vw, 78px) 72px;
  background: var(--white);
}

.shop-hero h1 {
  font-size: clamp(3rem, 6vw, 7rem);
}

.shop-hero-media img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.affiliate-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 560px;
  margin-top: 28px;
  padding: 16px;
  background: var(--soft);
  border: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.6;
}

.affiliate-note svg {
  min-width: 18px;
  margin-top: 3px;
}

.routine-finder {
  background: var(--soft);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 180ms ease;
}

.filter-btn svg {
  width: 16px;
}

.filter-btn.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

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

.product-card {
  display: grid;
  min-height: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  background: var(--white);
}

.product-card:not(.is-hidden) {
  opacity: 1;
  transform: none;
}

.product-card.is-hidden {
  display: none;
}

.product-image {
  display: grid;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 22px;
  place-items: center;
  overflow: hidden;
  background: var(--soft);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-icon {
  background: var(--ink);
  color: var(--white);
}

.blush-icon {
  background: var(--blush);
  color: var(--ink);
}

.product-image svg {
  width: 52px;
  height: 52px;
  stroke-width: 1.3;
}

.product-card .btn {
  width: 100%;
  margin-top: 18px;
}

.selection-note {
  background: var(--white);
}

.selection-copy {
  max-width: 760px;
}

.selection-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .service-grid.four-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .site-nav {
    position: fixed;
    inset: 76px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 10px;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .icon-link {
    display: none;
  }

  .hero-section,
  .hero-content {
    min-height: 92svh;
  }

  .hero-media {
    inset: 0;
    display: block;
  }

  .hero-media::after {
    display: block;
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.82) 64%, rgba(255, 255, 255, 0.36) 100%),
      linear-gradient(0deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.08) 52%);
  }

  .hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% center;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-card {
    right: 24px;
    bottom: 24px;
  }

  .two-column,
  .split-feature,
  .booking-section,
  .recommendations-preview,
  .selection-note,
  .shop-hero {
    grid-template-columns: 1fr;
  }

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

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

  .product-mini-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand-mark {
    gap: 5px;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
  }

  .btn-compact span {
    display: none;
  }

  .hero-content {
    min-height: 90svh;
    padding: 118px 18px 108px;
  }

  .hero-media img {
    object-position: 64% center;
  }

  .hero-content h1,
  .shop-hero h1 {
    font-size: clamp(2.8rem, 15vw, 5.1rem);
  }

  .hero-content .hero-title {
    font-size: clamp(2.7rem, 14vw, 4.6rem);
  }

  .shop-hero h1 {
    font-size: clamp(2.35rem, 10.5vw, 4rem);
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .booking-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-card {
    display: none;
  }

  .section,
  .shop-hero {
    padding-inline: 18px;
  }

  .section-heading {
    text-align: left;
  }

  .image-stack {
    min-height: 460px;
  }

  .image-stack-main {
    width: 88%;
    height: 430px;
  }

  .image-stack-float {
    width: 54%;
    border-width: 8px;
  }

  .stats-row,
  .service-grid,
  .service-grid.four-up,
  .product-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img,
  .gallery-grid img:nth-child(even),
  .selection-image img {
    height: 380px;
    margin-top: 0;
  }

  .contact-details div {
    grid-template-columns: 30px 1fr;
  }

  .filter-bar {
    justify-content: flex-start;
  }
}
