:root {
  --ink: #211f1c;
  --muted: #766b62;
  --paper: #f7f0e7;
  --surface: #fffaf4;
  --soft: #eaded2;
  --line: rgba(33, 31, 28, 0.14);
  --rose: #8c5360;
  --rose-dark: #63323e;
  --olive: #74785c;
  --charcoal: #292723;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(33, 31, 28, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
section { scroll-margin-top: 88px; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--surface);
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  padding-top: 12px;
  padding-bottom: 12px;
  color: var(--ink);
  background: rgba(247, 240, 231, 0.94);
  box-shadow: 0 12px 42px rgba(33, 31, 28, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 1px;
  line-height: 0.9;
  text-transform: uppercase;
}

.brand span {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
}

.brand small {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 34px);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.28s ease;
  content: "";
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.25s ease;
}

.site-header.menu-open .menu-toggle span:first-child { transform: translateY(3px) rotate(42deg); }
.site-header.menu-open .menu-toggle span:last-child { transform: translateY(-3px) rotate(-42deg); }

.mobile-nav {
  position: fixed;
  inset: 68px 14px auto;
  display: none;
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 250, 244, 0.98);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.mobile-nav a {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
}

.mobile-nav .mobile-cta {
  margin-top: 12px;
  padding: 14px 16px;
  border: 0;
  color: var(--surface);
  background: var(--charcoal);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.btn:hover,
.btn:focus-visible { transform: translateY(-2px); }

.btn-small {
  min-height: 40px;
  padding: 0 18px;
  font-size: 12px;
}

.btn-dark {
  color: var(--surface);
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.site-header:not(.is-scrolled):not(.menu-open) .btn-dark {
  color: var(--charcoal);
  background: var(--surface);
  border-color: var(--surface);
}

.btn-outline {
  color: var(--ink);
  background: transparent;
  border-color: rgba(33, 31, 28, 0.35);
}

.hero .btn-outline {
  color: var(--surface);
  border-color: rgba(255, 250, 244, 0.58);
}

.btn-light {
  color: var(--charcoal);
  background: var(--surface);
  border-color: var(--surface);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  min-height: 94vh;
  padding: clamp(112px, 13vw, 156px) clamp(18px, 5vw, 72px) 64px;
  color: var(--surface);
  background: var(--charcoal);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0 44% 0 0;
  background:
    linear-gradient(90deg, rgba(41, 39, 35, 0.96), rgba(41, 39, 35, 0.74)),
    url("https://images.unsplash.com/photo-1483985988355-763728e1935b?auto=format&fit=crop&w=1000&q=82") center / cover;
  content: "";
}

.hero::after {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 28px;
  left: clamp(18px, 5vw, 72px);
  height: 1px;
  background: rgba(255, 250, 244, 0.22);
  content: "";
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-copy {
  align-self: center;
  max-width: 660px;
  padding-right: clamp(0px, 5vw, 56px);
}

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

.hero .eyebrow,
.final-cta .eyebrow { color: #ead9ca; }

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

h1, h2 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: 84px;
}

h2 {
  margin-bottom: 18px;
  font-size: 58px;
}

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

.hero-text {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(255, 250, 244, 0.84);
  font-size: 20px;
  line-height: 1.58;
}

.hero-buttons,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-badges span {
  padding: 8px 11px;
  color: rgba(255, 250, 244, 0.9);
  background: rgba(255, 250, 244, 0.11);
  border: 1px solid rgba(255, 250, 244, 0.18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.hero-visual {
  align-self: end;
  height: min(72vh, 760px);
  min-height: 520px;
  border: 1px solid rgba(255, 250, 244, 0.22);
  overflow: hidden;
}

.hero-visual img { filter: saturate(0.9); }

.season-tag,
.collection-note {
  position: absolute;
  z-index: 2;
  color: var(--ink);
  background: rgba(255, 250, 244, 0.9);
  backdrop-filter: blur(14px);
}

.season-tag {
  top: 24px;
  left: 24px;
  max-width: 270px;
  padding: 18px;
}

.season-tag span,
.collection-note span {
  display: block;
  margin-bottom: 7px;
  color: var(--rose);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.season-tag strong {
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1;
}

.collection-note {
  right: 24px;
  bottom: 24px;
  width: 220px;
  padding: 16px;
}

.collection-note small {
  display: block;
  color: var(--muted);
  line-height: 1.45;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px clamp(18px, 5vw, 72px);
  background: var(--line);
}

.trust-item {
  min-height: 126px;
  padding: 24px;
  background: var(--surface);
}

.trust-item span {
  display: block;
  margin-bottom: 10px;
  color: var(--rose);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-item strong {
  display: block;
  max-width: 260px;
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
}

.section-pad {
  padding: clamp(70px, 9vw, 124px) clamp(18px, 5vw, 72px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(240px, 0.58fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 36px;
}

.section-heading p:last-child {
  color: var(--muted);
  line-height: 1.75;
}

.catalog-section,
.commerce-info,
.location-section {
  background: var(--surface);
}

.catalog-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 330px);
  gap: 20px;
  align-items: end;
  margin-bottom: 30px;
}

.category-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.filter-btn {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.filter-btn:hover,
.filter-btn.is-active {
  color: var(--surface);
  background: var(--rose-dark);
  border-color: var(--rose-dark);
}

.search-box {
  display: grid;
  gap: 8px;
}

.search-box span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.search-box input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: #fffdf8;
  outline: none;
}

.search-box input:focus { border-color: var(--rose); }

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

.product-card {
  position: relative;
  min-height: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  opacity: 0;
  transform: translateY(16px);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

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

.product-card:hover {
  border-color: rgba(140, 83, 96, 0.32);
  box-shadow: 0 18px 44px rgba(33, 31, 28, 0.11);
  transform: translateY(-4px);
}

.product-card.is-featured { grid-column: span 2; }

.product-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--soft);
}

.product-card.is-featured .product-media { aspect-ratio: 5 / 4; }
.product-media img { transition: transform 0.7s ease; }
.product-card:hover .product-media img { transform: scale(1.045); }

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  color: var(--surface);
  background: var(--rose-dark);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-info { padding: 18px; }

.product-category {
  margin-bottom: 8px;
  color: var(--olive);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-info h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.product-info p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.product-meta {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.product-meta span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.product-meta small {
  color: var(--muted);
  font-size: 12px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
}

.price {
  font-weight: 900;
  white-space: nowrap;
}

.consult-link {
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.empty-state {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-top: 26px;
  padding: 28px;
  border: 1px solid var(--line);
  text-align: center;
}

.feature-piece,
.routine-section,
.testimonials-section {
  background: #efe7dc;
}

.feature-piece {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(24px, 6vw, 78px);
  align-items: center;
}

.feature-image {
  min-height: 620px;
  border: 1px solid rgba(33, 31, 28, 0.16);
  overflow: hidden;
}

.feature-copy {
  max-width: 520px;
}

.feature-copy p:not(.eyebrow):not(.feature-price) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.feature-price {
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 900;
}

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

.routine-card {
  background: var(--surface);
  border: 1px solid var(--line);
}

.routine-card img {
  aspect-ratio: 4 / 5;
}

.routine-card div {
  padding: 22px;
}

.routine-card span {
  color: var(--rose);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.routine-card h3 {
  margin-top: 10px;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

.routine-card p {
  color: var(--muted);
  line-height: 1.65;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(26px, 7vw, 92px);
  background: var(--charcoal);
  color: var(--surface);
}

.about-copy p:last-child {
  color: rgba(255, 250, 244, 0.72);
  font-size: 18px;
  line-height: 1.85;
}

.about-list {
  display: grid;
  gap: 1px;
  align-self: center;
  background: rgba(255, 250, 244, 0.16);
}

.about-list div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 24px 0;
  background: var(--charcoal);
}

.about-list span {
  color: #ead9ca;
  font-family: var(--serif);
  font-size: 32px;
}

.about-list p {
  margin: 0;
  color: rgba(255, 250, 244, 0.76);
  line-height: 1.7;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.info-card {
  min-height: 170px;
  padding: 24px;
  background: #fffdf8;
}

.info-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--olive);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.info-card p {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.05;
}

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

.testimonial-card,
.step-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.testimonial-card {
  display: flex;
  min-height: 246px;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card p {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 27px;
  line-height: 1.14;
}

.testimonial-card span {
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.steps-section { background: var(--paper); }

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  color: var(--surface);
  background: var(--olive);
  border-radius: 999px;
  font-weight: 900;
}

.step-card h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
}

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

.location-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: stretch;
}

.location-panel { align-self: center; }

.location-panel address {
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: 48px;
  font-style: normal;
  line-height: 1;
}

.location-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.location-panel a:not(.btn) {
  color: var(--rose-dark);
  font-weight: 800;
}

.location-image {
  min-height: 520px;
  overflow: hidden;
}

.final-cta {
  padding: clamp(76px, 10vw, 132px) 20px;
  color: var(--surface);
  background:
    linear-gradient(rgba(41, 39, 35, 0.78), rgba(41, 39, 35, 0.78)),
    url("https://images.unsplash.com/photo-1469334031218-e382a71b716b?auto=format&fit=crop&w=1600&q=85") center / cover;
  text-align: center;
}

.final-cta div {
  max-width: 800px;
  margin: 0 auto;
}

.final-cta h2 { margin-bottom: 28px; }

.float-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--surface);
  background: #256f4d;
  box-shadow: 0 16px 44px rgba(37, 111, 77, 0.32);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 36px clamp(18px, 5vw, 72px);
  color: rgba(255, 250, 244, 0.74);
  background: #191815;
  font-size: 14px;
}

.site-footer strong {
  display: block;
  margin-bottom: 8px;
  color: var(--surface);
  font-family: var(--serif);
  font-size: 28px;
}

.site-footer p { margin-bottom: 6px; }

.site-footer a {
  border-bottom: 1px solid rgba(255, 250, 244, 0.34);
  transition: color 0.22s ease, border-color 0.22s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--surface);
  border-color: var(--surface);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
}

@media (max-width: 1080px) {
  .desktop-nav { display: none; }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle { display: inline-block; }
  .site-header.menu-open .mobile-nav { display: block; }

  .hero,
  .feature-piece,
  .about-section,
  .location-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 118px;
  }

  .hero::before { inset: 0; }
  .hero-copy { padding-right: 0; }

  h1 { font-size: 64px; }
  h2 { font-size: 50px; }

  .hero-visual {
    height: 58vh;
    min-height: 420px;
  }

  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trust-strip, .info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .routine-grid, .testimonial-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .header-actions .btn { display: none; }
  .brand span { font-size: 26px; }

  .section-heading,
  .catalog-tools,
  .steps-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .product-card.is-featured { grid-column: span 2; }
  .feature-image, .location-image { min-height: 430px; }
  .info-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .site-header {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero {
    min-height: auto;
    padding: 98px 14px 34px;
  }

  h1 {
    font-size: 42px;
    line-height: 1;
  }

  h2 { font-size: 38px; }
  .hero-text { font-size: 17px; }

  .hero-buttons,
  .location-actions {
    display: grid;
  }

  .hero-buttons .btn,
  .location-actions .btn,
  .final-cta .btn,
  .feature-copy .btn {
    width: 100%;
  }

  .hero-visual {
    height: 40vh;
    min-height: 300px;
  }

  .season-tag {
    top: 12px;
    left: 12px;
    max-width: 218px;
    padding: 14px;
  }

  .season-tag strong { font-size: 22px; }

  .collection-note {
    right: 12px;
    bottom: 12px;
    width: 178px;
  }

  .section-pad {
    padding-right: 14px;
    padding-left: 14px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-right: 14px;
    padding-left: 14px;
  }

  .trust-item {
    min-height: 132px;
    padding: 18px;
  }

  .trust-item strong { font-size: 22px; }

  .product-grid { grid-template-columns: 1fr; }
  .product-card.is-featured { grid-column: auto; }

  .product-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-image, .location-image { min-height: 360px; }
  .about-list div { grid-template-columns: 42px 1fr; }
  .info-grid, .testimonial-grid { grid-template-columns: 1fr; }

  .info-card {
    min-height: auto;
    padding: 22px;
  }

  .info-card p,
  .testimonial-card p {
    font-size: 25px;
  }

  .testimonial-card {
    min-height: 220px;
    padding: 24px;
  }

  .float-whatsapp {
    right: 14px;
    bottom: 14px;
    left: 14px;
    border-radius: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal,
  .product-card {
    opacity: 1;
    transform: none;
  }
}
