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

:root {
  --rose: #C2546A;
  --rose-light: #F7E8EC;
  --rose-mid: #E8929F;
  --rose-dark: #8B3347;
  --champagne: #C9A87C;
  --champagne-light: #F5EDE0;
  --cream: #FAF7F4;
  --cream-dark: #F0EBE5;
  --noir: #0D0808;
  --noir-mid: #1C1212;
  --text: #1A0F0F;
  --text-muted: #7A6565;
  --text-light: #A89090;
  --border: rgba(194,84,106,0.12);
  --border-mid: rgba(194,84,106,0.22);
  --white: #ffffff;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --r: 4px;
  --r-lg: 14px;
  --r-xl: 24px;
  --shadow-sm: 0 2px 12px rgba(13,8,8,0.06);
  --shadow: 0 4px 32px rgba(13,8,8,0.10);
  --shadow-lg: 0 12px 60px rgba(13,8,8,0.16);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --t: 0.28s;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); background: var(--cream); color: var(--text); line-height: 1.7; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--sans); }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal-right.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── TYPOGRAPHY ── */
.section-label {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--rose);
  flex-shrink: 0;
}
.section-label.light { color: rgba(201,168,124,0.9); }
.section-label.light::before { background: rgba(201,168,124,0.6); }

.h-serif {
  font-family: var(--serif);
  font-weight: 500;
  font-style: italic;
  line-height: 1.1;
  color: var(--noir);
}
.h-serif.light { color: var(--white); }

/* ── LAYOUT ── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 40px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border: none;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--t) var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--t);
}
.btn:hover::after { opacity: 1; }
.btn-primary { background: var(--rose); color: var(--white); }
.btn-primary:hover { background: var(--rose-dark); }
.btn-dark { background: var(--noir); color: var(--white); }
.btn-dark:hover { background: #2C1A1A; }
.btn-outline { background: transparent; color: var(--rose); border: 1px solid var(--rose); }
.btn-outline:hover { background: var(--rose); color: var(--white); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.35); }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
.btn-arrow::after { content: none; }
.btn-arrow span { transition: transform var(--t) var(--ease); }
.btn-arrow:hover span { transform: translateX(4px); }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: background var(--t), box-shadow var(--t), height var(--t);
}
.nav.scrolled {
  background: rgba(250,247,244,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
  height: 64px;
}
.nav.dark-nav { background: transparent; }
.nav.dark-nav.scrolled { background: rgba(13,8,8,0.95); backdrop-filter: blur(16px); }

.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-monogram {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--rose);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  flex-shrink: 0;
  transition: transform var(--t);
}
.nav-logo:hover .nav-monogram { transform: rotate(-8deg); }
.nav-wordmark { font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--noir); letter-spacing: 0.01em; }
.nav-wordmark .tagline { display: block; font-family: var(--sans); font-size: 9.5px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); font-style: normal; margin-top: 1px; }
.dark-nav .nav-wordmark { color: white; }
.dark-nav .nav-wordmark .tagline { color: rgba(255,255,255,0.45); }

.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--t);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--rose); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.dark-nav .nav-links a { color: rgba(255,255,255,0.55); }
.dark-nav .nav-links a:hover, .dark-nav .nav-links a.active { color: white; }

.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-phone { font-size: 13px; font-weight: 600; color: var(--text); transition: color var(--t); }
.nav-phone:hover { color: var(--rose); }
.dark-nav .nav-phone { color: white; }

.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; padding: 4px; }
.hamburger span { width: 24px; height: 1.5px; background: var(--noir); display: block; transition: all var(--t); }
.dark-nav .hamburger span { background: white; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--noir);
  z-index: 190;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 40px;
  font-style: italic;
  font-weight: 500;
  color: white;
  transition: color var(--t);
}
.mobile-menu a:hover { color: var(--rose); }
.mobile-menu .m-phone { font-family: var(--sans); font-size: 15px; color: rgba(255,255,255,0.5); font-style: normal; font-weight: 400; }

/* ── MARQUEE ── */
.marquee-bar { background: var(--rose); padding: 13px 0; overflow: hidden; }
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 40px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  white-space: nowrap;
}
.marquee-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.4); flex-shrink: 0; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  height: 500px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0 0 64px;
  overflow: hidden;
  margin-top: 0;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.8s var(--ease);
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,8,8,0.85) 0%, rgba(13,8,8,0.35) 60%, rgba(13,8,8,0.1) 100%);
}
.page-hero-content { position: relative; z-index: 2; width: 100%; }

