/* fibers design system */
:root {
  --radius: 0.25rem;
  --navy: #081B2D;
  --navy-deep: #050f1d;
  --cream: #F5F1E8;
  --cream-soft: #ebe5d6;
  --olive: #65803E;
  --olive-light: #8aa860;
  --gold: #B59348;
  --lime: #D8D42A;
  --border: #d4cdb8;
  --muted-fg: #6b6e72;
  --destructive: #c44;
  --font-display: "Crimson Pro", serif;
  --font-sans: "Roboto", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--cream);
  color: var(--navy-deep);
  font-family: var(--font-sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

/* layout */
.fibers-container { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .fibers-container { padding: 0 2.5rem; } }

.fibers-site .site-header,
.fibers-site .main-navigation,
.fibers-site #page,
.fibers-site .site-info,
.fibers-site .site-footer { all: unset; display: block; }
.fibers-site .inside-header,
.fibers-site .inside-navigation { all: unset; }
body.fibers-site { padding: 0 !important; margin: 0 !important; }

/* utility classes */
.italic-accent { font-family: var(--font-display); font-style: italic; font-weight: 400; color: var(--olive); }
.italic-accent--light { font-family: var(--font-display); font-style: italic; font-weight: 400; color: var(--olive-light); }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow--olive { color: var(--olive); }
.eyebrow--lime { color: var(--lime); }
.eyebrow--cream { color: rgba(245,241,232,0.8); }
.font-display { font-family: var(--font-display); }
.bg-navy-grad { background: linear-gradient(160deg, #0d2540 0%, #050f1d 100%); }
.bg-cream-soft { background-color: var(--cream-soft); }
.text-cream { color: var(--cream); }
.text-navy { color: var(--navy); }
.text-olive { color: var(--olive); }
.text-muted { color: var(--muted-fg); }
.text-gold { color: var(--gold); }

/* HEADER */
.fibers-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
}
.fibers-header__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 1024px) { .fibers-header__inner { padding: 1.25rem 2.5rem; } }
.fibers-header__logo img { height: 6rem; width: auto; }
@media (min-width: 1024px) { .fibers-header__logo img { height: 8rem; } }

.fibers-nav-desktop { display: none; align-items: center; gap: 2.25rem; }
@media (min-width: 1024px) { .fibers-nav-desktop { display: flex; } }
.fibers-nav-desktop a {
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(245,241,232,0.85);
  transition: color 0.2s;
}
.fibers-nav-desktop a:hover,
.fibers-nav-desktop a.current { color: var(--cream); font-weight: 500; }

.fibers-header__phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(245,241,232,0.3);
  padding: 0.625rem 1.25rem;
  font-size: 13px;
  color: var(--cream);
  transition: all 0.2s;
}
@media (min-width: 1024px) { .fibers-header__phone { display: inline-flex; } }
.fibers-header__phone:hover { background: var(--cream); color: var(--navy); }
.fibers-header__phone svg { height: 14px; width: 14px; }

.fibers-hamburger {
  display: flex;
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  padding: 0;
}
@media (min-width: 1024px) { .fibers-hamburger { display: none; } }
.fibers-hamburger svg { height: 24px; width: 24px; }

.fibers-mobile-nav {
  display: none;
  background: var(--navy-deep);
  border-top: 1px solid rgba(245,241,232,0.1);
}
.fibers-mobile-nav.is-open { display: block; }
@media (min-width: 1024px) { .fibers-mobile-nav { display: none !important; } }
.fibers-mobile-nav__inner { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.fibers-mobile-nav a {
  color: rgba(245,241,232,0.85);
  font-size: 0.875rem;
}
.fibers-mobile-nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cream);
  font-size: 0.875rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(245,241,232,0.1);
}
.fibers-mobile-nav__phone svg { height: 16px; width: 16px; }

/* BTN */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.75rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 400;
  text-decoration: none;
}
.btn svg { height: 16px; width: 16px; }
.btn--primary { background: var(--cream); color: var(--navy); }
.btn--primary:hover { background: var(--olive-light); color: var(--navy-deep); }
.btn--outline { background: transparent; border: 1px solid rgba(245,241,232,0.3); color: var(--cream); }
.btn--outline:hover { background: rgba(245,241,232,0.1); }
.btn--navy { background: var(--navy); color: var(--cream); }
.btn--navy:hover { background: rgba(8,27,45,0.9); }
.btn--navy-outline { background: transparent; border: 1px solid var(--navy); color: var(--navy); }
.btn--navy-outline:hover { background: var(--navy); color: var(--cream); }
.btn--olive { background: var(--olive); color: var(--cream); }
.btn--olive:hover { background: var(--olive-light); color: var(--navy); }
.btn--cream-on-navy { background: var(--cream); color: var(--navy); }
.btn--cream-on-navy:hover { background: var(--olive-light); }
.btn--block { width: 100%; justify-content: center; }

