@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Nunito+Sans:opsz,wght@6..12,300;6..12,400;6..12,600;6..12,700&display=swap');

:root {
  --cream: #F5F0E8;
  --cream-dark: #EAE3D0;
  --bordeaux: #7B1D28;
  --bordeaux-dark: #4A0E17;
  --bordeaux-mid: #6B1520;
  --bordeaux-light: #9B2D38;
  --gold: #C9A84C;
  --gold-light: #E0C97A;
  --gold-pale: #F5EDD0;
  --white-warm: #FFFDF5;
  --text-body: #3D2012;
  --shadow-card: 0 6px 30px rgba(75, 15, 23, 0.08);
  --shadow-nav: 0 2px 20px rgba(75, 15, 23, 0.2);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--cream);
  color: var(--text-body);
  line-height: 1.75;
  font-size: 16px;
  min-height: 100vh;
}

/* ── TYPOGRAPHY ─────────────────────────────── */

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--bordeaux);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1.2em; color: var(--text-body); }

a {
  color: var(--bordeaux);
  text-decoration: none;
}

a.text-link {
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}

a.text-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}

a.text-link:hover::after { width: 100%; }

/* ── NAVIGATION ─────────────────────────────── */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--bordeaux-dark);
  border-bottom: 2px solid var(--gold);
  box-shadow: var(--shadow-nav);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  text-decoration: none;
}

.nav-logo em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 0;
}

.nav-menu a {
  color: rgba(245,240,232,0.82);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  display: block;
  position: relative;
  transition: color 0.25s;
  text-decoration: none;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 6px; left: 1rem; right: 1rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active { color: var(--gold); }

.nav-menu a:hover::after,
.nav-menu a.active::after { transform: scaleX(1); }

/* ── HERO ───────────────────────────────────── */

.hero {
  background: var(--bordeaux-dark);
  color: var(--cream);
  text-align: center;
  padding: 7rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(201,168,76,0.28);
  pointer-events: none;
}

.hero-corner {
  position: absolute;
  width: 56px;
  height: 56px;
  border-color: var(--gold);
  border-style: solid;
}
.hero-corner.tl { top: 12px; left: 12px; border-width: 2px 0 0 2px; }
.hero-corner.tr { top: 12px; right: 12px; border-width: 2px 2px 0 0; }
.hero-corner.bl { bottom: 12px; left: 12px; border-width: 0 0 2px 2px; }
.hero-corner.br { bottom: 12px; right: 12px; border-width: 0 2px 2px 0; }

.hero-eyebrow {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.8rem;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  width: 48px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  color: var(--cream);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 0.3rem;
  line-height: 1.1;
}

.hero h1 strong {
  font-style: normal;
  font-weight: 700;
  color: var(--gold);
  font-size: 0.55em;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.6rem;
}

.hero-lead {
  font-size: 1.1rem;
  color: rgba(245,240,232,0.8);
  max-width: 700px;
  margin: 2rem auto 2.8rem;
  line-height: 1.85;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 2.6rem;
  transition: background 0.3s, color 0.3s;
  text-decoration: none;
}

.hero-cta:hover {
  background: var(--gold);
  color: var(--bordeaux-dark);
}

/* ── PAGE HEADER (subpages) ─────────────────── */

.page-header {
  background: var(--bordeaux-dark);
  padding: 4rem 2rem 3rem;
  text-align: center;
  position: relative;
  border-bottom: 2px solid var(--gold);
}

.breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.55);
  margin-bottom: 0.9rem;
}

.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-light); }

.page-header h1 {
  color: var(--cream);
  font-weight: 300;
  font-style: italic;
}

.page-header .page-lead {
  color: rgba(245,240,232,0.72);
  margin-top: 1rem;
  font-size: 1.05rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ── MAIN CONTENT ───────────────────────────── */

.main-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section-eyebrow {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.section-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
}

/* ── CARDS ──────────────────────────────────── */

.card {
  background: var(--white-warm);
  border: 1px solid rgba(201,168,76,0.22);
  padding: 2.4rem;
  margin-bottom: 2rem;
  position: relative;
  box-shadow: var(--shadow-card);
}

.card::before,
.card::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--gold);
  border-style: solid;
}

