/* ============================================
   MICHELLE DUXBURY — CALLIGRAPHY ATELIER · ANGERS
   Refined editorial · ivory + ink + burgundy
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&family=Inter:wght@400;500;600;700&family=Caveat:wght@400;500;600&display=swap');

:root {
  --ivory:      #f5efe2;
  --ivory-2:    #ede4d0;
  --ivory-3:    #e2d6ba;
  --paper:      #fbf7ec;
  --ink:        #1f1c18;
  --ink-2:      #2e2820;
  --ink-soft:   #5e574b;
  --ink-mute:   #948b7a;
  --burgundy:   #7a2e3a;
  --burgundy-d: #5a1e28;
  --burgundy-l: #a64853;
  --sage:       #5e6f50;
  --sage-d:     #3e4f33;
  --gold:       #b58a3a;
  --gold-d:     #8e6926;
  --line:       rgba(31, 28, 24, 0.12);
  --line-2:     rgba(31, 28, 24, 0.22);
  --shadow-sm:  0 2px 6px rgba(31, 28, 24, 0.05);
  --shadow:     0 14px 30px -10px rgba(31, 28, 24, 0.18);
  --shadow-lg:  0 28px 56px -16px rgba(31, 28, 24, 0.24);

  --font-display: 'EB Garamond', Garamond, serif;
  --font-sans:    'Inter', -apple-system, sans-serif;
  --font-script:  'Caveat', cursive;

  --container: 1200px;
  --gutter: clamp(1.2rem, 4vw, 2.2rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--burgundy); color: var(--ivory); }

/* TYPO */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.012em;
  color: var(--ink);
}

h1 { font-size: clamp(2.8rem, 7.5vw, 5.5rem); font-weight: 500; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 500; }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.85rem); font-weight: 500; }
h4 { font-size: 1.2rem; font-weight: 600; }

h1 em, h2 em, h3 em { font-style: italic; color: var(--burgundy); font-weight: 400; }

.script {
  font-family: var(--font-script);
  font-weight: 500;
  color: var(--burgundy);
  font-style: normal;
}

p { color: var(--ink-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--burgundy);
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--burgundy);
}

.eyebrow.sage { color: var(--sage-d); }
.eyebrow.sage::before { background: var(--sage-d); }
.eyebrow.ink { color: var(--ink); }
.eyebrow.ink::before { background: var(--ink); }
.eyebrow.gold { color: var(--gold-d); }
.eyebrow.gold::before { background: var(--gold-d); }

/* LAYOUT */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); position: relative; }
.container-narrow { max-width: 720px; margin: 0 auto; padding: 0 var(--gutter); position: relative; }
section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }

/* TOP STRIP */
.top-strip {
  background: var(--ink);
  color: var(--ivory);
  padding: 0.6rem 0;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.top-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-strip .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-right: 0.5rem;
}

@media (max-width: 720px) {
  .top-strip-inner > span:nth-child(2) { display: none; }
}

/* NAV */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 239, 226, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  color: var(--ink);
  line-height: 1;
}

.brand .name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-style: italic;
}

.brand .tagline {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--burgundy);
  font-weight: 600;
  margin-top: 0.15rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 500;
  position: relative;
  padding: 0.3rem 0;
  letter-spacing: 0.03em;
}

.nav-links a:hover { color: var(--burgundy); }
.nav-links a.active { color: var(--ink); font-weight: 600; }

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 1px;
  background: var(--burgundy);
}

.nav-cta {
  background: transparent;
  color: var(--ink);
  padding: 0.7rem 1.3rem;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1.5px solid var(--ink);
  transition: all 0.2s;
  letter-spacing: 0.05em;
}

.nav-cta:hover {
  background: var(--ink);
  color: var(--ivory);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line-2);
  color: var(--ink);
  padding: 0.4rem 0.7rem;
  font-size: 1.1rem;
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    padding: 1.5rem var(--gutter);
    gap: 1rem;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  font-size: 0.86rem;
  font-weight: 600;
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.25s;
  letter-spacing: 0.06em;
}

