/* =============================================
   The Inner Knowing Center — Stylesheet
   Palette: Navy #0b0d62, Coral #f08f7f,
   Blush cream #fdf0e7, Warm terra #6b4a42
   No green used anywhere.
   ============================================= */

:root {
  /* Warm blush cream — primary background */
  --blush:       #fdf0e7;
  --blush-mid:   #f5e6d8;
  --blush-dark:  #e8d5c4;

  /* Replaced sage — use terra/coral tones instead */
  --sage:        #b8927a;   /* was green, now warm brown accent */
  --sage-mid:    #6b4a42;   /* was green, now terra */
  --sage-light:  #dfc4b0;   /* was green, now blush-brown border */
  --sage-pale:   #fdf0e7;
  --sage-paler:  #fdf0e7;

  /* Deep forest — replaced by navy */
  --forest:      #0b0d62;   /* alias → navy */
  --forest-mid:  #0e0f47;

  /* Warm brown — headings & accents */
  --terra:       #6b4a42;
  --terra-mid:   #8a6058;
  --terra-light: #b8927a;

  /* Backgrounds */
  --linen:       #fdf0e7;
  --linen-dark:  #e8d5c4;
  --warm-white:  #fdf8f3;

  /* Text */
  --text:        #1c171a;
  --text-mid:    #2e2a27;
  --text-light:  #45464a;

  /* Legacy */
  --gold:        #6b4a42;
  --gold-light:  #a07868;

  /* Navy blue */
  --navy:        #0b0d62;
  --navy-mid:    #0e0f47;

  /* Coral */
  --coral:       #f08f7f;
  --coral-dark:  #e07060;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;

  --max-w: 1160px;
  --radius: 12px;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 17px; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text-mid);
  background: var(--linen);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--navy);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 var(--radius) var(--radius);
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: top var(--transition);
  z-index: 1000;
}
.skip-link:focus { top: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(3rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; letter-spacing: 0.02em; }

p { margin-bottom: 1rem; color: var(--text-mid); font-size: 1.15rem; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 500; color: var(--text); }
em { font-style: italic; }
a { color: inherit; }

/* Container */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* Section label */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-mid);
  margin-bottom: 0.75rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover { background: var(--navy-mid); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(11, 13, 98, 0.35);
}
.btn-ghost:hover { border-color: var(--navy); background: rgba(11, 13, 98, 0.05); }

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }

/* ==================
   HEADER / NAV
   ================== */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  position: relative;
  top: 1px; /* optical correction — serif cap-height sits slightly above midline */
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.04em;
  line-height: 1;
}

/* Footer logo */
.footer-logo-img {
  height: 60px;
  width: auto;
  display: block;
  margin-bottom: 16px;
  object-fit: contain;
}

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253, 248, 243, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 213, 196, 0.6);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.07); }

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-menu a {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color var(--transition);
}
.nav-menu a:hover { color: var(--navy); }

.nav-cta {
  background: var(--coral) !important;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 4px;
}
.nav-cta:hover { background: var(--coral-dark) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--navy);
  transition: all var(--transition);
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--warm-white);
    border-bottom: 1px solid var(--linen-dark);
    flex-direction: column;
    padding: 20px clamp(20px, 5vw, 60px) 28px;
    gap: 1rem;
    align-items: flex-start;
  }
  .nav-menu.open { display: flex; }
  .nav-cta { margin-top: 8px; }
}

/* ==================
   HERO — short banner, text bottom-left
   ================== */
.hero-outer {
  position: relative;
  overflow: hidden;
  height: 500px;
  margin-top: 70px;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 75%;
  display: block;
}
.hero-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.hero-bg { display: none; }

/* .hero stretches full width, aligns children to bottom-left */
.hero {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  padding: 0 clamp(24px, 5vw, 72px) 44px;
}

.hero-content {
  max-width: 720px;
  width: 100%;
}

