:root {
  --burgundy: #722F37;
  --burgundy-dark: #5A2329;
  --blush: #F5E6E8;
  --blush-dark: #EAD3D7;
  --rose-gold: #B76E79;
  --rose-gold-dark: #9A5963;
  --cream: #FBF5F6;
  --ink: #2E1A1D;
  --muted: #6B5559;
  --white: #FFFFFF;
  --shadow-sm: 0 4px 14px rgba(114, 47, 55, 0.10);
  --shadow-md: 0 12px 32px rgba(114, 47, 55, 0.18);
  --shadow-lg: 0 24px 60px rgba(114, 47, 55, 0.22);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --nav-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  color: var(--burgundy);
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { margin: 0 0 1.1rem; }
a { color: var(--rose-gold-dark); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--burgundy); }
img { max-width: 100%; display: block; }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(114, 47, 55, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 18px rgba(0,0,0,0.18);
}
.header-inner {
  max-width: 1280px;
  height: 100%;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.logo span { color: var(--rose-gold); display: block; font-size: 0.7rem; font-weight: 400; letter-spacing: 0.3em; text-transform: uppercase; margin-top: 2px; }

.nav-toggle {
  position: relative;
  width: 44px; height: 44px;
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 1200;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s var(--ease), background .25s var(--ease);
}
.nav-toggle span::before { position: absolute; transform: translateY(-8px); }
.nav-toggle span::after  { position: absolute; transform: translateY(8px); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--burgundy);
  color: var(--white);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s;
}
.nav-overlay.open,
.nav-toggle[aria-expanded="true"] ~ .nav-overlay {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-overlay a {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 600;
  color: var(--blush);
  position: relative;
  padding: 0.3em 0.2em;
  transition: color .3s var(--ease);
}
.nav-overlay a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--rose-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-overlay a:hover { color: var(--white); }
.nav-overlay a:hover::after { transform: scaleX(1); }
.nav-overlay a.active,
.nav-overlay a[aria-current="page"] {
  color: var(--rose-gold);
}
.nav-overlay a.active::after,
.nav-overlay a[aria-current="page"]::after { transform: scaleX(1); }

/* Hamburger -> X when open */
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(0) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(0) rotate(-45deg); }

/* ---------- Layout helpers ---------- */
main { display: block; }
section { padding: clamp(3.5rem, 8vw, 6rem) clamp(1.2rem, 4vw, 2.5rem); }
.container { max-width: 1180px; margin: 0 auto; }
.container-wide { max-width: 1340px; margin: 0 auto; }
.section-alt { background: var(--blush); }
.section-cream { background: var(--cream); }
.section-dark { background: var(--burgundy); color: var(--blush); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--white); }

.eyebrow {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 1rem;
  display: inline-block;
}

/* ---------- Hero (split 50/50) ---------- */
.hero {
  margin-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
  background: var(--burgundy);
  color: var(--white);
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 6vw, 5rem);
}
.hero-left h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero-left p { color: var(--blush); font-size: 1.1rem; max-width: 32ch; margin-bottom: 2rem; }
.hero-right {
  position: relative;
  overflow: hidden;
  min-height: 320px;
}
.hero-right img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(114,47,55,0.35) 0%, rgba(114,47,55,0) 40%);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 0.95em 1.7em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  will-change: transform;
}
.btn::after {
  content: "→";
  font-family: var(--font-body);
  transition: transform .3s var(--ease);
}
.btn:hover { transform: translateY(-2px) scale(1.02); box-shadow: var(--shadow-md); }
.btn:hover::after { transform: translateX(4px); }
.btn:active { transform: translateY(0) scale(0.99); }

.btn-primary { background: var(--rose-gold); color: var(--white); }
.btn-primary:hover { background: var(--rose-gold-dark); color: var(--white); }
.btn-light { background: var(--white); color: var(--burgundy); }
.btn-light:hover { background: var(--blush); color: var(--burgundy); }
.btn-outline { background: transparent; border-color: var(--rose-gold); color: var(--rose-gold); }
.btn-outline:hover { background: var(--rose-gold); color: var(--white); }
.btn-ghost-light { background: transparent; border-color: rgba(255,255,255,0.6); color: var(--white); }
.btn-ghost-light:hover { background: var(--white); color: var(--burgundy); }

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.2rem, 3vw, 2rem);
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card-media { aspect-ratio: 4/3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: clamp(1.4rem, 3vw, 2rem); }
.card-body h3 { margin-bottom: 0.5rem; }
.card-body p { color: var(--muted); margin-bottom: 1rem; }

/* ---------- Feature / split content ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.split-img img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }
.split-text p { color: var(--muted); }

.feature-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1.2rem, 3vw, 2.2rem);
  margin-top: 2.5rem;
}
.feature {
  text-align: left;
  padding: 1.6rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--rose-gold);
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.feature .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--blush);
  color: var(--burgundy);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.feature h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.feature p { font-size: 0.95rem; color: var(--muted); margin: 0; }

/* ---------- Images / media ---------- */
.rounded { border-radius: var(--radius-md); }
.img-cover { width: 100%; height: 100%; object-fit: cover; }
.media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.media-frame img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }

/* ---------- Contact / Address block ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-block {
  background: var(--white);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--rose-gold);
}
.contact-block h2 { margin-bottom: 1.2rem; }
address.nap {
  font-style: normal;
  font-size: 1.05rem;
  line-height: 2;
  color: var(--ink);
}
address.nap strong { color: var(--burgundy); font-family: var(--font-heading); font-weight: 600; }
address.nap a { color: var(--rose-gold-dark); }
.contact-list { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.contact-list li { margin-bottom: 0.8rem; display: flex; gap: 0.7rem; align-items: baseline; }
.contact-list .label { font-weight: 600; color: var(--burgundy); min-width: 90px; }

.form-field { margin-bottom: 1.2rem; }
.form-field label { display: block; font-weight: 600; color: var(--burg