/* HERO */
.fibers-hero { position: relative; color: var(--cream); overflow: hidden; }
.fibers-hero .bg-navy-grad { position: absolute; inset: 0; }
.fibers-hero__pattern {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.3;
  mix-blend-mode: screen;
}
.fibers-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(5,15,29,0.4), rgba(5,15,29,0.6), var(--navy-deep));
}
.fibers-hero__content { position: relative; max-width: 80rem; margin: 0 auto; padding: 11rem 1.5rem 8rem; }
@media (min-width: 1024px) { .fibers-hero__content { padding: 13rem 2.5rem 11rem; } }
.fibers-hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 3.75rem;
  line-height: 0.95;
  max-width: 64rem;
}
@media (min-width: 640px) { .fibers-hero h1 { font-size: 4.375rem; } }
@media (min-width: 1024px) { .fibers-hero h1 { font-size: 6rem; } }
.fibers-hero__sub {
  margin-top: 2.5rem;
  max-width: 36rem;
  font-size: 1rem;
  color: rgba(245,241,232,0.75);
  line-height: 1.65;
  font-weight: 300;
}
@media (min-width: 1024px) { .fibers-hero__sub { font-size: 1.125rem; } }
.fibers-hero__actions { margin-top: 3rem; display: flex; flex-wrap: wrap; gap: 1rem; }

/* PAGE HERO (inner pages) */
.fibers-page-hero { padding: 10rem 0 7rem; }
.fibers-page-hero .fibers-container { position: relative; }
.fibers-page-hero h1 {
  font-size: 3.75rem;
  line-height: 1.02;
  max-width: 56rem;
}
@media (min-width: 1024px) { .fibers-page-hero h1 { font-size: 4.375rem; } }
.fibers-page-hero__sub {
  margin-top: 2rem;
  max-width: 42rem;
  color: rgba(245,241,232,0.75);
  line-height: 1.65;
}

