/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   DESIGN SYSTEM
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
:root {
  --rose:       #C8415A;
  --rose-dark:  #a83349;
  --rose-bg:    #FEF2F4;
  --ink:        #111111;
  --ink-mid:    #444444;
  --muted:      #6B7280;
  --line:       #E0E0E0;
  --white:      #FFFFFF;
  --light:      #F7F7F7;
  --dark:       #0A0A0A;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Merriweather', Georgia, 'Times New Roman', serif;
  --nav-h:      56px;
  --nav-stack:  calc(var(--nav-h) + env(safe-area-inset-top, 0px));
  --hero-nav-gap: clamp(1rem, 3.5vw, 2.25rem);
}
@media (min-width: 769px) {
  :root { --nav-h: 72px; }
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.wrap { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 769px) {
  .wrap { padding: 0 2.5rem; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NAVIGATION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  isolation: isolate;
  padding: env(safe-area-inset-top, 0px) 1.25rem 0;
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
@media (min-width: 769px) {
  .nav { padding-left: 2.5rem; padding-right: 2.5rem; }
}
.nav.solid {
  background: rgba(255,255,255,0.97);
  border-color: var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav__inner {
  max-width: 1200px; margin: 0 auto;
  height: 56px; min-height: 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
@media (min-width: 769px) {
  .nav__inner { height: 72px; min-height: 72px; }
}
.nav__logo { display: flex; align-items: center; flex-shrink: 0; }
.nav__logo svg { width: 140px; height: auto; }
@media (min-width: 769px) {
  .nav__logo svg { width: 190px; }
}
.nav__logo-text { fill: white; transition: fill 0.3s; }
.nav.solid .nav__logo-text { fill: #111; }
.nav__logo-accent { fill: #C8415A; }

.nav__links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav__links a {
  padding: 0.5rem 0.9375rem;
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.8); border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav.solid .nav__links a { color: var(--ink-mid); }
.nav__links a:hover { color: var(--rose); background: var(--rose-bg); }

.nav__cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.375rem;
  padding: 0.625rem 1.25rem; min-height: 44px;
  background: var(--rose); color: white !important;
  border-radius: 8px; font-size: 0.875rem; font-weight: 600;
  transition: background 0.2s, transform 0.15s;
}
.nav__cta:hover { background: var(--rose-dark) !important; transform: translateY(-1px); }

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px; height: 44px; min-width: 44px; min-height: 44px;
  padding: 0;
  border-radius: 8px;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.nav__hamburger:hover { background: var(--rose-bg); }
.nav__hamburger span {
  display: block; width: 22px; height: 2px;
  background: white; border-radius: 2px; transition: background 0.3s;
}
.nav.solid .nav__hamburger span { background: var(--ink); }

.nav__mobile {
  display: none;
  position: fixed;
  top: calc(56px + env(safe-area-inset-top, 0));
  left: 0; right: 0; bottom: 0;
  background: white;
  padding: 1.5rem 1.25rem 2rem;
  padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0));
  flex-direction: column;
  gap: 0.25rem;
  z-index: 999;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 769px) {
  .nav__mobile { top: 72px; }
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  display: flex; align-items: center;
  min-height: 48px;
  padding: 0.875rem 1rem;
  font-size: 1rem; font-weight: 500;
  color: var(--ink);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.nav__mobile a:hover { background: var(--rose-bg); color: var(--rose); }
.nav__mobile .nav__cta {
  margin-top: 0.75rem;
  justify-content: center;
  min-height: 52px;
  font-size: 1rem;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero {
  position: relative;
  z-index: 0;
  isolation: isolate;
  height: clamp(600px, 100svh, 1080px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: end;
  padding-top: calc(var(--nav-stack) + var(--hero-nav-gap));
  padding-bottom: clamp(2.5rem, 7vh, 5rem);
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
}
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.22) 35%,
    rgba(0,0,0,0.70) 72%,
    rgba(0,0,0,0.86) 100%
  );
}
.hero__content {
  position: relative; z-index: 2;
  grid-column: 1;
  grid-row: 2;
  width: 100%; max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem clamp(0.75rem, 2vh, 1.25rem);
}
@media (min-width: 769px) {
  .hero__content { padding-left: 2.5rem; padding-right: 2.5rem; }
}
.hero__eyebrow {
  display: flex; align-items: center; gap: 0.625rem;
  margin-bottom: clamp(0.875rem, 2vw, 1.25rem);
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero__eyebrow-line {
  display: block; width: 28px; height: 1.5px; background: var(--rose);
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5.25rem);
  font-weight: 700;
  color: white; line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: clamp(1rem, 2.5vw, 1.25rem);
  max-width: min(700px, 92vw);
  text-wrap: balance;
  text-shadow: 0 2px 28px rgba(0,0,0,0.45), 0 1px 2px rgba(0,0,0,0.35);
}
.hero__sub {
  font-size: clamp(1rem, 1.35vw, 1.0625rem);
  color: rgba(255,255,255,0.72);
  margin-bottom: clamp(1.5rem, 4vh, 2.25rem);
  max-width: 42ch;
  line-height: 1.7;
  text-shadow: 0 1px 16px rgba(0,0,0,0.35);
}
.hero__btns { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero__trust { margin-top: .9rem; color: rgba(255,255,255,.78); font-size: .9rem; font-weight: 500; }

@media (max-height: 720px) {
  .hero {
    height: auto;
    min-height: max(520px, 100svh);
    max-height: none;
    padding-bottom: 2rem;
  }
  .hero__title {
    font-size: clamp(1.875rem, 6.5vw, 2.85rem);
    line-height: 1.1;
  }
  .hero__sub { margin-bottom: 1.25rem; line-height: 1.55; }
  .hero__eyebrow { margin-bottom: 0.625rem; }
  .hero__trust { margin-top: 0.5rem; font-size: 0.8125rem; }
  .hero__btns { gap: 0.75rem; }
}

.btn-rose {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9375rem 2rem;
  background: var(--rose); color: white;
  border-radius: 6px; font-size: 0.9375rem; font-weight: 600; line-height: 1;
  transition: background 0.2s, transform 0.15s;
}
.btn-rose:hover { background: var(--rose-dark); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9375rem 2rem;
  background: transparent; color: rgba(255,255,255,0.82);
  border: 1.5px solid rgba(255,255,255,0.28);
  border-radius: 6px; font-size: 0.9375rem; font-weight: 500; line-height: 1;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.65); color: white; background: rgba(255,255,255,0.07); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   METRICS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.metrics { background: white; border-bottom: 1px solid var(--line); }
.metrics__row {
  max-width: 1200px; margin: 0 auto; padding: 0 1.25rem;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
@media (min-width: 769px) {
  .metrics__row { padding: 0 2.5rem; }
}
.metric {
  padding: 1.5rem 1rem;
  border-right: 1px solid var(--line);
}
@media (min-width: 769px) {
  .metric { padding: 2.75rem 2rem; }
}
.metric:last-child { border-right: none; }
.metric__n {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--rose); line-height: 1;
  letter-spacing: -0.04em; display: block;
  margin-bottom: 0.375rem;
}
.metric__l { font-size: 0.875rem; color: var(--muted); font-weight: 500; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ABOUT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.about { padding: 7rem 0; background: white; }
.about__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 200px;
  gap: 1rem;
}
.about__photos img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 10px;
}
.about__photos img:first-child { grid-row: 1 / 3; height: 100%; }
.about__label {
  font-size: 0.6875rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 0.875rem; display: block;
}
.about__h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700;
  color: var(--ink); letter-spacing: -0.02em;
  line-height: 1.2; margin-bottom: 1.125rem;
}
.about__p { font-size: 1rem; color: var(--muted); line-height: 1.8; margin-bottom: 2rem; }
.about__list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.25rem; }
.about__list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.9375rem; color: var(--ink-mid); line-height: 1.55;
}
.about__check {
  flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%;
  background: var(--rose); display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.about__check i { font-size: 0.5625rem; color: white; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CATEGORIES
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.cats { padding: 7rem 0; background: var(--dark); }
.cats__head {
  max-width: 1200px; margin: 0 auto; padding: 0 2.5rem;
  display: flex; justify-content: space-between; align-items: flex-end;
  padding-bottom: 3rem;
}
.cats__label { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.75rem; display: block; }
.cats__h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700;
  color: white; letter-spacing: -0.02em; line-height: 1.2;
}
.cats__all {
  font-size: 0.875rem; font-weight: 600;
  color: rgba(255,255,255,0.38);
  display: flex; align-items: center; gap: 0.375rem;
  transition: color 0.2s; white-space: nowrap; padding-bottom: 0.25rem;
}
.cats__all:hover { color: white; }
.cats__grid {
  max-width: 1200px; margin: 0 auto; padding: 0 2.5rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.cat-card {
  position: relative; height: 480px; border-radius: 12px;
  overflow: hidden; display: flex; align-items: flex-end;
}
.cat-card__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
}
.cat-card:hover .cat-card__img { transform: scale(1.04); }
.cat-card__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(0,0,0,0.85) 100%);
}
.cat-card__body { position: relative; z-index: 2; padding: 2rem; width: 100%; }
.cat-card__tag {
  font-size: 0.625rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--rose); display: block; margin-bottom: 0.5rem;
}
.cat-card__name {
  font-family: var(--font-serif);
  font-size: 1.5rem; font-weight: 700; color: white;
  line-height: 1.2; margin-bottom: 0.625rem;
}
.cat-card__desc {
  font-size: 0.875rem; color: rgba(255,255,255,0.58);
  line-height: 1.6; max-height: 0; overflow: hidden;
  margin-bottom: 0; transition: max-height 0.35s ease, margin-bottom 0.25s;
}
.cat-card:hover .cat-card__desc { max-height: 70px; margin-bottom: 1rem; }
.cat-card__arrow {
  font-size: 0.8125rem; font-weight: 600; display: inline-flex;
  align-items: center; gap: 0.375rem;
  color: rgba(255,255,255,0.45); transition: color 0.2s, gap 0.2s;
}
.cat-card:hover .cat-card__arrow { color: white; gap: 0.625rem; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   PROCESS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.process { padding: 7rem 0; background: white; }
.process__head {
  max-width: 1200px; margin: 0 auto; padding: 0 2.5rem;
  text-align: center; margin-bottom: 4.5rem;
}
.process__label { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.75rem; display: block; }
.process__h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700;
  color: var(--ink); letter-spacing: -0.02em; line-height: 1.2;
}
.process__cols {
  max-width: 1200px; margin: 0 auto; padding: 0 2.5rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
}
.process-step {
  background: white; padding: 3rem 2.5rem;
  display: flex; flex-direction: column;
}
.process-step__n {
  font-family: var(--font-serif);
  font-size: 4.5rem; font-weight: 700;
  color: var(--rose); opacity: 0.12;
  line-height: 1; letter-spacing: -0.05em;
  margin-bottom: 1.5rem; display: block;
}
.process-step__h {
  font-family: var(--font-serif);
  font-size: 1.125rem; font-weight: 700;
  color: var(--ink); line-height: 1.3; margin-bottom: 0.875rem;
}
.process-step__p { font-size: 0.9375rem; color: var(--muted); line-height: 1.75; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LOCATIONS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.locations {
  position: relative;
  padding: 7rem 0;
  background: var(--light);
  overflow: hidden;
}
.locations::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url(/photos/coverage-bg.webp);
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.locations::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.88) 0%, rgba(247,247,247,0.94) 100%);
  z-index: 1;
}
.locations__head {
  position: relative;
  z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 2.5rem; margin-bottom: 3.5rem;
}
.locations__label { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.75rem; display: block; }
.locations__h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700;
  color: var(--ink); letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 0.75rem;
}
.locations__sub { font-size: 1rem; color: var(--muted); max-width: 52ch; line-height: 1.75; }
.locations__grid {
  position: relative;
  z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 2.5rem;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.locations__cta {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 1.5rem auto 0;
  padding: 0 2.5rem;
  display: flex;
  justify-content: center;
}
.loc-card {
  background: white; border: 1px solid var(--line); border-radius: 10px;
  padding: 1.5rem 1.5rem 1.25rem;
  display: flex; flex-direction: column; gap: 0.3rem;
  text-decoration: none; overflow: hidden; position: relative;
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
}
.loc-card::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: var(--rose);
  transform: scaleY(0); transform-origin: bottom; transition: transform 0.25s ease;
}
.loc-card:hover::before { transform: scaleY(1); }
.loc-card:hover {
  border-color: rgba(200,65,90,0.22);
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.loc-card__city { font-size: 1rem; font-weight: 700; color: var(--ink); }
.loc-card__state { font-size: 0.8125rem; color: var(--rose); font-weight: 600; }
.loc-card__desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 0.2rem;
}
.loc-card__arrow {
  font-size: 0.75rem; color: var(--muted); margin-top: 0.75rem;
  display: inline-flex; align-items: center; gap: 0.25rem;
  transition: color 0.2s, transform 0.2s;
}
.loc-card:hover .loc-card__arrow { color: var(--rose); transform: translateX(3px); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   TESTIMONIALS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.testi { padding: 7rem 0; background: white; }
.testi__head {
  max-width: 1200px; margin: 0 auto; padding: 0 2.5rem;
  text-align: center; margin-bottom: 3.5rem;
}
.testi__label { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.75rem; display: block; }
.testi__h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 700;
  color: var(--ink); letter-spacing: -0.02em; line-height: 1.2;
  margin-bottom: 1rem;
}
.testi__sub {
  font-size: 1rem; color: var(--muted);
  max-width: 48rem; margin: 0 auto;
  line-height: 1.75; text-align: center;
}
.testi__grid {
  max-width: 1200px; margin: 0 auto; padding: 0 2.5rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.tcard {
  background: white; border: 1px solid var(--line); border-radius: 12px;
  padding: 2rem; display: flex; flex-direction: column; gap: 1.25rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.tcard:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.06); border-color: rgba(200,65,90,0.18); }
