/* ==========================================================================
   TSFW Coaching - tsfwcoaching.com
   Executive & Leadership Coaching with Consulting Backbone
   --------------------------------------------------------------------------
   Palette: Indigo + Desert Sand + Warm Coral (Southwest sunset modern)
   ========================================================================== */

:root {
  --indigo:        #1F2A4A;
  --indigo-deep:   #10172E;
  --indigo-soft:   #404E72;
  --coral:         #D86B4E;
  --coral-deep:    #A24A33;
  --coral-soft:    #E9A48B;
  --sand:          #F2E9D5;
  --sand-warm:     #E4D8B8;
  --rule:          #CABD96;
  --ink:           #1F2A4A;
  --ink-soft:      #5B6584;
  --white:         #FFFFFF;
  --cream:         #FBF7EB;

  --radius: 4px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 2px rgba(16,23,46,0.06), 0 2px 6px rgba(16,23,46,0.04);
  --shadow-md: 0 4px 14px rgba(16,23,46,0.08), 0 12px 26px rgba(16,23,46,0.06);
  --shadow-lg: 0 20px 44px rgba(16,23,46,0.14);

  --font-display: 'Recoleta', 'DM Serif Display', Georgia, serif;
  --font-sans:    'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--coral-deep); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--coral); }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--indigo-deep);
  font-weight: 600;
  line-height: 1.16;
  margin: 0 0 .6em;
  letter-spacing: -0.005em;
}
h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.55rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 1.05em; color: var(--ink-soft); }
em, .italic { font-style: italic; color: var(--indigo-soft); }

.container {
  width: 100%;
  max-width: var(--container);
  padding: 0 24px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin-bottom: 1.1rem;
}
.eyebrow.on-dark { color: var(--coral-soft); }

.section-title {
  text-align: center;
  margin-bottom: 3.2rem;
}
.section-title h2 { margin-bottom: .6rem; }
.section-title .sub {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--coral-deep);
  margin-bottom: 1rem;
  font-weight: 500;
}
.section-title p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.04rem;
  color: var(--ink-soft);
}

/* Coral underline accent */
.accent-line {
  position: relative;
  display: inline-block;
}
.accent-line::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: -6px;
  height: 4px;
  background: var(--coral);
  border-radius: 2px;
  opacity: 0.9;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 14px 28px;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  transition: all .25s ease;
  cursor: pointer;
  text-align: center;
  border: 1px solid transparent;
  position: relative;
}
.btn-primary {
  background: var(--indigo);
  color: var(--sand);
  border-color: var(--indigo);
}
.btn-primary:hover {
  background: var(--indigo-deep);
  color: var(--white);
  border-color: var(--indigo-deep);
  box-shadow: inset 0 -3px 0 var(--coral);
}
.btn-outline {
  background: transparent;
  color: var(--indigo);
  border-color: var(--indigo);
}
.btn-outline:hover {
  background: var(--indigo);
  color: var(--sand);
}
.btn-outline.on-dark { color: var(--sand); border-color: rgba(242,233,213,0.4); }
.btn-outline.on-dark:hover { background: var(--sand); color: var(--indigo-deep); border-color: var(--sand); }
.btn-large { padding: 16px 34px; font-size: 1.02rem; }

/* Topbar */
.topbar {
  background: var(--indigo-deep);
  color: var(--sand);
  font-size: 0.86rem;
  border-bottom: 1px solid rgba(242,233,213,0.06);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  gap: 24px;
}
.topbar-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.03em;
}
.topbar-tagline svg { width: 16px; height: 16px; color: var(--coral-soft); }
.topbar-meta {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}
.topbar-meta span,
.topbar-meta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sand);
}
.topbar-meta a:hover { color: var(--coral-soft); }
.topbar-meta svg { width: 14px; height: 14px; }