/* PILLARS */
.pillars-section { padding: 7rem 0 9rem; }
@media (min-width: 1024px) { .pillars-section { padding: 9rem 0; } }
.pillars-header { max-width: 48rem; margin-bottom: 5rem; }
.pillars-header h2 { font-size: 3rem; line-height: 1.05; }
@media (min-width: 1024px) { .pillars-header h2 { font-size: 3.75rem; } }
.pillars-header p { margin-top: 1.5rem; font-family: var(--font-display); font-style: italic; font-size: 1.125rem; color: var(--muted-fg); }
.pillars-grid { display: grid; gap: 3.5rem 4rem; }
@media (min-width: 768px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
.pillar { display: flex; gap: 1.5rem; }
.pillar__number { flex-shrink: 0; font-family: var(--font-display); font-style: italic; font-size: 2.5rem; line-height: 1; color: var(--olive); }
.pillar__body { flex: 1; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.pillar__title { font-size: 1.25rem; font-weight: 500; color: var(--navy); margin-bottom: 0.5rem; font-family: var(--font-sans); }
.pillar__text { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.65; }
.pillars-tagline { margin-top: 4rem; font-family: var(--font-display); font-style: italic; font-size: 1.125rem; color: var(--olive); }

/* CTA STRIP */
.cta-strip { padding: 6rem 0; position: relative; overflow: hidden; color: var(--cream); }
.cta-strip__pattern {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.2;
  mix-blend-mode: screen;
}
.cta-strip__inner { position: relative; max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .cta-strip__inner { grid-template-columns: 1fr 1fr; padding: 0 2.5rem; } }
.cta-strip h2 { font-family: var(--font-display); font-size: 2.5rem; line-height: 1.1; }
@media (min-width: 1024px) { .cta-strip h2 { font-size: 3rem; } }
.cta-strip__sub { margin-top: 1.5rem; color: rgba(245,241,232,0.75); line-height: 1.65; max-width: 32rem; }
.cta-strip__info { display: flex; flex-direction: column; gap: 1rem; }
.cta-strip__row { display: flex; align-items: baseline; gap: 1.5rem; border-bottom: 1px solid rgba(245,241,232,0.15); padding-bottom: 1rem; }
.cta-strip__label { width: 6rem; flex-shrink: 0; }
.cta-strip__value { font-family: var(--font-display); font-size: 1.25rem; color: var(--cream); }

/* QUOTE */
.quote-section { padding: 7rem 0; text-align: center; }
.quote-section .fibers-container { max-width: 56rem; }
.quote-section blockquote {
  font-family: var(--font-display);
  font-size: 1.875rem;
  line-height: 1.4;
  color: var(--navy);
}
@media (min-width: 1024px) { .quote-section blockquote { font-size: 2.25rem; } }
.quote-section cite { display: block; margin-top: 2rem; font-style: normal; }

/* CARDS GRID */
.cards-grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }
.card { background: var(--cream); padding: 2.5rem; border: 1px solid var(--border); }
.card__title { font-family: var(--font-display); font-style: italic; font-size: 1.875rem; color: var(--olive); margin-bottom: 0.75rem; }
.card__text { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.65; }

/* SECTION CTA */
.section-cta { padding: 6rem 0; text-align: center; color: var(--cream); }
.section-cta h2 { font-family: var(--font-display); font-size: 2.5rem; }
@media (min-width: 1024px) { .section-cta h2 { font-size: 3rem; } }

/* SECTION — generic */
.section { padding: 6rem 0; }
.section--lg { padding: 7rem 0; }
.section-header { margin-bottom: 3rem; }
.section-header h2 { font-size: 2.5rem; }
@media (min-width: 1024px) { .section-header h2 { font-size: 3rem; } }
.section-header p { margin-top: 1.5rem; color: var(--muted-fg); line-height: 1.65; max-width: 42rem; }

/* CONDITIONS */
.condition-group { display: grid; gap: 2.5rem; padding-bottom: 4rem; border-bottom: 1px solid var(--border); margin-bottom: 5rem; }
.condition-group:last-child { border-bottom: none; margin-bottom: 0; }
@media (min-width: 1024px) { .condition-group { grid-template-columns: 1fr 3fr; } }
.condition-group__label { display: flex; align-items: flex-start; gap: 1rem; }
.condition-group__icon { background: var(--navy); color: var(--cream); padding: 0.75rem; border-radius: var(--radius); display: inline-flex; }
.condition-group__icon svg { height: 20px; width: 20px; }
.condition-group__tags { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.condition-tag { border: 1px solid var(--border); padding: 0.75rem 1.25rem; font-size: 0.875rem; background: rgba(235,229,214,0.6); color: var(--navy); }

/* TEAM */
.team-grid { display: grid; gap: 2rem; }
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }

.team-card { background: var(--cream); padding: 1.5rem 2rem 2rem; border: 1px solid var(--border); display: flex; flex-direction: column; }
.team-card__photo { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 2px; background: linear-gradient(135deg, var(--navy), var(--navy-deep)); margin-bottom: 1.5rem; }
.team-card__photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.team-card__initials {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 3rem; color: var(--olive-light); font-style: italic;
}
.team-card__name { font-family: var(--font-display); font-size: 1.25rem; color: var(--navy); line-height: 1.3; margin-bottom: 0.5rem; }
@media (min-width: 640px) { .team-card__name { font-size: 1.5rem; } }
.team-card__text { font-size: 0.875rem; color: var(--muted-fg); line-height: 1.65; }

.lead-card { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .lead-card { grid-template-columns: 2fr 3fr; } }
.lead-card__photo { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 2px; background: linear-gradient(135deg, var(--navy), var(--navy-deep)); }
.lead-card__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lead-card__overlay {
  position: absolute; inset: 0 0 0 0;
  display: flex; align-items: flex-end; padding: 2rem;
  color: var(--cream);
}
.lead-card__overlay::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--navy-deep), rgba(5,15,29,0.7) 33%, transparent);
}
.lead-card__overlay > div { position: relative; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6)); }
.lead-card__info { padding-top: 1rem; }
.lead-card__stats { margin-top: 2rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; border-top: 1px solid var(--border); padding-top: 2rem; }
.stat__number { font-family: var(--font-display); font-style: italic; font-size: 1.875rem; color: var(--olive); }

/* CONTACT */
.contact-grid { display: grid; gap: 4rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-item { display: flex; align-items: flex-start; gap: 1.25rem; border-bottom: 1px solid var(--border); padding-bottom: 1.5rem; }
.contact-item__icon { background: var(--navy); color: var(--cream); padding: 0.75rem; border-radius: var(--radius); display: inline-flex; }
.contact-item__icon svg { height: 16px; width: 16px; }
.contact-item__value { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); }
.contact-item__value a { transition: color 0.2s; }
.contact-item__value a:hover { color: var(--olive); }

.contact-form { background: var(--cream-soft); padding: 2.5rem; border: 1px solid var(--border); }
.contact-form h2 { font-family: var(--font-display); font-size: 1.875rem; color: var(--navy); margin-bottom: 0.5rem; }
.contact-form__subtitle { font-family: var(--font-display); font-style: italic; color: var(--olive); margin-bottom: 2rem; }

