:root {
  --ink: #24140e;
  --brown: #5b2f1d;
  --rust: #a84f2d;
  --orange: #dc7844;
  --cream: #f5ead8;
  --paper: #fffaf1;
  --gold: #d9a866;
  --green: #237e4a;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding: 12px clamp(20px, 5vw, 78px);
  color: #fff8ec;
  background: rgba(36, 20, 14, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 42px);
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  position: relative;
  padding: 12px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

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

.header-order {
  justify-self: end;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  color: #fff;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: 180ms ease;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  color: #fff;
  background: var(--rust);
  border: 1px solid var(--rust);
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.015em;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.button:hover {
  background: #bc5e38;
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 13px;
}

.button-outline {
  color: var(--ink);
  background: transparent;
  border-color: rgba(36, 20, 14, 0.3);
}

.button-outline:hover {
  color: #fff;
}

.hero {
  position: relative;
  min-height: 780px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 5vw;
  overflow: hidden;
  padding: 150px clamp(24px, 7vw, 110px) 80px;
  color: #fff7eb;
  background:
    radial-gradient(circle at 70% 30%, rgba(198, 122, 69, 0.24), transparent 36%),
    linear-gradient(122deg, #21120c 0%, #402115 56%, #27150e 100%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -16vw;
  bottom: -45vw;
  width: 75vw;
  height: 75vw;
  border: 1px solid rgba(217, 168, 102, 0.17);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(217, 168, 102, 0.03),
    0 0 0 140px rgba(217, 168, 102, 0.02);
}

.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.13;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.38'/%3E%3C/svg%3E");
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 2;
}

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

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  line-height: 1.07;
}

h1 {
  max-width: 780px;
  font-size: clamp(48px, 6.4vw, 92px);
  letter-spacing: -0.035em;
}

h1 em {
  color: var(--gold);
  font-weight: 600;
}

h2 {
  font-size: clamp(38px, 4.8vw, 68px);
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 12px;
  font-size: 34px;
}

.hero-copy {
  max-width: 590px;
  margin: 28px 0 32px;
  color: rgba(255, 247, 235, 0.75);
  font-size: clamp(17px, 1.6vw, 20px);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.text-link {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 14px;
  font-weight: 700;
}

.text-link span,
.order-strip strong span {
  display: inline-block;
  margin-left: 7px;
  transition: transform 180ms ease;
}

.text-link:hover span,
.order-strip:hover strong span {
  transform: translateX(5px);
}

.hero-info {
  display: flex;
  gap: 34px;
  margin-top: 54px;
  color: rgba(255, 247, 235, 0.62);
  font-size: 13px;
}

.hero-info span {
  padding-left: 14px;
  border-left: 1px solid rgba(217, 168, 102, 0.45);
}

.hero-info strong {
  display: block;
  color: #fff7eb;
  font-size: 14px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.logo-frame {
  position: relative;
  width: min(38vw, 540px);
  aspect-ratio: 1;
  padding: 13px;
  border: 1px solid rgba(217, 168, 102, 0.36);
  border-radius: 50%;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.4);
}

.logo-frame::before {
  content: "";
  position: absolute;
  inset: -22px;
  border: 1px dashed rgba(217, 168, 102, 0.26);
  border-radius: 50%;
  animation: spin 45s linear infinite;
}

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

.stamp {
  position: absolute;
  right: 3%;
  bottom: 3%;
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  border: 5px solid var(--brown);
  border-radius: 50%;
  outline: 1px solid var(--gold);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  transform: rotate(8deg);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.section {
  padding: 110px clamp(24px, 7vw, 110px);
  scroll-margin-top: 80px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 52px;
}

.section-heading > p {
  max-width: 440px;
  margin: 0 0 4px;
  color: #705f56;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.product-card {
  position: relative;
  min-height: 380px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: end;
  gap: 30px;
  overflow: hidden;
  padding: 42px;
  color: #fff8eb;
  background: var(--brown);
}

.product-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  top: -100px;
  right: -80px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(255, 255, 255, 0.025);
}

.product-kete {
  color: #fff8eb;
  background: #3b2116;
}

.product-bread::after,
.product-kete::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 20, 14, 0.08) 15%, rgba(36, 20, 14, 0.9) 100%);
}

.product-photo {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-card:hover .product-photo {
  transform: scale(1.035);
}

.product-card > * {
  position: relative;
  z-index: 1;
}

.product-card > .product-photo {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
}

.product-number {
  position: absolute;
  top: 30px;
  left: 38px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--serif);
  font-size: 15px;
}

.product-kete .product-number {
  color: rgba(255, 255, 255, 0.7);
}

.product-icon {
  position: absolute;
  top: 54px;
  left: 50%;
  color: rgba(255, 255, 255, 0.14);
  font-family: var(--serif);
  font-size: 130px;
  transform: translateX(-50%);
}