.card::before { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.card::after  { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.card-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.card h3 { margin-bottom: 0.7rem; }

.card p:last-child { margin-bottom: 0; }

/* ── FEATURE (image + text) ─────────────────── */

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 3.5rem;
}

.feature-grid.reverse { direction: rtl; }
.feature-grid.reverse > * { direction: ltr; }

.feature-image { position: relative; }

.feature-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(201,168,76,0.3);
}

.feature-image::before {
  content: '';
  position: absolute;
  top: -10px; left: -10px;
  right: 10px; bottom: 10px;
  border: 1px solid rgba(201,168,76,0.18);
  z-index: -1;
}

/* ── BAND ───────────────────────────────────── */

.band {
  background: var(--bordeaux);
  color: var(--cream);
  padding: 4.5rem 2rem;
  text-align: center;
  position: relative;
}

.band::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(201,168,76,0.18);
  pointer-events: none;
}

.band h2 { color: var(--gold); margin-bottom: 1rem; }
.band p {
  color: rgba(245,240,232,0.82);
  max-width: 640px;
  margin: 0 auto 2rem;
}

/* ── DIVIDER ────────────────────────────────── */

.gold-divider {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 3rem 0;
  color: var(--gold);
}

.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.gold-divider::before { background: linear-gradient(to left, transparent, var(--gold)); }

.diamond {
  width: 10px;
  height: 10px;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

hr.gold-hr {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 2.5rem 0;
}

/* ── HIGHLIGHT BOX ──────────────────────────── */

.highlight-box {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  padding: 1.6rem 2rem;
  margin: 2rem 0;
}

.highlight-box h4 { margin-bottom: 0.5rem; color: var(--bordeaux-dark); }
.highlight-box p:last-child { margin-bottom: 0; }

/* ── LISTS ──────────────────────────────────── */

.styled-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.styled-list li {
  padding: 0.55rem 0 0.55rem 2rem;
  position: relative;
  border-bottom: 1px solid rgba(201,168,76,0.14);
  color: var(--text-body);
}

.styled-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.55rem;
  top: 50%;
  transform: translateY(-50%);
}

.styled-list li:last-child { border-bottom: none; }

/* ── BUTTONS ────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary  { background: var(--bordeaux); color: var(--cream); border: 2px solid var(--bordeaux); }
.btn-primary:hover { background: var(--bordeaux-dark); border-color: var(--bordeaux-dark); }

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

.btn-gold { background: var(--gold); color: var(--bordeaux-dark); border: 2px solid var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }

/* ── CONTACT FORM ───────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: start;
}

.form-group { margin-bottom: 1.5rem; }

.form-group label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bordeaux);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: var(--white-warm);
  border: 1px solid rgba(123,29,40,0.25);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-body);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  border-radius: 0;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.form-group textarea { min-height: 150px; resize: vertical; }

.contact-info .card { margin-bottom: 1.5rem; }
.contact-info .card h4 { color: var(--gold); font-family: 'Nunito Sans', sans-serif; font-size: 0.76rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 0.5rem; }

/* ── PROSE ──────────────────────────────────── */

.prose h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.prose h3 { margin-top: 2rem; margin-bottom: 0.75rem; }
.prose p { margin-bottom: 1.3rem; }
.prose ul, .prose ol { padding-left: 1.75rem; margin-bottom: 1.3rem; }
.prose li { margin-bottom: 0.5rem; }

/* ── FOOTER ─────────────────────────────────── */

.site-footer {
  background: var(--bordeaux-dark);
  border-top: 2px solid var(--gold);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--gold);
  font-weight: 700;
  display: block;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
}

.footer-brand p {
  color: rgba(245,240,232,0.55);
  font-size: 0.88rem;
  margin-bottom: 0;
}

.footer-col h4 {
  color: var(--gold);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.65rem; }

.footer-col ul li a {
  color: rgba(245,240,232,0.6);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,168,76,0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(245,240,232,0.38);
  font-size: 0.78rem;
  margin: 0;
}

/* ── UTILITIES ──────────────────────────────── */

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }

/* ── RESPONSIVE ─────────────────────────────── */

@media (max-width: 900px) {
  .feature-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav-menu { display: none; }
  .hero { padding: 4rem 1.5rem 3.5rem; }
  .main-content { padding: 2.5rem 1.5rem; }
  .card { padding: 1.75rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .card-grid { grid-template-columns: 1fr; }
}
