:root {
  --cream: #f5efe6;
  --paper: #fbf8f3;
  --espresso: #2a1710;
  --cocoa: #6f4029;
  --caramel: #b8784c;
  --sage: #8f9476;
  --line: rgba(42, 23, 16, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--espresso);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.announcement {
  align-items: center;
  background: var(--espresso);
  color: #fffaf3;
  display: flex;
  font-size: 0.7rem;
  justify-content: space-between;
  letter-spacing: 0.08em;
  min-height: 35px;
  padding: 0.5rem clamp(1.1rem, 4vw, 4.5rem);
  text-transform: uppercase;
}
.announcement p { margin: 0; }
.announcement a { border-bottom: 1px solid rgba(255, 255, 255, 0.5); padding-bottom: 2px; }

.site-header {
  align-items: center;
  background: rgba(251, 248, 243, 0.94);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 82px;
  padding: 0 clamp(1.1rem, 4vw, 4.5rem);
  position: relative;
  z-index: 10;
}
.brand {
  align-items: center;
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  letter-spacing: 0.16em;
  width: fit-content;
}
.brand span {
  color: var(--caramel);
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  margin-left: 0.3rem;
  transform: translateY(-0.38rem);
}
.site-header nav { display: flex; font-size: 0.78rem; gap: clamp(1.4rem, 3vw, 3rem); letter-spacing: 0.04em; }
.site-header nav a, .text-link { transition: color 180ms ease; }
.site-header nav a:hover, .text-link:hover { color: var(--caramel); }
.header-cta {
  border-bottom: 1px solid var(--espresso);
  font-size: 0.75rem;
  justify-self: end;
  letter-spacing: 0.05em;
  padding: 0.45rem 0;
  text-transform: uppercase;
}

.hero { min-height: min(760px, calc(100svh - 117px)); overflow: hidden; position: relative; }
.hero-image, .hero-shade { height: 100%; inset: 0; position: absolute; width: 100%; }
.hero-image { object-fit: cover; object-position: center; }
.hero-shade { background: linear-gradient(90deg, rgba(245, 239, 230, 0.98) 0%, rgba(245, 239, 230, 0.8) 30%, rgba(245, 239, 230, 0.08) 60%, transparent 100%); }
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: min(760px, calc(100svh - 117px));
  padding: clamp(4rem, 9vw, 8.5rem) clamp(1.1rem, 7.5vw, 8.5rem);
  position: relative;
  width: min(720px, 58%);
  z-index: 2;
}
.eyebrow, .section-kicker {
  align-items: center;
  display: flex;
  font-size: 0.7rem;
  gap: 0.9rem;
  letter-spacing: 0.16em;
  margin: 0;
  text-transform: uppercase;
}
.eyebrow { margin-bottom: 1.6rem; }
.eyebrow::before, .section-kicker::before { background: var(--cocoa); content: ""; height: 1px; width: 2.5rem; }
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.7rem, 7.2vw, 7.2rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
  margin: 0;
  max-width: 690px;
}
.hero h1 em { color: var(--cocoa); display: block; font-weight: 400; letter-spacing: -0.045em; }
.hero-description {
  color: rgba(42, 23, 16, 0.77);
  font-size: clamp(0.96rem, 1.4vw, 1.08rem);
  line-height: 1.75;
  margin: 2rem 0 0;
  max-width: 490px;
}
.hero-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 1.8rem; margin-top: 2.2rem; }
.button {
  align-items: center;
  display: inline-flex;
  font-size: 0.76rem;
  justify-content: center;
  letter-spacing: 0.07em;
  min-height: 54px;
  padding: 0 1.5rem;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}