.tcard__stars { display: flex; gap: 2px; }
.tcard__stars i { font-size: 0.6875rem; color: #F5A623; }
.tcard__openq {
  font-family: var(--font-serif); font-size: 3rem; color: var(--line);
  line-height: 0.6; margin-bottom: 0.5rem;
}
.tcard__q {
  font-size: 0.9375rem; color: var(--ink-mid); line-height: 1.78;
  font-style: italic; flex-grow: 1;
}
.tcard__author { display: flex; align-items: center; gap: 0.875rem; }
.tcard__av {
  width: 42px; height: 42px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  background: var(--rose-bg);
}
.tcard__name { font-size: 0.9375rem; font-weight: 700; color: var(--ink); line-height: 1.2; }
.tcard__loc { font-size: 0.8125rem; color: var(--muted); }
.tcard__badge {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  color: var(--rose); background: var(--rose-bg);
  padding: 0.25rem 0.625rem; border-radius: 4px; margin-top: 0.25rem;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   APPLY SPLIT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.apply {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1400px;
  margin: 0 auto;
}
.apply__left {
  position: relative;
  background: var(--dark);
  padding: 5.5rem clamp(2rem, 4vw, 3.5rem);
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
.apply__left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url(/photos/apply-bg.webp);
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.apply__left::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.92) 0%, rgba(10,10,10,0.78) 100%);
  z-index: 1;
}
.apply__left > * { position: relative; z-index: 2; }
.apply__right {
  background: white; padding: 5.5rem clamp(2rem, 4vw, 3.5rem);
  border-left: 1px solid var(--line);
}
.apply__label { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose); margin-bottom: 1rem; display: block; }
.apply__h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.625rem, 2.5vw, 2.25rem); font-weight: 700;
  color: white; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 1.125rem;
}
.apply__sub { font-size: 0.9375rem; color: rgba(255,255,255,0.42); line-height: 1.78; margin-bottom: 2.25rem; }
.apply__perks { list-style: none; display: flex; flex-direction: column; gap: 0.875rem; }
.apply__perks li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.9375rem; color: rgba(255,255,255,0.58); line-height: 1.55;
}
.apply__perks i { color: var(--rose); font-size: 0.875rem; margin-top: 2px; flex-shrink: 0; }

