:root {
  --wine-900: #4f0020;
  --wine-800: #65002a;
  --wine-700: #7b0838;
  --gold-700: #c79a1b;
  --gold-500: #e0b83f;
  --gold-300: #f0d68a;
  --ink: #25161c;
  --text: #3a2a30;
  --muted: #6c5a61;
  --bg: #fcfaf8;
  --surface: #ffffff;
  --surface-alt: #f7f1f3;
  --line: rgba(79, 0, 32, 0.12);
  --shadow: 0 18px 42px rgba(79, 0, 32, 0.12);
  --radius: 18px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fffdfb 0%, #fbf6f3 100%);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .45rem .8rem;
  border-radius: 999px;
  background: rgba(199, 154, 27, 0.12);
  color: var(--wine-800);
  font-weight: 700;
  letter-spacing: .03em;
  font-size: .92rem;
}
.eyebrow::before {
  content: "";
  width: .55rem; height: .55rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-700), var(--gold-300));
  box-shadow: 0 0 0 5px rgba(224, 184, 63, 0.18);
}
.h1, h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: .8rem 0 1rem;
}
.h2, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 1rem;
}
.h3, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.25;
  margin: 0 0 .7rem;
  color: var(--ink);
}
p { margin: 0 0 1rem; }
.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 70ch;
}
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.max-820 { max-width: 820px; }

.topbar {
  background: var(--wine-900);
  color: #fff;
  font-size: .95rem;
}
.topbar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem 0;
}
.topbar a { color: #fff; opacity: .92; }
.topbar a:hover { opacity: 1; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 252, 248, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: .85rem;
  min-width: 0;
}
.brand img { width: 62px; height: 62px; object-fit: contain; }
.brand__text { min-width: 0; }
.brand__title {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--wine-900);
  font-size: 1.2rem;
  font-weight: 700;
}
.brand__subtitle {
  font-size: .9rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.nav-links a {
  font-weight: 600;
  color: var(--ink);
  font-size: .96rem;
}
.nav-links a.active,
.nav-links a:hover { color: var(--wine-800); }
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: .7rem .85rem;
  font-weight: 700;
  color: var(--wine-800);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 4rem;
}
.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(224, 184, 63, 0.18), transparent 32%),
    radial-gradient(circle at left center, rgba(123, 8, 56, 0.12), transparent 28%);
  pointer-events: none;
}
.hero-grid,
.two-col {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2.2rem;
  align-items: center;
}
.hero-card,
.card,
.info-card,
.profile-card,
.timeline-item,
.contact-card,
.table-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card { padding: 1.4rem; }
.hero-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 1rem;
  background: radial-gradient(circle at top, #ffffff 0%, #f7eff1 100%);
  border-radius: 16px;
}
.hero-actions,
.btn-group { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.4rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .95rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: .2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--wine-800), var(--wine-900));
  color: #fff;
  box-shadow: 0 10px 25px rgba(79, 0, 32, .2);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-secondary {
  background: rgba(199, 154, 27, 0.1);
  color: var(--wine-800);
  border-color: rgba(199, 154, 27, 0.28);
}
.btn-ghost {
  background: #fff;
  color: var(--wine-800);
  border-color: var(--line);
}

.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: 1.2rem;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card, .info-card, .profile-card, .contact-card, .table-card { padding: 1.45rem; }
.card-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(224, 184, 63, 0.22), rgba(123, 8, 56, 0.1));
  color: var(--wine-800);
  font-weight: 800;
  margin-bottom: 1rem;
}
.list-clean {
  list-style: none;
  padding: 0; margin: 0;
}
.list-clean li {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(79, 0, 32, 0.08);
}
.list-clean li:last-child { border-bottom: 0; }
.list-clean li::before {
  content: "✓";
  flex: 0 0 auto;
  width: 24px; height: 24px;
  display: inline-grid; place-items: center;
  border-radius: 50%;
  background: rgba(224, 184, 63, 0.18);
  color: var(--wine-800);
  font-size: .8rem;
  font-weight: 700;
}
.alt-band {
  background: linear-gradient(180deg, rgba(123, 8, 56, 0.03), rgba(199, 154, 27, 0.05));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.page-hero {
  position: relative;
  padding: 4.5rem 0 2.8rem;
  overflow: hidden;
}
.kicker {
  color: var(--wine-800);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .85rem;
  margin-bottom: .8rem;
}
.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.6rem;
}
.metric {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
}
.metric strong {
  display: block;
  font-size: 1.6rem;
  color: var(--wine-900);
  font-family: Georgia, "Times New Roman", serif;
}
.quote-box {
  padding: 1.4rem;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(123, 8, 56, 0.92), rgba(79, 0, 32, 0.96));
  color: #fff;
  box-shadow: var(--shadow);
}
.quote-box p { color: rgba(255,255,255,0.92); }
.quote-box strong { color: var(--gold-300); }
.profile-card img {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 18px;
  margin: 0 auto 1.3rem;
  background: linear-gradient(135deg, rgba(224,184,63,.18), rgba(123,8,56,.1));
  padding: .4rem;
}
.contact-stack {
  display: grid;
  gap: 1rem;
}
.contact-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(79, 0, 32, 0.08);
}
.contact-item:last-child { border-bottom: 0; }
.contact-label {
  display: block;
  font-size: .86rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .28rem;
}
.table-card table {
  width: 100%;
  border-collapse: collapse;
}
.table-card th,
.table-card td {
  text-align: left;
  padding: .95rem .85rem;
  border-bottom: 1px solid rgba(79, 0, 32, 0.08);
  vertical-align: top;
}
.table-card th {
  color: var(--wine-800);
  width: 35%;
}
.timeline {
  display: grid;
  gap: 1rem;
}
.timeline-item {
  padding: 1.25rem 1.3rem;
  position: relative;
  overflow: hidden;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--gold-500), var(--wine-700));
}
.cta-band {
  background: linear-gradient(135deg, var(--wine-900), var(--wine-800));
  color: #fff;
}
.cta-band h2, .cta-band p { color: #fff; }
.cta-band .btn-secondary {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.site-footer {
  background: #1f1016;
  color: rgba(255,255,255,0.9);
  margin-top: 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 2rem;
  padding: 3rem 0 2rem;
}
.footer-title {
  color: #fff;
  margin-bottom: .8rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}
.footer-nav a,
.footer-contact a {
  display: block;
  padding: .35rem 0;
  color: rgba(255,255,255,0.88);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 0 1.5rem;
  font-size: .92rem;
  color: rgba(255,255,255,0.68);
}
.badge-inline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, rgba(199,154,27,.18), rgba(224,184,63,.10));
  border: 1px solid rgba(240,214,138,.45);
  color: var(--gold-300);
  border-radius: 999px;
  padding: .65rem 1rem;
  font-size: .95rem;
  font-weight: 700;
  line-height: 1.45;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.notice {
  border-left: 4px solid var(--gold-700);
  background: rgba(224,184,63,0.08);
  padding: 1rem 1.1rem;
  border-radius: 0 14px 14px 0;
}

@media (max-width: 1000px) {
  .nav-links {
    position: absolute;
    top: calc(100% + .6rem);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: 1rem;
    border-radius: 18px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: inline-flex; }
  .hero-grid,
  .two-col,
  .footer-grid,
  .grid-4,
  .grid-3,
  .grid-2,
  .metric-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .hero { padding-top: 4.2rem; }
  .brand img { width: 54px; height: 54px; }
  .btn, .hero-actions .btn { width: 100%; }
  .topbar .container { flex-direction: column; align-items: flex-start; }
}