.product-bread .product-icon,
.product-kete .product-icon {
  display: none;
}

.product-label {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.product-kete .product-label {
  color: var(--gold);
}

.product-card p:last-child {
  max-width: 370px;
  margin: 0;
  color: rgba(255, 248, 235, 0.65);
}

.product-kete p:last-child {
  color: rgba(255, 248, 235, 0.78);
}

.price {
  align-self: end;
  font-family: var(--serif);
  font-size: 60px;
  line-height: 1;
}

.price small {
  font-family: var(--sans);
  font-size: 14px;
}

.order-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding: 27px 34px;
  color: #fff;
  background: var(--rust);
}

.order-strip strong {
  font-family: var(--serif);
  font-size: 20px;
}

.about {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
  background: var(--cream);
}

.about-media {
  position: relative;
}

.about-media video {
  width: 100%;
  max-height: 660px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--ink);
  box-shadow: 28px 28px 0 #dfc9a9;
}

.about-badge {
  position: absolute;
  right: -42px;
  bottom: 48px;
  width: 145px;
  height: 145px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--rust);
  border-radius: 50%;
  text-align: center;
}

.about-badge strong {
  font-family: var(--serif);
  font-size: 27px;
}

.about-badge span {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 30px 0 36px;
  color: #705f56;
  font-size: 18px;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid rgba(36, 20, 14, 0.16);
}

.values strong,
.values span {
  display: block;
}

.values strong {
  font-family: var(--serif);
  font-size: 19px;
}

.values span {
  color: #8a766b;
  font-size: 12px;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 720px;
  padding: 0;
  background: var(--ink);
}

.contact-panel {
  padding: 100px clamp(28px, 7vw, 110px);
  color: #fff7eb;
}

.contact-panel h2 {
  max-width: 520px;
}

.contact-list {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 26px 40px;
  margin: 44px 0;
}

.contact-list > div:last-child {
  grid-column: 1 / -1;
}

.contact-list span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-list p {
  margin: 7px 0 0;
  color: rgba(255, 247, 235, 0.75);
  line-height: 1.7;
}

.contact-list a {
  color: #fff;
  font-family: var(--serif);
  font-size: 22px;
}

.contact-actions {
  display: flex;
  gap: 12px;
}

.contact .button-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.social-links {
  display: flex;
  gap: 26px;
  margin-top: 46px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 700;
}

.social-links a:hover {
  color: var(--gold);
}

.map {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  filter: sepia(0.16) contrast(0.93);
}

footer {
  min-height: 170px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 36px clamp(24px, 7vw, 110px);
  color: #a99990;
  background: #180d09;
  font-size: 12px;
}

footer p:last-child {
  justify-self: end;
}

.footer-brand {
  color: #fff;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 800;
}

.footer-brand span {
  display: block;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 8px;
  letter-spacing: 0.21em;
}

.floating-whatsapp {
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 8px 8px 18px;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.24);
  font-size: 12px;
  font-weight: 700;
  transition: transform 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
}

.floating-whatsapp strong {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  font-size: 20px;
}

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

  .header-order {
    display: none;
  }

  .main-nav {
    justify-self: end;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr 0.75fr;
    padding-top: 145px;
  }

  .contact {
    grid-template-columns: 1fr;
  }

  .map {
    min-height: 500px;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 72px;
    padding: 10px 20px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .menu-open .menu-button span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-open .menu-button span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-button span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: 72px 0 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 42px 28px;
    background: rgba(36, 20, 14, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: 180ms ease;
  }

  .menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .main-nav a {
    width: 100%;
    padding: 13px 0;
    font-family: var(--serif);
    font-size: 30px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 58px;
    padding: 125px 24px 75px;
  }

  h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .hero-info {
    flex-wrap: wrap;
    gap: 20px 30px;
    margin-top: 38px;
  }

  .logo-frame {
    width: min(82vw, 430px);
  }

  .stamp {
    right: 5%;
    width: 78px;
    height: 78px;
    font-size: 15px;
  }

  .section {
    padding: 78px 22px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 34px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 350px;
    padding: 32px 26px;
  }

  .price {
    font-size: 48px;
  }

  .order-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 23px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 68px;
  }

  .about-media video {
    box-shadow: 14px 14px 0 #dfc9a9;
  }

  .about-badge {
    right: -5px;
    bottom: -35px;
    width: 120px;
    height: 120px;
  }

  .values {
    gap: 8px;
  }

  .values strong {
    font-size: 16px;
  }

  .contact-panel {
    padding: 78px 22px;
  }

  .contact-list {
    grid-template-columns: 1fr;
  }

  .contact-list > div:last-child {
    grid-column: auto;
  }

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

  .map {
    min-height: 440px;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 45px 22px 90px;
  }

  footer p {
    margin: 0;
  }

  footer p:last-child {
    justify-self: start;
  }

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp {
    padding: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
