:root {
  --wine: #722F37;
  --wine-dark: #5A2128;
  --blush: #F5E6E8;
  --blush-dark: #ECD2D6;
  --rose-gold: #B76E79;
  --rose-gold-dark: #9A5862;
  --cream: #FBF4F5;
  --ink: #2C1618;
  --ink-soft: #5A3D40;
  --white: #ffffff;
  --max: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'DM Sans', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--wine);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 0.6em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin-bottom: 0.5em; }

p { margin-bottom: 1em; color: var(--ink-soft); }

a { color: var(--rose-gold-dark); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--wine); }

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

ul, ol { margin-bottom: 1em; padding-left: 1.4em; color: var(--ink-soft); }
li { margin-bottom: 0.4em; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; width: 100%; }

/* ============ HEADER / NAV ============ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(114, 47, 55, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 18px 0;
  transition: padding 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08);
}

.site-header.scrolled {
  padding: 8px 0;
  background: rgba(90, 33, 40, 0.98);
  box-shadow: 0 6px 24px rgba(44, 22, 24, 0.22);
}

.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.15;
  display: flex;
  flex-direction: column;
}
.logo .logo-main { color: var(--white); }
.logo .logo-sub {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0; margin: 0;
}

.nav-links a {
  display: block;
  padding: 10px 16px;
  color: var(--blush);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  transition: all 0.25s var(--ease);
}

.nav-links a:hover {
  color: var(--white);
  border-color: rgba(183, 110, 121, 0.6);
}

.nav-links a.active,
.nav-links a[aria-current="page"] {
  color: var(--white);
  border-color: var(--rose-gold);
  background: rgba(183, 110, 121, 0.22);
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--rose-gold);
  color: var(--white);
  padding: 8px 12px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 160px 0 100px;
  background: linear-gradient(120deg, var(--wine) 0%, var(--wine-dark) 60%, #3E1519 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 30%, rgba(183, 110, 121, 0.35) 0%, transparent 45%),
    radial-gradient(circle at 12% 70%, rgba(245, 230, 232, 0.12) 0%, transparent 40%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--rose-gold);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-text { color: var(--white); }
.hero-text h1 { color: var(--white); margin-bottom: 0.4em; }
.hero-text .lead {
  font-size: 1.15rem;
  color: var(--blush);
  max-width: 520px;
  margin-bottom: 1.8em;
}

.hero-card {
  background: var(--white);
  padding: 44px 40px;
  box-shadow: 0 30px 70px rgba(30, 10, 12, 0.45);
  border-top: 4px solid var(--rose-gold);
  margin-right: -40px;
  position: relative;
  z-index: 2;
}

.hero-card .card-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 14px;
  font-weight: 700;
}

.hero-card h2 { color: var(--wine); margin-bottom: 0.5em; }
.hero-card p { color: var(--ink-soft); margin-bottom: 1.6em; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 0;
  border: 2px solid var(--wine);
  background: var(--wine);
  color: var(--white);
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}

.btn:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 26px rgba(114, 47, 55, 0.35);
  background: var(--rose-gold);
  border-color: var(--rose-gold);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--wine);
  border-color: var(--wine);
}
.btn-outline:hover { background: var(--wine); color: var(--white); }

.btn-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-light:hover { background: var(--white); color: var(--wine); border-color: var(--white); }

.btn-rose {
  background: var(--rose-gold);
  border-color: var(--rose-gold);
  color: var(--white);
}
.btn-rose:hover { background: var(--wine); border-color: var(--wine); }

/* ============ SECTIONS ============ */
.section {
  padding: 96px 0;
  position: relative;
}
.section-divider { border-top: 1px solid var(--blush-dark); }

.section-alt { background: var(--blush); }
.section-wine { background: var(--wine); color: var(--blush); }
.section-wine h2, .section-wine h3 { color: var(--white); }
.section-wine p { color: var(--blush); }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose-gold);
  font-weight: 700;
  display: block;
  margin-bottom: 14px;
}
.section-wine .section-head .eyebrow { color: var(--rose-gold); }

/* ============ GRID / CARDS ============ */
.grid { display: grid; gap: 30px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  padding: 34px 30px;
  border: 1px solid var(--blush-dark);
  border-bottom: 4px solid var(--rose-gold);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(114, 47, 55, 0.18);
}

.card-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blush);
  color: var(--wine);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 20px;
  border: 2px solid var(--rose-gold);
}

.card h3 { color: var(--wine); margin-bottom: 0.4em; }
.card p { font-size: 0.96rem; }

/* Image card */
.card-image { overflow: hidden; padding: 0; background: var(--white); border: 1px solid var(--blush-dark); }
.card-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.card-image:hover img { transform: scale(1.06); }
.card-image .card-body { padding: 26px 28px 32px; }
.card-image .card-body h3 { margin-bottom: 0.4em; }
.card-image .card-body p { font-size: 0.96rem; margin-bottom: 0; }

/* Feature split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 0;
  border: 6px solid var(--white);
  box-shadow: 0 18px 44px rgba(114, 47, 55, 0.22);
}
.split-text h2 { margin-bottom: 0.5em; }
.feature-list { list-style: none; padding: 0; margin: 1.5em 0 0; }
.feature-list li {
  padding: 14px 0 14px 36px;
  border-bottom: 1px solid var(--blush-dark);
  position: relative;
  color: var(--ink);
}
.feature-list li::before {
  content: "✦";
  position: absolute;
  left: 0; top: 14px;
  color: var(--rose-gold);
  font-size: 1.1rem;
}

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-block {
  background: var(--white);
  padding: 40px 36px;
  border: 1px solid var(--blush-dark);
  border-left: 5px solid var(--rose-gold);
}

address {
  font-style: normal;
  font-size: 1.02rem;
  line-height: 2;
  color: var(--ink);
}
address strong {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--wine);
  display: block;
  font-size: 1.15rem;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
address .line { display: block; }
address .label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-gold);
  font-weight: 700;
  margin-right: 8px;
}

.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 700;
  margin-bottom: 6px;
}
input, textarea, select {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  padding: 12px 14px;
  border: 2px solid var(--blush-dark);
  background: var(--cream);
  color: var(--ink);
  border-radius: 0;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--rose-gold);