:root {
  --burgundy: #570216;
  --burgundy-deep: #3d010f;
  --burgundy-light: #7a0a23;
  --gold: #eabe75;
  --gold-soft: #f0d09b;
  --gold-deep: #c89a4f;
  --charcoal: #524e4e;
  --charcoal-light: #6e6868;
  --white: #ffffff;
  --cream: #faf5ef;
  --cream-warm: #f4ebde;
  --blush: #f5e1dc;
  --blush-deep: #e8c7be;
  --champagne-light: #f7e8c8;
  --ink: #2a2424;
  --muted: #8a8181;
  --border: #e4dcd0;
}

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

html, body {
  background: var(--white);
  color: var(--ink);
  font-family: 'Lato', 'Inter', -apple-system, sans-serif;
  line-height: 1.8;
  font-weight: 400;
  scroll-behavior: smooth;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Cormorant Garamond', serif;
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 1.12;
  color: var(--ink);
}

h1 { font-size: clamp(3rem, 6.5vw, 5.5rem); font-weight: 400; }
h2 { font-size: clamp(2.25rem, 4.5vw, 3.5rem); margin-bottom: 1.5rem; font-weight: 400; }
h3 { font-size: 1.65rem; margin-bottom: 0.75rem; color: var(--burgundy); }
h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 500;
}

em { font-style: italic; color: var(--burgundy); font-family: 'Playfair Display', serif; }

p { color: var(--charcoal); font-size: 1.05rem; }

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

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

/* Eyebrow utility */
.eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 1rem;
}
.eyebrow.light { color: var(--gold-soft); }

/* Hand-written accent */
.script {
  font-family: 'Dancing Script', cursive;
  font-weight: 500;
  color: var(--gold-deep);
  font-size: 1.9rem;
  letter-spacing: 0;
  line-height: 1.2;
}

/* Top bar */
.topbar {
  background: var(--burgundy-deep);
  color: var(--cream);
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-align: center;
  padding: 0.6rem 1rem;
  text-transform: uppercase;
}
.topbar a { color: var(--gold-soft); }

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo img { height: 84px; width: auto; }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--charcoal);
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  font-weight: 500;
  text-transform: uppercase;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--burgundy);
}
.nav-cta {
  background: var(--burgundy);
  color: var(--white) !important;
  padding: 0.85rem 1.5rem;
  font-size: 0.7rem !important;
  letter-spacing: 0.28em !important;
  transition: background 0.3s;
}
.nav-cta:hover { background: var(--gold-deep) !important; color: var(--white) !important; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--burgundy);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  align-items: stretch;
  background: var(--white);
}
.hero-text {
  padding: 5rem 5rem 5rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.hero-text::before {
  content: '';
  position: absolute;
  top: 5rem;
  left: 6rem;
  width: 80px;
  height: 2px;
  background: var(--gold);
}
.hero-text .eyebrow { margin-top: 1rem; }
.hero-text h1 {
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.hero-text h1 em {
  display: block;
  font-style: italic;
  color: var(--burgundy);
  margin-top: 0.5rem;
}
.hero-text .sub {
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero-text .area {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: var(--gold-deep);
  margin-bottom: 2rem;
  text-transform: uppercase;
}
.hero-image {
  background: url('images/mackenzie-field.jpg') center/cover;
  position: relative;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1.1rem 2.25rem;
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  font-weight: 500;
  text-transform: uppercase;
  border: 1px solid var(--burgundy);
  background: var(--burgundy);
  color: var(--white);
  cursor: pointer;
  transition: all 0.35s ease;
  text-decoration: none;
}
.btn:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--burgundy);
}
.btn-ghost:hover {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}
.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--burgundy-deep);
}
.btn-gold:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: var(--white);
}
.btn + .btn { margin-left: 0.85rem; }

/* Sections */
section { padding: 7rem 2.5rem; position: relative; }
section.tight { padding: 5rem 2.5rem; }
.container { max-width: 1280px; margin: 0 auto; }
.container-narrow { max-width: 880px; margin: 0 auto; }