.btn-primary {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-burgundy {
  background: var(--burgundy);
  color: var(--ivory);
  border-color: var(--burgundy);
}
.btn-burgundy:hover { background: var(--ink); border-color: var(--ink); }

.btn-secondary:hover {
  background: var(--ink);
  color: var(--ivory);
}

.btn-arrow { transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* HERO */
.hero {
  padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(4rem, 8vw, 6rem);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
  font-size: 0.74rem;
  color: var(--ink-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-meta::before, .hero-meta::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--burgundy);
}

.hero h1 {
  margin-bottom: 2rem;
  letter-spacing: -0.025em;
}

.hero h1 .ornament {
  font-family: var(--font-script);
  font-weight: 500;
  color: var(--burgundy);
  font-style: normal;
}

.hero-lead {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.7vw, 1.4rem);
  color: var(--ink-2);
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.55;
  font-style: italic;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-byline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.hero-byline-item .label {
  font-size: 0.68rem;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.hero-byline-item .value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  font-style: italic;
  font-weight: 500;
  line-height: 1.3;
}

@media (max-width: 600px) { .hero-byline { grid-template-columns: 1fr; gap: 1rem; } }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-visual::before {
  content: '';
  position: absolute;
  inset: -1.5rem;
  border: 1px solid var(--burgundy);
  z-index: -1;
}

.hero-visual img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.92); }

.hero-stamp {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--ivory);
  border: 1.5px solid var(--ink);
  padding: 1rem 1.4rem;
  text-align: center;
  z-index: 2;
}

.hero-stamp .since {
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-soft);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.hero-stamp .year {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-style: italic;
  color: var(--burgundy);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.hero-stamp .place {
  font-family: var(--font-script);
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
}

/* DIVIDER ornament */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 0;
}

.divider .line {
  flex: 1;
  height: 1px;
  background: var(--line-2);
  max-width: 120px;
}

.divider .ornament {
  font-family: var(--font-script);
  color: var(--burgundy);
  font-size: 1.6rem;
  line-height: 1;
}

/* STATS — single row */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 2rem 0;
}

.stat {
  text-align: center;
  padding: 0.5rem 1rem;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  line-height: 1;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.stat-value em { font-style: italic; color: var(--burgundy); }

.stat-label {
  font-size: 0.7rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  line-height: 1.5;
}

@media (max-width: 800px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-bottom: 1px solid var(--line); padding: 1.2rem 1rem; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
}

/* SECTION HEADER */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header.center { justify-content: center; text-align: center; }
.section-header.center .section-header-text { max-width: 760px; }
.section-header-text { max-width: 720px; }
.section-header .eyebrow { margin-bottom: 1.2rem; }

.section-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border: 1.5px solid var(--ink);
  transition: all 0.25s;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-link:hover {
  background: var(--ink);
  color: var(--ivory);
}

/* 6 SPECIALTIES — asymmetric editorial grid */
.specialties {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.8rem;
}

.specialty {
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s;
}

.specialty:hover { transform: translateY(-4px); }

.specialty:nth-child(1) { grid-column: span 7; }
.specialty:nth-child(2) { grid-column: span 5; }
.specialty:nth-child(3) { grid-column: span 4; }
.specialty:nth-child(4) { grid-column: span 4; }
.specialty:nth-child(5) { grid-column: span 4; }
.specialty:nth-child(6) { grid-column: span 12; }

.specialty:nth-child(6) {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
}

.specialty-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
}

.specialty:nth-child(1) .specialty-image,
.specialty:nth-child(6) .specialty-image { aspect-ratio: 4/3; }
.specialty:nth-child(6) .specialty-image { margin-bottom: 0; }

.specialty-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
  transition: transform 0.6s ease;
}

.specialty:hover .specialty-image img { transform: scale(1.04); filter: saturate(1); }

.specialty-num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--ivory);
  border: 1px solid var(--ink);
  padding: 0.35rem 0.8rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.86rem;
  color: var(--ink);
  font-weight: 500;
  z-index: 2;
}

.specialty-body {
  display: flex;
  flex-direction: column;
}

.specialty-body .eyebrow {
  margin-bottom: 0.8rem;
  font-size: 0.66rem;
}

.specialty-body h3 {
  margin-bottom: 0.7rem;
  letter-spacing: -0.015em;
}

.specialty-body p {
  color: var(--ink-soft);
  font-size: 0.96rem;
  margin-bottom: 1.2rem;
  line-height: 1.65;
}

.specialty-meta {
  display: flex;
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--ink-soft);
  flex-wrap: wrap;
}