/* ── HOMEPAGE HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  margin-top: 0;
}
.hero-left {
  background: var(--noir-mid);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 60px 80px 60px;
  position: relative;
  z-index: 2;
}
.hero-left::after {
  content: '';
  position: absolute;
  top: 0; right: -60px; bottom: 0;
  width: 120px;
  background: var(--noir-mid);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  z-index: 3;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border: 1px solid rgba(201,168,124,0.35);
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 36px;
  width: fit-content;
  animation: fadeUp 0.8s var(--ease-out) 0.2s both;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--champagne); }
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(56px, 5.5vw, 88px);
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 32px;
  animation: fadeUp 0.9s var(--ease-out) 0.35s both;
}
.hero-h1 em { color: var(--rose); font-style: normal; display: block; }
.hero-p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 400px;
  line-height: 1.8;
  margin-bottom: 44px;
  animation: fadeUp 0.9s var(--ease-out) 0.5s both;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s var(--ease-out) 0.65s both;
}
.hero-stars {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: fadeUp 0.9s var(--ease-out) 0.75s both;
}
.hero-stars-icons { font-size: 13px; color: var(--champagne); letter-spacing: 3px; }
.hero-stars-text { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.5; }
.hero-stars-text strong { color: rgba(255,255,255,0.8); display: block; font-size: 13px; }

.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28,18,18,0.4) 0%, transparent 40%);
  z-index: 1;
}
.hero-rose-wash {
  position: absolute;
  inset: 0;
  background: rgba(180, 60, 90, 0.32);
  mix-blend-mode: multiply;
  z-index: 2;
  pointer-events: none;
}
.hero-float {
  position: absolute;
  bottom: 48px;
  right: 48px;
  z-index: 2;
  background: white;
  border-radius: var(--r-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  animation: fadeUp 0.9s var(--ease-out) 1s both;
}
.hero-float-label { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.hero-float-value { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--noir); }
.hero-float-sub { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* ── INTRO / ABOUT SECTION ── */
.section { padding: 112px 0; }
.section-sm { padding: 72px 0; }
.section-lg { padding: 140px 0; }
.section-white { background: var(--white); }
.section-dark { background: var(--noir-mid); }
.section-rose { background: var(--rose-light); }
.section-cream { background: var(--cream); }

.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 600px; }
.split-content { display: flex; flex-direction: column; justify-content: center; padding: 80px 64px; }
.split-image { position: relative; overflow: hidden; }
.split-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.split-image:hover img { transform: scale(1.04); }

/* ── STATS ── */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); }
.stat-item {
  background: var(--white);
  padding: 44px 32px;
  text-align: center;
}
.stat-num {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 500;
  font-style: italic;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }

/* ── SERVICE CARDS (homepage) ── */
.service-trio { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; }
.service-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.service-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.service-tile:hover img { transform: scale(1.07); }
.service-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,8,8,0.88) 0%, rgba(13,8,8,0.2) 60%, transparent 100%);
  transition: background var(--t);
}
.service-tile:hover .service-tile-overlay {
  background: linear-gradient(to top, rgba(13,8,8,0.92) 0%, rgba(13,8,8,0.45) 60%, rgba(13,8,8,0.1) 100%);
}
.service-tile-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 36px;
  z-index: 2;
}
.service-tile-num {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  color: var(--champagne);
  opacity: 0.7;
  margin-bottom: 8px;
  display: block;
}
.service-tile-name {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
  color: white;
  line-height: 1.1;
  margin-bottom: 12px;
}
.service-tile-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), opacity 0.4s;
  opacity: 0;
}
.service-tile:hover .service-tile-desc { max-height: 120px; opacity: 1; }
.service-tile-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-top: 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s 0.1s, transform 0.3s 0.1s;
}
.service-tile:hover .service-tile-link { opacity: 1; transform: none; }
.service-tile-link svg { width: 14px; height: 14px; }

/* ── WHY SECTION ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-left: 1px solid rgba(255,255,255,0.06);
}
.why-item {
  padding: 52px 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background var(--t);
}
.why-item:hover { background: rgba(194,84,106,0.06); }
.why-num { font-family: var(--serif); font-size: 52px; font-style: italic; font-weight: 500; color: rgba(194,84,106,0.15); line-height: 1; margin-bottom: 20px; }
.why-title { font-family: var(--serif); font-size: 26px; font-weight: 500; color: white; margin-bottom: 12px; }
.why-desc { font-size: 14px; color: rgba(255,255,255,0.48); line-height: 1.8; }

/* ── REVIEW CARDS ── */
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 40px;
  transition: box-shadow var(--t), transform var(--t);
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.review-stars { font-size: 13px; color: var(--champagne); letter-spacing: 4px; margin-bottom: 20px; }
.review-quote {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  color: var(--noir);
  line-height: 1.6;
  margin-bottom: 28px;
  position: relative;
}
.review-quote::before {
  content: '\201C';
  font-size: 72px;
  color: var(--rose-light);
  font-family: var(--serif);
  position: absolute;
  top: -20px; left: -8px;
  line-height: 1;
  z-index: 0;
}
.review-quote span { position: relative; z-index: 1; }
.review-divider { height: 1px; background: var(--border); margin-bottom: 20px; }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--rose-light);
  flex-shrink: 0;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-avatar-initials {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--rose);
}
.review-name { font-size: 14px; font-weight: 600; color: var(--text); }
.review-role { font-size: 12px; color: var(--text-muted); }
.review-verified { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rose); margin-top: 2px; }