/* Section title */
.section-title {
  margin-bottom: 4rem;
  text-align: center;
}
.section-title.left { text-align: left; max-width: 720px; margin-left: 0; }
.section-title.split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: end;
  text-align: left;
}
.section-title h2 { margin: 0 0 1rem; }
.section-title h2 em { color: var(--burgundy); }
.section-title p { color: var(--charcoal); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }
.section-title.split p { max-width: none; margin: 0; }

/* Two-column band (text + image) */
.band {
  background: var(--cream);
}
.band-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}
.band-grid.reverse { grid-template-columns: 1.1fr 1fr; }
.band-grid.reverse > div { order: 2; }
.band-grid.reverse > img { order: 1; }
.band-grid img {
  width: 100%;
  height: auto;
  box-shadow: 30px 30px 0 var(--gold);
}
.band-grid .content p { margin-bottom: 1.25rem; }
.band-grid .content .pullquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.6rem;
  color: var(--burgundy);
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 2rem 0;
  line-height: 1.4;
}

/* Why-not list */
.problems {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.problem {
  text-align: center;
  padding: 1rem;
}
.problem .num {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 3rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.problem h4 {
  margin-bottom: 0.75rem;
  color: var(--burgundy);
}
.problem p {
  font-size: 0.95rem;
  color: var(--charcoal);
}

/* Difference grid */
.difference {
  background: var(--burgundy-deep);
  color: var(--cream);
}
.difference h2, .difference .section-title p { color: var(--cream); }
.difference h2 em { color: var(--gold-soft); }
.difference .eyebrow { color: var(--gold-soft); }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.diff-card {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid rgba(234,190,117,0.2);
  background: rgba(255,255,255,0.02);
  transition: border-color 0.3s, transform 0.3s;
}
.diff-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.diff-card .sym {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}
.diff-card h4 {
  color: var(--gold-soft);
  margin-bottom: 0.5rem;
}
.diff-card p {
  color: var(--blush);
  opacity: 0.85;
  font-size: 0.9rem;
}

/* Process steps */
.process-section { background: var(--cream-warm); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
  position: relative;
}
.step {
  text-align: center;
  position: relative;
}
.step .step-num {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 2px solid var(--gold);
}
.step h4 {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.step p { color: var(--charcoal); font-size: 0.95rem; }

/* Service cards */
.services-section { background: var(--white); }
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.service {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.service-image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}
.service:hover .service-image img { transform: scale(1.05); }
.service-body {
  padding: 2.5rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--burgundy);
  margin-bottom: 0.5rem;
  font-style: italic;
}
.service-body .tag {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: var(--gold-deep);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.service-body p { color: var(--charcoal); margin-bottom: 1.5rem; flex: 1; }
.service-body .price-note {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--burgundy);
  margin-bottom: 1.25rem;
  font-size: 1rem;
}
.service-body .btn { align-self: flex-start; }

/* Testimonial / quote feature */
.feature-quote {
  background: var(--burgundy);
  color: var(--cream);
  text-align: center;
  padding: 7rem 2.5rem;
  border-top: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}
.feature-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 400;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.35;
  color: var(--white);
}
.feature-quote cite {
  display: block;
  margin-top: 2rem;
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  color: var(--gold-soft);
  font-style: normal;
  text-transform: uppercase;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  position: relative;
}
.testimonial::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
}
.testimonial blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--charcoal);
  margin: 2rem 0 1.5rem;
  line-height: 1.55;
}
.testimonial .who {
  font-family: 'Cinzel', serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--burgundy);
  text-transform: uppercase;
}
.testimonial .who span {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0;
  color: var(--muted);
  text-transform: none;
  margin-top: 0.25rem;
  font-style: italic;
}
.testimonial .result {
  font-family: 'Dancing Script', cursive;
  color: var(--gold-deep);
  font-size: 1.4rem;
  margin-top: 0.75rem;
}

