:root {
  --ink: #1c1a17;
  --muted: #716b62;
  --paper: #fbfaf7;
  --linen: #eee8df;
  --clay: #b56d57;
  --olive: #4d5a45;
  --cream: #fffaf1;
  --border: #ded7cc;
  --gold: #d9ad5f;
  --gold-soft: #f3d58f;
  --night: #11100e;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
}

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

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

.announcement {
  background: linear-gradient(90deg, var(--night), #2a261e, var(--night));
  color: var(--gold-soft);
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 10px 16px;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  background: rgba(251, 250, 247, .9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 3vw, 35px);
  font-weight: 700;
  white-space: nowrap;
}

.logo-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: #090909;
}

.nav-links,
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  font-weight: 600;
}

.header-actions { justify-content: flex-end; }

.action-button,
.filter,
.icon-button {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
}

.action-button {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
}

.mobile-panel {
  display: none;
  position: fixed;
  inset: 101px 0 auto 0;
  z-index: 18;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  padding: 18px;
}

.mobile-panel a {
  display: block;
  padding: 14px 4px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 90px));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #ddd4ca;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,18,15,.68), rgba(20,18,15,.12) 58%, rgba(20,18,15,.03));
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin-left: clamp(22px, 7vw, 96px);
  padding: 64px 0;
  color: white;
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 800;
}

h1, h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 { font-size: clamp(46px, 7vw, 92px); }
h2 { font-size: clamp(34px, 5vw, 58px); }

.hero-copy p:not(.eyebrow),
.section-heading p,
.editorial-copy p {
  color: inherit;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.7;
}

.hero-copy p:not(.eyebrow) { max-width: 520px; }

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

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
}

.primary-link { background: white; color: var(--ink); }
.primary-link.dark { background: var(--ink); color: white; }
.secondary-link { border: 1px solid rgba(255,255,255,.7); color: white; }

.category-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--border);
  background: #fff;
}

.category-strip a {
  min-height: 104px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--border);
  font-family: "Playfair Display", serif;
  font-size: clamp(20px, 2.45vw, 34px);
  font-weight: 700;
  line-height: 1.08;
  padding: 18px;
  text-align: center;
}

.category-strip a:last-child { border-right: 0; }

.section-heading {
  max-width: 850px;
  margin: 82px auto 34px;
  padding: 0 22px;
  text-align: center;
}

.section-heading p { color: var(--muted); }

.toolbar {
  max-width: 1180px;
  margin: 0 auto 28px;
  padding: 0 22px;
  display: flex;
  gap: 16px;
  align-items: end;
  justify-content: space-between;
}

.search-box {
  display: grid;
  gap: 8px;
  min-width: min(360px, 100%);
}

.search-box label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
}

.search-box input {
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
  padding: 0 18px;
  font: inherit;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.filter {
  min-height: 40px;
  border-radius: 999px;
  padding: 0 15px;
  font-weight: 700;
}

.filter.active {
  background: var(--olive);
  border-color: var(--olive);
  color: white;
}

.product-grid {
  max-width: 1180px;
  margin: 0 auto 82px;
  padding: 0 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  background: linear-gradient(180deg, #fff, #f8f3ea);
  border: 1px solid rgba(217, 173, 95, .22);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 55px rgba(36, 30, 20, .08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 75px rgba(36, 30, 20, .14);
}

.product-media {
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(243, 213, 143, .25), transparent 42%),
    var(--linen);
  overflow: hidden;
}

.product-media img {
  width: 190%;
  max-width: none;
}

.product-info {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.product-info h3 {
  margin: 0;
  font-size: 16px;
}

.meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.meta strong {
  color: #8f6630;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.add-button:hover {
  background: var(--ink);
  color: white;
}

.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background:
    linear-gradient(90deg, rgba(217, 173, 95, .13), transparent 38%),
    var(--linen);
  align-items: center;
}

.editorial-image {
  min-height: 600px;
  overflow: hidden;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
}

.editorial-copy {
  max-width: 560px;
  padding: clamp(38px, 7vw, 90px);
}

.editorial-copy p { color: var(--muted); }

.trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-block: 1px solid var(--border);
}

.trust-row div {
  display: grid;
  gap: 7px;
  padding: 28px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.trust-row div:last-child { border-right: 0; }
.trust-row span { color: var(--muted); font-size: 14px; }

.promo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(78px, 9vw, 128px) 22px;
  text-align: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(217, 173, 95, .24), transparent 28%),
    radial-gradient(circle at 82% 78%, rgba(255, 255, 255, .12), transparent 30%),
    linear-gradient(135deg, #263020, #4b5844 52%, #171814);
  color: white;
}

.promo::before,
.promo::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.promo::before {
  inset: 28px;
  border: 1px solid rgba(243, 213, 143, .32);
}

.promo::after {
  width: min(820px, 75vw);
  height: min(820px, 75vw);
  left: 50%;
  top: 56%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(243, 213, 143, .14);
  border-radius: 50%;
}

.promo-mark {
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  padding: 8px;
  border: 1px solid rgba(243, 213, 143, .42);
  border-radius: 50%;
  background: rgba(17, 16, 14, .62);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .28);
}