/* Nav */
.nav {
  background: var(--cream);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--indigo-deep);
}
.brand-mark {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--indigo-deep);
  color: var(--coral-soft);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius);
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 2px;
  background: var(--coral);
  opacity: 0.6;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--indigo-deep);
  letter-spacing: -0.005em;
}
.brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  color: var(--indigo-deep);
  font-weight: 500;
  font-size: 0.96rem;
  padding: 8px 2px;
  position: relative;
}
.nav-menu a.active,
.nav-menu a:hover { color: var(--coral-deep); }
.nav-menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--coral);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--indigo-deep);
}
.hamburger svg { width: 22px; height: 22px; }

/* Mobile drawer */
.scrim {
  position: fixed;
  inset: 0;
  background: rgba(16,23,46,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 90;
}
.scrim.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(320px, 86vw);
  background: var(--cream);
  padding: 32px 28px;
  transform: translateX(110%);
  transition: transform .3s ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
}
.drawer.open { transform: translateX(0); }
.drawer-close {
  align-self: flex-end;
  color: var(--indigo-deep);
  margin-bottom: 14px;
}
.drawer-close svg { width: 22px; height: 22px; }
.drawer ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.drawer ul a {
  display: block;
  padding: 12px 6px;
  color: var(--indigo-deep);
  font-weight: 500;
  font-size: 1rem;
  border-bottom: 1px solid var(--rule);
}
.drawer-cta { width: 100%; margin-bottom: 28px; }
.drawer-meta {
  margin-top: auto;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* Hero */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 88% 78%, rgba(216,107,78,0.18) 0%, transparent 55%),
    linear-gradient(170deg, var(--sand) 0%, var(--sand-warm) 100%);
  color: var(--indigo-deep);
  padding: 110px 0 130px;
  overflow: hidden;
}
.hero-sun {
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--coral) 0%, var(--coral-deep) 70%, transparent 100%);
  opacity: 0.32;
  pointer-events: none;
}
.hero-rays {
  position: absolute;
  right: 60px;
  top: 70px;
  width: 220px;
  height: 220px;
  opacity: 0.18;
  pointer-events: none;
  color: var(--coral-deep);
}
.hero-inner { position: relative; z-index: 2; max-width: 820px; }
.hero h1 {
  color: var(--indigo-deep);
  margin-bottom: 1.3rem;
}
.hero h1 .underline-coral {
  position: relative;
  display: inline-block;
}
.hero h1 .underline-coral::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 6px;
  background: var(--coral);
  border-radius: 3px;
}
.hero-sub-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--coral-deep);
  margin-bottom: 1.2rem;
  display: block;
}
.hero-lead {
  color: var(--indigo);
  font-size: 1.13rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 660px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 2.4rem;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 0.9rem;
  color: var(--indigo-soft);
}
.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.hero-meta svg { width: 16px; height: 16px; color: var(--coral-deep); }

/* Sections */
.section-light { background: var(--cream); padding: 100px 0; }
.section-sand { background: var(--sand); padding: 100px 0; }
.section-sand-warm { background: var(--sand-warm); padding: 100px 0; }
.section-dark { background: var(--indigo-deep); color: var(--sand); padding: 100px 0; }
.section-dark h2,
.section-dark h3 { color: var(--sand); }
.section-dark p { color: rgba(242,233,213,0.82); }
.section-dark .eyebrow { color: var(--coral-soft); }

/* Trust strip */
.trust { background: var(--indigo); color: var(--sand); padding: 48px 0; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  text-align: center;
}
.trust-item {
  position: relative;
}
.trust-item + .trust-item::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 38px;
  background: rgba(242,233,213,0.18);
}
.trust-item .label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--sand);
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0.005em;
}
.trust-item .desc {
  display: block;
  font-size: 0.86rem;
  color: rgba(242,233,213,0.72);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Services alternating-block layout */
.services-alt {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.service-row.reverse .service-mark { order: 2; }
.service-row.reverse .service-body { order: 1; }
.service-mark {
  background: var(--sand);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
  position: relative;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.service-mark .mark-num {
  font-family: var(--font-display);
  font-size: 4.2rem;
  color: var(--coral);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}
.service-mark .mark-label {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--indigo-deep);
}
.service-mark::after {
  content: "";
  position: absolute;
  left: 30%;
  right: 30%;
  bottom: 22px;
  height: 2px;
  background: var(--coral);
  opacity: 0.6;
}
.service-body h3 {
  font-size: 1.55rem;
  margin-bottom: 14px;
}
.service-body .tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral-deep);
  display: block;
  margin-bottom: 10px;
}
.service-body p {
  font-size: 1rem;
  margin-bottom: 0;
}
.service-body p + p { margin-top: 1rem; }