.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-label { display: block; margin-bottom: 0.5rem; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 0.75rem 1rem;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  transition: border-color 0.2s;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--olive); }
.form-error { color: var(--destructive); font-size: 0.75rem; margin-top: 0.25rem; }
.form-disclaimer { font-size: 0.6875rem; color: var(--muted-fg); line-height: 1.6; margin-top: 0.5rem; }
.form-success { text-align: center; padding: 3rem 0; }
.form-success h3 { font-size: 1.875rem; margin-bottom: 0.75rem; }
.form-success p { font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 1.5rem; }
.form-success button { background: none; border: none; color: var(--olive); font-size: 0.875rem; text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }

/* LOCATIONS */
.location-card {
  display: flex; flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 1.75rem;
  transition: border-color 0.2s;
  text-decoration: none;
  color: inherit;
}
.location-card:hover { border-color: var(--olive); }
.location-card__city { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.location-card__city svg { height: 16px; width: 16px; color: var(--olive); }
.location-card__name { font-family: var(--font-display); font-size: 1.5rem; color: var(--navy); margin-bottom: 0.5rem; }
.location-card__address { font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 0.25rem; }
.location-card__footer { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 1rem; border-top: 1px solid var(--border); }
.location-card__phone { font-size: 0.875rem; color: var(--olive); display: flex; align-items: center; gap: 0.25rem; }
.location-card__phone svg { height: 14px; width: 14px; }
.location-card__arrow svg { height: 16px; width: 16px; color: var(--navy); transition: transform 0.2s; }
.location-card:hover .location-card__arrow svg { transform: translateX(4px); }

.locations-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .locations-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .locations-grid { grid-template-columns: repeat(3, 1fr); } }

.featured-location { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .featured-location { grid-template-columns: 1fr 1fr; } }

.location-detail { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .location-detail { grid-template-columns: 2fr 3fr; } }
.location-detail__map { aspect-ratio: 4/3; width: 100%; border: 1px solid var(--border); background: var(--cream-soft); overflow: hidden; }
.location-detail__map iframe { width: 100%; height: 100%; border: 0; }

.hours-table { width: 100%; }
.hours-table tr { display: flex; justify-content: space-between; padding: 0.5rem 0; font-size: 0.875rem; border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td:first-child { color: var(--navy); }
.hours-table td:last-child { color: var(--muted-fg); }

.mini-locations { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 640px) { .mini-locations { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .mini-locations { grid-template-columns: repeat(6, 1fr); } }
.mini-location {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--navy);
  transition: border-color 0.2s;
}
.mini-location:hover { border-color: var(--olive); }
.mini-location svg { height: 16px; width: 16px; color: var(--olive); flex-shrink: 0; }

/* CTA BAR */
.cta-bar { padding: 5rem 0; color: var(--cream); }
.cta-bar__inner { max-width: 56rem; margin: 0 auto; padding: 0 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; align-items: center; }
@media (min-width: 640px) { .cta-bar__inner { flex-direction: row; justify-content: space-between; } }
@media (min-width: 1024px) { .cta-bar__inner { padding: 0 2.5rem; } }

/* FOOTER */
.fibers-footer { color: rgba(245,241,232,0.8); }
.fibers-footer__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .fibers-footer__inner { grid-template-columns: 2fr 1fr 1fr; padding: 5rem 2.5rem; }
}
.fibers-footer__logo img { height: 4rem; width: auto; margin-bottom: 1.5rem; }
.fibers-footer__desc { font-size: 0.875rem; max-width: 28rem; line-height: 1.65; }
.fibers-footer__links h4 { margin-bottom: 1.25rem; }
.fibers-footer__links ul { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.fibers-footer__links a { font-size: 0.875rem; transition: color 0.2s; }
.fibers-footer__links a:hover { color: var(--cream); }
.fibers-footer__contact h4 { margin-bottom: 1.25rem; }
.fibers-footer__contact ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.fibers-footer__contact li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.875rem; }
.fibers-footer__contact svg { height: 16px; width: 16px; margin-top: 2px; color: var(--olive-light); flex-shrink: 0; }
.fibers-footer__contact a:hover { color: var(--cream); }
.fibers-footer__bottom {
  border-top: 1px solid rgba(245,241,232,0.1);
}
.fibers-footer__bottom-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: rgba(245,241,232,0.5);
}
@media (min-width: 640px) { .fibers-footer__bottom-inner { flex-direction: row; justify-content: space-between; } }
@media (min-width: 1024px) { .fibers-footer__bottom-inner { padding: 1.5rem 2.5rem; } }
.fibers-footer__tagline { font-family: var(--font-display); font-style: italic; }