.button svg, .product-action svg, .closing-banner a svg { height: 18px; margin-left: 1.2rem; width: 18px; }
.button-dark { background: var(--espresso); color: #fffaf4; }
.button-dark:hover { background: var(--cocoa); transform: translateY(-2px); }
.text-link { border-bottom: 1px solid var(--line); font-size: 0.76rem; letter-spacing: 0.05em; padding: 0.45rem 0; text-transform: uppercase; }
.editorial-note {
  bottom: 1rem;
  color: rgba(42, 23, 16, 0.62);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  margin: 0;
  position: absolute;
  right: clamp(1rem, 2.5vw, 2.5rem);
  z-index: 2;
}

.benefits {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 clamp(1.1rem, 4vw, 4.5rem);
}
.benefits div { align-items: center; display: flex; gap: 1rem; justify-content: center; min-height: 88px; }
.benefits div + div { border-left: 1px solid var(--line); }
.benefits span, .order-steps > li > span { color: var(--caramel); font-family: Georgia, "Times New Roman", serif; font-size: 0.8rem; font-style: italic; }
.benefits p { font-size: 0.72rem; letter-spacing: 0.09em; margin: 0; text-transform: uppercase; }

.collection { padding: clamp(5rem, 9vw, 8.5rem) clamp(1.1rem, 7vw, 7.5rem); }
.section-heading {
  align-items: end;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1.35fr) minmax(250px, 0.65fr);
  margin: 0 auto clamp(2.5rem, 5vw, 4.5rem);
  max-width: 1260px;
}
.section-heading h2, .order-intro h2, .closing-banner h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 5vw, 5.3rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 1.2rem 0 0;
}
.section-heading > p { color: rgba(42, 23, 16, 0.68); line-height: 1.75; margin: 0; max-width: 380px; }
.collection-grid {
  display: grid;
  gap: clamp(1.2rem, 2.2vw, 2.2rem);
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
  margin: 0 auto;
  max-width: 1260px;
}
.product-card { border: 1px solid var(--line); min-height: 100%; overflow: hidden; }
.product-featured { background: var(--cream); }
.product-visual { aspect-ratio: 16 / 10; overflow: hidden; position: relative; }
.product-visual img { height: 100%; object-fit: cover; object-position: 56% 54%; transition: transform 600ms ease; width: 100%; }
.product-featured:hover .product-visual img { transform: scale(1.025); }
.offer-badge, .image-disclaimer { font-size: 0.62rem; letter-spacing: 0.12em; position: absolute; text-transform: uppercase; }
.offer-badge { background: var(--espresso); color: #fffaf4; left: 1rem; padding: 0.7rem 0.85rem; top: 1rem; }
.image-disclaimer { background: rgba(251, 248, 243, 0.8); bottom: 0.75rem; padding: 0.35rem 0.5rem; right: 0.75rem; }
.product-copy { align-items: end; display: flex; gap: 2rem; justify-content: space-between; padding: clamp(1.4rem, 3vw, 2.5rem); }
.product-code { color: var(--caramel); font-size: 0.66rem; letter-spacing: 0.15em; margin: 0 0 0.8rem; text-transform: uppercase; }
.product-copy h3, .browse-copy h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin: 0;
}
.price-block { flex: 0 0 auto; text-align: right; }
.price-block span { display: block; font-size: 0.64rem; letter-spacing: 0.1em; margin-bottom: 0.35rem; text-transform: uppercase; }
.price-block strong { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.6rem, 2.7vw, 2.5rem); font-weight: 400; white-space: nowrap; }
.product-action {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  font-size: 0.7rem;
  justify-content: space-between;
  letter-spacing: 0.08em;
  min-height: 66px;
  padding: 0 1.5rem;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}