.specialty-meta strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.66rem;
  margin-bottom: 0.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .specialties { grid-template-columns: repeat(2, 1fr); }
  .specialty:nth-child(n) { grid-column: span 1; }
  .specialty:nth-child(6) { grid-column: span 2; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .specialties { grid-template-columns: 1fr; }
  .specialty:nth-child(n) { grid-column: span 1; }
  .specialty:nth-child(6) {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .specialty:nth-child(6) .specialty-image { margin-bottom: 0; }
}

/* PROCESS — vertical numbered timeline */
.process {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.process-item {
  padding: 2.2rem;
  border: 1px solid var(--line);
  position: relative;
  background: var(--paper);
}

.process-item:nth-child(1) { border-bottom: none; }
.process-item:nth-child(2) { border-left: none; border-bottom: none; }
.process-item:nth-child(3) { border-right: 1px solid var(--line); }
.process-item:nth-child(4) { border-left: none; }

.process-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--burgundy);
  margin-bottom: 1rem;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.process-item h4 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  font-family: var(--font-display);
  font-weight: 500;
}

.process-item p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  max-width: 460px;
  line-height: 1.65;
}

.process-item .duration {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.3rem 0.8rem;
  background: var(--ink);
  color: var(--ivory);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 720px) {
  .process { grid-template-columns: 1fr; }
  .process-item { border: 1px solid var(--line) !important; border-bottom: none !important; }
  .process-item:last-child { border-bottom: 1px solid var(--line) !important; }
}

/* PRICING TABLE - elegant */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.price {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s;
}

.price:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--ink); }

.price.featured {
  background: var(--ink);
  color: var(--ivory);
  border-color: var(--ink);
}

.price.featured h3, .price.featured .price-amount { color: var(--ivory); }
.price.featured .price-label { color: var(--gold); }
.price.featured li { color: rgba(245, 239, 226, 0.85); }
.price.featured li::before { color: var(--gold); }
.price.featured .price-currency { color: rgba(245, 239, 226, 0.6); }
.price.featured .price-tagline { color: rgba(245, 239, 226, 0.7); }
.price.featured .price-divider { background: rgba(245, 239, 226, 0.2); }

.price.featured::before {
  content: 'CHOIX FRÉQUENT';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--burgundy);
  color: var(--ivory);
  padding: 0.3rem 0.8rem;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.price-label {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--burgundy);
  margin-bottom: 0.6rem;
  line-height: 1;
}

.price h3 {
  font-size: 1.7rem;
  margin-bottom: 0.4rem;
}

.price-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.price-divider {
  width: 40px;
  height: 1px;
  background: var(--burgundy);
  margin: 1rem 0 1.5rem;
}

.price-amount-row {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 1;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.price-currency { color: var(--ink-soft); font-size: 0.92rem; }

.price ul {
  list-style: none;
  margin-bottom: 1.5rem;
  flex: 1;
}

.price li {
  padding: 0.55rem 0;
  font-size: 0.94rem;
  color: var(--ink-2);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.price li::before {
  content: '◆';
  color: var(--burgundy);
  font-size: 0.55rem;
  margin-top: 0.55rem;
  flex-shrink: 0;
}

.price .btn { width: 100%; justify-content: center; }

.price.featured .btn {
  background: var(--ivory);
  color: var(--ink);
  border-color: var(--ivory);
}

.price.featured .btn:hover {
  background: var(--burgundy);
  color: var(--ivory);
  border-color: var(--burgundy);
}

@media (max-width: 940px) { .pricing { grid-template-columns: 1fr; } }

/* MANIFESTO — pull quote with portrait */
.manifesto {
  background: var(--paper);
  padding: clamp(3rem, 6vw, 5rem);
  border: 1px solid var(--burgundy);
  position: relative;
}

.manifesto::before {
  content: '';
  position: absolute;
  inset: 0.5rem;
  border: 1px solid var(--line);
  pointer-events: none;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
  position: relative;
  z-index: 1;
}

.manifesto-portrait {
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--ink);
}

.manifesto-portrait img { width: 100%; height: 100%; object-fit: cover; }

.manifesto h2 em { color: var(--burgundy); font-style: italic; }

.manifesto-deck {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--ink-2);
  line-height: 1.5;
  font-weight: 400;
  margin: 1.5rem 0 2rem;
}

.manifesto-signature {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.manifesto-signature .name {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--burgundy);
  line-height: 1;
  font-weight: 500;
}

