:root {
  --bg: #e8ddd3;
  --paper: #f8f1ea;
  --paper-deep: #efe4d7;
  --ink: #5a3927;
  --muted: #8e6d5b;
  --line: rgba(96, 68, 51, 0.15);
  --pink: #d6b39d;
  --pink-soft: #efe1d5;
  --pink-strong: #8a5a3c;
  --footer: #4b3023;
  --shadow: 0 18px 45px rgba(92, 67, 49, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

#home,
#story,
#bestsellers,
#features,
#footer {
  scroll-margin-top: 110px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.75), transparent 34%),
    linear-gradient(180deg, #ede2d7 0%, #dfd0c2 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.28), transparent 18%),
    radial-gradient(circle at 80% 24%, rgba(255, 255, 255, 0.24), transparent 22%);
  pointer-events: none;
}

.fabric-backdrop {
  position: fixed;
  inset: 0;
  opacity: 0.38;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.9), transparent 25%),
    linear-gradient(110deg, transparent 0 16%, rgba(255, 255, 255, 0.6) 16% 25%, transparent 25% 44%, rgba(255, 255, 255, 0.52) 44% 55%, transparent 55% 100%);
  filter: blur(12px);
  pointer-events: none;
}

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

a {
  color: inherit;
}

.site-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  background: var(--paper);
  border: none;
  box-shadow: var(--shadow);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 14px 18px 12px;
  border-bottom: none;
  background: rgba(255, 250, 244, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 20px rgba(92, 67, 49, 0.08);
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.95rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: lowercase;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
}

.brand-logo {
  width: 150px;
  height: auto;
  max-height: 72px;
  display: block;
  object-fit: contain;
}

.nav,
.topbar-tools,
.footer-links {
  display: flex;
  align-items: center;
}

.nav {
  justify-content: center;
  gap: 22px;
}

.nav a,
.topbar-tools,
.footer-links a,
.footer-links h3 {
  font-size: 0.63rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
}

.topbar-tools {
  gap: 10px;
  color: var(--muted);
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  background: #8a5a3c;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 10px 18px rgba(138, 90, 60, 0.18);
}

main {
  padding: 0 14px 0;
}

.hero,
.intro,
.bestsellers,
.quote,
.features,
.promo,
.story,
.gallery,
.values,
.lifestyle,
.testimonials {
  min-height: 92vh;
}

.hero,
.intro,
.promo {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
}

.intro {
  grid-template-columns: minmax(220px, 0.94fr) minmax(260px, 1.06fr);
}

.promo {
  grid-template-columns: minmax(240px, 0.98fr) minmax(220px, 1.02fr);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 160% at 76% 46%, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.22) 18%, rgba(255, 255, 255, 0) 38%),
    radial-gradient(90% 120% at 84% 76%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 42%),
    linear-gradient(90deg, #f8f1ea 0%, #f2e5d8 20%, #ead7c8 44%, #dfc3b0 72%, #d2ae95 100%);
}

.hero-copy,
.intro-copy,
.promo-copy {
  padding: 28px 20px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: clamp(20px, 3vw, 40px) clamp(14px, 2.8vw, 34px);
}

.hero h1,
.intro h2,
.section-title,
.quote h2,
.promo h2,
.value-block h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: clamp(1.15rem, 5.8vw, 3.6rem);
  line-height: 0.88;
  max-width: none;
  white-space: nowrap;
  margin-bottom: 22px;
}

.hero-media,
.intro-media,
.promo img,
.lifestyle {
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(58% 78% at 73% 52%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.24) 34%, rgba(255, 255, 255, 0) 62%),
    radial-gradient(42% 52% at 77% 66%, rgba(246, 184, 205, 0.4) 0%, rgba(246, 184, 205, 0) 68%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 42px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.15) 62%, transparent 74%),
    radial-gradient(circle at 50% 50%, rgba(233, 202, 184, 0.55), rgba(225, 193, 176, 0.18) 68%, transparent 71%);
  opacity: 0.95;
  pointer-events: none;
}