.hero-eyebrow { display: none; }
.hero-title {
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.1;
  white-space: nowrap;
  font-size: clamp(2rem, 5vw, 5.5rem);
}
.hero-title em { color: #fff; font-style: italic; }
.hero-sub {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 0;
}
.hero-location { display: none; }
.hero-actions { display: none; }
.hero-image { display: none; }

@media (max-width: 768px) {
  .hero-outer { height: 300px; margin-top: 70px; }
  .hero { padding: 0 20px 28px; }
}

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

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-mid);
  margin-bottom: 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 2rem;
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0;
}

/* ==================
   APPROACH
   ================== */
.section-approach {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--warm-white);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.approach-text h2 { margin-bottom: 1.5rem; }
.approach-text p { margin-bottom: 1.2rem; }
.approach-text .btn { margin-top: 1rem; }

.approach-aside {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-top: 8px;
}

.approach-card {
  background: var(--blush);
  border-radius: var(--radius);
  padding: 24px 20px;
  border: 1px solid var(--blush-dark);
  transition: transform var(--transition), box-shadow var(--transition);
}
.approach-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(11, 13, 98, 0.1);
}
.approach-icon {
  color: var(--sage);
  margin-bottom: 12px;
}
.approach-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.approach-card p {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .approach-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .approach-aside { grid-template-columns: 1fr 1fr; }
}

/* ==================
   SERVICES
   ================== */
.section-services {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--navy);
}

.section-services .section-label { color: rgba(255,255,255,0.5); }

.section-services h2 {
  color: var(--linen);
  margin-bottom: 0.75rem;
}

.section-sub {
  color: rgba(246, 241, 235, 0.7);
  max-width: 560px;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 3rem;
}

.service-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: background var(--transition), transform var(--transition);
}
.service-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

/* Service illustration icons — homepage cards */
.service-icon {
  width: 260px;
  height: 260px;
  object-fit: contain;
  display: block;
  margin-bottom: 24px;
  mix-blend-mode: screen;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* Service detail illustrations — services page */

.service-card h3 { color: #fff; margin-bottom: 12px; }
.service-card p { color: rgba(255,255,255,0.7); font-size: 0.925rem; margin-bottom: 20px; }

.service-link {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color var(--transition);
}
.service-link:hover { color: #fff; }

.services-cta { text-align: center; }
.services-cta .btn-primary {
  background: var(--coral);
  color: #fff;
  font-weight: 400;
}
.services-cta .btn-primary:hover { background: var(--coral-dark); transform: translateY(-1px); }

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

/* ==================
   ABOUT
   ================== */
.section-about {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--blush-mid);
}

.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.about-image-wrap { position: relative; }

.about-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 8px 40px rgba(61, 31, 20, 0.15);
}

.about-text h2 { margin-bottom: 0.4rem; }
.about-subtitle {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--sage);
  letter-spacing: 0.03em;
  margin-bottom: 1.5rem;
  display: block;
}

.about-credentials {
  margin-top: 2rem;
  padding: 24px;
  background: var(--blush);
  border-radius: var(--radius);
  border-left: 3px solid var(--sage);
}
.about-credentials h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-mid);
  margin-bottom: 12px;
}
.about-credentials ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about-credentials li {
  font-size: 0.875rem;
  color: var(--text-mid);
  padding-left: 14px;
  position: relative;
}
.about-credentials li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--sage);
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image-placeholder { aspect-ratio: 4/3; max-width: 400px; }
}

/* ==================
   TESTIMONIALS
   ================== */
.section-testimonials {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--blush);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 2rem;
}

.testimonial {
  background: var(--warm-white);
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--blush-dark);
  position: relative;
}
.testimonial::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--sage-light);
  position: absolute;
  top: 8px;
  left: 24px;
  line-height: 1;
}

.testimonial p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1rem;
}

.testimonial footer cite {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-style: normal;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
}

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

/* ==================
   LOCATION / CTA
   ================== */
