:root {
  --navy: #1B1E3D;
  --navy-deep: #12142B;
  --ivory: #F6F3EA;
  --paper: #FBFAF6;
  --brass: #B08D57;
  --brass-dark: #8A6C3F;
  --slate: #5C6178;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--paper);
  color: var(--navy);
}
.serif { font-family: 'Cormorant Garamond', serif; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 56px; }

/* NAV */
nav { background: var(--navy); padding: 22px 0; }
nav .wrap { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.diamond { width: 26px; height: 26px; }
.diamond svg { width: 100%; height: 100%; }
.brand-name { color: var(--ivory); font-size: 15px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--ivory); text-decoration: none; font-size: 13px; letter-spacing: 0.5px; opacity: 0.85; }
.nav-links a.active { opacity: 1; border-bottom: 1px solid var(--brass); padding-bottom: 4px; }
.nav-cta { border: 1px solid var(--brass); color: var(--brass); padding: 9px 20px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; }

/* PAGE HERO (non-homepage) */
.page-hero { background: var(--navy); padding: 70px 0; }
.page-hero .wrap { max-width: 780px; }
.page-hero .eyebrow { color: var(--brass); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 18px; display: block; }
.page-hero h1 { font-family: 'Cormorant Garamond', serif; color: var(--ivory); font-size: 44px; line-height: 1.15; font-weight: 600; margin-bottom: 18px; }
.page-hero p { color: var(--ivory); opacity: 0.8; font-size: 16px; line-height: 1.6; max-width: 560px; }

/* HOME HERO */
.hero { background: var(--navy); padding: 100px 0 130px; position: relative; overflow: hidden; }
.hero .wrap { position: relative; z-index: 2; max-width: 780px; }
.eyebrow { color: var(--brass); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 22px; display: block; }
.hero h1 { font-family: 'Cormorant Garamond', serif; color: var(--ivory); font-size: 56px; line-height: 1.12; font-weight: 600; margin-bottom: 26px; }
.hero p { color: var(--ivory); opacity: 0.8; font-size: 17px; line-height: 1.65; max-width: 520px; margin-bottom: 38px; }
.btn-primary { display: inline-block; background: var(--brass); color: var(--navy-deep); padding: 15px 32px; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; text-decoration: none; font-weight: 600; border: none; cursor: pointer; }
.hero-mark { position: absolute; right: -60px; top: 50%; transform: translateY(-50%); width: 420px; height: 420px; opacity: 0.10; z-index: 1; }

/* INTRO STRIP */
.intro { padding: 70px 0; border-bottom: 1px solid rgba(27,30,61,0.08); }
.intro .wrap { max-width: 640px; }
.intro p { font-family: 'Cormorant Garamond', serif; font-size: 26px; line-height: 1.5; color: var(--navy); font-weight: 500; }
.intro p span { color: var(--brass-dark); }

/* PAIN POINTS */
.pain { background: var(--ivory); padding: 80px 0; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
.pain-card { background: var(--paper); border-left: 3px solid var(--brass); padding: 28px 26px; }
.pain-card p { font-family: 'Cormorant Garamond', serif; font-size: 19px; line-height: 1.5; color: var(--navy); font-style: italic; }

/* PROCESS */
.process { padding: 90px 0; background: var(--paper); }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 50px; margin-top: 50px; }
.process-step { text-align: center; }
.process-circle { width: 56px; height: 56px; border: 1px solid var(--brass); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--brass-dark); font-weight: 600; }
.process-step h4 { font-family: 'Cormorant Garamond', serif; font-size: 20px; margin-bottom: 10px; font-weight: 600; }
.process-step p { font-size: 14px; color: var(--slate); line-height: 1.7; max-width: 260px; margin: 0 auto; }

/* PILLARS / GENERAL SECTIONS */
.section-pad { padding: 90px 0; }
.section-label { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--brass-dark); text-align: center; display: block; margin-bottom: 14px; font-weight: 600; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: 38px; text-align: center; margin-bottom: 60px; font-weight: 600; }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid rgba(27,30,61,0.12); }
.pillar { padding: 40px 34px; border-right: 1px solid rgba(27,30,61,0.12); }
.pillar:last-child { border-right: none; }
.pillar-mark { width: 20px; height: 20px; margin-bottom: 22px; }
.pillar h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; margin-bottom: 14px; font-weight: 600; }
.pillar p { font-size: 14px; line-height: 1.7; color: var(--slate); }