.hero-media img,
.intro-media img,
.promo img,
.lifestyle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.primary-button,
.secondary-button,
.product-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  padding: 0 14px;
  border: 1px solid transparent;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}

.primary-button,
.product-card a {
  background: var(--pink-strong);
  color: #fff;
  border-radius: 10cap;
  max-width: fit-content;
}

.secondary-button {
  border-color: rgba(90, 60, 44, 0.28);
  color: var(--ink);
}

.primary-button:hover,
.secondary-button:hover,
.product-card a:hover,
.view-all-products-button:hover,
.whatsapp-button:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.intro,
.bestsellers,
.quote,
.features,
.promo,
.story,
.gallery,
.values,
.lifestyle,
.testimonials {
  margin-top: 14px;
}

.hero {
  margin-top: 0;
}

.hero-media {
  position: relative;
  min-height: 92vh;
}

.hero-media::before {
  content: "";
  position: absolute;
  right: 76px;
  bottom: 26px;
  width: 178px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(130, 90, 75, 0.24) 0%, rgba(130, 90, 75, 0.08) 48%, transparent 76%);
  filter: blur(5px);
  z-index: 1;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 57% 76%, rgba(247, 112, 150, 0.13) 0%, rgba(247, 112, 150, 0) 16%),
    radial-gradient(circle at 63% 82%, rgba(216, 45, 103, 0.2) 0%, rgba(216, 45, 103, 0) 10%),
    radial-gradient(circle at 49% 81%, rgba(247, 112, 150, 0.1) 0%, rgba(247, 112, 150, 0) 9%),
    linear-gradient(90deg, rgba(248, 191, 210, 0) 0%, rgba(248, 191, 210, 0.08) 28%, rgba(248, 191, 210, 0.18) 56%, rgba(248, 191, 210, 0.24) 100%);
  pointer-events: none;
  z-index: 3;
}

.hero-media img {
  position: relative;
  z-index: 2;
  width: clamp(128%, 42vw, 162%);
  height: 100%;
  object-fit: contain;
  object-position: center 72%;
  transform: translateX(clamp(-18%, -10vw, -8%)) scale(1.05);
  mix-blend-mode: multiply;
}

.intro-media {
  padding: 18px;
  /*background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)),
    var(--pink-soft);*/
  min-height: 92vh;
}

.intro-copy {
  padding: 24px 28px 24px 12px;
}

.intro-media img {
  width: 112%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateX(-6%) scale(1.02);
}

.eyebrow {
  margin: 0 0 10px;
  color: #9a6a4a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: lowercase;
}

.intro h2,
.quote h2,
.promo h2,
.value-block h2 {
  font-size: clamp(2.15rem, 8vw, 3.1rem);
  line-height: 0.92;
}

.intro p,
.story p,
.value-block p,
.section-subtitle,
.footer-brand p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 1.1rem;
  font-family: ui-sans-serif;
  line-height: 1.8;
}

/*.intro p {
  font-family: 'Courier New', Courier, monospace;
}*/

.section-title {
  font-size: clamp(2rem, 3vw, 2.7rem);
  text-align: center;
  text-transform: lowercase;
  line-height: 0.95;
}

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

.bestsellers {
  text-align: center;
  padding: 14px 8px 6px;
}

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

.product-card {
  padding: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(252, 241, 245, 0.96));
  box-shadow: 0 12px 24px rgba(124, 87, 71, 0.08);
}

.product-card img {
  aspect-ratio: 0.88;
  min-height: clamp(140px, 25vw, 420px);
  object-fit: cover;
  background: var(--pink-soft);
}

.product-card h3 {
  margin: 10px 0 8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.28rem;
  font-weight: 600;
}

.product-caption {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.view-all-products-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 420px);
  min-height: 52px;
  margin-top: 22px;
  padding: 0 20px;
  background: var(--pink-strong);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(241, 92, 151, 0.2);
}

.quote {
  padding: 34px 24px 26px;
  text-align: center;
}

.quote h2 {
  max-width: 780px;
  margin-inline: auto;
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  line-height: 1.02;
}