.product-action:hover { background: var(--espresso); color: #fffaf4; }

.browse-card { background: var(--cocoa); color: #fff9f1; display: flex; flex-direction: column; }
.browse-ornament {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  min-height: 260px;
  overflow: hidden;
  position: relative;
}
.browse-ornament::before, .browse-ornament::after {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
  height: min(38vw, 430px);
  position: absolute;
  width: min(38vw, 430px);
}
.browse-ornament::after { height: min(27vw, 300px); width: min(27vw, 300px); }
.browse-ornament span { color: var(--caramel); font-size: 2.3rem; position: relative; z-index: 1; }
.browse-ornament p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  letter-spacing: 0.16em;
  margin: 0.5rem 0 0;
  position: relative;
  transform: translateX(0.08em);
  z-index: 1;
}
.browse-copy { padding: clamp(1.6rem, 3.4vw, 3rem); }
.browse-copy .product-code { color: #e5b996; }
.browse-copy > p:last-child { color: rgba(255, 249, 241, 0.72); line-height: 1.65; margin: 1rem 0 0; max-width: 390px; }
.product-action-light { border-color: rgba(255, 255, 255, 0.22); }
.product-action-light:hover { background: #fff9f1; color: var(--espresso); }

.order-section {
  background: var(--espresso);
  color: #fffaf4;
  display: grid;
  gap: clamp(3rem, 7vw, 8rem);
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  padding: clamp(5rem, 9vw, 8.5rem) clamp(1.1rem, 7vw, 7.5rem);
}
.order-intro { max-width: 530px; }
.order-intro .section-kicker { color: #e5b996; }
.order-intro .section-kicker::before { background: #e5b996; }
.button-cream { background: var(--cream); color: var(--espresso); margin-top: 2.2rem; }
.button-cream:hover { background: #fff; transform: translateY(-2px); }
.button-cream svg { height: 19px; width: 19px; }
.order-steps { list-style: none; margin: 0; padding: 0; }
.order-steps li { display: grid; gap: 1.4rem; grid-template-columns: 2.8rem 1fr; padding: 1.8rem 0; }
.order-steps li + li { border-top: 1px solid rgba(255, 255, 255, 0.18); }
.order-steps h3 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.35rem, 2vw, 1.8rem); font-weight: 400; margin: 0; }
.order-steps p { color: rgba(255, 250, 244, 0.65); line-height: 1.65; margin: 0.6rem 0 0; max-width: 470px; }

.closing-banner {
  align-items: center;
  background: var(--sage);
  display: flex;
  flex-direction: column;
  min-height: 410px;
  padding: 5rem 1.2rem;
  text-align: center;
}
.closing-banner .section-kicker::before { display: none; }
.closing-banner h2 { font-size: clamp(3rem, 7vw, 7rem); max-width: 920px; }
.closing-banner a {
  align-items: center;
  border-bottom: 1px solid var(--espresso);
  display: inline-flex;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  margin-top: 2rem;
  padding: 0.55rem 0;
  text-transform: uppercase;
}

footer {
  align-items: center;
  background: var(--paper);
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr auto 1fr;
  padding: 3.5rem clamp(1.1rem, 4vw, 4.5rem);
}
.footer-brand { font-size: 1.45rem; }
footer > p { color: rgba(42, 23, 16, 0.6); font-family: Georgia, "Times New Roman", serif; font-size: 1rem; font-style: italic; margin: 0; text-align: center; }
.footer-contact { display: flex; flex-direction: column; justify-self: end; text-align: right; }
.footer-contact span { color: rgba(42, 23, 16, 0.52); font-size: 0.6rem; letter-spacing: 0.12em; margin-bottom: 0.35rem; text-transform: uppercase; }
.footer-contact a { font-family: Georgia, "Times New Roman", serif; font-size: 1.1rem; }

.floating-whatsapp {
  align-items: center;
  background: #1d8f55;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  bottom: 1rem;
  box-shadow: 0 10px 35px rgba(42, 23, 16, 0.24);
  color: white;
  display: flex;
  font-size: 0.68rem;
  gap: 0.5rem;
  letter-spacing: 0.08em;
  padding: 0.72rem 1rem;
  position: fixed;
  right: 1rem;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
  z-index: 50;
}
.floating-whatsapp:hover { background: #167847; transform: translateY(-2px); }
.floating-whatsapp svg { height: 19px; width: 19px; }

@media (max-width: 900px) {
  .section-heading, .collection-grid, .order-section { grid-template-columns: 1fr; }
  .section-heading { gap: 1.5rem; }
  .section-heading > p { max-width: 560px; }
  .browse-ornament { min-height: 320px; }
  .order-section { gap: 3.5rem; }
}

@media (max-width: 780px) {
  .announcement { font-size: 0.58rem; }
  .announcement p { max-width: 65%; }
  .site-header { grid-template-columns: 1fr auto; min-height: 70px; }
  .site-header nav { display: none; }
  .brand { font-size: 1.35rem; }
  .header-cta { font-size: 0.62rem; }
  .hero { min-height: 710px; }
  .hero-image { object-position: 62% center; }
  .hero-shade { background: linear-gradient(180deg, rgba(245, 239, 230, 0.96) 0%, rgba(245, 239, 230, 0.82) 46%, rgba(245, 239, 230, 0.12) 70%, transparent 100%); }
  .hero-copy { justify-content: flex-start; min-height: 710px; padding: 4.2rem 1.35rem; width: 100%; }
  .hero h1 { font-size: clamp(3.6rem, 18vw, 5.6rem); max-width: 100%; }
  .hero-description { font-size: 0.93rem; max-width: 88%; }
  .editorial-note { background: rgba(245, 239, 230, 0.74); bottom: 0.7rem; padding: 0.3rem 0.45rem; right: 0.7rem; }
  .benefits { grid-template-columns: 1fr; }
  .benefits div { justify-content: flex-start; min-height: 66px; padding: 0 0.4rem; }
  .benefits div + div { border-left: 0; border-top: 1px solid var(--line); }
  .collection { padding-bottom: 5rem; padding-top: 5rem; }
  .product-copy { align-items: flex-start; flex-direction: column; gap: 1.4rem; }
  .price-block { text-align: left; }
  .browse-ornament { min-height: 260px; }
  .browse-ornament::before { height: 340px; width: 340px; }
  .browse-ornament::after { height: 230px; width: 230px; }
  .order-section { grid-template-columns: minmax(0, 1fr); }
  footer { align-items: flex-start; grid-template-columns: 1fr; }
  footer > p { text-align: left; }
  .footer-contact { justify-self: start; text-align: left; }
}

@media (max-width: 420px) {
  .announcement { gap: 0.6rem; }
  .header-cta { max-width: 90px; text-align: right; }
  .hero h1 { font-size: 3.65rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .product-action { padding: 0 1.1rem; }
  .closing-banner { min-height: 370px; }
  .floating-whatsapp { padding: 0.8rem; }
  .floating-whatsapp span { display: none; }
}

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