:root {
  --wine: #860927;
  --wine-deep: #860927;
  /* --wine-deep: #3d0a14; */
  --wine-mid: #8b2a3e;
  --wine-pale: #c4546a;
  --wine-blush: #f5dce2;
  --gold: #c9a84c;
  --gold-light: #e8cc7a;
  --white: #ffffff;
  --off-white: #fffdf9;
  --cream: #faf3e8;
  --cream-dark: #f0e6d3;
  --text-dark: #1a0a0f;
  --text-mid: #4a1a24;
  --shadow: rgba(61, 10, 20, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Josefin Sans", sans-serif;
  background: var(--off-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 200;
  padding: 1rem 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--off-white);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}
.nav-logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--wine-deep);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-order {
  padding: 0.6rem 1.5rem;
  background: var(--gold);
  color: var(--wine-deep);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  clip-path: polygon(
    0 0,
    calc(100% - 10px) 0,
    100% 10px,
    100% 100%,
    10px 100%,
    0 calc(100% - 10px)
  );
}
.nav-order:hover {
  background: var(--gold-light);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--wine-deep);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 75% 45%,
      rgba(107, 26, 42, 0.9) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse at 5% 85%,
      rgba(201, 168, 76, 0.1) 0%,
      transparent 45%
    ),
    radial-gradient(
      ellipse at 50% 0%,
      rgba(201, 168, 76, 0.06) 0%,
      transparent 40%
    );
}
.hero-deco {
  position: absolute;
  right: -3%;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  pointer-events: none;
}
.hero-image {
  position: absolute;
  top: 60%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  object-fit: cover;
  border-radius: 50%;
  justify-content: center;
}
.hero-deco .ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.18);
}
.r1 {
  width: 600px;
  height: 600px;
  top: 0;
  left: 0;
  animation: spin 35s linear infinite;
}
.r2 {
  width: 430px;
  height: 430px;
  top: 85px;
  left: 85px;
  border-color: rgba(201, 168, 76, 0.12);
  animation: spin 22s linear infinite reverse;
}
.r3 {
  width: 260px;
  height: 260px;
  top: 170px;
  left: 170px;
  background: radial-gradient(
    circle,
    rgba(107, 26, 42, 0.5) 0%,
    transparent 70%
  );
  border-color: rgba(201, 168, 76, 0.28);
}
@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 9rem 5vw 5rem;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 2rem;
}
.hero-badge::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.2rem, 3.5vw, 5.8rem);
  line-height: 1.05;
  color: var(--white);
  font-weight: 900;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  color: var(--gold);
  font-style: italic;
  display: block;
}
.hero-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  color: rgba(255, 253, 249, 0.72);
  line-height: 1.75;
  margin-bottom: 3rem;
  font-weight: 300;
}
.hero-btns {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.btn-primary {
  padding: 0.95rem 2.4rem;
  background: var(--gold);
  color: var(--wine-deep);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.3s;
  display: inline-block;
  clip-path: polygon(
    0 0,
    calc(100% - 12px) 0,
    100% 12px,
    100% 100%,
    12px 100%,
    0 calc(100% - 12px)
  );
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-ghost {
  padding: 0.95rem 2.4rem;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: all 0.3s;
  display: inline-block;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── TICKER ── */
.ticker {
  background: var(--gold);
  padding: 0.9rem 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  animation: ticker 22s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0 2rem;
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--wine-deep);
}
.ticker-item::after {
  content: "✦";
  font-size: 0.55rem;
}
@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── SECTION COMMONS ── */
section {
  position: relative;
}
.section-label {
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}
.section-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--wine-deep);
}

/* ── ABOUT ── */
.about {
  padding: 8rem 5vw;
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-card {
  background: var(--wine);
  width: 100%;
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(201, 168, 76, 0.12) 0%,
    transparent 70%
  );
}
.about-card-text {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem;
}
.about-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 3px solid rgba(201, 168, 76, 0.5);
}
.about-card-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(255, 253, 249, 0.85);
  margin-top: 1.5rem;
  line-height: 1.6;
}
.about-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  padding: 1.5rem 2rem;
  font-family: "Playfair Display", serif;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--wine-deep);
  text-align: center;
}
.about-text p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-top: 1.5rem;
  font-weight: 400;
}
.about-highlights {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.highlight {
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
}
.highlight-num {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--wine);
}
.highlight-text {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
}

/* ── PRODUCTS ── */
.products {
  padding: 8rem 5vw;
  background: var(--cream);
}
.products-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 5rem;
}
.products-header .section-title {
  color: var(--wine-deep);
}
.products-header p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  color: var(--text-mid);
  margin-top: 1rem;
  line-height: 1.7;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}
.product-card {
  background: var(--white);
  border: 1px solid rgba(107, 26, 42, 0.1);
  overflow: hidden;
  transition: all 0.35s ease;
  position: relative;
  border-radius: 6px;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(61, 10, 20, 0.18);
}
.product-card:hover .product-img-inner {
  transform: scale(1.07);
}
.product-img-inner {
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: var(--wine-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
}
img {
  max-width: 100%;
  display: block;
}
.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: var(--gold);
  color: var(--wine-deep);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
}
.product-body {
  padding: 1.5rem;
}
.product-name {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--wine-deep);
  margin-bottom: 0.4rem;
}
.product-desc {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--wine);
}
.product-price small {
  font-size: 0.75rem;
  font-family: "Josefin Sans", sans-serif;
  color: var(--text-mid);
  font-weight: 400;
}
.product-order {
  padding: 0.55rem 1.1rem;
  background: var(--wine);
  color: var(--white);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}