.apply__form-h {
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700;
  color: var(--ink); letter-spacing: -0.02em; margin-bottom: 0.4rem;
}
.apply__form-sub { font-size: 0.9375rem; color: var(--muted); margin-bottom: 1rem; }
.apply__quickfacts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}
.apply__quickfact {
  padding: 0.9rem 0.95rem;
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: 12px;
  background: linear-gradient(180deg, #fff 0%, #FFF7F8 100%);
}
.apply__quickfact strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.15rem;
}
.apply__quickfact span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}
.form-status {
  margin-bottom: 1rem;
  padding: 0.95rem 1rem;
  background: var(--rose-bg);
  color: var(--rose);
  border-radius: 12px;
  border: 1px solid rgba(200,65,90,0.16);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.apply__progress-shell {
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: 14px;
  background: #FCFCFC;
  padding: 1rem;
  margin-bottom: 1.25rem;
}
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.f-field { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1rem; }
.f-label { font-size: 0.8125rem; font-weight: 600; color: var(--ink-mid); }
.form-section {
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #FCFCFC 100%);
  padding: 1rem 1rem 0.9rem;
  margin-bottom: 1rem;
}
.form-section--compact {
  margin-bottom: 1rem;
}
.form-section__header h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 0.3rem;
}
.form-section__header p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}
.form-section__eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.45rem;
}
.f-input {
  width: 100%;
  padding: 0.875rem 1rem;
  min-height: 48px;
  font-size: 16px; /* Prevents iOS zoom on focus */
  font-family: var(--font-sans);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  color: var(--ink); background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none; appearance: none;
}
.f-input::placeholder { color: #9CA3AF; }
.f-input:focus { outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px rgba(200,65,90,0.08); }
textarea.f-input { resize: vertical; min-height: 110px; }
.f-field__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.45rem;
}
.f-count {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
}
.f-interest {
  margin: 0 0 1rem;
  padding: 0;
  border: none;
}
.f-interest__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.55rem;
}
.f-choice {
  position: relative;
  cursor: pointer;
}
.f-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.f-choice span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 0.95rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: white;
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}
.f-choice input:checked + span {
  border-color: rgba(200,65,90,0.3);
  background: var(--rose-bg);
  color: var(--rose);
  box-shadow: 0 0 0 3px rgba(200,65,90,0.08);
}
.f-choice input:focus-visible + span {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(200,65,90,0.12);
}
.f-btn {
  width: 100%;
  padding: 1rem 1.25rem;
  min-height: 52px;
  margin-top: 0.375rem;
  font-size: 1rem; /* Touch-friendly, prevents iOS zoom */
  font-weight: 700;
  font-family: var(--font-sans);
  background: var(--rose);
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer; transition: background 0.2s, transform 0.15s;
}
.f-btn:hover { background: var(--rose-dark); transform: translateY(-1px); }
.f-note { font-size: 0.8125rem; color: var(--muted); text-align: center; margin-top: 0.875rem; }
.f-note--left { text-align: left; margin-top: 0; }