/* Forms */
.form-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  padding: 3.5rem;
  border: 1px solid var(--border);
  border-top: 4px solid var(--burgundy);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.field { margin-bottom: 1.25rem; }
.field label {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--burgundy);
  font-weight: 500;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 1rem;
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s, background 0.3s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.field textarea { min-height: 150px; resize: vertical; }

.form-status {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--cream-warm);
  border-left: 3px solid var(--gold);
  color: var(--burgundy);
  display: none;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
}
.form-status.show { display: block; }

/* Packages */
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.package {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 3rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.package.featured {
  background: var(--burgundy-deep);
  color: var(--cream);
  border-color: var(--gold);
}
.package.featured h3,
.package.featured .price { color: var(--gold-soft); }
.package.featured ul li { color: var(--blush); border-color: rgba(234,190,117,0.15); }
.package.featured .tag {
  background: var(--gold);
  color: var(--burgundy-deep);
  padding: 0.3rem 0.8rem;
}
.package .tag {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  color: var(--gold-deep);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.package h3 {
  margin-bottom: 0.5rem;
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
}
.package .desc {
  color: var(--charcoal);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.package.featured .desc { color: var(--blush); opacity: 0.85; }
.package .price {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 400;
  margin: 0.5rem 0 0.25rem;
  color: var(--ink);
}
.package.featured .price { color: var(--cream); }
.package .price span {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.package .per {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--gold-deep);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.package.featured .per { color: var(--gold-soft); }
.package ul {
  list-style: none;
  margin: 1.5rem 0;
  flex: 1;
}
.package ul li {
  padding: 0.7rem 0 0.7rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  position: relative;
  color: var(--charcoal);
}
.package ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
  top: 0.95rem;
}
.package ul li:last-child { border: none; }
.package.featured ul li::before { color: var(--gold-soft); }

/* PT price grid */
.session-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.session-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2rem 1.25rem;
  text-align: center;
  transition: border-color 0.3s;
}
.session-card:hover { border-color: var(--gold); }
.session-card .label {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--burgundy);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.session-card .divider {
  width: 30px;
  height: 1px;
  background: var(--gold);
  margin: 0.5rem auto;
}
.session-card .amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--ink);
  margin: 0.5rem 0;
}
.session-card .note {
  font-size: 0.85rem;
  color: var(--muted);
}

/* Includes block */
.includes-block {
  background: var(--cream);
  padding: 2.5rem;
  margin-top: 2rem;
  text-align: center;
  border-left: 3px solid var(--gold);
}
.includes-block p {
  font-style: italic;
  color: var(--charcoal);
  margin: 0;
}

/* Page header */
.page-header {
  padding: 6rem 2.5rem 4rem;
  background: var(--burgundy-deep);
  color: var(--cream);
  border-bottom: 2px solid var(--gold);
  text-align: center;
}
.page-header .eyebrow { color: var(--gold-soft); }
.page-header h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--white);
  font-family: 'Playfair Display', serif;
}
.page-header h1 em { font-style: italic; color: var(--gold-soft); }
.page-header .lede {
  color: var(--blush);
  max-width: 680px;
  margin: 1.5rem auto 0;
  font-size: 1.1rem;
}
.page-header .script {
  color: var(--gold-soft);
  margin: 0.5rem 0 0;
}

/* Before/After */
.transformation {
  background: var(--cream);
}
.before-after {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: stretch;
  max-width: 1000px;
  margin: 0 auto;
}
.ba-col {
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid var(--border);
}
.ba-col.after { border-color: var(--gold); border-top: 4px solid var(--gold); }
.ba-col.before { border-top: 4px solid var(--charcoal-light); }
.ba-col h4 { margin-bottom: 1.5rem; }
.ba-col ul { list-style: none; }
.ba-col ul li {
  padding: 0.5rem 0;
  font-size: 1.1rem;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--charcoal);
}
.ba-col.after ul li { color: var(--burgundy); }
.ba-arrow {
  display: flex;
  align-items: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  padding: 0 1rem;
}

