@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,400;1,700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --red: #E31E24;
  --black: #111111;
  --graphite: #333333;
  --platinum: #E6E6E6;
  --white: #EFFFFFFF;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--black);
  background: #fff;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── NAVIGATION ── */
nav {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo img { height: 44px; width: auto; }

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #fff;
  font-style: italic;
  letter-spacing: 0.5px;
}
.nav-logo-text span { color: var(--red); }

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: #aaa;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.nav-links a:hover, .nav-links a.active {
  color: #fff;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: #fff; margin: 5px 0;
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  background: var(--red);
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}

.hero-inner { position: relative; z-index: 1; max-width: 700px; }

.hero-eyebrow {
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  color: #fff;
  line-height: 1.05;
  margin-bottom: 0.3rem;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
}

.hero-sub {
  font-size: 0.75rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  font-weight: 600;
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 3rem;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-white {
  background: #fff;
  color: var(--red);
  border: 2px solid #fff;
}
.btn-white:hover { background: transparent; color: #fff; }

.btn-red {
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
}
.btn-red:hover { background: transparent; color: var(--red); }

.btn-outline-black {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.btn-outline-black:hover { background: var(--black); color: #fff; }

/* ── SECTIONS ── */
section { padding: 90px 5%; }

.section-label {
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title em { font-style: italic; color: var(--red); }

.section-desc {
  font-size: 0.95rem;
  color: var(--graphite);
  line-height: 1.8;
  max-width: 560px;
  font-weight: 300;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin: 1.5rem 0;
}

/* ── PRODUCTS GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.product-card {
  border: 1px solid var(--platinum);
  border-radius: 2px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}

.product-card-img {
  background: var(--black);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card-img .placeholder-bottle {
  width: 60px;
  height: 120px;
  background: var(--red);
  border-radius: 4px 4px 8px 8px;
  position: relative;
}
.product-card-img .placeholder-bottle::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: #888;
  border-radius: 2px;
}

.product-card-body { padding: 1.25rem; }

.product-card-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
}

.product-card-desc {
  font-size: 0.82rem;
  color: var(--graphite);
  line-height: 1.7;
  font-weight: 300;
}

.product-card-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  border-bottom: 1px solid var(--red);
  padding-bottom: 2px;
}

/* ── USP STRIP ── */
.usp-strip {
  background: var(--black);
  padding: 70px 5%;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.usp-item { padding: 1rem; }

.usp-icon {
  font-size: 2.5rem;
  color: var(--red);
  margin-bottom: 1rem;
  display: block;
}

.usp-title {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.usp-text {
  color: #888;
  font-size: 0.82rem;
  line-height: 1.7;
  font-weight: 300;
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--platinum);
  text-align: center;
  padding: 90px 5%;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--black);
  padding: 80px 5% 60px;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #fff;
  margin-bottom: 1rem;
}

.page-hero h1 span { color: var(--red); }

.page-hero p {
  color: #888;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-block {
  background: var(--red);
  aspect-ratio: 4/5;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-img-block::after {
  content: '';
}

.about-content { padding: 1rem 0; }

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.value-item {
  padding: 1.25rem;
  border-left: 3px solid var(--red);
  background: #fafafa;
}

.value-item h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.4rem;
}

.value-item p {
  font-size: 0.82rem;
  color: var(--graphite);
  line-height: 1.6;
  font-weight: 300;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 1rem;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.contact-detail-text span {
  font-size: 0.9rem;
  color: var(--graphite);
  font-weight: 300;
}

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--graphite);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1px solid var(--platinum);
  border-radius: 2px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--black);
  background: #fff;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--red); }

.form-group textarea { resize: vertical; min-height: 130px; }

/* ── FOOTER ── */
footer {
  background: var(--black);
  padding: 48px 5% 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #222;
  margin-bottom: 2rem;
}

.footer-brand-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}
.footer-brand-text span { color: var(--red); }

.footer-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  color: #666;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 400;
}

.footer-about {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.8;
  font-weight: 300;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul li a {
  color: #888;
  font-size: 0.85rem;
  font-weight: 300;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--red); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  color: #555;
  font-size: 0.75rem;
  font-weight: 300;
}

.footer-zk {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-inner > * {
  animation: fadeUp 0.7s ease both;
}
.hero-inner > *:nth-child(1) { animation-delay: 0.1s; }
.hero-inner > *:nth-child(2) { animation-delay: 0.25s; }
.hero-inner > *:nth-child(3) { animation-delay: 0.4s; }
.hero-inner > *:nth-child(4) { animation-delay: 0.55s; }
.hero-inner > *:nth-child(5) { animation-delay: 0.7s; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--black); padding: 1.5rem 5%; gap: 1.2rem; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-block { aspect-ratio: 3/2; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}