/* Engagement formats */
.formats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.format {
  background: var(--cream);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--coral);
  box-shadow: var(--shadow-sm);
}
.format .duration {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.96rem;
  color: var(--coral-deep);
  font-weight: 500;
  margin-bottom: 10px;
}
.format h3 { margin-bottom: 10px; font-size: 1.22rem; }
.format p { margin: 0; font-size: 0.96rem; }

/* Process - horizontal bar in indigo-deep with coral numerals */
.process-bar {
  background: var(--indigo-deep);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
  overflow: hidden;
}
.process-bar::before {
  content: "";
  position: absolute;
  left: 40px;
  right: 40px;
  top: 92px;
  height: 1px;
  background: rgba(216,107,78,0.3);
  z-index: 1;
}
.process-step {
  position: relative;
  text-align: left;
  z-index: 2;
}
.process-step .process-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 18px;
  display: inline-block;
  background: var(--indigo-deep);
  padding-right: 14px;
}
.process-step h3 {
  color: var(--sand);
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.process-step p {
  color: rgba(242,233,213,0.78);
  font-size: 0.92rem;
  margin: 0;
}

/* Who we work with - cards */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.who-card {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: all .25s ease;
}
.who-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--coral-soft);
}
.who-card .who-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--indigo-deep);
  color: var(--coral-soft);
  margin-bottom: 18px;
}
.who-card .who-icon svg { width: 24px; height: 24px; }
.who-card h3 { margin-bottom: 10px; font-size: 1.22rem; }
.who-card p { font-size: 0.95rem; margin: 0; }

/* Specializations */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.spec {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
}
.spec svg { width: 20px; height: 20px; color: var(--coral-deep); flex-shrink: 0; }
.spec span {
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--indigo-deep);
}

/* Timeline */
.timeline {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  padding-left: 36px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--coral);
  opacity: 0.45;
}
.timeline-item {
  position: relative;
  padding-bottom: 32px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--coral);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 1px var(--coral);
}
.timeline-item .when {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--coral-deep);
  display: block;
  margin-bottom: 4px;
}
.timeline-item h3 { margin-bottom: 8px; font-size: 1.2rem; }
.timeline-item p { margin: 0; font-size: 0.96rem; }

/* FAQ */
.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.faq {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq summary {
  padding: 22px 26px;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--indigo-deep);
  cursor: pointer;
  list-style: none;
  position: relative;
  font-family: var(--font-display);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--coral-deep);
  transition: transform .2s ease;
  font-weight: 400;
}
.faq[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-body {
  padding: 0 26px 22px;
  color: var(--ink-soft);
  font-size: 0.97rem;
}
.faq-body p { margin: 0; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(160deg, var(--indigo-deep) 0%, var(--indigo) 100%);
  color: var(--sand);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--coral) 0%, transparent 70%);
  opacity: 0.18;
}
.cta-banner h2 {
  color: var(--sand);
  max-width: 760px;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 2;
}
.cta-banner p {
  color: rgba(242,233,213,0.82);
  max-width: 640px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
  position: relative;
  z-index: 2;
}
.cta-banner .hero-actions { justify-content: center; margin: 0; position: relative; z-index: 2; }