.promo-mark img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.promo-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.promo p {
  margin: 0 0 22px;
  font-family: "Playfair Display", serif;
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 700;
  text-shadow: 0 16px 40px rgba(0, 0, 0, .22);
}

.contact-list {
  max-width: 1120px;
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: 1.25fr .95fr .95fr .85fr;
  gap: 18px 32px;
  padding: 28px 0 4px;
  border-top: 1px solid rgba(243, 213, 143, .34);
  border-bottom: 1px solid rgba(243, 213, 143, .22);
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  text-align: left;
  color: rgba(255, 255, 255, .92);
  transition: transform .2s ease, color .2s ease;
}

.contact-list a:hover {
  transform: translateY(-3px);
  color: white;
}

.contact-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22);
}

.contact-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.location-icon { color: #ea4335; }
.email-icon { color: #4285f4; }
.whatsapp-icon { color: #25d366; }
.instagram-icon {
  color: #d62976;
  background:
    radial-gradient(circle at 32% 105%, #feda75 0 22%, transparent 23%),
    radial-gradient(circle at 15% 15%, #fa7e1e 0 24%, transparent 25%),
    linear-gradient(135deg, #833ab4, #c13584 45%, #e1306c 70%, #fd1d1d);
}

.location-icon svg,
.email-icon svg,
.whatsapp-icon svg {
  stroke: currentColor;
}

.instagram-icon svg {
  stroke: white;
}

.contact-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-soft);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .18em;
}

.contact-list a > span:last-child {
  min-width: 0;
  color: rgba(255, 255, 255, .9);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.38;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 34px clamp(18px, 5vw, 72px);
  background: #f7f3eb;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.footer strong {
  color: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: 25px;
}

.footer-main {
  display: grid;
  gap: 8px;
}

.footer-main p {
  margin: 0;
  max-width: 380px;
  line-height: 1.5;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: #090909;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
  max-width: 680px;
}

.footer-links a,
.footer-links span {
  color: #675f53;
  font-weight: 600;
}

.footer-links a {
  border-bottom: 1px solid rgba(217, 173, 95, .55);
}

body.nav-open .mobile-panel {
  display: block;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle { display: block; }
  .nav-links { display: none; }
  .brand { justify-self: start; }
  .action-button.search-toggle { display: none; }

  .hero {
    min-height: 690px;
    align-items: end;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(20,18,15,.08), rgba(20,18,15,.78));
  }

  .hero-copy {
    margin: 0;
    padding: 34px 22px;
  }

  .category-strip,
  .product-grid,
  .editorial,
  .trust-row,
  .contact-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .toolbar {
    align-items: stretch;
    flex-direction: column;
  }

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

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

  .brand { font-size: 22px; }
  .logo-brand img {
    width: 38px;
    height: 38px;
  }
  .inquiry-link { padding-inline: 10px; }

  .category-strip,
  .product-grid,
  .editorial,
  .trust-row,
  .contact-list {
    grid-template-columns: 1fr;
  }

  .category-strip a {
    min-height: 72px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .editorial-image,
  .editorial-image img {
    min-height: 360px;
  }

  .trust-row div {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .footer { flex-direction: column; }
  .footer-links { justify-content: flex-start; }
}
