:root {
  --ink: #171514;
  --muted: #6f6760;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --line: #e7dfd6;
  --wine: #8c2633;
  --wine-dark: #681c26;
  --sage: #53685a;
  --sand: #d8bd93;
  --shadow: 0 24px 70px rgba(38, 29, 22, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 48px);
  background: rgba(251, 250, 247, 0.88);
  border-bottom: 1px solid rgba(231, 223, 214, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  border-radius: 50%;
  font-family: "Fraunces", serif;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-weight: 800;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  transition: color 180ms ease;
}

.main-nav a:hover {
  color: var(--wine);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 50%;
  padding: 0 10px;
}

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

.hero {
  position: relative;
  min-height: 780px;
  padding: 140px clamp(20px, 6vw, 72px) 72px;
  overflow: hidden;
  display: grid;
  align-items: end;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(23, 21, 20, 0.86) 0%, rgba(23, 21, 20, 0.52) 42%, rgba(23, 21, 20, 0.06) 100%),
    linear-gradient(0deg, rgba(23, 21, 20, 0.7), rgba(23, 21, 20, 0) 48%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #efe9de;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-content {
  width: min(720px, 100%);
  color: var(--paper);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--sand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--wine);
}

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

h1,
h2 {
  font-family: "Fraunces", serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 690px;
  margin-bottom: 24px;
  font-size: clamp(46px, 8vw, 94px);
}

h1 span,
.hero-copy span {
  display: block;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 5vw, 62px);
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(251, 250, 247, 0.82);
  font-size: clamp(17px, 2vw, 21px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button.primary {
  background: var(--wine);
  color: var(--surface);
}

.button.primary:hover {
  background: var(--wine-dark);
}

.button.ghost {
  border-color: rgba(251, 250, 247, 0.55);
  color: var(--paper);
}

.hero-panel {
  position: absolute;
  right: clamp(20px, 6vw, 72px);
  bottom: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(560px, calc(100% - 40px));
  background: rgba(251, 250, 247, 0.92);
  border: 1px solid rgba(251, 250, 247, 0.62);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel div {
  padding: 22px 18px;
  border-right: 1px solid var(--line);
}

.hero-panel div:last-child {
  border-right: 0;
}

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

.hero-panel strong {
  font-family: "Fraunces", serif;
  font-size: 28px;
  line-height: 1;
}

.hero-panel span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.trust-strip span {
  padding: 18px 12px;
  border-right: 1px solid var(--line);
  color: var(--sage);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.trust-strip span:last-child {
  border-right: 0;
}

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

.intro-grid,
.section-heading,
.wholesale,
.factory,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.intro p,
.section-heading p,
.wholesale-copy p,
.factory-copy p,
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
}

.text-link {
  justify-self: end;
  align-self: center;
  color: var(--wine);
  font-weight: 800;
}

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

.category-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--surface);
}

.category-card.large {
  grid-column: span 2;
}

.category-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.category-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(23, 21, 20, 0.82), rgba(23, 21, 20, 0) 62%);
}

.category-card:hover img {
  transform: scale(1.05);
}

.category-card div {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1;
}

.category-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

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

.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card img {
  aspect-ratio: 1;
  object-fit: cover;
  background: #efe9e1;
}

.product-body {
  padding: 18px;
}

.product-body h3 {
  min-height: 44px;
  font-size: 16px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.product-meta span {
  padding: 6px 9px;
  background: #f4efe8;
  border-radius: 999px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
}

.product-price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
}

.product-price strong {
  color: var(--wine);
  font-size: 20px;
}

.product-inquire {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 10px 0;
  background: var(--wine);
  color: var(--surface);
  border: none;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  cursor: pointer;
  transition: background 180ms ease;
}

.product-inquire:hover {
  background: var(--wine-dark);
}

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

.testimonial-card {
  margin: 0;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 20px;
}

.testimonial-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
}

.testimonial-card footer strong {
  display: block;
  font-weight: 800;
}

.testimonial-card footer span {
  color: var(--muted);
  font-size: 13px;
}

.wholesale {
  width: min(var(--max), calc(100% - 40px));
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius);
  padding: clamp(34px, 6vw, 68px);
}

.wholesale .section-kicker {
  color: var(--sand);
}

.wholesale-copy p {
  color: rgba(251, 250, 247, 0.72);
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-item {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.process-item span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--sand);
  font-family: "Fraunces", serif;
  font-size: 26px;
}

.process-item p {
  margin-bottom: 0;
  color: rgba(251, 250, 247, 0.7);
}

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

.capability-grid article {
  min-height: 220px;
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.capability-grid p {
  color: var(--muted);
}

.factory {
  align-items: center;
}

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

.factory-image img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top left;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 28px 0 0;
}

.stats div {
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.stats dt {
  font-family: "Fraunces", serif;
  font-size: 26px;
  font-weight: 700;
}

.stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.contact {
  align-items: stretch;
  padding-bottom: 110px;
}

.contact-card {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-card span {
  color: var(--muted);
}

.contact-card a {
  color: var(--wine);
  font-weight: 800;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.quote-form .full,
.quote-form button,
.form-status {
  grid-column: 1 / -1;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdfa;
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--wine);
  box-shadow: 0 0 0 3px rgba(140, 38, 51, 0.12);
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--sage);
  font-size: 13px;
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(20px, 6vw, 72px);
  background: var(--ink);
  color: rgba(251, 250, 247, 0.78);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--sand);
  font-weight: 800;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

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

.wa-float {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 50;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    top: 71px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .nav-toggle {
    display: block !important;
    position: fixed;
    top: 14px;
    right: 18px;
    z-index: 40;
  }

  .hero {
    min-height: 720px;
    padding-top: 112px;
  }

  .hero-panel {
    position: static;
    width: 100%;
    margin-top: 42px;
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip span:nth-child(2n) {
    border-right: 0;
  }

  .intro-grid,
  .section-heading,
  .wholesale,
  .factory,
  .contact {
    grid-template-columns: 1fr;
  }

  .text-link {
    justify-self: start;
  }

  .category-grid,
  .product-grid,
  .capability-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-card.large {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 680px;
    padding-right: 20px;
    padding-left: 20px;
  }

  h1 {
    max-width: 100%;
    font-size: 40px;
    line-height: 1.1;
  }

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

  .hero::after {
    background:
      linear-gradient(90deg, rgba(23, 21, 20, 0.9), rgba(23, 21, 20, 0.52)),
      linear-gradient(0deg, rgba(23, 21, 20, 0.78), rgba(23, 21, 20, 0));
  }

  .hero-media {
    background: #efe9de;
  }

  .hero-media img {
    object-position: 64% center;
  }

  .hero-content {
    width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
  }

  .hero-copy,
  h1 {
    width: 100%;
    max-width: calc(100vw - 40px);
  }

  .hero-actions,
  .site-footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-panel,
  .stats,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .hero-panel div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-panel div:last-child {
    border-bottom: 0;
  }

  .trust-strip,
  .category-grid,
  .product-grid,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .category-card.large {
    grid-column: auto;
    min-height: 330px;
  }

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

  .contact {
    padding-bottom: 78px;
  }

  .wa-float {
    right: 14px;
    bottom: 16px;
    width: 48px;
    height: 48px;
  }
}