.manifesto-signature .title {
  font-size: 0.78rem;
  color: var(--ink-soft);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

@media (max-width: 800px) {
  .manifesto-grid { grid-template-columns: 1fr; }
  .manifesto-portrait { max-width: 220px; }
}

/* PRINCIPLES LIST — separate */
.principles {
  list-style: none;
  counter-reset: pr;
}

.principles li {
  counter-increment: pr;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.principles li:last-child { border-bottom: 1px solid var(--line); }

.principles li::before {
  content: counter(pr, decimal-leading-zero);
  font-family: var(--font-display);
  font-style: italic;
  color: var(--burgundy);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
}

.principles strong {
  color: var(--ink);
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.principles span {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* TESTIMONIALS */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}

.testimonial {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  position: relative;
}

.testimonial:hover { border-color: var(--burgundy); box-shadow: var(--shadow-sm); }

.testimonial-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 4rem;
  color: var(--burgundy);
  line-height: 0.5;
  margin-bottom: 1rem;
  font-weight: 400;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 1.5rem;
  font-weight: 400;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1.5px solid var(--burgundy);
}

.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }

.testimonial-info strong {
  display: block;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ink);
  font-family: var(--font-display);
}

.testimonial-info span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

@media (max-width: 940px) { .testimonials { grid-template-columns: 1fr; } }

/* CTA */
.cta-card {
  background: var(--burgundy-d);
  color: var(--ivory);
  padding: clamp(3rem, 6vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(245, 239, 226, 0.3);
  pointer-events: none;
}

.cta-card > * { position: relative; z-index: 1; }

.cta-card .script-large {
  font-family: var(--font-script);
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 0.8rem;
  line-height: 1;
}

.cta-card h2 { color: var(--ivory); margin-bottom: 1.2rem; }
.cta-card h2 em { color: var(--gold); }

.cta-card p {
  color: rgba(245, 239, 226, 0.85);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  font-family: var(--font-display);
  font-style: italic;
}

.cta-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  gap: 0.4rem;
  background: var(--ivory);
  padding: 0.4rem;
  border: 1px solid var(--ivory);
}

.cta-form input {
  flex: 1;
  padding: 0.85rem 1.2rem;
  font-family: inherit;
  font-size: 0.95rem;
  border: none;
  background: transparent;
  outline: none;
  color: var(--ink);
}

.cta-form input::placeholder { color: var(--ink-mute); }

.cta-form button {
  background: var(--ink);
  color: var(--ivory);
  border: none;
  padding: 0.85rem 1.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cta-form button:hover { background: var(--burgundy); }

.cta-note {
  font-size: 0.78rem;
  color: rgba(245, 239, 226, 0.75);
  margin-top: 1.5rem;
  letter-spacing: 0.05em;
}

.cta-note a { color: var(--gold); border-bottom: 1px solid var(--gold); }

@media (max-width: 600px) {
  .cta-form { flex-direction: column; padding: 1rem; gap: 0.6rem; }
}

/* FOOTER */
footer {
  background: var(--ivory-3);
  border-top: 1px solid var(--ink);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .brand .name { font-size: 1.8rem; }

.footer-brand p {
  color: var(--ink-soft);
  margin-top: 1.2rem;
  max-width: 380px;
  font-size: 0.94rem;
}

.footer-address {
  margin-top: 1.5rem;
  font-size: 0.92rem;
  color: var(--ink-2);
  line-height: 1.7;
}

.footer-address strong {
  color: var(--burgundy);
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.footer-phone {
  margin-top: 0.8rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--burgundy);
  font-weight: 500;
}

footer h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ink);
  margin-bottom: 1.3rem;
  font-family: var(--font-sans);
}

footer ul { list-style: none; }
footer li { margin-bottom: 0.6rem; }
footer a { color: var(--ink-soft); font-size: 0.92rem; }
footer a:hover { color: var(--burgundy); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
}

@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* INTERIOR */
.page-header {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2.5rem, 5vw, 3rem);
  border-bottom: 1px solid var(--line);
  background: var(--ivory-2);
}

.breadcrumb {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
  font-size: 0.84rem;
  color: var(--ink-soft);
  flex-wrap: wrap;
  letter-spacing: 0.04em;
}

.breadcrumb a:hover { color: var(--burgundy); }
.breadcrumb .sep { color: var(--ink-mute); }

.page-header .eyebrow { margin-bottom: 1.2rem; }

.page-header h1 {
  max-width: 940px;
  margin-bottom: 1.2rem;
}

.page-header .lede {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink-2);
  max-width: 720px;
  font-weight: 400;
  line-height: 1.5;
}

