/* ── SERVICE PAGE BASE STYLES ── */

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

:root {
  --rose: #C0768A; --rose-dark: #9E5A6E; --blush: #F4DDE3;
  --blush-mid: #EAC8D1; --blush-light: #FBF3F5; --blush-card: #F9EEF1;
  --rose-light: #F7E4E9; --cream: #FDFAF8; --charcoal: #1C1A1A;
  --mid: #6B5C5E; --light: #A89295; --border: rgba(28,26,26,0.08);
  --sage: #B05070; --sage-dark: #8C3A54; --sage-light: #F7E0E6;
}

body { font-family: 'Manrope', sans-serif; color: var(--charcoal); background: var(--cream); }

/* ── ANNOUNCEMENT BAR ── */
.ann-bar {
  background: var(--charcoal); color: rgba(255,255,255,0.7);
  text-align: center; padding: 10px 20px; font-size: 12px;
  font-weight: 500; letter-spacing: 0.04em;
}
.ann-bar a { color: white; font-weight: 700; }

/* ── NAV ── */
nav {
  background: white; padding: 0 48px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.nav-logo { text-decoration: none; }
.nav-logo .name {
  font-family: 'Cormorant Garamond', serif; font-size: 22px;
  font-style: italic; font-weight: 600; color: var(--charcoal); display: block;
}
.nav-logo .creds {
  font-size: 9px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--light); display: block; margin-top: 1px;
}
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 600; color: var(--mid);
  text-decoration: none; letter-spacing: 0.02em; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--charcoal); }
.nav-cta {
  background: var(--charcoal); color: white; padding: 12px 24px;
  border-radius: 100px; font-size: 13px; font-weight: 700;
  text-decoration: none; letter-spacing: 0.02em; transition: background 0.2s;
}
.nav-cta:hover { background: var(--rose); color: white; }

/* ── DROPDOWN ── */
nav .has-dropdown { position: relative; }
nav .has-dropdown > a { display: flex; align-items: center; gap: 4px; }
nav .dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%); background: white; border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12); padding: 8px;
  min-width: 200px; display: none; z-index: 200;
  border: 1px solid var(--border);
}
nav .has-dropdown:hover .dropdown { display: block; }
nav .dropdown a {
  display: block; padding: 10px 16px; font-size: 13px; font-weight: 500;
  color: var(--mid); border-radius: 8px; text-decoration: none; transition: all 0.15s;
}
nav .dropdown a:hover { background: var(--blush-light); color: var(--charcoal); }

/* ── HERO ── */
.svc-hero {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 540px;
}
.svc-hero-text {
  background: var(--blush-light); padding: 80px 64px;
  display: flex; flex-direction: column; justify-content: center;
}
.svc-badge {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage);
  background: var(--sage-light); padding: 6px 14px; border-radius: 100px;
  margin-bottom: 24px;
}
.svc-hero-text h1 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 4vw, 56px);
  font-weight: 600; line-height: 1.05; color: var(--charcoal); margin-bottom: 20px;
}
.svc-hero-text h1 em { font-style: italic; color: var(--rose); }
.svc-hero-text p {
  font-size: 16px; font-weight: 300; color: var(--mid);
  line-height: 1.8; margin-bottom: 32px; max-width: 480px;
}
.svc-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-dark {
  background: var(--charcoal); color: white; padding: 14px 28px;
  border-radius: 100px; font-size: 13px; font-weight: 700;
  text-decoration: none; transition: all 0.2s; letter-spacing: 0.02em;
}
.btn-dark:hover { background: var(--rose); transform: translateY(-1px); }
.btn-outline {
  border: 1.5px solid var(--charcoal); color: var(--charcoal); padding: 14px 28px;
  border-radius: 100px; font-size: 13px; font-weight: 700;
  text-decoration: none; transition: all 0.2s;
}
.btn-outline:hover { background: var(--charcoal); color: white; transform: translateY(-1px); }
.svc-hero-img { overflow: hidden; }
.svc-hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }

/* ── SECTION LABEL ── */
.section-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--sage); margin-bottom: 16px; display: block;
}

/* ── BODY SECTION ── */
.svc-body-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  padding: 88px 80px; align-items: start;
  background: var(--cream);
}
.svc-body-section h2 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3vw, 40px);
  font-weight: 600; color: var(--charcoal); line-height: 1.15; margin-bottom: 20px;
}
.svc-body-section h2 em { font-style: italic; color: var(--rose); }
.svc-body-section p {
  font-size: 15px; font-weight: 300; color: var(--mid); line-height: 1.9; margin-bottom: 16px;
}
blockquote {
  border-left: 2px solid var(--blush-mid); padding: 18px 24px;
  background: var(--blush-light); margin: 32px 0;
  font-family: 'Cormorant Garamond', serif; font-size: 21px;
  font-style: italic; color: var(--charcoal); border-radius: 0 10px 10px 0; line-height: 1.5;
}