.section-location {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--warm-white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.location-text h2 { margin-bottom: 1.5rem; }

.location-address {
  font-style: normal;
  background: var(--blush);
  padding: 20px 24px;
  border-radius: var(--radius);
  border-left: 3px solid var(--sage);
  font-size: 0.925rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1.25rem;
}
.location-address strong { color: var(--navy); display: block; font-size: 1rem; }

.location-phone {
  font-size: 1.1rem;
  font-family: var(--font-display);
  margin-bottom: 1.2rem;
}
.location-phone a {
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--sage-light);
  padding-bottom: 2px;
  transition: border-color var(--transition);
}
.location-phone a:hover { border-color: var(--sage); }

.location-text p { margin-bottom: 2rem; }
.location-map-wrap iframe { display: block; }

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

/* ==================
   FOOTER
   ================== */
.site-footer {
  background: var(--navy);
  color: #fff;
  padding: clamp(48px, 6vw, 72px) 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--linen);
  margin-bottom: 16px;
}


.footer-brand address {
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(246, 241, 235, 0.65);
}
.footer-brand address a {
  color: var(--gold-light);
  text-decoration: none;
}

.footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(246, 241, 235, 0.6);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--linen); }

.footer-areas p {
  font-size: 0.875rem;
  color: rgba(246, 241, 235, 0.65);
  margin-bottom: 0.5rem;
}
.footer-areas strong { color: var(--linen); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(246, 241, 235, 0.4);
  margin-bottom: 4px;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ==================
   SERVICES PAGE
   ================== */
.page-hero {
  padding: 140px clamp(20px, 5vw, 60px) 80px;
  background: linear-gradient(135deg, #fdf0e7 0%, #f5e6d8 100%);
  text-align: center;
}
.page-hero .section-label { justify-content: center; display: flex; }
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--navy);
  margin-bottom: 1rem;
}
.page-hero p {
  max-width: 560px;
  margin: 0 auto 2rem;
}

.services-page-section {
  padding: clamp(60px, 8vw, 100px) 0;
}
.services-page-section:nth-child(even) { background: var(--linen); }

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.service-detail-icon {
  width: 100%;
}
.service-detail-img {
  width: 100%;
  height: auto;
  display: block;
}
.service-detail h2 { margin-bottom: 1rem; }
.service-detail ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}
.service-detail li {
  font-size: 0.925rem;
  color: var(--text-mid);
  padding: 6px 0 6px 18px;
  position: relative;
  border-bottom: 1px solid var(--linen-dark);
}
.service-detail li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-size: 0.8rem;
}

.service-fee {
  display: inline-block;
  background: var(--linen);
  border-left: 3px solid var(--sage);
  padding: 10px 18px;
  margin-top: 0.5rem;
  font-size: 1rem;
  color: var(--text);
}
.service-fee strong { color: var(--navy); font-weight: 500; }
.service-fee .fee-note {
  display: block;
  font-size: 0.85rem;
  color: var(--text-mid);
  font-style: italic;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .service-detail { grid-template-columns: 1fr; }
}

/* ==================
   BLOG
   ================== */
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

.blog-list-section { padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 10vw, 120px); }
.blog-list { list-style: none; padding: 0; margin: 0; }
.blog-list-item { border-bottom: 1px solid var(--linen-dark); }
.blog-list-item:first-child { border-top: 1px solid var(--linen-dark); }
.blog-list-link {
  display: block;
  padding: 28px 0;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}
.blog-list-link:hover { transform: translateX(4px); }
.blog-list-link:hover .blog-list-title { color: var(--navy); }
.blog-list-date {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}
.blog-list-title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  margin: 0 0 6px;
  color: var(--text);
  transition: color 0.2s ease;
}
.blog-list-lede {
  font-size: 1.05rem;
  color: var(--text-mid);
  margin: 0;
}