/* SUNSKY specific */
.sunsky-hero-grid { display: grid; gap: 3rem; align-items: flex-start; }
@media (min-width: 1024px) { .sunsky-hero-grid { grid-template-columns: 7fr 5fr; } }
.sunsky-info-card { border: 1px solid rgba(245,241,232,0.15); padding: 2rem; background: rgba(5,15,29,0.4); }
.sunsky-info-card dl { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; font-size: 0.875rem; }
.sunsky-info-card .info-row { display: flex; align-items: center; gap: 1rem; border-bottom: 1px solid rgba(245,241,232,0.1); padding-bottom: 0.75rem; }
.sunsky-info-card .info-row dt { width: 4rem; flex-shrink: 0; }
.sunsky-info-card .info-row dd { color: var(--cream); }
.sunsky-info-card .info-row:last-child { border-bottom: none; padding-bottom: 0; }

.sunsky-pillars { display: grid; gap: 1px; background: var(--border); }
@media (min-width: 768px) { .sunsky-pillars { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .sunsky-pillars { grid-template-columns: repeat(4, 1fr); } }
.sunsky-pillar { background: var(--cream); padding: 2rem; }
.sunsky-pillar__number { font-family: var(--font-display); font-style: italic; font-size: 2.5rem; color: var(--olive); }
.sunsky-pillar__icon { margin-top: 1.5rem; color: var(--olive); }
.sunsky-pillar__icon svg { height: 20px; width: 20px; }
.sunsky-pillar__title { font-family: var(--font-sans); font-weight: 500; color: var(--navy); margin-top: 1rem; font-size: 1rem; line-height: 1.3; }
.sunsky-pillar__text { font-size: 0.875rem; color: var(--muted-fg); margin-top: 0.75rem; line-height: 1.65; }

.sunsky-conditions { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .sunsky-conditions { grid-template-columns: repeat(3, 1fr); } }
.sunsky-cond-group__header { display: flex; align-items: center; gap: 0.75rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(101,128,62,0.4); }
.sunsky-cond-group__icon { display: inline-flex; height: 2.25rem; width: 2.25rem; align-items: center; justify-content: center; background: var(--navy); color: var(--gold); }
.sunsky-cond-group__icon svg { height: 16px; width: 16px; }
.sunsky-cond-group__items { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.sunsky-cond-item { background: var(--cream); border: 1px solid var(--border); padding: 0.75rem 1rem; font-size: 0.875rem; color: var(--navy); }

.sunsky-team-doctors { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .sunsky-team-doctors { grid-template-columns: repeat(2, 1fr); } }
.sunsky-doc-card { background: rgba(0,0,0,0.15); border: 1px solid rgba(245,241,232,0.15); padding: 2rem; }
.sunsky-doc-card__name { font-family: var(--font-display); font-size: 1.875rem; margin-top: 0.75rem; }
.sunsky-doc-card__role { font-family: var(--font-sans); font-weight: 500; font-size: 0.875rem; margin-top: 1rem; }
.sunsky-doc-card__body { color: rgba(245,241,232,0.8); font-size: 0.875rem; line-height: 1.65; margin-top: 0.75rem; }

.sunsky-team-support { display: grid; gap: 1.5rem; margin-top: 2.5rem; }
@media (min-width: 768px) { .sunsky-team-support { grid-template-columns: repeat(3, 1fr); } }
.sunsky-support-card { background: var(--cream); color: var(--navy); padding: 1.5rem; border: 1px solid var(--cream); }
.sunsky-support-card__name { font-family: var(--font-display); font-size: 1.25rem; line-height: 1.3; }
.sunsky-support-card__body { font-size: 0.875rem; color: var(--muted-fg); margin-top: 0.75rem; line-height: 1.65; }

.sunsky-appt-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .sunsky-appt-grid { grid-template-columns: 7fr 5fr; } }
.sunsky-appt-grid dl { max-width: 36rem; margin-top: 3rem; }
.sunsky-appt-row { display: grid; grid-template-columns: 80px 1fr; align-items: center; gap: 1.5rem; padding: 1rem 0; border-bottom: 1px solid rgba(245,241,232,0.15); }
.sunsky-appt-row dt { display: flex; align-items: center; gap: 0.5rem; }
.sunsky-appt-row dt svg { height: 14px; width: 14px; }
.sunsky-appt-row dd a { color: var(--cream); transition: color 0.2s; word-break: break-all; }
.sunsky-appt-row dd a:hover { color: var(--olive-light); }

.sunsky-sidebar { padding-left: 0; }
@media (min-width: 1024px) { .sunsky-sidebar { padding-left: 2rem; border-left: 1px solid rgba(245,241,232,0.15); } }
.sunsky-brand { display: flex; flex-direction: column; gap: 0.75rem; }
.sunsky-brand__name { font-family: var(--font-display); font-size: 2.5rem; line-height: 1; }
.sunsky-brand__collab { display: flex; align-items: flex-start; gap: 0.75rem; max-width: 24rem; }
.sunsky-brand__collab span { display: block; height: 1px; width: 2rem; background: var(--olive-light); margin-top: 0.75rem; flex-shrink: 0; }
.sunsky-brand__collab p { font-size: 0.75rem; line-height: 1.65; color: rgba(245,241,232,0.7); }
.sunsky-schedule-card { margin-top: 2.5rem; border: 1px solid rgba(245,241,232,0.15); background: rgba(5,15,29,0.5); padding: 2rem; }
.sunsky-schedule-card__header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.sunsky-schedule-card__header svg { height: 16px; width: 16px; color: var(--lime); }
.sunsky-schedule-card p { font-family: var(--font-display); font-style: italic; font-size: 1.5rem; line-height: 1.3; }
.sunsky-address { margin-top: 2rem; display: flex; align-items: center; gap: 0.75rem; color: rgba(245,241,232,0.7); font-size: 0.875rem; }
.sunsky-address svg { height: 16px; width: 16px; color: var(--olive-light); }

.sunsky-network { display: grid; gap: 3rem; margin-top: 3rem; }
@media (min-width: 1024px) { .sunsky-network { grid-template-columns: 1fr 1fr; } }
.sunsky-featured-box { background: var(--cream-soft); border: 1px solid var(--border); padding: 2rem; }
.sunsky-featured-box__star { display: flex; align-items: center; gap: 0.5rem; color: var(--olive); margin-bottom: 1rem; font-size: 1.125rem; }
.sunsky-featured-box__name { font-family: var(--font-display); font-size: 1.875rem; color: var(--navy); }
.sunsky-featured-box__phone { margin-top: 1.5rem; display: inline-flex; align-items: center; gap: 0.5rem; color: var(--olive); font-weight: 500; }
.sunsky-featured-box__phone svg { height: 16px; width: 16px; }
.sunsky-city-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem 1.5rem; }
@media (min-width: 640px) { .sunsky-city-grid { grid-template-columns: repeat(3, 1fr); } }
.sunsky-city-item { font-size: 0.875rem; color: var(--navy); display: flex; align-items: center; gap: 0.5rem; }
.sunsky-city-dot { height: 6px; width: 6px; background: var(--olive); border-radius: 50%; flex-shrink: 0; }
.sunsky-coord-box { margin-top: 2.5rem; background: var(--navy); color: var(--cream); padding: 1.5rem; max-width: 28rem; display: flex; align-items: center; gap: 1rem; }
.sunsky-coord-box svg { height: 20px; width: 20px; color: var(--lime); flex-shrink: 0; }
.sunsky-coord-box__phone { font-family: var(--font-display); font-size: 1.25rem; margin-top: 0.25rem; }