/* â”€â”€ Step Progress â”€â”€ */
.step-progress { display: flex; align-items: center; margin-bottom: 0.65rem; }
.step-progress__item { display: flex; align-items: center; gap: 0.5rem; min-width: 0; }
.step-dot {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
  background: var(--line); color: var(--muted);
  transition: background 0.3s, color 0.3s;
}
.step-dot.active { background: var(--rose); color: white; }
.step-dot.done { background: #059669; color: white; }
.step-line { flex: 1; height: 2px; background: var(--line); margin: 0 0.625rem; transition: background 0.4s; }
.step-line.done { background: #059669; }
.step-lbl { font-size: 0.75rem; font-weight: 600; color: var(--muted); white-space: nowrap; }
.step-lbl.active { color: var(--rose); }
.step-helper { font-size: 0.8125rem; color: var(--muted); line-height: 1.65; }

/* â”€â”€ Photo Upload â”€â”€ */
.upload-guide {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.8rem;
}
.upload-guide span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: var(--rose-bg);
  color: var(--rose);
  font-size: 0.75rem;
  font-weight: 700;
}
.upload-zone {
  border: 2px dashed var(--line); border-radius: 10px;
  padding: 2.25rem 1.5rem; text-align: center; cursor: pointer;
  transition: border-color 0.2s, background 0.2s; margin-bottom: 1.25rem;
}
.upload-zone:hover, .upload-zone.drag-over { border-color: var(--rose); background: var(--rose-bg); }
.upload-zone:focus-visible { outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px rgba(200,65,90,0.08); }
.upload-ico {
  width: 48px; height: 48px; border-radius: 50%; background: var(--rose-bg);
  display: flex; align-items: center; justify-content: center;
  color: var(--rose); font-size: 1.25rem; margin: 0 auto 0.875rem;
}
.upload-title { font-size: 0.9375rem; font-weight: 700; color: var(--ink); margin-bottom: 0.375rem; }
.upload-sub { font-size: 0.8125rem; color: var(--muted); }
.upload-hint { font-size: 0.75rem; color: var(--muted); margin-top: 0.625rem; }
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 480px) {
  .photo-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 640px) {
  .photo-grid { grid-template-columns: repeat(5, 1fr); }
}
.photo-item { position: relative; aspect-ratio: 1; border-radius: 7px; overflow: hidden; border: 1px solid var(--line); }
.photo-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-del {
  position: absolute; top: 3px; right: 3px; width: 20px; height: 20px;
  border-radius: 50%; background: rgba(0,0,0,0.6); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.5rem; cursor: pointer; border: none; transition: background 0.2s;
}
.photo-del:hover { background: var(--rose); }
.photo-count-txt { font-size: 0.8125rem; color: var(--muted); text-align: center; margin-bottom: 1rem; }
.photo-count-txt strong { color: var(--rose); }
.back-step {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.875rem; font-weight: 600; color: var(--muted); cursor: pointer;
  border: none; background: none; padding: 0; margin-bottom: 1.25rem; transition: color 0.2s;
}
.back-step:hover { color: var(--rose); }
.form-step { animation: sIn 0.3s ease; }
@keyframes sIn { from { opacity: 0; transform: translateX(14px); } to { opacity: 1; transform: none; } }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTACT
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.contact { padding: 6rem 0; background: var(--light); border-top: 1px solid var(--line); }
.contact__head { text-align: center; margin-bottom: 3rem; }
.contact__label { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.75rem; display: block; }
.contact__h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.625rem, 2.5vw, 2.25rem); font-weight: 700;
  color: var(--ink); letter-spacing: -0.02em;
}
.contact__cards {
  max-width: 640px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
}
.ccard {
  background: white; border: 1px solid var(--line); border-radius: 12px;
  padding: 2rem 1.75rem; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 0.875rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.ccard:hover { border-color: rgba(200,65,90,0.25); box-shadow: 0 4px 20px rgba(0,0,0,0.06); transform: translateY(-2px); }
.ccard__ico {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--rose-bg); display: flex; align-items: center; justify-content: center;
  color: var(--rose); font-size: 1.1875rem;
  transition: background 0.2s, color 0.2s;
}
.ccard:hover .ccard__ico { background: var(--rose); color: white; }
.ccard__type { font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.ccard__val { font-size: 1rem; font-weight: 600; color: var(--ink); }
.ccard__hint { font-size: 0.8125rem; color: var(--muted); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   FOOTER
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.footer {
  background: var(--dark);
  padding: 4rem 0 2rem;
  padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0));
}
@media (min-width: 769px) {
  .footer { padding: 5rem 0 2.5rem; }
}
.footer__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.25rem;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3.5rem;
  margin-bottom: 3.5rem; padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