.features {
  padding: 14px 10px 4px;
}

.section-subtitle {
  text-align: center;
  max-width: 560px;
  margin: 10px auto 0;
  font-size: 0.96rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
  margin-top: 24px;
}

.feature-item {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(254, 240, 245, 0.65));
}

.feature-icon,
.value-icon {
  display: grid;
  place-items: center;
}

.feature-icon svg,
.value-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: rgba(101, 70, 54, 0.8);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-icon-image {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.feature-item h3,
.footer-links h3 {
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: lowercase;
}

.feature-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.promo {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(115% 150% at 74% 44%, rgba(255, 255, 255, 0.66) 0%, rgba(255, 255, 255, 0.2) 18%, rgba(255, 255, 255, 0) 38%),
    radial-gradient(82% 118% at 86% 76%, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 40%),
    linear-gradient(90deg, #f8f1ea 0%, #f0e0d2 26%, #e5cfbd 54%, #d8b79f 100%);
}

.promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(56% 76% at 73% 54%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.24) 34%, rgba(255, 255, 255, 0) 62%),
    radial-gradient(40% 50% at 79% 68%, rgba(246, 184, 205, 0.35) 0%, rgba(246, 184, 205, 0) 68%);
  pointer-events: none;
}

.promo::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 40px;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.14) 62%, transparent 74%),
    radial-gradient(circle at 50% 50%, rgba(233, 202, 184, 0.42), rgba(225, 193, 176, 0.14) 68%, transparent 71%);
  opacity: 0.9;
  pointer-events: none;
}

.promo-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  padding: 24px 28px;
}

.promo-secondary {
  margin-bottom: 0;
}

.promo > img {
  position: relative;
  z-index: 2;
  width: clamp(108%, 30vw, 126%);
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateX(clamp(-10%, -4vw, -6%)) scale(1.03);
  mix-blend-mode: multiply;
}

.story {
  padding: 24px 18px 10px;
  max-width: 920px;
  margin-inline: auto;
}

.story-highlight {
  color: #d78aa7;
  font-size: 1.02rem;
  font-style: italic;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.gallery img {
  width: 100%;
  aspect-ratio: clamp(0.72, 0.92, 0.92);
  min-height: clamp(150px, 24vw, 420px);
  object-fit: cover;
  background: var(--pink-soft);
}

.values {
  padding: 20px 6px 8px;
}

.value-block {
  text-align: center;
  padding: 10px 16px 20px;
}

.value-block p {
  max-width: 560px;
  margin: 10px auto 0;
}

.value-block h2 {
  margin-top: 8px;
}

.value-icon {
  margin-bottom: 4px;
}

.lifestyle img {
  width: 100%;
  min-height: 92vh;
  object-fit: cover;
}

.story + .gallery,
.gallery + .values,
.values + .testimonials,
.lifestyle + .promo-secondary {
  margin-top: 0;
}

.testimonials {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 18px;
  background:
    radial-gradient(circle at top right, rgba(214, 179, 157, 0.35), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 234, 225, 0.92));
}

.testimonials-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 22px;
}

.testimonials-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 4px 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonials-grid::-webkit-scrollbar {
  display: none;
}