.blog-post { padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 10vw, 120px); }
.blog-back {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.875rem;
  color: var(--sage);
  text-decoration: none;
  margin-bottom: 1.5rem;
}
.blog-back:hover { color: var(--navy); }
.blog-post-header { margin-bottom: 2.5rem; }
.blog-post-header h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin: 0.5rem 0 1rem;
  line-height: 1.15;
}
.blog-post-lede {
  font-size: 1.2rem;
  color: var(--text-mid);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  margin: 0;
}
.blog-post-body p { font-size: 1.15rem; line-height: 1.75; }
.blog-post-body h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 2.5rem 0 1rem;
}
.blog-post-body h3 {
  font-size: 1.3rem;
  margin: 2rem 0 0.75rem;
}
.blog-post-body ul, .blog-post-body ol {
  margin: 1rem 0 1.5rem 1.25rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-mid);
}
.blog-post-body li { margin-bottom: 0.5rem; }
.blog-post-body a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--sage);
  text-underline-offset: 3px;
}
.blog-post-body blockquote {
  border-left: 3px solid var(--sage);
  padding: 0.25rem 0 0.25rem 1.25rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-mid);
}

/* ==================
   CONTACT PAGE
   ================== */
.contact-section {
  padding: clamp(60px, 8vw, 100px) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-form { background: var(--linen); border-radius: var(--radius); padding: 40px; }
.contact-form h2 { margin-bottom: 8px; }
.contact-form > p { margin-bottom: 2rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--warm-white);
  border: 1.5px solid var(--linen-dark);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.925rem;
  color: var(--text);
  transition: border-color var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info h2 { margin-bottom: 1.5rem; }

.info-block {
  background: var(--linen);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
}
.info-block h3 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.info-block p { font-size: 0.925rem; margin: 0; }
.info-block a { color: var(--navy); text-decoration: none; border-bottom: 1px solid var(--sage-light); }

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

/* ==================
   SERVICE DETAIL PAGES
   ================== */
.breadcrumbs {
  margin-bottom: 1.5rem;
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  padding: 0;
}
.breadcrumbs li {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--text-light);
}
.breadcrumbs li:not(:last-child)::after {
  content: '/';
  margin: 0 8px;
  color: var(--sage-light);
}
.breadcrumbs a {
  color: var(--sage-mid);
  text-decoration: none;
  transition: color var(--transition);
}
.breadcrumbs a:hover { color: var(--navy); }

.service-page {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--warm-white);
}
.service-page h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 2.5rem 0 1rem;
}
.service-page h2:first-child { margin-top: 0; }
.service-page p { margin-bottom: 1.2rem; }
.service-page ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}
.service-page li {
  font-size: 1rem;
  color: var(--text-mid);
  padding: 6px 0 6px 18px;
  position: relative;
  border-bottom: 1px solid var(--linen-dark);
}
.service-page li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-size: 0.8rem;
}
.service-page a:not(.btn) {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--sage-light);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--transition);
}
.service-page a:not(.btn):hover { text-decoration-color: var(--navy); }

.service-faq {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--blush-mid);
}
.service-faq h2 { margin-bottom: 1.5rem; }
.faq-item {
  background: var(--warm-white);
  border: 1px solid var(--blush-dark);
  border-radius: var(--radius);
  margin-bottom: 12px;
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 24px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  list-style: none;
  position: relative;
  padding-right: 48px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--sage);
  transition: transform var(--transition);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  padding: 0 24px 18px;
  font-size: 1rem;
  margin: 0;
}

.service-cta {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--navy);
  text-align: center;
}
.service-cta h2 {
  color: var(--linen);
  margin-bottom: 0.75rem;
}
.service-cta p {
  color: rgba(246, 241, 235, 0.7);
  max-width: 520px;
  margin: 0 auto 2rem;
}
.service-cta .btn-primary {
  background: var(--coral);
}
.service-cta .btn-primary:hover { background: var(--coral-dark); }

/* Utility */
address { font-style: normal; }
