/* ─── Reset & Base ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

:root {
  --cream:     #f4efe6;
  --cream-dk:  #ede6d8;
  --wine:      #5c1520;
  --wine-dk:   #3e0e16;
  --gold:      #c4a35a;
  --gold-lt:   #d9bc82;
  --ink:       #13100d;
  --ink-lt:    #3d342a;
  --ink-faint: #6b5c4e;
  --mist:      #e8e1d6;
  --white:     #faf7f2;

  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'Montserrat', system-ui, sans-serif;

  --max: 1200px;
  --section-pad: 9rem 2rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-sans);
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Nav ───────────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  background: linear-gradient(to bottom, rgba(10,5,3,.75) 0%, transparent 100%);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--ff-sans);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .55em;
  color: var(--cream);
  text-decoration: none;
  text-transform: uppercase;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 3rem;
}

nav ul li a {
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(244,239,230,.6);
  text-decoration: none;
  transition: color .2s;
}
nav ul li a:hover { color: var(--gold-lt); }

/* ─── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center 30%;
  background-color: #0d0a07;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,5,3,.55) 0%,
    rgba(10,5,3,.4)  40%,
    rgba(10,5,3,.65) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 860px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  font-family: var(--ff-sans);
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: .6;
}

.hero-content h1 {
  font-family: var(--ff-serif);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--cream);
  margin-bottom: 2rem;
  letter-spacing: -.02em;
}

.hero-sub {
  font-size: .78rem;
  font-weight: 300;
  color: rgba(244,239,230,.6);
  max-width: 480px;
  margin: 0 auto 3rem;
  letter-spacing: .05em;
  line-height: 2;
}

.hero-cta {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  z-index: 2;
}

.hero-scroll span {
  font-size: .5rem;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: rgba(196,163,90,.5);
}

.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .25; transform: scaleY(1);    }
  60%       { opacity: 1;   transform: scaleY(1.1);  }
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .9rem 2.5rem;
  font-family: var(--ff-sans);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--ink);
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(196,163,90,.25);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(196,163,90,.35);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-lt);
  background: rgba(196,163,90,.05);
}

.btn-outline {
  background: transparent;
  color: var(--wine);
  border: 1px solid var(--wine);
}
.btn-outline:hover {
  background: var(--wine);
  color: var(--cream);
}

/* ─── Stats Bar ──────────────────────────────────────────────────────────── */
.stats {
  background: var(--ink);
  padding: 3.5rem 2rem;
  border-top: 1px solid rgba(196,163,90,.12);
}

.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 1rem 4rem;
}

.stat-num {
  font-family: var(--ff-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.02em;
}

.stat-label {
  font-size: .55rem;
  font-weight: 400;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(244,239,230,.3);
}

.stat-divider {
  width: 1px;
  height: 52px;
  background: rgba(244,239,230,.08);
}

/* ─── Section Shared ─────────────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: .55rem;
  font-weight: 500;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: .7;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header .eyebrow {
  justify-content: center;
}
.section-header .eyebrow::before { display: none; }
.section-header .eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: .7;
}

.section-header h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -.01em;
}

/* ─── Collection ─────────────────────────────────────────────────────────── */
.collection {
  padding: var(--section-pad);
  background: var(--white);
}

.cards {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--mist);
}

@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: box-shadow .4s;
}
.card:hover {
  box-shadow: 0 24px 64px rgba(19,16,13,.1);
  z-index: 1;
  position: relative;
}

.card-img {
  height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform .6s ease;
}
.card:hover .card-img { transform: scale(1.03); }

.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,10,7,.1) 0%, rgba(13,10,7,.5) 100%);
  transition: background .4s;
}
.card:hover .card-img-overlay {
  background: linear-gradient(180deg, rgba(13,10,7,.05) 0%, rgba(13,10,7,.35) 100%);
}