/* Contact layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 {
  margin-top: 2rem;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--burgundy);
}
.contact-info h3:first-child { margin-top: 0; }
.contact-info p { color: var(--charcoal); margin-bottom: 0.4rem; font-size: 1.05rem; }
.contact-info p a { color: var(--burgundy); font-weight: 500; }
.contact-info .note { font-style: italic; font-size: 0.9rem; color: var(--muted); }

.creds {
  list-style: none;
  margin-top: 1.5rem;
}
.creds li {
  padding: 0.55rem 0 0.55rem 2rem;
  position: relative;
  color: var(--charcoal);
}
.creds li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0.85rem;
  color: var(--gold);
  font-size: 0.8rem;
}

/* Calendly placeholder */
.calendly-wrap {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 3rem;
  text-align: center;
}
.calendly-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  margin-bottom: 1rem;
}
.calendly-wrap p { color: var(--charcoal); margin-bottom: 2rem; }
.calendly-wrap .placeholder {
  border: 2px dashed var(--gold);
  padding: 3rem;
  color: var(--muted);
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  margin: 1.5rem 0;
}

/* Bottom CTA banner */
.cta-banner {
  background: var(--burgundy);
  color: var(--cream);
  text-align: center;
  padding: 6rem 2.5rem;
  border-top: 1px solid var(--gold);
}
.cta-banner .eyebrow { color: var(--gold-soft); }
.cta-banner h2 { color: var(--white); margin-bottom: 1.5rem; }
.cta-banner h2 em { color: var(--gold-soft); }
.cta-banner p {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  color: var(--blush);
}
.cta-banner .btn { background: var(--gold); border-color: var(--gold); color: var(--burgundy-deep); }
.cta-banner .btn:hover { background: var(--white); border-color: var(--white); color: var(--burgundy-deep); }

/* Footer */
footer {
  background: var(--burgundy-deep);
  color: var(--cream);
  padding: 5rem 2.5rem 2rem;
  border-top: 2px solid var(--gold);
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand h3 {
  color: var(--gold-soft);
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.footer-brand .script {
  font-family: 'Dancing Script', cursive;
  color: var(--gold-soft);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
}
.footer-brand p {
  color: var(--blush);
  opacity: 0.9;
  max-width: 340px;
  font-size: 0.95rem;
}
.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-weight: 500;
  text-transform: uppercase;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col a { color: var(--blush); font-size: 0.95rem; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-col p { color: var(--blush); font-size: 0.95rem; margin-bottom: 0.5rem; }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(234,190,117,0.25);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  color: var(--blush);
  opacity: 0.8;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image { min-height: 55vh; order: -1; }
  .hero-text { padding: 3rem 1.5rem; }
  .hero-text::before { left: 1.5rem; top: 3rem; }
  .band-grid, .band-grid.reverse { grid-template-columns: 1fr; gap: 3rem; }
  .band-grid.reverse > div { order: 0; }
  .band-grid.reverse > img { order: 0; }
  .band-grid img { box-shadow: 15px 15px 0 var(--gold); }
  .section-title.split { grid-template-columns: 1fr; gap: 1rem; }
  .problems { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .services { grid-template-columns: 1fr; }
  .packages { grid-template-columns: 1fr; }
  .session-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 2rem 1.5rem; }
  .before-after { grid-template-columns: 1fr; }
  .ba-arrow { justify-content: center; padding: 0; transform: rotate(90deg); }
  section { padding: 4rem 1.5rem; }
}

@media (max-width: 768px) {
  .nav { padding: 1rem 1.5rem; flex-wrap: wrap; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    padding: 1rem 0;
    gap: 1.25rem;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; order: 3; }
  .nav-cta { order: 2; }
  .btn + .btn { margin-left: 0; margin-top: 0.75rem; display: inline-flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .problems, .diff-grid, .steps { grid-template-columns: 1fr; }
}