.product-order:hover {
  background: var(--wine-mid);
}

/* ── SERVICES ── */
.services {
  padding: 8rem 5vw;
  background: var(--wine-deep);
}
.services-header {
  max-width: 540px;
  margin-bottom: 4rem;
}
.services-header .section-title {
  color: var(--cream);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  border: 1px solid rgba(201, 168, 76, 0.18);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.35s;
  background: rgba(255, 255, 255, 0.04);
}
.service-card:hover {
  border-color: rgba(201, 168, 76, 0.5);
  background: rgba(255, 255, 255, 0.07);
}
.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s;
}
.service-card:hover::before {
  width: 100%;
}
.service-icon {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}
.service-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: var(--cream);
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.service-card p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: rgba(255, 253, 249, 0.65);
  line-height: 1.7;
  font-weight: 300;
}
.service-num {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.07);
  line-height: 1;
}

/* ── WHY US ── */
.why {
  padding: 8rem 5vw;
  background: var(--white);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}
.why-sticky {
  position: sticky;
  top: 120px;
}
.why-intro p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  color: var(--text-mid);
  margin-top: 1.2rem;
  line-height: 1.8;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.why-item {
  background: var(--cream);
  border: 1px solid rgba(107, 26, 42, 0.1);
  padding: 2rem;
  transition: all 0.3s;
  position: relative;
}
.why-item:hover {
  border-color: var(--wine-mid);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px var(--shadow);
}
.why-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold);
}
.why-icon {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
}
.why-item h4 {
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 0.5rem;
}
.why-item p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ── VISION / MISSION ── */
.vm {
  background: var(--wine);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.vm-block {
  padding: 6rem 5vw;
  position: relative;
}
.vm-block:first-child {
  border-right: 1px solid rgba(201, 168, 76, 0.18);
}
.vm-bg-num {
  font-family: "Playfair Display", serif;
  font-size: 9rem;
  font-weight: 900;
  color: rgba(201, 168, 76, 0.07);
  position: absolute;
  top: 3rem;
  right: 3rem;
  line-height: 1;
}
.vm-label {
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}
.vm-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.vm-block h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.9rem;
  color: var(--cream);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
.vm-block p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  color: rgba(255, 253, 249, 0.72);
  line-height: 1.9;
  font-weight: 300;
}

/* ── CONTACT ── */
.contact {
  padding: 8rem 5vw;
  background: var(--cream);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.contact-items {
  margin-top: 2.5rem;
}
.contact-row {
  display: flex;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(107, 26, 42, 0.1);
}
.contact-row:first-child {
  border-top: 1px solid rgba(107, 26, 42, 0.1);
}
.contact-icon {
  width: 46px;
  height: 46px;
  background: var(--wine);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.35rem;
}
.contact-info-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.5;
}
.contact-info-text a {
  color: inherit;
  text-decoration: none;
}
.contact-form-wrap {
  background: var(--white);
  padding: 3.5rem;
  border: 1px solid rgba(107, 26, 42, 0.1);
  box-shadow: 0 4px 30px var(--shadow);
}
.form-heading {
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--wine-deep);
  margin-bottom: 2rem;
}
.form-row {
  margin-bottom: 1.4rem;
}
.form-row label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--wine);
  margin-bottom: 0.5rem;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: var(--cream);
  border: 1px solid rgba(107, 26, 42, 0.18);
  font-family: "Josefin Sans", sans-serif;
  font-size: 0.85rem;
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--wine);
}
.form-row textarea {
  resize: vertical;
  min-height: 110px;
}

/* ── FOOTER ── */
footer {
  background: var(--wine-deep);
  padding: 4rem 5vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 3rem;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}
.footer-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--gold);
}
.footer-brand span {
  color: var(--cream);
  font-style: italic;
  font-weight: 400;
}
.footer-brand p {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.9rem;
  color: rgba(255, 253, 249, 0.45);
  margin-top: 0.4rem;
  font-weight: 300;
}
.footer-emblem {
  width: 78px;
  height: 78px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.footer-emblem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.footer-copy {
  text-align: right;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: rgba(255, 253, 249, 0.38);
  line-height: 2;
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav {
    padding: 1rem 4vw;
  }
  .nav-links,
  .nav-order {
    display: none;
  }
  .hero-content {
    padding: 8rem 4vw 4rem;
  }
  .hero-deco {
    width: 280px;
    height: 280px;
    opacity: 0.25;
  }
  .hero-stats {
    right: 4vw;
    gap: 2rem;
  }
  .about,
  .why-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about,
  .products,
  .services,
  .why,
  .contact {
    padding: 5rem 4vw;
  }
  .products-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .vm {
    grid-template-columns: 1fr;
  }
  .vm-block:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  }
  .vm-block {
    padding: 4rem 4vw;
  }
  footer {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-copy {
    text-align: center;
  }
  .footer-emblem {
    margin: 0 auto;
  }
  .hero-stats {
    display: none;
  }
}
@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .products-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