.card-body {
  padding: 2.25rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-region {
  font-size: .55rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}

.card-body h3 {
  font-family: var(--ff-serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--ink);
  margin-bottom: .9rem;
  line-height: 1.2;
  letter-spacing: -.01em;
}

.card-desc {
  font-size: .78rem;
  color: var(--ink-faint);
  line-height: 1.9;
  flex: 1;
  margin-bottom: 1.5rem;
}

.card-footer {
  border-top: 1px solid var(--mist);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card-tag {
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.card-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}

.card-price {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--ink);
  letter-spacing: -.01em;
}

.btn-buy {
  font-family: var(--ff-sans);
  font-size: .55rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: .6rem 1.4rem;
  background: var(--wine);
  color: var(--cream);
  border: none;
  cursor: pointer;
  transition: background .25s, transform .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-buy:hover { background: var(--wine-dk); transform: translateY(-1px); }

.collection-footer {
  max-width: var(--max);
  margin: 4rem auto 0;
  text-align: center;
}

/* ─── Gallery Strip ──────────────────────────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 480px;
  gap: 2px;
  background: var(--ink);
}

.gallery-img {
  background-size: cover;
  background-position: center;
  transition: transform .6s ease, filter .4s;
  filter: brightness(.75) saturate(.85);
  overflow: hidden;
}
.gallery-img:hover {
  filter: brightness(.95) saturate(1);
  transform: scale(1.02);
  z-index: 1;
}

/* ─── Feature ────────────────────────────────────────────────────────────── */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

.feature-img {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.feature-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,10,7,.18);
}

.feature-text {
  padding: 7rem 5.5rem;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-text h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 1.75rem;
  letter-spacing: -.01em;
}

.feature-text > p {
  font-size: .8rem;
  color: var(--ink-faint);
  line-height: 2;
  margin-bottom: 2.5rem;
  max-width: 420px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: .76rem;
  color: var(--ink-lt);
  line-height: 1.6;
}

.feature-icon {
  color: var(--gold);
  font-size: .7rem;
  flex-shrink: 0;
  margin-top: .15rem;
}

/* ─── About Banner ───────────────────────────────────────────────────────── */
.about-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

.about-banner-img {
  background-size: cover;
  background-position: center top;
  order: 2;
}

.about-banner-text {
  padding: 7rem 5.5rem;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  order: 1;
}

.about-banner-text .eyebrow { color: var(--gold); }
.about-banner-text .eyebrow::before { background: var(--gold); }

.about-banner-text h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3vw, 2.85rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1.75rem;
  letter-spacing: -.01em;
}

.about-copy {
  font-size: .8rem;
  color: rgba(244,239,230,.45);
  line-height: 2;
  margin-bottom: 1.25rem;
  max-width: 440px;
}

/* ─── Testimonials ───────────────────────────────────────────────────────── */
.testimonials {
  padding: var(--section-pad);
  background: var(--cream-dk);
}

.testimonials-inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.testimonials-inner .eyebrow {
  justify-content: center;
  margin-bottom: 4rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px;
  background: #d8cfc2;
}

blockquote {
  background: var(--white);
  padding: 3rem 2.5rem;
  text-align: left;
  position: relative;
}