.testimonial-nav {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(124, 87, 71, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.testimonial-nav:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 14px 28px rgba(124, 87, 71, 0.14);
}

.testimonial-card {
  flex: 0 0 min(320px, 78vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 28px rgba(124, 87, 71, 0.08);
  text-align: center;
  scroll-snap-align: start;
  transition: transform 220ms ease, box-shadow 220ms ease, opacity 220ms ease;
  opacity: 0.7;
}

.testimonial-card.is-active,
.testimonial-card:hover,
.testimonial-card:focus-within {
  transform: scale(1.04);
  box-shadow: 0 18px 36px rgba(124, 87, 71, 0.14);
  opacity: 1;
}

.testimonial-image {
  width: 72px;
  height: 72px;
  margin-bottom: 14px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 18px rgba(124, 87, 71, 0.12);
}

.testimonial-quote {
  margin: 0 0 14px;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.42rem;
  line-height: 1.18;
}

.testimonial-author {
  margin: 0;
  color: #9a6a4a;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-page-main {
  padding: 22px 14px 30px;
}

.gallery-page-hero {
  text-align: center;
  padding: 14px 0 26px;
}

.gallery-page-copy {
  max-width: 680px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.gallery-page-hero .secondary-button {
  margin-top: 18px;
}

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

.all-product-card {
  padding: 10px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(252, 241, 245, 0.96));
  box-shadow: 0 12px 24px rgba(124, 87, 71, 0.08);
}

.all-product-card img {
  width: 100%;
  aspect-ratio: 0.88;
  object-fit: cover;
  background: var(--pink-soft);
}

.all-product-card h2 {
  margin: 10px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.24rem;
  font-weight: 600;
  text-align: center;
}

.footer {
  display: grid;
  grid-template-columns: 1.15fr 1.85fr;
  gap: 18px;
  padding: 18px;
  background: var(--footer);
  color: rgba(255, 248, 241, 0.9);
  margin-top: 0;
}

.footer-logo {
  color: #fff3e8;
}

.footer-brand-logo {
  width: 164px;
  max-height: 78px;
}

.footer-brand p {
  margin-top: 8px;
  max-width: 190px;
  color: rgba(255, 244, 234, 0.72);
  font-size: clamp(0.68rem, 1vw, 0.88rem);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.footer-links {
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.footer-links > div {
  min-width: 0;
}

.footer-links a {
  display: block;
  margin-top: 8px;
  color: rgba(255, 244, 234, 0.72);
  letter-spacing: 0.08em;
  text-transform: none;
  font-size: clamp(0.62rem, 0.92vw, 0.82rem);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.footer-disclaimer {
  grid-column: 1 / -1;
  margin: 6px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 244, 234, 0.12);
  color: rgba(255, 244, 234, 0.72);
  font-size: clamp(0.66rem, 0.95vw, 0.82rem);
  line-height: 1.4;
  text-align: center;
}

.footer-disclaimer a {
  color: #fff;
  text-decoration: none;
}

.scroll-top-button {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: none;
  background: var(--pink-strong);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 14px 28px rgba(138, 90, 60, 0.28);
  border-radius: 50%;
  z-index: 60;
  font-size: 1.35rem;
}

.scroll-top-button.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(138, 90, 60, 0.34);
}

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

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

@media (max-width: 760px) {
  .hero,
  .intro,
  .bestsellers,
  .quote,
  .features,
  .promo,
  .story,
  .gallery,
  .values,
  .lifestyle,
  .testimonials {
    min-height: auto;
  }

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

  .nav,
  .whatsapp-button {
    justify-content: center;
  }

  .whatsapp-button {
    justify-self: center;
  }

  .topbar {
    gap: 12px;
    padding: 12px 12px 10px;
  }

  .logo-link {
    justify-self: center;
  }

  .nav {
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .nav a {
    font-size: 0.56rem;
    letter-spacing: 0.1em;
  }

  .topbar {
    gap: 12px;
    padding: 14px 12px 12px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .nav a {
    font-size: 0.58rem;
    letter-spacing: 0.12em;
  }

  .intro {
    grid-template-columns: minmax(148px, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
  }

  .promo {
    grid-template-columns: minmax(0, 1fr) minmax(160px, 0.92fr);
    min-height: 58vh;
  }

  .hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.8fr);
    background:
      radial-gradient(88% 78% at 50% 58%, rgba(255, 255, 255, 0.66) 0%, rgba(255, 255, 255, 0.18) 30%, rgba(255, 255, 255, 0) 54%),
      linear-gradient(180deg, #f8f1ea 0%, #f1e3d6 20%, #e7d1c0 46%, #dbc0ab 72%, #d0ac94 100%);
    min-height: 62vh;
  }

  .hero::after {
    top: auto;
    right: 50%;
    bottom: 74px;
    transform: translateX(50%);
  }

  .hero-media img {
    width: clamp(112%, 34vw, 130%);
    transform: translateX(-8%) scale(1.02);
    object-position: center 68%;
  }

  .promo {
    background:
      radial-gradient(88% 78% at 50% 58%, rgba(255, 255, 255, 0.66) 0%, rgba(255, 255, 255, 0.18) 30%, rgba(255, 255, 255, 0) 54%),
      linear-gradient(180deg, #f8f1ea 0%, #f1e3d6 20%, #e7d1c0 46%, #dbc0ab 72%, #d0ac94 100%);
  }

  .promo::after {
    top: auto;
    right: 50%;
    bottom: 70px;
    transform: translateX(50%);
  }

  .promo > img {
    width: 112%;
    transform: translateX(-7%) scale(1.02);
  }

  .intro-media {
    min-height: 300px;
    padding: 12px;
  }

  .intro-media img {
    width: 122%;
    transform: translateX(-12%) scale(1.02);
  }

  .quote {
    padding: 34px 16px;
  }

  .quote h2 {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  .story {
    padding: 16px 14px 8px;
  }

  .story p,
  .value-block p,
  .section-subtitle {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .story,
  .values,
  .features,
  .bestsellers {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .lifestyle img {
    min-height: 44vh;
  }

  .testimonials-grid {
    gap: 12px;
  }

  .testimonials-shell {
    grid-template-columns: 1fr;
  }

  .testimonial-nav {
    display: none;
  }

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

  .feature-item {
    grid-template-columns: 34px 1fr;
    gap: 10px;
    padding: 12px 10px;
  }

  .feature-icon svg {
    width: 28px;
    height: 28px;
  }

  .value-icon-image {
    width: 34px;
    height: 34px;
  }

  .feature-item h3 {
    font-size: clamp(0.9rem, 2vw, 1.02rem);
    margin: 0 0 4px;
  }

  .feature-item p {
    font-size: clamp(0.72rem, 1.7vw, 0.82rem);
    line-height: 1.5;
  }

  .product-grid {
    gap: 10px;
  }

  .all-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-card {
    padding: 8px;
  }

  .product-card h3 {
    font-size: clamp(0.9rem, 2.3vw, 1.12rem);
    margin: 8px 0 6px;
  }

  .product-caption {
    font-size: 0.74rem;
    line-height: 1.45;
  }

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

@media (max-width: 520px) {
  .topbar {
    gap: 8px;
    padding: 10px 10px 8px;
  }

  .logo-link {
    justify-self: center;
  }

  .whatsapp-button {
    min-height: 32px;
    padding: 0 12px;
    font-size: 0.52rem;
    letter-spacing: 0.08em;
  }

  .scroll-top-button {
    right: 12px;
    bottom: 12px;
    width: 48px;
    height: 48px;
    font-size: 1.15rem;
  }

  main {
    padding: 8px;
  }

  .hero-copy,
  .intro-copy,
  .promo-copy {
    padding: 14px 12px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    min-height: 40vh;
  }

  .intro {
    grid-template-columns: minmax(110px, 0.75fr) minmax(0, 1.25fr);
    align-items: center;
    min-height: auto;
  }

  .promo {
    grid-template-columns: minmax(0, 0.9fr) minmax(116px, 1.1fr);
    min-height: 36vh;
  }

  .hero-copy {
    padding: 12px 8px 12px 10px;
  }

  .hero h1 {
    font-size: clamp(0.76rem, 3.15vw, 0.98rem);
    letter-spacing: -0.025em;
    line-height: 0.95;
    margin-bottom: 10px;
  }

  .hero-media {
    min-height: 40vh;
  }

  .hero-media::before {
    right: 24px;
    bottom: 18px;
    width: 110px;
  }

  .hero-media img {
    width: 138%;
    transform: translateX(-18%) scale(1.06);
    object-position: center 74%;
  }

  .intro-copy,
  .promo-copy {
    padding: 12px 10px;
  }

  .intro h2,
  .promo h2 {
    font-size: clamp(1.12rem, 4.8vw, 1.58rem);
  }

  .eyebrow {
    margin-bottom: 6px;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }

  .gallery {
    gap: 6px;
  }

  .gallery img {
    min-height: clamp(104px, 29vw, 170px);
  }

  .feature-grid {
    gap: 8px 10px;
  }

  .feature-item {
    grid-template-columns: 26px 1fr;
    gap: 8px;
    padding: 10px 8px;
  }

  .feature-icon svg {
    width: 22px;
    height: 22px;
  }

  .value-icon-image {
    width: 26px;
    height: 26px;
  }

  .feature-item h3 {
    font-size: clamp(0.68rem, 2.2vw, 0.82rem);
    margin: 0 0 3px;
  }

  .feature-item p {
    font-size: clamp(0.56rem, 1.8vw, 0.68rem);
    line-height: 1.35;
  }

  .product-grid {
    gap: 6px;
  }

  .view-all-products-button {
    width: 100%;
    min-height: 42px;
    margin-top: 16px;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .product-card {
    padding: 5px;
  }

  .product-card img {
    min-height: clamp(92px, 25vw, 138px);
  }

  .product-card h3 {
    font-size: clamp(0.62rem, 2.2vw, 0.82rem);
    margin: 5px 0 4px;
  }

  .product-caption {
    font-size: 0.58rem;
    line-height: 1.35;
  }

  .intro p {
    font-size: 0.7rem;
    line-height: 1.5;
  }

  .intro-media {
    min-height: 162px;
    padding: 8px;
  }

  .intro-media img {
    width: 126%;
    transform: translateX(-12%) scale(1.02);
  }

  .promo > img {
    width: 138%;
    transform: translateX(-18%) scale(1.05);
  }

  .quote {
    padding: 18px 8px 14px;
  }

  .quote h2 {
    font-size: clamp(1.24rem, 6.7vw, 1.74rem);
    line-height: 1.06;
  }

  .section-title {
    font-size: clamp(1.28rem, 5.8vw, 1.86rem);
  }

  .section-subtitle {
    font-size: 0.66rem;
    line-height: 1.4;
  }

  .story,
  .values,
  .features,
  .bestsellers {
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .story p,
  .value-block p,
  .section-subtitle {
    font-size: 0.72rem;
    line-height: 1.5;
  }

  .lifestyle {
    min-height: auto;
  }

  .lifestyle img {
    min-height: 28vh;
  }

  .testimonials {
    min-height: auto;
    padding: 18px 10px;
  }

  .testimonials-header {
    margin-bottom: 14px;
  }

  .testimonials-grid {
    gap: 10px;
  }

  .testimonial-card {
    flex-basis: 82%;
    padding: 14px 12px;
  }

  .testimonial-image {
    width: 58px;
    height: 58px;
    margin-bottom: 10px;
  }

  .testimonial-quote {
    font-size: 1.02rem;
    margin-bottom: 10px;
  }

  .testimonial-author {
    font-size: 0.62rem;
  }

  .gallery-page-main {
    padding: 16px 8px 22px;
  }

  .gallery-page-copy {
    font-size: 0.78rem;
    line-height: 1.55;
  }

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

  .all-product-card {
    padding: 6px;
  }

  .all-product-card h2 {
    font-size: 0.88rem;
    margin-top: 6px;
  }

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

  .footer {
    gap: 12px;
    padding: 14px 10px;
  }
}

@media (max-width: 400px) {
  .brand {
    font-size: 1.72rem;
  }

  .brand-logo {
    width: 120px;
    max-height: 58px;
  }

  .nav a {
    font-size: 0.5rem;
    letter-spacing: 0.07em;
  }

  .hero {
    min-height: 36vh;
  }

  .hero-media {
    min-height: 36vh;
  }

  .hero h1 {
    font-size: clamp(0.7rem, 3vw, 0.88rem);
  }

  .intro {
    grid-template-columns: 98px minmax(0, 1fr);
  }

  .promo {
    grid-template-columns: minmax(0, 0.9fr) 104px;
    min-height: 32vh;
  }

  .all-products-grid {
    grid-template-columns: 1fr;
  }
}