/* WHY / NAVY SECTIONS */
.why { background: var(--navy); padding: 90px 0; }
.why .section-title { color: var(--ivory); }
.why .section-label { color: var(--brass); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px; margin-top: 20px; }
.why-item { text-align: left; }
.why-num { font-family: 'Cormorant Garamond', serif; color: var(--brass); font-size: 15px; letter-spacing: 2px; margin-bottom: 12px; display: block; }
.why-item h4 { color: var(--ivory); font-size: 16px; margin-bottom: 10px; font-weight: 600; }
.why-item p { color: var(--ivory); opacity: 0.7; font-size: 13.5px; line-height: 1.7; }

/* SERVICE DETAIL BLOCKS (Services page) */
.service-block { padding: 70px 0; border-bottom: 1px solid rgba(27,30,61,0.08); }
.service-block:last-of-type { border-bottom: none; }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.service-grid h2 { font-family: 'Cormorant Garamond', serif; font-size: 30px; margin-bottom: 16px; font-weight: 600; }
.service-grid .problem { font-size: 15px; color: var(--slate); line-height: 1.7; margin-bottom: 4px; }
.service-list { list-style: none; padding: 0; margin: 0; }
.service-list li { font-size: 14px; line-height: 1.7; color: var(--navy); padding-left: 20px; position: relative; margin-bottom: 10px; }
.service-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; background: var(--brass); transform: rotate(45deg); }
.outcome-label { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--brass-dark); font-weight: 600; margin-bottom: 8px; display: block; }

/* ABOUT PAGE */
.about-body { padding: 80px 0; }
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: start; }
.about-grid p { font-size: 15.5px; line-height: 1.8; color: var(--navy); margin-bottom: 20px; }
.credential-box { background: var(--ivory); padding: 30px; }
.credential-box h4 { font-family: 'Cormorant Garamond', serif; font-size: 18px; margin-bottom: 16px; font-weight: 600; }
.credential-box ul { list-style: none; }
.credential-box li { font-size: 13.5px; color: var(--slate); line-height: 1.8; margin-bottom: 8px; }

/* CONTACT PAGE */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 80px 0; }
.contact-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; margin-bottom: 16px; font-weight: 600; }
.contact-info p { font-size: 15px; color: var(--slate); line-height: 1.7; margin-bottom: 24px; }
.contact-detail { font-size: 14px; color: var(--navy); margin-bottom: 10px; }
.contact-detail a { color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--brass); }
.booking-embed { background: var(--ivory); padding: 20px; min-height: 400px; display: flex; align-items: center; justify-content: center; text-align: center; }
.booking-embed p { font-size: 14px; color: var(--slate); }

/* CTA */
.cta { padding: 100px 0; text-align: center; }
.cta .wrap { max-width: 560px; }
.cta h2 { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 600; margin-bottom: 18px; }
.cta p { color: var(--slate); font-size: 15px; margin-bottom: 34px; }

/* FOOTER */
footer { background: var(--navy-deep); padding: 40px 0; }
footer .wrap { display: flex; justify-content: space-between; align-items: center; }
footer .brand-name { font-size: 12px; }
footer .foot-links { display: flex; gap: 24px; }
footer .foot-links a { color: var(--ivory); opacity: 0.6; font-size: 12px; text-decoration: none; }

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy-deep);
  padding: 18px 24px;
  z-index: 999;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner p {
  color: var(--ivory);
  opacity: 0.8;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  max-width: 700px;
}
.cookie-banner a { color: var(--brass); text-decoration: underline; }
.cookie-accept {
  background: var(--brass);
  color: var(--navy-deep);
  border: none;
  padding: 10px 24px;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .cookie-banner .wrap { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 720px) {
  .hero h1, .page-hero h1 { font-size: 34px; }
  .pillar-grid, .why-grid, .pain-grid, .process-grid, .service-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(27,30,61,0.12); }
  nav .nav-links { display: none; }
  .wrap { padding: 0 24px; }
}