.sunsky-footer-strip { padding: 2.5rem 0; border-top: 1px solid rgba(245,241,232,0.1); color: var(--cream); }
.sunsky-footer-strip__inner { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
@media (min-width: 768px) { .sunsky-footer-strip__inner { flex-direction: row; align-items: center; justify-content: space-between; padding: 0 2.5rem; } }
.sunsky-footer-strip__meta { display: flex; align-items: center; gap: 1.5rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(245,241,232,0.6); }
.sunsky-footer-strip__meta svg { height: 14px; width: 14px; color: var(--lime); }
.sunsky-footer-strip__meta a:hover { color: var(--cream); }

/* facility info */
.facility-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .facility-grid { grid-template-columns: 3fr 2fr; } }
.facility-profile { font-size: 0.875rem; }
.facility-profile dl { display: flex; flex-direction: column; }
.facility-profile .profile-row { display: flex; justify-content: space-between; padding: 0.5rem 0; gap: 1rem; border-bottom: 1px solid var(--border); }
.facility-profile .profile-row:last-child { border-bottom: none; }
.facility-profile dt { color: var(--muted-fg); }
.facility-profile dd { color: var(--navy); text-align: right; }

/* team hero gold bg */
.team-hero-gold { background-color: oklch(0.55 0.08 85); }

/* sunsky team gold bg */
.bg-gold-95 { background-color: rgba(181, 147, 72, 0.95); }

/* APPOINTMENT INTAKE — matches Lovable /appointment hero (oklch green, olive accents) */
.intake-hero {
  background-color: oklch(0.55 0.08 85);
  padding: 11rem 0 3rem;
}
@media (min-width: 1024px) { .intake-hero { padding-top: 13rem; padding-bottom: 4rem; } }
.intake-hero__inner { max-width: 48rem; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 1024px) { .intake-hero__inner { padding: 0 2.5rem; } }
.intake-hero__title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}
@media (min-width: 640px) { .intake-hero__title { font-size: 3rem; } }
@media (min-width: 1024px) { .intake-hero__title { font-size: 3.75rem; } }
.intake-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(245,241,232,0.3);
  background: rgba(245,241,232,0.1);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.intake-hero__badge svg { width: 14px; height: 14px; }