/* PROSE */
.prose {
  max-width: 740px;
  font-size: 1.05rem;
  line-height: 1.78;
  color: var(--ink-2);
  font-family: var(--font-display);
}

.prose h2 {
  font-size: 2rem;
  margin-top: 3rem;
  margin-bottom: 1.2rem;
  color: var(--ink);
}

.prose h3 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: var(--ink);
}

.prose p, .prose ul, .prose ol { margin-bottom: 1.2rem; }
.prose ul, .prose ol { padding-left: 1.5rem; }
.prose li { margin-bottom: 0.5rem; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose em { color: var(--burgundy); font-style: italic; }

.prose a {
  color: var(--burgundy);
  border-bottom: 1px solid var(--burgundy);
}
.prose a:hover { color: var(--ink); border-color: var(--ink); }

.prose blockquote {
  border-left: 2px solid var(--burgundy);
  background: var(--paper);
  padding: 1.6rem 1.9rem;
  margin: 2rem 0;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.45;
  font-weight: 400;
}

.prose blockquote::before {
  content: '"';
  font-family: var(--font-display);
  font-style: italic;
  color: var(--burgundy);
  font-size: 3rem;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 0.3rem;
}

.prose .info-box {
  background: var(--paper);
  border: 1px solid var(--burgundy);
  padding: 1.4rem 1.7rem;
  margin: 1.8rem 0;
  font-size: 1rem;
  font-family: var(--font-sans);
}

.prose .info-box strong { color: var(--burgundy); }

/* SPECIALTY DETAIL */
.specialty-detail {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 2.2rem;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.5rem;
  align-items: start;
  position: relative;
}

.specialty-detail::before {
  content: '';
  position: absolute;
  inset: 0.5rem;
  border: 1px solid var(--line);
  pointer-events: none;
}

.specialty-detail-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.specialty-detail-image img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9); }

.specialty-detail-num {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--burgundy);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.specialty-detail h3 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

.specialty-detail .meta-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 1.2rem 0;
  font-size: 0.84rem;
  color: var(--ink-soft);
  font-family: var(--font-sans);
}

.specialty-detail .meta-row strong {
  display: block;
  color: var(--ink);
  font-size: 0.7rem;
  margin-bottom: 0.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 780px) {
  .specialty-detail { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.5rem; }
  .specialty-detail-image { max-width: 320px; }
  .specialty-detail .meta-row { grid-template-columns: 1fr; }
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.contact-block {
  background: var(--paper);
  padding: 1.4rem 1.6rem;
  margin-bottom: 1rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--burgundy);
}

.contact-block .eyebrow {
  margin-bottom: 0.6rem;
  font-size: 0.66rem;
}

.contact-block .value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.5;
  font-weight: 500;
}

form.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.field label {
  display: block;
  font-size: 0.78rem;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.95rem 1.1rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--line-2);
  background: var(--paper);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}

.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--burgundy); }
.field textarea { resize: vertical; min-height: 140px; }

.field-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.field-checkbox input { width: auto; margin-top: 0.3rem; }

@media (max-width: 940px) { .contact-grid { grid-template-columns: 1fr; } }

/* COOKIE */
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 460px;
  background: var(--paper);
  color: var(--ink);
  padding: 1.5rem;
  border: 1px solid var(--burgundy);
  z-index: 1000;
  display: none;
  box-shadow: var(--shadow-lg);
}

.cookie-banner.show { display: block; }

.cookie-banner h4 { color: var(--ink); font-size: 1.2rem; margin-bottom: 0.6rem; font-family: var(--font-display); }
.cookie-banner p { font-size: 0.9rem; margin-bottom: 1.2rem; color: var(--ink-2); }
.cookie-banner a { color: var(--burgundy); border-bottom: 1px solid var(--burgundy); }

.cookie-banner .actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }

.cookie-banner button {
  padding: 0.6rem 1.2rem;
  font-size: 0.74rem;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--ink);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s;
}

.cookie-banner .accept { background: var(--ink); color: var(--ivory); border-color: var(--ink); }
.cookie-banner .accept:hover { background: var(--burgundy); border-color: var(--burgundy); }
.cookie-banner .decline:hover { background: var(--ink); color: var(--ivory); }

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01s !important; transition-duration: 0.01s !important; }
}

@media print {
  .nav, footer, .cookie-banner, .top-strip { display: none; }
  body { background: white; color: black; }
}
