:root {
  --ink: #1d2119;
  --muted: #656b5f;
  --paper: #fbfaf6;
  --soft: #f1eee4;
  --line: #ddd7c6;
  --wine: #6f1d2f;
  --olive: #62733e;
  --gold: #b08b42;
  --charcoal: #20231f;
  --white: #ffffff;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 246, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  width: 42px;
  height: 48px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: var(--soft);
}

.hero {
  min-height: 640px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(17, 19, 16, 0.82), rgba(17, 19, 16, 0.48) 46%, rgba(17, 19, 16, 0.18)),
    var(--bg) center / cover no-repeat;
  color: var(--white);
}

.hero-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 92px 0 70px;
}

.eyebrow {
  margin: 0 0 16px;
  color: #b08b42;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow,
.band .eyebrow {
  color: #e4c777;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: 0.96;
  font-weight: 500;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  font-weight: 500;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 750;
  text-decoration: none;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: transparent;
  color: var(--white);
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 82px 0;
}

.section.slim {
  padding: 58px 0;
}

.section-title {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-title h2 {
  margin-bottom: 12px;
}

.section-title p {
  color: var(--muted);
  font-size: 1.05rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 44px;
  align-items: center;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 55px rgba(32, 35, 31, 0.08);
}

.panel.text {
  padding: 34px;
}

.panel.image {
  overflow: hidden;
}

.panel.image img {
  width: 100%;
  min-height: 320px;
  object-fit: cover;
}

.values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.value-card,
.product-card,
.service-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.value-card,
.service-card,
.contact-card {
  padding: 24px;
}

.value-card h3,
.service-card h3,
.contact-card h3,
.product-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.value-card p,
.service-card p,
.contact-card p,
.product-card p,
.product-card li {
  color: var(--muted);
}

.catalog {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  overflow: hidden;
}

.product-media {
  height: 300px;
  background: var(--soft);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-media.contain img {
  object-fit: contain;
  padding: 22px;
  background: #fff;
}

.product-body {
  padding: 24px;
}

.tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(98, 115, 62, 0.13);
  color: var(--olive);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tag.wine {
  background: rgba(111, 29, 47, 0.11);
  color: var(--wine);
}

.product-card ul,
.check-list {
  margin: 16px 0 0;
  padding-left: 18px;
}

.band {
  background: var(--charcoal);
  color: var(--white);
}

.band .section-title p,
.band p {
  color: rgba(255, 255, 255, 0.74);
}

.services-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
}

.contact-card a {
  color: var(--wine);
  font-weight: 700;
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

.form textarea {
  min-height: 132px;
  resize: vertical;
}

.form button {
  width: max-content;
  border: 0;
  cursor: pointer;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  color: var(--muted);
  background: var(--soft);
  text-align: center;
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    min-height: auto;
  }

  .split,
  .values,
  .catalog,
  .services-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .product-media {
    height: 260px;
  }
}


.catalog-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-media.tall {
  height: 340px;
}

.contain-product img {
  object-fit: contain;
  padding: 24px;
  background: linear-gradient(180deg, #fffaf0, #eee7d7);
}

.tag.beverage {
  background: rgba(176, 139, 66, 0.14);
  color: #8d6b2f;
}


.product-roller {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  background: #171914;
  color: var(--white);
}

.roller-track {
  position: relative;
  min-height: 480px;
}

.roller-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  transition: opacity 700ms ease;
  background: linear-gradient(90deg, rgba(17, 19, 16, 0.84), rgba(17, 19, 16, 0.48) 45%, rgba(17, 19, 16, 0.12)), var(--bg) center / cover no-repeat;
}

.roller-slide.active {
  opacity: 1;
  z-index: 1;
}

.roller-copy {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 58px;
}

.roller-copy h1,
.roller-copy h2 {
  max-width: 720px;
  margin-bottom: 18px;
  color: var(--white);
}

.roller-copy p:not(.eyebrow) {
  max-width: 580px;
  color: rgba(255,255,255,.84);
  font-size: 1.08rem;
}

.roller-dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 22px;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.roller-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
}

.roller-dots span.active {
  background: var(--gold);
}

.compact-intro {
  padding-top: 58px;
}

.catalog-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-media.tall {
  height: 340px;
}

.contain-product img,
.product-media.contain img {
  object-fit: contain;
  padding: 22px;
  background: linear-gradient(180deg, #fffaf0, #eee7d7);
}

.tag.beverage {
  background: rgba(176, 139, 66, 0.14);
  color: #8d6b2f;
}

@media (max-width: 820px) {
  .product-roller,
  .roller-track {
    min-height: 420px;
  }
  .catalog-wide {
    grid-template-columns: 1fr;
  }
}


.feature-card {
  grid-column: span 3;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
}

.product-media.range {
  height: 430px;
}

.product-media.range img {
  object-fit: cover;
  padding: 0;
}

@media (max-width: 820px) {
  .feature-card {
    grid-column: span 1;
    display: block;
  }
  .product-media.range {
    height: 300px;
  }
}


.roller-slide.product-focus {
  background:
    linear-gradient(90deg, rgba(17, 19, 16, 0.88), rgba(17, 19, 16, 0.54) 45%, rgba(17, 19, 16, 0.08)),
    var(--bg) right center / contain no-repeat,
    radial-gradient(circle at 75% 50%, rgba(176, 139, 66, 0.18), transparent 34%),
    #171914;
}


.product-roller {
  min-height: 520px;
  background: radial-gradient(circle at 78% 50%, rgba(176, 139, 66, .22), transparent 32%), linear-gradient(135deg, #171914, #2a241b 55%, #efe4ce);
}

.roller-track { min-height: 520px; }

.roller-slide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 34px;
  align-items: center;
  padding: 0 max(24px, calc((100vw - 1120px) / 2));
  background: transparent !important;
}

.roller-copy {
  width: auto;
  margin: 0;
  padding: 68px 0 58px;
}

.roller-product {
  position: relative;
  z-index: 2;
  width: min(460px, 42vw);
  max-height: 430px;
  object-fit: contain;
  justify-self: center;
  filter: drop-shadow(0 28px 38px rgba(0,0,0,.34));
}

@media (max-width: 820px) {
  .roller-slide {
    grid-template-columns: 1fr;
    padding: 38px 18px 58px;
  }
  .roller-copy { padding: 0; }
  .roller-product { width: min(320px, 86vw); max-height: 300px; }
}

/* Roller typography tuning: keep first slide headline inside the visible area. */
.roller-copy h1 {
  max-width: 610px;
  font-size: clamp(2.15rem, 4.05vw, 4rem);
  line-height: 1.04;
}

.roller-copy h2 {
  max-width: 610px;
  font-size: clamp(1.9rem, 3.2vw, 3.25rem);
  line-height: 1.06;
}

.roller-copy {
  min-width: 0;
}

@media (max-width: 820px) {
  .roller-copy h1 {
    font-size: clamp(2rem, 11vw, 3.05rem);
    line-height: 1.03;
  }

  .roller-copy h2 {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }
}
