:root {
  --navy: #10283f;
  --navy2: #071a2b;
  --gold: #c9a35a;
  --cream: #f7f3eb;
  --surface: #fff;
  --ink: #18232d;
  --muted: #68737d;
  --line: #e2ddd3;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  font-weight: 400;
  letter-spacing: -0.01em;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.site-header {
  height: 76px;
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(247, 243, 235, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.16em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 42px;
  border: 1px solid var(--gold);
  font-size: 19px;
}
.site-header nav {
  display: flex;
  gap: 30px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.site-header nav a:hover {
  color: #9d792f;
}
.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.header-cta {
  border: 1px solid var(--navy);
  color: var(--navy);
}
.hero {
  position: relative;
  height: min(720px, 74vh);
  min-height: 510px;
  background: var(--navy2);
  overflow: hidden;
}
.hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(4, 18, 31, 0.88) 0%,
    rgba(4, 18, 31, 0.44) 55%,
    rgba(4, 18, 31, 0.14) 100%
  );
}
.hero-content {
  position: absolute;
  left: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 13%;
  max-width: 650px;
  color: #fff;
}
.hero h1,
.section h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.025em;
}
.hero h1 {
  font-size: clamp(46px, 6vw, 68px);
  line-height: 0.98;
  margin: 14px 0 20px;
}
.hero-content > p:not(.eyebrow) {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 400;
  letter-spacing: 0.01em;
  opacity: 0.86;
}
.button.gold {
  margin-top: 22px;
  background: var(--gold);
  color: var(--navy2);
}
.button.gold:hover {
  background: #dfbd76;
}
.section {
  max-width: var(--max);
  margin: auto;
  padding: 88px 24px;
}
.eyebrow {
  margin: 0;
  color: #9b772f;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.eyebrow.light {
  color: #dfbd76;
}
.section h2 {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: clamp(34px, 3.5vw, 43px);
  line-height: 1.08;
}
.intro {
  text-align: center;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
  text-align: left;
}
.brand-grid article {
  padding: 34px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}
.brand-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}
.brand-grid h3 {
  margin: 26px 0 10px;
  color: var(--navy);
  font-family: "Cormorant Garamond", serif;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.015em;
}
.brand-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.products-section {
  padding-top: 48px;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}
.section-heading > p {
  max-width: 470px;
  color: var(--muted);
  line-height: 1.7;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--surface);
  box-shadow: 0 8px 25px rgba(16, 40, 63, 0.05);
  transition: 0.25s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(16, 40, 63, 0.12);
}
.product-image {
  aspect-ratio: 1;
  background: #eef3f6;
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s;
}
.product-card:hover img {
  transform: scale(1.03);
}
.product-copy {
  padding: 19px;
}
.tag {
  margin: 0 0 8px;
  color: #9b772f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.product-copy h3 {
  min-height: 50px;
  margin: 0 0 18px;
  color: var(--navy);
  font-family: "Cormorant Garamond", serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.product-copy span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.product-copy strong {
  display: block;
  margin-top: 4px;
  color: var(--navy);
  font-size: 17px;
}
.reviews {
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  background: var(--navy2);
  color: #fff;
}
.reviews h2 {
  color: #fff;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 38px;
}
.review-grid blockquote {
  margin: 0;
  padding: 30px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
}
.stars {
  color: #dfbd76;
  letter-spacing: 0.1em;
}
.review-grid blockquote p {
  min-height: 110px;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
}
.review-grid footer {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  line-height: 1.5;
}
.review-note,
.privacy-note {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}
.shipping-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 22px;
  margin-top: 38px;
}
.shipping-grid figure {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
}
.shipping-grid img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.shipping-grid figcaption {
  padding: 18px;
  color: var(--navy);
  font-weight: 600;
}
.privacy-note {
  color: var(--muted);
}
.cta {
  max-width: none;
  text-align: center;
  background: var(--navy);
  color: #fff;
}
.cta h2 {
  max-width: 760px;
  margin: 12px auto 0;
  color: #fff;
}
.button.whatsapp {
  border: 1px solid #1f7a50;
  background: #1f7a50;
  color: #fff;
}
.button.whatsapp:hover {
  background: #176440;
}
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  background: #1f7a50;
  padding: 10px 16px 10px 10px;
  color: #fff;
  box-shadow: 0 12px 34px rgba(7, 26, 43, 0.28);
  font-size: 13px;
  text-decoration: none;
}
.whatsapp-float span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 50%;
  font-size: 10px;
  letter-spacing: .04em;
}
.whatsapp-float:hover { background: #176440; }
.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 40px max(24px, calc((100vw - var(--max)) / 2));
  background: var(--navy2);
  color: #fff;
}
.site-footer strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.16em;
}
.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}
.product-detail {
  max-width: var(--max);
  min-height: 72vh;
  margin: auto;
  padding: 42px 24px 88px;
}
.product-breadcrumb {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 12px;
}
.product-breadcrumb strong {
  color: var(--navy);
}
.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: clamp(38px, 7vw, 86px);
  align-items: center;
}
.detail-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: #eef3f6;
  border: 1px solid var(--line);
}
.detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-copy h1,
.not-found h1 {
  margin: 12px 0 18px;
  color: var(--navy);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
}
.detail-price {
  margin: 0 0 24px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 700;
}
.detail-description {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.variant-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}
.variant-list > span:first-child {
  width: 100%;
  margin-bottom: 3px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.variant-chip {
  padding: 10px 13px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  color: var(--navy);
  font-size: 12px;
}
.detail-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 12px;
}
.text-link {
  padding-bottom: 3px;
  border-bottom: 1px solid var(--navy);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
}
.detail-info {
  margin-top: 88px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
}
.detail-info h2 {
  margin: 10px 0 30px;
  color: var(--navy);
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.08;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.benefit-grid article {
  min-height: 135px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}
.benefit-grid span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
}
.benefit-grid p {
  margin: 22px 0 0;
  color: var(--navy);
  font-size: 14px;
  line-height: 1.55;
}
.not-found {
  padding: 100px 0;
  text-align: center;
}
@media (max-width: 900px) {
  .site-header nav {
    display: none;
  }
  .header-cta {
    display: none;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }
  .section-heading {
    align-items: start;
    flex-direction: column;
  }
  .shipping-grid {
    grid-template-columns: 1fr;
  }
  .shipping-grid img {
    height: 420px;
  }
  .product-hero {
    grid-template-columns: 1fr;
  }
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .site-header {
    height: 64px;
  }
  .hero {
    height: 640px;
    min-height: 0;
  }
  .hero-content {
    bottom: 10%;
  }
  .hero h1 {
    font-size: 48px;
  }
  .section {
    padding: 64px 18px;
  }
  .section h2 {
    font-size: 35px;
  }
  .product-grid {
    gap: 12px;
  }
  .product-copy {
    padding: 14px;
  }
  .product-copy h3 {
    min-height: 60px;
    font-size: 18px;
  }
  .shipping-grid img {
    height: 340px;
  }
  .site-footer {
    flex-direction: column;
  }
  .product-detail {
    padding: 28px 18px 64px;
  }
  .product-breadcrumb {
    overflow: hidden;
    white-space: nowrap;
  }
  .detail-copy h1 {
    font-size: 42px;
  }
  .detail-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }
  .text-link {
    align-self: center;
  }
  .detail-info {
    margin-top: 64px;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding-right: 12px;
  }
  .whatsapp-float strong { display: none; }
}
