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

:root {
  --burgundy: #722F37;
  --burgundy-dark: #5A242B;
  --blush: #F5E6E8;
  --blush-deep: #EAD0D4;
  --rose-gold: #B76E79;
  --rose-gold-light: #D49CA3;
  --cream: #FDF8F9;
  --white: #FFFFFF;
  --text-dark: #3A1F23;
  --text-muted: #8A5C62;
  --shadow-soft: 0 4px 20px rgba(114, 47, 55, 0.08);
  --shadow-hover: 0 18px 50px rgba(114, 47, 55, 0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.4s var(--ease);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.15;
  color: var(--burgundy);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: 1.6rem; margin-bottom: 0.6rem; }
p { margin-bottom: 1rem; color: var(--text-muted); }

a { color: var(--rose-gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--burgundy); }

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

section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }

.container { width: min(1200px, 90%); margin: 0 auto; }

/* ============ HEADER + NAV ============ */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(114, 47, 55, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background var(--transition);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 0.02em;
  display: flex;
  align-items: baseline;
  gap: 0.4em;
}
.logo .accent { color: var(--rose-gold-light); font-size: 0.7em; }

.nav-toggle {
  position: relative;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  cursor: pointer;
  z-index: 200;
  transition: transform var(--transition);
}
.nav-toggle:hover { transform: scale(1.08); border-color: var(--rose-gold-light); }

.nav-toggle .bar,
.nav-toggle .bar::before,
.nav-toggle .bar::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 18px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle .bar::before { transform: translate(-50%, -7px); }
.nav-toggle .bar::after  { transform: translate(-50%, 7px); }

.nav-toggle.is-active .bar { background: transparent; }
.nav-toggle.is-active .bar::before { transform: translate(-50%, 0) rotate(45deg); background: var(--rose-gold-light); }
.nav-toggle.is-active .bar::after  { transform: translate(-50%, 0) rotate(-45deg); background: var(--rose-gold-light); }

.fullscreen-nav {
  position: fixed;
  inset: 0;
  background: var(--burgundy);
  background: linear-gradient(160deg, var(--burgundy) 0%, var(--burgundy-dark) 100%);
  z-index: 150;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), visibility 0.45s;
}
.fullscreen-nav.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fullscreen-nav a {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--blush);
  position: relative;
  padding: 0.4rem 1rem;
  transition: color var(--transition), transform var(--transition);
}
.fullscreen-nav a::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0.3rem;
  width: 0; height: 2px;
  background: var(--rose-gold-light);
  transition: width 0.35s var(--ease), left 0.35s var(--ease);
}
.fullscreen-nav a:hover { color: var(--white); transform: translateY(-3px); }
.fullscreen-nav a:hover::after { width: 60%; left: 20%; }

.fullscreen-nav a.active,
.fullscreen-nav a[aria-current="page"] {
  color: var(--white);
}
.fullscreen-nav a.active::after,
.fullscreen-nav a[aria-current="page"]::after {
  width: 60%; left: 20%;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--burgundy);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(58, 31, 35, 0.55), rgba(90, 36, 43, 0.75));
  z-index: 1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: saturate(1.05);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1.5rem;
  animation: heroIn 1.2s var(--ease) both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.2rem;
}
.hero p {
  color: var(--blush);
  font-size: 1.2rem;
  margin-bottom: 2.2rem;
  max-width: 600px;
  margin-left: auto; margin-right: auto;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.95em 2.2em;
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}
.btn::after {
  content: '→';
  font-family: 'Jost', sans-serif;
  transition: transform var(--transition);
}
.btn:hover::after { transform: translateX(6px); }

.btn-primary {
  background: var(--rose-gold);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(183, 110, 121, 0.35);
}
.btn-primary:hover {
  background: var(--white);
  color: var(--burgundy);
  transform: scale(1.04);
  box-shadow: 0 14px 40px rgba(255, 255, 255, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--rose-gold);
}
.btn-outline:hover {
  background: var(--rose-gold);
  color: var(--white);
  transform: scale(1.04);
  box-shadow: 0 12px 30px rgba(183, 110, 121, 0.3);
}

.btn-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-light:hover {
  background: var(--white);
  color: var(--burgundy);
  border-color: var(--white);
  transform: scale(1.04);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* ============ WAVE DIVIDERS ============ */
.wave-divider {
  display: block;
  line-height: 0;
  position: relative;
  z-index: 2;
}
.wave-divider svg { width: 100%; height: 80px; display: block; }
.wave-divider.flip svg { transform: rotate(180deg); }
.section-burgundy { background: var(--burgundy); color: var(--blush); }
.section-burgundy h2, .section-burgundy h3 { color: var(--white); }
.section-burgundy p { color: var(--blush); }
.section-blush { background: var(--blush); }
.section-cream { background: var(--cream); }

/* ============ CONTENT SECTIONS ============ */
.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-head .eyebrow {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-bottom: 1rem;
  position: relative;
  padding: 0 2rem;
}
.section-head .eyebrow::before,
.section-head .eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px; height: 1px;
  background: var(--rose-gold);
}
.section-head .eyebrow::before { right: 100%; }
.section-head .eyebrow::after  { left: 100%; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}
.split.reverse > :first-child { order: 2; }
.split h2 { margin-bottom: 1.2rem; }

/* ============ CARDS ============ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.4rem 2rem;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(183, 110, 121, 0.08);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--rose-gold), var(--rose-gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}
.card:hover::before { transform: scaleX(1); }
.card .card-icon {
  width: 64px; height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blush);
  margin-bottom: 1.4rem;
  font-size: 1.6rem;
  color: var(--rose-gold);
}
.card h3 { color: var(--burgundy); }
.card p { margin-bottom: 1.2rem; }
.card .btn-link {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}
.card .btn-link::after { content: '→'; transition: transform var(--transition); }
.card .btn-link:hover::after { transform: translateX(5px); }

.card-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card-image img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.6s var(--ease); }
.card-image:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.card-image:hover img { transform: scale(1.08); }

/* ============ CONTACT / NAP ============ */
.contact-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  box-shadow: var(--shadow-soft);
  max-width: 720px;
  margin: 0 auto;
  border-top: 5px solid var(--rose-gold);
}
.contact-block address {
  font-style: normal;
  line-height: