:root {
  --bg: #14100d;
  --bg-soft: #201915;
  --panel: #fff9ef;
  --panel-2: #f3e6d3;
  --ink: #221811;
  --muted: #6d5b4a;
  --cream: #fff7e7;
  --gold: #d69b3a;
  --gold-dark: #9f6b1d;
  --wood: #8a5028;
  --line: rgba(255, 247, 231, 0.16);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
  --radius-xl: 34px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(214, 155, 58, 0.22), transparent 32rem),
    radial-gradient(circle at 80% 10%, rgba(138, 80, 40, 0.25), transparent 26rem),
    var(--bg);
  color: var(--cream);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent 75%);
  z-index: -1;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(20, 16, 13, 0.78);
  border-bottom: 1px solid var(--line);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 247, 231, 0.22);
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: linear-gradient(145deg, var(--gold), var(--wood));
  box-shadow: 0 14px 30px rgba(214, 155, 58, 0.2);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 1.08rem;
}

.brand small {
  color: rgba(255, 247, 231, 0.68);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 247, 231, 0.78);
  font-size: 0.95rem;
}

.nav-links a:not(.nav-cta):hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--gold);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-cta {
  color: var(--ink);
  background: var(--cream);
}

.button:hover,
.nav-cta:hover,
.filter:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  color: var(--cream);
  background: transparent;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
}

.section-pad {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0;
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: 52px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: -0.055em;
  line-height: 0.96;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(3.4rem, 9vw, 7.8rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.hero-text,
.shop-heading p,
.story-copy p,
.contact-card p,
.footer p,
.feature-grid p,
.product-card p {
  color: rgba(255, 247, 231, 0.72);
  line-height: 1.7;
}

.hero-text {
  max-width: 680px;
  font-size: 1.12rem;
}

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

.button.primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold), #f2c269);
  box-shadow: 0 16px 44px rgba(214, 155, 58, 0.24);
}

.button.ghost {
  border: 1px solid var(--line);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.05);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  color: rgba(255, 247, 231, 0.72);
  font-size: 0.9rem;
}

.hero-media {
  position: relative;
  min-height: 590px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 16, 13, 0.7), transparent 50%);
  z-index: 1;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 590px;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 20px;
  border: 1px solid rgba(255, 247, 231, 0.2);
  border-radius: 24px;
  background: rgba(20, 16, 13, 0.78);
  backdrop-filter: blur(18px);
}

.hero-card strong,
.hero-card span {
  display: block;
}

.hero-card span {
  margin-top: 7px;
  color: rgba(255, 247, 231, 0.72);
  line-height: 1.5;
}

.category-strip {
  display: flex;
  gap: 1px;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.category-strip a {
  flex: 1 0 220px;
  padding: 22px;
  text-align: center;
  background: rgba(255, 247, 231, 0.04);
  color: rgba(255, 247, 231, 0.72);
  font-weight: 850;
}

.category-strip a:hover {
  background: rgba(214, 155, 58, 0.18);
  color: var(--cream);
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
}

.section-intro {
  max-width: 700px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-grid article,
.product-card,
.contact-card,
.quote-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 247, 231, 0.055);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.feature-grid article {
  padding: 24px;
}

.feature-number {
  color: var(--gold);
  font-weight: 900;
}

.shop-section {
  padding-top: 50px;
}

.shop-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: end;
  margin-bottom: 24px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.filter {
  border: 1px solid var(--line);
  color: rgba(255, 247, 231, 0.74);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
  padding: 11px 16px;
  cursor: pointer;
  font-weight: 850;
}

.filter.active {
  color: var(--ink);
  background: var(--gold);
  border-color: transparent;
}

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

.product-card {
  overflow: hidden;
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.product-card figure {
  margin: 0;
  position: relative;
  aspect-ratio: 1.18;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(214, 155, 58, 0.18), rgba(138, 80, 40, 0.22));
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 550ms ease;
}

.product-card:hover img {
  transform: scale(1.055);
}

.product-tag {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--cream);
  font-size: 0.78rem;
  font-weight: 900;
}

.product-body {
  padding: 22px;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  gap: 10px;
}

.product-body h3 {
  margin-bottom: 0;
}

.price {
  color: var(--gold);
  font-weight: 900;
}

.product-body p {
  margin-bottom: 8px;
}

.product-body .text-link {
  margin-top: auto;
}

.text-link {
  color: var(--gold);
  font-weight: 900;
}

.gallery-section {
  padding-top: 35px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  grid-auto-rows: 260px;
  gap: 16px;
  margin-top: 28px;
}

.gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: rgba(255, 247, 231, 0.05);
}

.gallery figure:first-child {
  grid-row: span 2;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 11px 13px;
  border-radius: 14px;
  color: var(--cream);
  background: rgba(20, 16, 13, 0.72);
  backdrop-filter: blur(16px);
  font-weight: 850;
}

.story {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.story-image {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.story-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.story-copy {
  padding: 34px;
  border-left: 1px solid var(--line);
}

.testimonial {
  padding-top: 20px;
  padding-bottom: 20px;
}

.quote-card {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(28px, 6vw, 58px);
  text-align: center;
}

.quote-card p {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 4vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.quote-card span {
  color: var(--gold);
  font-weight: 900;
}

.contact {
  padding-bottom: 110px;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: clamp(24px, 5vw, 52px);
  background:
    linear-gradient(135deg, rgba(214, 155, 58, 0.15), rgba(255, 255, 255, 0.04)),
    rgba(255, 247, 231, 0.055);
}

.contact-card h2 {
  max-width: 760px;
}

.contact-actions {
  justify-content: flex-end;
  max-width: 340px;
}

.footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer p {
  margin: 8px 0 0;
  max-width: 520px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255, 247, 231, 0.72);
  font-weight: 850;
}

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

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

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 82px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(20, 16, 13, 0.96);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .nav-cta {
    margin-top: 6px;
  }

  .hero,
  .split,
  .shop-heading,
  .story,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
  }

  .hero-media,
  .hero-media img {
    min-height: 470px;
  }

  .feature-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-actions {
    justify-content: flex-start;
    max-width: none;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .section-pad {
    padding: 68px 0;
  }

  .nav {
    width: min(100% - 24px, var(--max));
  }

  .brand strong {
    font-size: 1rem;
  }

  .hero-media,
  .hero-media img {
    min-height: 370px;
  }

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

  .gallery {
    grid-auto-rows: 250px;
  }

  .gallery figure:first-child {
    grid-row: span 1;
  }

  .story-copy {
    padding: 0;
    border-left: 0;
  }

  .story-image img {
    height: 370px;
  }

  .contact-actions .button,
  .hero-actions .button {
    width: 100%;
  }
}