/* ── TEAM ── */
.team-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
}
.team-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  filter: grayscale(15%);
}
.team-card:hover .team-photo img { transform: scale(1.05); filter: grayscale(0%); }
.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,8,8,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--t);
}
.team-card:hover .team-photo-overlay { opacity: 1; }
.team-info {
  padding: 24px 0 0;
}
.team-name { font-family: var(--serif); font-size: 24px; font-weight: 500; color: var(--noir); margin-bottom: 2px; }
.team-role { font-size: 10.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rose); margin-bottom: 12px; }
.team-bio { font-size: 13px; color: var(--text-muted); line-height: 1.75; }

/* ── AREAS ── */
.areas-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.area-pill {
  padding: 11px 22px;
  background: var(--white);
  border: 1px solid var(--border-mid);
  border-radius: 28px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  transition: all var(--t);
}
.area-pill:hover { background: var(--rose); color: white; border-color: var(--rose); transform: translateY(-2px); }

/* ── CONTACT FORM ── */
.form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 56px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border-mid);
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color var(--t), background var(--t);
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--rose);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(194,84,106,0.08);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-submit { width: 100%; justify-content: center; padding: 18px; font-size: 12px; margin-top: 8px; }
.form-note { font-size: 11.5px; color: var(--text-light); text-align: center; margin-top: 14px; }

/* ── FOOTER ── */
.footer { background: var(--noir); padding: 80px 0 40px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 40px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-monogram {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--rose);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  color: white;
}
.footer-name { font-family: var(--serif); font-size: 17px; font-weight: 500; color: white; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.8; margin-bottom: 28px; max-width: 300px; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,0.45);
  transition: all var(--t);
}
.social-btn:hover { border-color: var(--rose); color: var(--rose); }
.footer-col-title { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: white; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color var(--t); }
.footer-links a:hover { color: var(--rose); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-badges { display: flex; gap: 20px; }
.footer-badge { font-size: 11px; color: rgba(255,255,255,0.3); display: flex; align-items: center; gap: 6px; }
.footer-badge::before { content: '✓'; color: var(--champagne); }

/* ── SERVICE PAGE SPECIFIC ── */
.service-detail-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }
.service-features-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.sf-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px; border: 1px solid var(--border); border-radius: var(--r-lg); transition: all var(--t); }
.sf-item:hover { border-color: var(--rose); background: var(--rose-light); }
.sf-check { width: 28px; height: 28px; border-radius: 50%; background: var(--rose); display: flex; align-items: center; justify-content: center; color: white; font-size: 12px; flex-shrink: 0; margin-top: 2px; }
.sf-text h4 { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.sf-text p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

.sticky-quote { position: sticky; top: 100px; }
.price-note { background: var(--noir-mid); border-radius: var(--r-xl); padding: 40px; margin-bottom: 24px; }
.price-note-label { font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
.price-note-value { font-family: var(--serif); font-size: 36px; font-style: italic; font-weight: 500; color: white; margin-bottom: 6px; }
.price-note-sub { font-size: 13px; color: rgba(255,255,255,0.4); }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; border-radius: var(--r-lg); overflow: hidden; }
.gallery-grid img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery-grid img:hover { transform: scale(1.04); }

/* ── ABOUT PAGE ── */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.founder-quote {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-style: italic;
  font-weight: 500;
  color: var(--noir);
  line-height: 1.3;
  border-left: 3px solid var(--rose);
  padding-left: 32px;
  margin: 40px 0;
}
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 1px; background: var(--border-mid); }
.timeline-item { position: relative; margin-bottom: 36px; }
.timeline-item::before { content: ''; position: absolute; left: -28px; top: 8px; width: 10px; height: 10px; border-radius: 50%; background: var(--rose); border: 2px solid var(--cream); }
.timeline-year { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--rose); text-transform: uppercase; margin-bottom: 4px; }
.timeline-event { font-size: 14px; color: var(--text-muted); line-height: 1.65; }
.timeline-event strong { color: var(--text); font-weight: 600; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 140px 40px 60px; }
  .hero-left::after { display: none; }
  .hero-right { height: 50vh; }
  .split-section { grid-template-columns: 1fr; }
  .split-image { min-height: 400px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .sticky-quote { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .about-intro { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 72px 0; }
  .nav { padding: 0 24px; }
  .nav-links, .nav-phone, .nav-right .btn { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .service-trio { grid-template-columns: 1fr; }
  .service-tile { aspect-ratio: 4/3; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-float { display: none; }
  .form-wrap { padding: 32px 24px; }
  .split-content { padding: 48px 28px; }
  .page-hero { height: 360px; }
}