.intake-hero__location { font-size: 1rem; color: rgba(245,241,232,0.85); }
@media (min-width: 640px) { .intake-hero__location { font-size: 1.125rem; } }

.intake-form-wrap { max-width: 48rem; }
.intake-location-card {
  border: 2px solid rgba(101,128,62,0.35);
  background: rgba(101,128,62,0.08);
  padding: 1.25rem;
  margin-bottom: 2.5rem;
}
.intake-location-card__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.intake-location-card__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--olive);
}
.intake-location-card__hint { font-size: 0.6875rem; color: var(--muted-fg); }
.intake-location-card__name { font-weight: 600; font-size: 1rem; margin-bottom: 0.75rem; color: var(--navy); }
.intake-location-card__details { display: grid; gap: 0.5rem; }
@media (min-width: 640px) { .intake-location-card__details { grid-template-columns: 1fr 1fr; } }
.intake-location-card__row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--navy-deep);
}
.intake-location-card__row svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--muted-fg); }

.intake-form { display: flex; flex-direction: column; gap: 2.5rem; }
.intake-section__heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.intake-section__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: #658033;
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.intake-section__heading h2 {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #658033;
}
.form-textarea {
  font-weight: 400;
  text-transform: none;
  resize: vertical;
  overflow: auto;
  letter-spacing: normal;
  color: var(--muted-fg);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.intake-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--navy);
}

.intake-reason-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .intake-reason-grid { grid-template-columns: repeat(3, 1fr); } }
.intake-reason-card {
  border: 1px solid var(--border);
  padding: 1rem;
  background: var(--cream);
}
.intake-reason-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.intake-reason-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(101,128,62,0.15);
  border-radius: var(--radius);
  color: var(--olive);
}
.intake-reason-card__icon svg { width: 20px; height: 20px; }
.intake-reason-card h3 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
}
.intake-checkboxes { display: flex; flex-direction: column; gap: 0.5rem; }
.intake-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  cursor: pointer;
}
.intake-check input { margin-top: 3px; width: 1rem; height: 1rem; accent-color: var(--olive); }
.intake-check-other {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.intake-check-other span { font-size: 0.875rem; color: var(--muted-fg); flex-shrink: 0; }
.intake-check-other .form-input { padding: 0.4rem 0.75rem; }

.intake-contact-options { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.intake-contact-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  cursor: pointer;
  font-size: 0.875rem;
  transition: background 0.2s;
}
.intake-contact-option:hover { background: var(--cream-soft); }
.intake-contact-option input { accent-color: var(--olive); }
.intake-contact-option svg { width: 16px; height: 16px; color: var(--olive); }

.intake-submit-bar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(101,128,62,0.35);
  background: rgba(101,128,62,0.08);
}
@media (min-width: 640px) {
  .intake-submit-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.intake-submit-bar__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.intake-submit-bar__label svg { width: 16px; height: 16px; color: var(--olive); }

.fibers-appointment .btn--intake-submit {
  background: var(--navy);
  color: white;
  border: none;
  border-radius: 0.175rem;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.fibers-appointment .form-input:focus,
.fibers-appointment .form-textarea:focus { border-color: var(--olive); }

/* APPOINTMENT THANK YOU */
.fibers-thank-you .fibers-header {
  position: relative;
  background: linear-gradient(160deg, #0d2540 0%, #050f1d 100%);
}
.thank-you-main { background: var(--cream); }
.thank-you {
  padding: 4rem 1.5rem 5rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .thank-you { padding-top: 5rem; padding-bottom: 6rem; }
}
.thank-you__inner {
  max-width: 42rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.thank-you__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.thank-you__icon svg { width: 1.5rem; height: 1.5rem; }
.thank-you__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.thank-you__badge svg { width: 14px; height: 14px; color: var(--muted-fg); }
.thank-you__title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1.1;
  color: var(--navy-deep);
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) {
  .thank-you__title { font-size: 3rem; }
}
.thank-you__lead {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--navy-deep);
  max-width: 36rem;
  margin-bottom: 0.5rem;
}
.thank-you__lead strong { font-weight: 600; }
.thank-you__sub {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted-fg);
  max-width: 36rem;
  margin-bottom: 2rem;
}
.thank-you-card {
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}
.thank-you-card__name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-deep);
  margin-bottom: 0.75rem;
}
.thank-you-card__details { display: flex; flex-direction: column; gap: 0.5rem; }
.thank-you-card__row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--navy-deep);
}
.thank-you-card__row svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--muted-fg);
}
.thank-you-card__row a {
  color: inherit;
  text-decoration: none;
}
.thank-you-card__row a:hover { color: var(--olive); text-decoration: underline; }
.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  width: 100%;
}
.thank-you-actions .btn {
  padding: 0.75rem 1.25rem;
  font-size: 0.8125rem;
  letter-spacing: 0.03em;
}
.btn--thank-secondary {
  background: var(--cream-soft);
  border: 1px solid var(--border);
  color: var(--navy-deep);
}
.btn--thank-secondary:hover {
  background: var(--border);
  color: var(--navy-deep);
}

