*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --wine: #5c2a3a;
  --wine-deep: #3d1c28;
  --blush: #f5e8ec;
  --rose: #c97b8a;
  --gold: #b8956b;
  --ink: #2a2224;
  --muted: #6b5d62;
  --line: #e8d9de;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--ink);
  background: var(--blush);
  line-height: 1.6;
}

h1, h2, h3, .brand-line, .phone, .foot-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}

a { color: inherit; text-decoration: none; }

.shell {
  width: min(1060px, calc(100% - 2rem));
  margin: 0 auto;
}

.ribbon {
  background: var(--wine-deep);
  color: #e8d4da;
  font-size: 0.76rem;
}

.ribbon-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.5rem 0;
}

.ribbon a {
  color: var(--gold);
  font-weight: 600;
}

.nav {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-line {
  font-size: 1.45rem;
  color: var(--wine);
  letter-spacing: 0.02em;
}

.brand-sub {
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose);
}

.nav nav {
  display: flex;
  gap: 1.5rem;
  font-weight: 500;
  color: var(--muted);
}

.nav nav a:hover { color: var(--wine); }

.nav-cta {
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--wine);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--wine);
}

.nav-cta:hover {
  background: var(--wine);
  color: var(--white);
}

.hero {
  padding: 4rem 0 3.5rem;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(201, 123, 138, 0.25), transparent 50%),
    linear-gradient(180deg, var(--white) 0%, var(--blush) 100%);
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.65rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  line-height: 1.05;
  color: var(--wine-deep);
  margin-bottom: 1rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--rose);
}

.hero-text {
  max-width: 32rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.btn.fill {
  background: var(--wine);
  color: var(--white);
}

.btn.fill:hover { background: var(--wine-deep); }

.btn.ghost {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--wine);
}

.block { padding: 3.25rem 0; }
.block.tint { background: var(--white); }

.head { margin-bottom: 1.5rem; }

.head h2, .split h2, .contact h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  color: var(--wine-deep);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.35rem;
}

.block.tint .grid article { background: var(--blush); }

.grid h3 {
  font-size: 1.2rem;
  color: var(--wine);
  margin-bottom: 0.35rem;
}

.grid p {
  font-size: 0.92rem;
  color: var(--muted);
}

.stats {
  background: var(--wine-deep);
  color: var(--white);
  padding: 1.35rem 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}

.stats strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  color: var(--gold);
}

.stats span {
  font-size: 0.8rem;
  opacity: 0.85;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.split > div > p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 0.75rem;
}

.card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.35rem;
  background: var(--blush);
}

.card h3 {
  font-size: 1.1rem;
  color: var(--wine);
  margin-bottom: 0.65rem;
}

.card dl div {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
}

.card dl div:last-child { border-bottom: none; }

.card dt {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.card dd { font-size: 0.9rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.phone {
  display: block;
  font-size: 2rem;
  color: var(--wine);
  margin: 0.5rem 0;
}

.mail {
  display: block;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1rem;
}

.mail:hover { color: var(--rose); }

.addr { color: var(--muted); line-height: 1.7; }

.contact-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.4rem;
}

.contact-box h3 {
  font-size: 1.15rem;
  color: var(--wine);
  margin-bottom: 0.5rem;
}

.contact-box p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.foot {
  background: var(--wine-deep);
  color: #dcc5cc;
  padding: 2rem 0 1rem;
}

.foot-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.foot-title {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.foot h4 {
  font-family: "Outfit", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.foot-bar {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
}

@media (max-width: 800px) {
  .nav nav, .nav-cta { display: none; }
  .split, .contact-grid, .foot-cols, .stats-row {
    grid-template-columns: 1fr;
  }
}