blockquote::before {
  content: '\201C';
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  font-family: var(--ff-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: .25;
  pointer-events: none;
}

blockquote p {
  font-family: var(--ff-serif);
  font-size: 1.15rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
}

blockquote cite {
  font-size: .58rem;
  font-style: normal;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ─── Contact ────────────────────────────────────────────────────────────── */
.contact {
  padding: var(--section-pad);
  background: var(--white);
}

.contact-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner h2 {
  font-family: var(--ff-serif);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -.01em;
}

.contact-sub {
  font-size: .8rem;
  color: var(--ink-faint);
  line-height: 2;
  margin-bottom: 3rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-align: left;
  background: var(--mist);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1.1rem 1.25rem;
  font-family: var(--ff-sans);
  font-size: .76rem;
  color: var(--ink);
  background: var(--white);
  border: none;
  outline: none;
  transition: background .2s;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(107,92,78,.4); }

.contact-form input:focus,
.contact-form textarea:focus { background: #fdfaf5; }

.contact-form .btn {
  align-self: center;
  margin-top: 2.5rem;
}

/* ─── Footer ─────────────────────────────────────────────────────────────── */
footer {
  background: var(--ink);
  padding: 3.5rem 2rem;
  border-top: 1px solid rgba(196,163,90,.1);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-inner .logo { font-size: .6rem; letter-spacing: .5em; }

.footer-copy {
  font-size: .6rem;
  color: rgba(244,239,230,.22);
  letter-spacing: .05em;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.footer-links a {
  font-size: .55rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(244,239,230,.25);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }

/* ─── Payment modal ──────────────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,5,3,.75);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal {
  background: var(--white);
  max-width: 460px;
  width: 100%;
  padding: 2.75rem;
  position: relative;
  animation: modalIn .22s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: var(--ink-faint);
  cursor: pointer;
  line-height: 1;
  transition: color .2s;
}
.modal-close:hover { color: var(--ink); }

.modal-title {
  font-family: var(--ff-serif);
  font-size: 1.55rem;
  font-weight: 300;
  color: var(--ink);
  margin: .5rem 0 .3rem;
  line-height: 1.2;
  letter-spacing: -.01em;
}

.modal-price {
  font-size: .75rem;
  color: var(--ink-faint);
  margin-bottom: 2rem;
}

.qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  padding: 1.1rem 1.25rem;
  background: var(--cream);
}

.qty-label {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.qty-stepper {
  display: flex;
  align-items: center;
  gap: 0;
}

.qty-btn {
  width: 36px;
  height: 36px;
  background: var(--white);
  border: 1px solid var(--mist);
  font-size: 1.1rem;
  line-height: 1;
  color: var(--ink);
  cursor: pointer;
  transition: background .15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover { background: var(--mist); }

.qty-val {
  min-width: 42px;
  text-align: center;
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--ink);
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
  height: 36px;
  line-height: 34px;
}

.qty-total {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--wine);
  min-width: 100px;
  text-align: right;
}

.modal-label {
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1rem;
}

.pay-methods {
  display: flex;
  gap: 1px;
  margin-bottom: 1.75rem;
  background: var(--mist);
}

.pay-method {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  padding: 1.25rem .5rem;
  background: var(--white);
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.pay-method:hover { background: var(--cream); }
.pay-method img { width: 42px; height: 42px; }
.pay-method span { font-size: .58rem; font-weight: 500; letter-spacing: .06em; color: var(--ink-lt); }

.modal-secure {
  font-size: .62rem;
  color: rgba(107,92,78,.4);
  text-align: center;
}

.modal-spinner {
  width: 36px; height: 36px;
  border: 2px solid var(--mist);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin .7s linear infinite;
  margin: 2.5rem auto 1.25rem;
}
@keyframes spin { to { transform: rotate(360deg); } }

.modal-loading-text {
  text-align: center;
  font-size: .76rem;
  color: var(--ink-faint);
  margin-bottom: 2.5rem;
}

.modal-error-icon {
  text-align: center;
  font-size: 1.75rem;
  color: var(--wine);
  margin: 2rem 0 .75rem;
}

.modal-error-msg {
  text-align: center;
  font-size: .78rem;
  color: var(--ink-faint);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

/* ─── Payment result overlay ─────────────────────────────────────────────── */
.pay-result {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.pay-result-inner { text-align: center; max-width: 520px; }

.pay-result-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1;
  display: block;
}
.pay-result-icon.success { color: #5aad6e; }
.pay-result-icon.fail    { color: var(--wine); }
.pay-result-icon.pending { color: var(--gold); animation: spin 1.8s linear infinite; }

.pay-result-title {
  font-family: var(--ff-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
  letter-spacing: -.01em;
}

.pay-result-msg {
  font-size: .82rem;
  color: rgba(244,239,230,.45);
  line-height: 2;
  margin-bottom: 2.5rem;
}

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .feature { grid-template-columns: 1fr; }
  .feature-img { height: 380px; }
  .feature-text { padding: 5rem 3rem; }

  .about-banner { grid-template-columns: 1fr; }
  .about-banner-img { height: 320px; order: 1; }
  .about-banner-text { padding: 5rem 3rem; order: 2; }
}

@media (max-width: 768px) {
  :root { --section-pad: 6rem 1.5rem; }

  .stat { padding: 1rem 2rem; }
  .stat-divider { display: none; }

  .gallery { grid-template-columns: 1fr; height: auto; }
  .gallery-img { height: 280px; }

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

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }

  nav ul { display: none; }
}