/* Page hero (about/services/contact) */
.page-hero {
  background:
    radial-gradient(circle at 90% 90%, rgba(216,107,78,0.16) 0%, transparent 55%),
    linear-gradient(170deg, var(--sand) 0%, var(--sand-warm) 100%);
  color: var(--indigo-deep);
  padding: 100px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero h1 { color: var(--indigo-deep); margin-bottom: 1rem; }
.page-hero h1 .underline-coral {
  position: relative;
  display: inline-block;
}
.page-hero h1 .underline-coral::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 5px;
  background: var(--coral);
  border-radius: 3px;
}
.page-hero p {
  color: var(--indigo);
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.12rem;
}

/* Prose */
.prose {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.04rem;
}
.prose h2 { margin-top: 2.6rem; }
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ink-soft); }
.prose ul { color: var(--ink-soft); padding-left: 22px; margin-bottom: 1.4rem; }
.prose ul li { margin-bottom: 0.5rem; }
.prose strong { color: var(--indigo-deep); }

/* Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1.2rem; }
.contact-info p { font-size: 1.02rem; margin-bottom: 1.4rem; }
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}
.contact-row:last-child { border-bottom: 0; }
.contact-row svg { width: 20px; height: 20px; color: var(--coral-deep); flex-shrink: 0; margin-top: 2px; }
.contact-row strong {
  display: block;
  color: var(--indigo-deep);
  font-weight: 600;
  margin-bottom: 2px;
}
.contact-row span { color: var(--ink-soft); font-size: 0.95rem; }
.callout {
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--sand);
  border-left: 4px solid var(--coral);
  border-radius: var(--radius);
}
.callout strong { display: block; color: var(--indigo-deep); margin-bottom: 4px; font-family: var(--font-display); font-size: 1.05rem; }
.callout p { margin: 0; font-size: 0.95rem; color: var(--ink-soft); }

.form-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-sm);
}
.form-card iframe {
  width: 100%;
  border: 0;
  min-height: 770px;
  display: block;
  border-radius: 0;
}

/* Footer */
.footer {
  background: var(--indigo-deep);
  color: rgba(242,233,213,0.78);
  padding: 70px 0 30px;
}
.footer h4 {
  color: var(--sand);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: var(--font-sans);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer .brand .brand-name { color: var(--sand); }
.footer .brand .brand-sub { color: rgba(242,233,213,0.6); }
.footer .brand .brand-mark { background: var(--coral); color: var(--indigo-deep); }
.footer .brand .brand-mark::after { background: var(--indigo-deep); opacity: 0.5; }
.footer p { color: rgba(242,233,213,0.72); font-size: 0.94rem; margin: 14px 0; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { color: rgba(242,233,213,0.75); font-size: 0.92rem; }
.footer ul a:hover { color: var(--coral-soft); }
.footer-meta {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(242,233,213,0.7);
}
.footer-meta-row svg { width: 16px; height: 16px; color: var(--coral-soft); }
.footer-bottom {
  border-top: 1px solid rgba(242,233,213,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.84rem;
  color: rgba(242,233,213,0.55);
}

/* Responsive */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-wrap { grid-template-columns: 1fr; gap: 36px; }
  .service-row { grid-template-columns: 1fr; gap: 28px; }
  .service-row.reverse .service-mark { order: 0; }
  .service-row.reverse .service-body { order: 0; }
  .process-bar {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding: 40px 32px;
  }
  .process-bar::before { display: none; }
}
@media (max-width: 780px) {
  .topbar-tagline { display: none; }
  .nav-menu { display: none; }
  .hamburger { display: inline-flex; }
  .nav-cta .btn { display: none; }
  .hero { padding: 80px 0 90px; }
  .hero-rays, .hero-sun { opacity: 0.14; }
  .section-light, .section-sand, .section-sand-warm, .section-dark { padding: 72px 0; }
  .trust-item + .trust-item::before { display: none; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-meta { gap: 14px; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { flex: 1; }
  .process-bar { grid-template-columns: 1fr; gap: 28px; }
  .service-mark { padding: 38px 24px; min-height: 200px; }
  .service-mark .mark-num { font-size: 3.4rem; }
}