/* Print-only thank-you confirmation + corporate footer (screen hidden) */
.thank-you-print-extra { display: none; }

/* Appointment thank-you print / PDF layout */
@media print {
  @page {
    margin: 0.75in;
    size: letter;
  }

  .fibers-thank-you *,
  .fibers-thank-you *::before,
  .fibers-thank-you *::after {
    box-shadow: none !important;
    text-shadow: none !important;
  }

  .fibers-thank-you .fibers-header,
  .fibers-thank-you .fibers-footer,
  .fibers-thank-you .thank-you-actions {
    display: none !important;
  }

  .fibers-thank-you,
  .fibers-thank-you .thank-you-main,
  .fibers-thank-you .thank-you {
    background: #fff !important;
    color: #000 !important;
  }

  .fibers-thank-you .thank-you {
    padding: 0 !important;
    text-align: center;
  }

  .fibers-thank-you .thank-you__inner {
    max-width: 32rem;
    margin: 0 auto;
    padding: 0;
  }

  .fibers-thank-you .thank-you__icon {
    background: #000 !important;
    color: #fff !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .fibers-thank-you .thank-you__badge {
    background: #fff !important;
    border: 1px solid #000 !important;
    color: #000 !important;
  }

  .fibers-thank-you .thank-you__badge svg {
    color: #000 !important;
  }

  .fibers-thank-you .thank-you__title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    color: #000 !important;
    margin-bottom: 1rem;
  }

  .fibers-thank-you .thank-you__lead,
  .fibers-thank-you .thank-you__sub {
    color: #000 !important;
    font-size: 0.9375rem;
    max-width: none;
  }

  .fibers-thank-you .thank-you__sub {
    margin-bottom: 1.5rem;
  }

  .fibers-thank-you .thank-you-card {
    background: #fff !important;
    border: 1px solid #000 !important;
    margin-bottom: 1.5rem;
    padding: 1rem 1.25rem;
    text-align: left;
  }

  .fibers-thank-you .thank-you-card__name,
  .fibers-thank-you .thank-you-card__row {
    color: #000 !important;
  }

  .fibers-thank-you .thank-you-card__row svg {
    color: #000 !important;
  }

  .fibers-thank-you .thank-you-card__row a {
    color: #000 !important;
    text-decoration: underline !important;
  }

  .fibers-thank-you .thank-you-print-extra {
    display: block !important;
    width: 100%;
    text-align: left;
    margin-top: 0.25rem;
  }

  .fibers-thank-you .thank-you-print-rule {
    border: none;
    border-top: 1px solid #000;
    margin: 1.25rem 0;
  }

  .fibers-thank-you .thank-you-confirm__title {
    font-family: var(--font-sans);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #000 !important;
    margin-bottom: 0.2rem;
    text-align: left;
  }

  .fibers-thank-you .thank-you-confirm__block {
    margin-bottom: 0.1rem;
  }

  .fibers-thank-you .thank-you-confirm__label {
    font-size: 0.875rem;
    color: #000 !important;
    margin-bottom: 0.15rem;
  }

  .fibers-thank-you .thank-you-confirm__value {
    font-size: 0.875rem;
    color: #000 !important;
    line-height: 1.5;
  }

  .fibers-thank-you .thank-you-confirm__time {
    font-size: 0.8125rem;
    color: #000 !important;
    margin-top: 1rem;
  }

  .fibers-thank-you .thank-you-print-footer {
    text-align: center;
    padding-top: 0.25rem;
  }

  .fibers-thank-you .thank-you-print-footer__logo {
    height: 3.5rem;
    width: auto;
    margin: 0 auto 1rem;
    display: block;
  }

  .fibers-thank-you .thank-you-print-footer__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #000 !important;
    margin-bottom: 0.5rem;
  }

  .fibers-thank-you .thank-you-print-footer__line {
    font-size: 0.875rem;
    color: #000 !important;
    line-height: 1.6;
  }
}

/* responsive print (other pages) */
@media print {
  body:not(.fibers-thank-you) *,
  body:not(.fibers-thank-you) *::before,
  body:not(.fibers-thank-you) *::after {
    background: transparent !important;
    color: #000 !important;
    border-color: #000 !important;
    box-shadow: none !important;
  }
  body:not(.fibers-thank-you) html,
  body:not(.fibers-thank-you) body {
    background: #fff !important;
  }
  body:not(.fibers-thank-you) a {
    text-decoration: underline;
  }
}