@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Cinzel:wght@500;600;700&display=swap');

:root {
  --bg: #f7f4ee;
  --surface: #ffffff;
  --surface-soft: #efe9dc;
  --ink: #1f1f1f;
  --muted: #66625a;
  --line: #ddd5c8;
  --gold: #b88b2e;
  --gold-deep: #8d6721;
  --dark: #151617;
  --dark-2: #1f2225;
  --container: 1180px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.section-sm {
  padding: 3.25rem 0;
}

.eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.section-title,
.hero-title,
.page-hero h1,
.page-hero h2,
.page-hero h3,
.feature-copy h2,
.brand-name {
  font-family: 'Cinzel', Georgia, serif;
  line-height: 1.15;
}

.brand-name {
  font-weight: bold;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin: 0.35rem 0 1rem;
}

.section-intro {
  max-width: 700px;
  color: var(--muted);
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #caa24d, #a7781e);
  color: #fff;
  box-shadow: 0 12px 25px rgba(168, 120, 30, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(168, 120, 30, 0.33);
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 139, 46, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(184, 139, 46, 0.3);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: 1.35rem;
  font-weight: 700;
  background: linear-gradient(180deg, #fff, #f1ecdf);
}

.brand-name {
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  margin: 4px auto;
  transition: 0.25s ease;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-menu a {
  font-weight: 600;
  font-size: 0.96rem;
  color: #2b2a28;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.assetcellar {
  font-size: 20px;
}

.assetcellar a {
  position: relative;
  color: gold;
  font-weight: bold;
}

.assetcellar a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.assetcellar a:hover::after,
.assetcellar a.active::after {
  width: 100%;
}

.hero {
  padding: 5rem 0 4rem;
  background:
    radial-gradient(circle at 15% 35%, rgba(184, 139, 46, 0.14), transparent 22%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1), transparent 22%),
    linear-gradient(135deg, #191b1d, #0e1012 55%, #20242a);
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 3rem;
  align-items: center;
}

.hero-image-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.28);
}

.hero-image-card img {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  margin: 0.4rem 0 1rem;
}

.hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
}

.stat strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.stat span {
  color: rgba(255,255,255,0.72);
  font-size: 0.93rem;
}

.center-text {
  text-align: center;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

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

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.1);
}

.card-media {
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, #f7f5ef, #ece6d8);
  padding: 1rem;
}

.card-body {
  padding: 1.35rem;
}

.card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.18rem;
}

.card p {
  margin: 0 0 1rem;
  color: var(--muted);
}

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

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.feature-media {
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f5ef, #ede6d7);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.feature-copy {
  padding: 0.5rem 0.5rem 0.5rem 1rem;
}

.feature-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.35rem 0 1rem;
}

.feature-copy p {
  color: var(--muted);
}

.feature-list {
  padding: 0;
  margin: 1.2rem 0 1.5rem;
  list-style: none;
}

.feature-list li {
  margin-bottom: 0.75rem;
  padding-left: 1.6rem;
  position: relative;
}

.feature-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--gold);
  font-size: 1.2rem;
}

.page-hero {
  padding: 4.25rem 0 2.25rem;
  background:
    radial-gradient(circle at 80% 18%, rgba(184, 139, 46, 0.13), transparent 18%),
    linear-gradient(135deg, #18191b, #101214);
  color: #fff;
}

.page-hero h1 {
  margin: 0.35rem 0 0.7rem;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.page-hero p {
  max-width: 760px;
  color: rgba(255,255,255,0.8);
}

.panel {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.panel h3 {
  margin-top: 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.value-card {
  padding: 1.4rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #f8f3e9);
  border: 1px solid var(--line);
}

.value-card h4 {
  margin: 0 0 0.5rem;
}

.value-card p {
  margin: 0;
  color: var(--muted);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.product-detail {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.product-detail.reverse .feature-media {
  order: 2;
}

.product-detail.reverse > div:last-child {
  order: 1;
}

.product-detail:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.product-badge {
  display: inline-block;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: #f5edda;
  color: var(--gold-deep);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.contact-grid {
  display: grid;
  align-items: center;
  gap: 2rem;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.contact-item {
  background: linear-gradient(180deg, #fff, #f8f3e8);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1.1rem;
}

.contact-item strong {
  display: block;
  margin-bottom: 0.3rem;
}

.form-group {
  margin-bottom: 1rem;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

input,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  font: inherit;
}

textarea {
  min-height: 170px;
  resize: vertical;
}

.small-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  background: #141516;
  color: rgba(255,255,255,0.82);
  padding: 2rem 0;
  margin-top: 2rem;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a:hover {
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 980px) {
  .hero-grid,
  .feature-grid,
  .two-col,
  .contact-grid,
  .product-detail {
    grid-template-columns: 1fr;
  }
  .product-detail.reverse .feature-media,
  .product-detail.reverse > div:last-child {
    order: unset;
  }

  .cards-grid,
  .collection-grid,
  .value-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-copy {
    padding-left: 0;
  }

  .nav-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: absolute;
    top: 82px;
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: none;
  }

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

@media (max-width: 640px) {
  .hero {
    padding-top: 4rem;
  }

  .cards-grid,
  .collection-grid,
  .value-grid,
  .stats {
    grid-template-columns: 1fr;
  }

  .section,
  .section-sm {
    padding: 3.5rem 0;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .brand-name {
    font-size: 1.1rem;
  }
}