/* ── SIGNS BOX ── */
.signs-box {
  background: white; border-radius: 20px; padding: 40px;
  border: 1px solid var(--border); box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.signs-box h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 26px;
  font-weight: 600; color: var(--charcoal); margin-bottom: 24px;
}
.signs-box ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.signs-box li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; font-weight: 400; color: var(--mid); line-height: 1.6;
}
.signs-box li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--rose); flex-shrink: 0; margin-top: 7px;
}

/* ── APPROACH PILLS ── */
.approach-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.approach-box {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 100px; border: 1.5px solid var(--blush-mid);
  color: var(--rose); background: white; transition: all 0.2s; cursor: default;
}
.approach-box:hover { background: var(--rose); color: white; border-color: var(--rose); }

/* ── WHAT TO EXPECT ── */
.what-expect {
  background: var(--blush-light); padding: 88px 80px;
}
.what-expect > .section-label { display: block; margin-bottom: 12px; }
.what-expect > h2 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3vw, 40px);
  font-weight: 600; color: var(--charcoal); margin-bottom: 48px; line-height: 1.15;
}
.what-expect > h2 em { font-style: italic; color: var(--rose); }
.expect-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.expect-card {
  background: white; border-radius: 16px; padding: 28px 24px;
  border: 1px solid var(--border);
}
.expect-card .num {
  font-family: 'Cormorant Garamond', serif; font-size: 48px;
  font-weight: 600; color: var(--blush-mid); line-height: 1; margin-bottom: 16px;
}
.expect-card h4 {
  font-size: 14px; font-weight: 800; color: var(--charcoal); margin-bottom: 10px;
}
.expect-card p { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.7; }

/* ── CTA SECTION ── */
.svc-cta {
  background: var(--charcoal); padding: 80px;
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
}
.svc-cta h2 {
  font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 3vw, 44px);
  font-weight: 600; color: white; margin-bottom: 12px; line-height: 1.1;
}
.svc-cta p { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.7; }
.btn-white {
  background: white; color: var(--charcoal); padding: 16px 32px;
  border-radius: 100px; font-size: 14px; font-weight: 800;
  text-decoration: none; white-space: nowrap; display: inline-block;
  transition: all 0.2s; letter-spacing: 0.02em;
}
.btn-white:hover { background: var(--rose); color: white; transform: translateY(-2px); }
.cta-side { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.cta-note { font-size: 11px; color: rgba(255,255,255,0.35); font-weight: 500; text-align: center; }

/* ── ALSO SEE ── */
.also-see {
  padding: 72px 80px; background: var(--cream);
}
.also-see > .section-label { display: block; margin-bottom: 12px; }
.also-see > h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 32px;
  font-weight: 600; color: var(--charcoal); margin-bottom: 40px;
}
.also-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.also-card {
  background: white; border-radius: 16px; padding: 28px 24px;
  border: 1px solid var(--border); text-decoration: none;
  transition: all 0.2s; display: block;
}
.also-card:hover { border-color: var(--rose); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.also-card .also-cat {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--rose); margin-bottom: 10px; display: block;
}
.also-card h4 { font-size: 16px; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
.also-card p { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 1.6; }

/* ── FOOTER ── */
footer { background: var(--charcoal); padding: 72px 80px 40px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .f-name {
  font-family: 'Cormorant Garamond', serif; font-size: 24px;
  font-weight: 600; font-style: italic; color: white; display: block; margin-bottom: 4px;
}
.footer-brand .f-creds {
  font-size: 11px; color: rgba(255,255,255,0.3); letter-spacing: 0.1em;
  text-transform: uppercase; display: block; margin-bottom: 18px;
}
.footer-brand p { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.8; }
.footer-col h4 {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s;
}
.footer-col ul li a:hover { color: white; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 40px; font-size: 12px; color: rgba(255,255,255,0.2); line-height: 1.7;
}
.footer-disclosure { max-width: 700px; font-size: 11px; line-height: 1.7; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .svc-hero { grid-template-columns: 1fr; }
  .svc-hero-text { padding: 56px 32px; }
  .svc-hero-img { height: 420px; }
  .svc-body-section { grid-template-columns: 1fr; padding: 56px 32px; gap: 40px; }
  .what-expect { padding: 64px 32px; }
  .expect-grid { grid-template-columns: 1fr 1fr; }
  .svc-cta { grid-template-columns: 1fr; padding: 56px 32px; }
  .cta-side { align-items: flex-start; }
  .also-see { padding: 48px 32px; }
  .also-grid { grid-template-columns: 1fr 1fr; }
  footer { padding: 56px 32px 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; }
}
@media (max-width: 600px) {
  .svc-hero-text { padding: 48px 24px; }
  .expect-grid { grid-template-columns: 1fr; }
  .also-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  nav { padding: 0 20px; }
}