@media (min-width: 769px) {
  .footer__inner { padding-left: 2.5rem; padding-right: 2.5rem; }
}
.footer__brand svg { width: 140px; height: auto; }
@media (min-width: 769px) {
  .footer__brand svg { width: 190px; }
}
.footer__brand p {
  font-size: 0.875rem; line-height: 1.78;
  color: rgba(255,255,255,0.32); margin: 1.25rem 0 1.5rem; max-width: 28ch;
}
.footer__social { display: flex; gap: 0.625rem; }
.footer__social a {
  width: 44px; height: 44px; min-width: 44px; min-height: 44px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 1rem;
  transition: background 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.footer__social a:hover { background: var(--rose); color: white; }
.footer__heading {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1rem;
}
@media (min-width: 769px) {
  .footer__heading { font-size: 0.625rem; color: rgba(255,255,255,0.2); margin-bottom: 1.25rem; }
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.footer__col a {
  display: flex; align-items: center;
  font-size: 0.9375rem; color: rgba(255,255,255,0.5);
  padding: 0.5rem 0; min-height: 44px;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.footer__col a:hover { color: white; }
.footer__bottom {
  max-width: 1200px; margin: 0 auto; padding: 0 1.25rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.8125rem; color: rgba(255,255,255,0.18);
}
@media (min-width: 769px) {
  .footer__bottom { padding: 0 2.5rem; }
}
.footer__bottom a {
  color: rgba(255,255,255,0.35); padding: 0.25rem 0;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.footer__bottom a:hover { color: rgba(255,255,255,0.7); }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SCROLL REVEAL
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.rv {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.6s cubic-bezier(0.25,1,0.5,1), transform 0.6s cubic-bezier(0.25,1,0.5,1);
}
.rv.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

.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; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 1024px) {
  .about__inner { grid-template-columns: 1fr; gap: 3rem; }
  .about__photos { max-width: 500px; }
  .cats__grid { grid-template-columns: 1fr 1fr; }
  .cat-card:last-child { grid-column: 1/-1; height: 320px; }
  .locations__grid { grid-template-columns: repeat(3, 1fr); }
  .testi__grid { grid-template-columns: 1fr 1fr; }
  .tcard:last-child { grid-column: 1/-1; max-width: 50%; margin: 0 auto; width: 100%; }
  .apply { grid-template-columns: 1fr; }
  .apply__left { padding: 4rem 3rem; }
  .apply__right { padding: 4rem 3rem; border-left: none; border-top: 1px solid var(--line); }
  .apply__quickfacts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__brand { grid-column: 1/-1; }
}
@media (max-width: 768px) {
  .nav__links, .nav__cta:not(.nav__mobile .nav__cta) { display: none; }
  .nav__hamburger { display: flex; }
  .hero__title { font-size: clamp(2rem, 7vw, 2.5rem); }
  .hero { max-height: none; padding-bottom: 3.5rem; }
  .metrics__row { grid-template-columns: 1fr 1fr; }
  .metric { border-right: none; border-bottom: 1px solid var(--line); }
  .metric:nth-child(odd) { border-right: 1px solid var(--line); }
  .metric:last-child { border-bottom: none; }
  .cats__grid, .process__cols { grid-template-columns: 1fr; }
  .cat-card { height: 340px; }
  .cat-card:last-child { grid-column: auto; height: 340px; }
  .cats__head { flex-direction: column; align-items: flex-start; gap: 1rem; padding-bottom: 2rem; }
  .process__cols { gap: 0; border-radius: 12px; }
  .process-step { padding: 2rem 1.5rem; }
  .locations__grid { grid-template-columns: 1fr 1fr; }
  .locations__cta { padding-left: 1.25rem; padding-right: 1.25rem; }
  .testi__grid { grid-template-columns: 1fr; }
  .tcard:last-child { grid-column: auto; max-width: 100%; }
  .apply__left, .apply__right { padding: 3rem 1.25rem; }
  .apply__quickfacts { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .f-interest__grid { grid-template-columns: 1fr 1fr; }
  .step-progress { align-items: flex-start; }
  .step-progress__item { flex-direction: column; align-items: flex-start; gap: 0.35rem; }
  .step-line { margin-top: 0.95rem; }
  .contact__cards { grid-template-columns: 1fr; max-width: 400px; }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 0 1.25rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .footer__brand p { max-width: 100%; margin: 1rem 0 1.25rem; }
  .footer__bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .wrap, .metrics__row, .cats__head, .cats__grid, .process__head, .process__cols,
  .locations__head, .locations__grid, .locations__cta, .testi__head, .testi__grid { padding-left: 1.25rem; padding-right: 1.25rem; }
  .about__inner { padding: 0 1.25rem; }
}
@media (max-width: 480px) {
  .wrap, .metrics__row, .cats__head, .cats__grid, .process__head, .process__cols,
  .locations__head, .locations__grid, .locations__cta, .testi__head, .testi__grid,
  .footer__inner, .footer__bottom, .about__inner { padding-left: 1rem; padding-right: 1rem; }
  .footer { padding: 3rem 0 1.5rem; }
  .footer__inner { gap: 2rem; margin-bottom: 2rem; padding-bottom: 2rem; }
  .metric { padding: 1.25rem 0.75rem; }
  .apply__left, .apply__right { padding: 2.5rem 1rem; }
  .apply__progress-shell { padding: 0.9rem; }
  .f-interest__grid { grid-template-columns: 1fr; }
  .f-field__meta { flex-direction: column; align-items: flex-start; }
  .cat-card { height: 300px; }
  .locations__grid { grid-template-columns: 1fr; }
}
