/* Valencia Marketing — static site styles */

:root {
  --teal-deep: #12302E;
  --teal: #4B8C91;
  --teal-mid: #1F6E77;
  --teal-bright: #1F99AF;
  --coral: #FF637A;
  --cream: #FFF4F0;
  --yellow: #FFFAC8;
  --body: #4A5A58;
  --body-soft: #5B6B69;
  --gray: #6B7280;
  --serif: Newsreader, Georgia, serif;
  --sans: Manrope, system-ui, -apple-system, Segoe UI, sans-serif;
  --pad: clamp(20px, 5vw, 64px);
  --secpad: clamp(72px, 9vw, 132px);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #fff;
  color: var(--teal-deep);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
img { display: block; max-width: 100%; }
a { color: var(--teal-mid); text-decoration: none; }
a:hover { color: var(--coral); }
button { font: inherit; }
::selection { background: var(--yellow); color: var(--teal-deep); }
:focus-visible { outline: 3px solid var(--teal-bright); outline-offset: 3px; border-radius: 2px; }

@keyframes vmFade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes vmRise { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
@keyframes vmRiseSoft { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes vmMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes vmDrift {
  0% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(3%,-2%,0) scale(1.06); }
  100% { transform: translate3d(0,0,0) scale(1); }
}

/* Scroll reveal — degrades to "already visible" where unsupported */
.rv {
  animation: vmRise linear both;
  animation-timeline: view();
  animation-range: entry 3% entry 44%;
}
.rv-soft {
  animation: vmRiseSoft linear both;
  animation-timeline: view();
  animation-range: entry 3% entry 40%;
}
.intro-1 { animation: vmRiseSoft 700ms cubic-bezier(.2,.7,.2,1) both; }
.intro-2 { animation: vmRise 900ms cubic-bezier(.2,.7,.2,1) both; }
.intro-3 { animation: vmRise 1000ms cubic-bezier(.2,.7,.2,1) 120ms both; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}

.wrap { max-width: 1240px; margin: 0 auto; }
.sec { padding: var(--secpad) var(--pad); scroll-margin-top: 100px; }
.sec-white { background: #fff; }
.sec-cream { background: var(--cream); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(18,48,46,.09);
}
.header-in {
  max-width: 1320px; margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  height: 100px; display: flex; align-items: center; gap: 32px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 58px; width: auto; }
.nav { margin-left: auto; display: flex; align-items: center; gap: clamp(10px, 1.6vw, 26px); }
.nav a {
  font-size: 16.5px; font-weight: 600; letter-spacing: -.01em;
  padding: 9px 2px; white-space: nowrap; color: #3F5250;
  border-bottom: 2px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}
.nav a:hover { color: var(--teal-deep); border-bottom-color: var(--coral); }
.nav a.is-active { color: var(--teal-deep); border-bottom-color: var(--coral); }

.btn {
  display: inline-block; background: var(--coral); color: var(--teal-deep);
  font-weight: 700; letter-spacing: -.01em; border-radius: 3px; border: 0; cursor: pointer;
  box-shadow: 0 14px 30px -16px rgba(255,99,122,.95);
  transition: background 200ms ease, transform 200ms ease, color 200ms ease, box-shadow 200ms ease;
}
.btn:hover { background: var(--teal-deep); color: var(--cream); transform: translateY(-3px); box-shadow: 0 22px 40px -20px rgba(18,48,46,.55); }
.btn-lg { font-size: 17px; padding: 19px 32px; }
.btn-sm { font-size: 15.5px; padding: 15px 24px; box-shadow: 0 10px 24px -14px rgba(255,99,122,.9); }
.btn-ghost {
  display: inline-block; border: 1.5px solid rgba(18,48,46,.26); color: var(--teal-deep);
  font-size: 17px; font-weight: 700; padding: 19px 32px; border-radius: 3px;
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}
.btn-ghost:hover { border-color: var(--teal-deep); background: rgba(255,255,255,.9); color: var(--teal-deep); transform: translateY(-3px); }

.burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 52px; height: 52px; padding: 0 10px; background: transparent; border: 0; cursor: pointer; margin-left: auto;
}
.burger span { height: 2px; background: var(--teal-deep); border-radius: 2px; }

.mobile-menu {
  display: none; position: fixed; inset: 100px 0 0 0; z-index: 55;
  background: var(--cream); padding: 28px clamp(20px,5vw,40px) 48px; overflow-y: auto;
  animation: vmFade 220ms ease both;
}
.mobile-menu.is-open { display: block; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu nav a {
  font-family: var(--serif); font-size: 32px; font-weight: 400; padding: 16px 0;
  border-bottom: 1px solid #EADFD8; color: #3F5250;
}
.mobile-menu .btn { display: block; text-align: center; margin-top: 32px; font-size: 18px; padding: 20px 24px; }

@media (max-width: 1119px) {
  .nav, .header-cta { display: none; }
  .burger { display: flex; }
}

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, #FFFDFC 74%, #fff 100%);
  padding: clamp(52px,7vw,96px) var(--pad) clamp(56px,7vw,104px);
}
.blob { position: absolute; border-radius: 50%; pointer-events: none; }
.blob-1 {
  top: -22%; left: -12%; width: 62vw; height: 62vw; max-width: 900px; max-height: 900px;
  background: radial-gradient(circle at 50% 50%, rgba(255,250,200,.85) 0%, rgba(255,250,200,0) 66%);
  animation: vmDrift 26s ease-in-out infinite;
}
.blob-2 {
  top: -18%; right: -14%; width: 58vw; height: 58vw; max-width: 860px; max-height: 860px;
  background: radial-gradient(circle at 50% 50%, rgba(31,153,175,.16) 0%, rgba(31,153,175,0) 64%);
  animation: vmDrift 34s ease-in-out infinite reverse;
}
.blob-3 {
  bottom: -30%; left: 42%; width: 40vw; height: 40vw; max-width: 620px; max-height: 620px;
  background: radial-gradient(circle at 50% 50%, rgba(255,99,122,.12) 0%, rgba(255,99,122,0) 66%);
}
.hero-in { position: relative; max-width: 1280px; margin: 0 auto; }
.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.8); border: 1px solid rgba(75,140,145,.28);
  border-radius: 100px; padding: 10px 20px 10px 16px;
  margin-bottom: clamp(26px,3vw,38px); backdrop-filter: blur(6px);
}
.eyebrow-pill i {
  width: 8px; height: 8px; border-radius: 50%; background: var(--coral); flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(255,99,122,.18);
}
.eyebrow-pill span {
  font-size: 12.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  color: var(--teal-mid); line-height: 1.5;
}
h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(42px, 7.4vw, 104px); line-height: 1; letter-spacing: -.035em;
  margin: 0 0 clamp(36px,4.4vw,60px); max-width: 15ch; text-wrap: pretty;
}
h1 em { font-style: italic; font-weight: 300; color: var(--teal-mid); }
h1 em.mark { background: linear-gradient(180deg, rgba(255,250,200,0) 62%, var(--yellow) 62%); }
.hero-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: clamp(30px,4vw,72px); align-items: start;
}
.hero-copy { display: flex; flex-direction: column; gap: 20px; max-width: 620px; }
.hero-copy p { font-size: clamp(18.5px,1.4vw,20.5px); line-height: 1.65; color: var(--body); margin: 0; text-wrap: pretty; }
.hero-side {
  display: flex; flex-direction: column; gap: clamp(26px,3vw,36px);
  padding-left: clamp(0px,3vw,44px); border-left: 1px solid rgba(18,48,46,.14);
}
.hero-statement {
  font-family: var(--serif); font-size: clamp(26px,2.7vw,38px); line-height: 1.2;
  margin: 0; letter-spacing: -.022em; text-wrap: balance;
}
.hero-statement em { font-style: italic; color: var(--teal-mid); }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- marquee ---------- */
.marquee {
  background: var(--teal-deep); color: var(--cream); padding: 20px 0; overflow: hidden;
  border-top: 1px solid rgba(255,244,240,.1);
}
.marquee-track { display: flex; width: max-content; animation: vmMarquee 46s linear infinite; }
.marquee-set { display: flex; align-items: center; gap: 42px; padding-right: 42px; }
.marquee-set span {
  display: flex; align-items: center; gap: 42px;
  font-size: 14px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  white-space: nowrap; color: #DCEAE9;
}
.marquee-set span i { width: 6px; height: 6px; border-radius: 50%; background: var(--coral); flex-shrink: 0; }

/* ---------- section heads ---------- */
.kicker { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.kicker i { width: 28px; height: 2px; background: var(--coral); }
.kicker span { font-size: 12.5px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--teal); }
.kicker.on-dark span { color: #7FA3A0; }
.kicker.on-teal i { background: var(--yellow); }
.kicker.on-teal span { color: #BBD6D6; }
h2 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(32px,4.2vw,56px); line-height: 1.04; letter-spacing: -.028em;
  margin: 0; text-wrap: pretty;
}
h2 em { font-style: italic; color: var(--teal-mid); }
h2 em.on-dark { color: var(--yellow); }
.head-split {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(28px,4vw,72px); align-items: end; margin-bottom: clamp(48px,5vw,80px);
}
.head-note {
  font-size: clamp(18.5px,1.4vw,20px); line-height: 1.7; color: var(--body); margin: 0;
  max-width: 460px; padding-left: clamp(0px,2vw,32px);
  border-left: 1px solid rgba(18,48,46,.12); text-wrap: pretty;
}
.statement {
  font-family: var(--serif); font-size: clamp(26px,3.2vw,44px); line-height: 1.24;
  letter-spacing: -.026em; margin: clamp(44px,5vw,68px) 0 0; max-width: 22ch; text-wrap: pretty;
}
.statement em { font-style: italic; background: linear-gradient(180deg, rgba(255,250,200,0) 60%, var(--yellow) 60%); }

/* ---------- challenge list ---------- */
.pain-list { border-top: 1px solid rgba(18,48,46,.14); }
.pain {
  display: grid; grid-template-columns: 1fr; gap: clamp(14px,3vw,48px); align-items: baseline;
  padding: clamp(26px,3.2vw,40px) clamp(12px,2vw,28px);
  border-bottom: 1px solid rgba(18,48,46,.14);
  transition: background 260ms ease, padding-left 260ms ease;
}
.pain:hover { background: #FFF9F5; padding-left: clamp(18px,2.6vw,44px); }
.pain .num {
  font-family: var(--serif); font-weight: 300; font-size: clamp(38px,4.6vw,66px);
  line-height: .9; letter-spacing: -.04em; color: var(--coral);
}
.pain h3 {
  font-family: var(--serif); font-weight: 400; font-size: clamp(24px,2.5vw,34px);
  letter-spacing: -.022em; line-height: 1.14; margin: 0; text-wrap: pretty;
}
.pain p { font-size: 17.5px; line-height: 1.65; color: var(--body-soft); margin: 0; text-wrap: pretty; }
@media (min-width: 1120px) { .pain { grid-template-columns: 120px minmax(0,1.05fr) minmax(0,1fr); } }

/* ---------- solutions ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: clamp(18px,2vw,26px); }
.card {
  position: relative; overflow: hidden; background: #fff;
  border: 1px solid rgba(18,48,46,.1); border-radius: 4px;
  padding: clamp(28px,3vw,44px); display: flex; flex-direction: column;
  box-shadow: 0 2px 0 rgba(18,48,46,.03);
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), box-shadow 260ms ease, border-color 260ms ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 34px 60px -34px rgba(18,48,46,.4); border-color: rgba(75,140,145,.55); }
.card-rule { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--coral) 0%, var(--teal) 60%, var(--teal-bright) 100%); }
.card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; margin-bottom: 26px; }
.icon-box {
  display: inline-flex; align-items: center; justify-content: center;
  width: 76px; height: 76px; border-radius: 3px; background: #F3F8F7; border: 1px solid rgba(75,140,145,.2);
}
.card-num { font-family: var(--serif); font-weight: 300; font-size: 34px; line-height: 1; letter-spacing: -.03em; color: #D8CFC8; }
.card h3 {
  font-family: var(--serif); font-weight: 400; font-size: clamp(27px,2.6vw,34px);
  line-height: 1.08; letter-spacing: -.024em; margin: 0 0 14px; text-wrap: pretty;
}
.card .lede { font-size: 18px; line-height: 1.5; font-weight: 700; color: var(--teal-mid); margin: 0 0 16px; text-wrap: pretty; }
.card .body { font-size: 17px; line-height: 1.66; color: var(--body-soft); margin: 0 0 28px; text-wrap: pretty; }
.label-rule { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.label-rule span { font-size: 11.5px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: #9AA5A3; }
.label-rule i { flex: 1; height: 1px; background: rgba(18,48,46,.1); }
.chips { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 28px; }
.chip {
  font-size: 14px; font-weight: 600; color: var(--teal-mid); background: #F1F6F5;
  border: 1px solid rgba(75,140,145,.16); padding: 8px 13px; border-radius: 100px;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.chip:hover { background: var(--teal-mid); color: var(--cream); border-color: var(--teal-mid); }
.card-foot { margin-top: auto; }
.outcome {
  background: #FFF9F5; border-left: 3px solid var(--coral); padding: 20px 22px;
  border-radius: 0 3px 3px 0; margin-bottom: 24px;
}
.outcome .lbl { font-size: 11.5px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.outcome .txt { font-family: var(--serif); font-size: 20px; line-height: 1.36; font-style: italic; color: var(--teal-deep); }
.link-cta {
  display: inline-flex; align-items: center; gap: 10px; font-size: 16.5px; font-weight: 700;
  color: var(--teal-deep); border-bottom: 2px solid var(--coral); padding-bottom: 5px;
  transition: gap 200ms ease, color 200ms ease;
}
.link-cta:hover { gap: 18px; color: var(--teal-mid); }

.sub-head { display: flex; align-items: center; gap: 18px; margin-bottom: clamp(22px,2.6vw,32px); }
.sub-head h3 {
  font-family: var(--serif); font-weight: 400; font-size: clamp(28px,3vw,42px);
  line-height: 1.06; letter-spacing: -.026em; margin: 0; white-space: nowrap;
}
.sub-head i { flex: 1; height: 1px; background: rgba(18,48,46,.16); }
.sub-note { font-size: 19px; line-height: 1.65; color: var(--body); margin: 0 0 clamp(32px,4vw,56px); max-width: 640px; text-wrap: pretty; }

/* engagements */
.eng-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: clamp(14px,1.6vw,20px); align-items: start; }
.eng {
  position: relative; overflow: hidden; background: #fff;
  border: 1px solid rgba(18,48,46,.1); border-radius: 4px;
  padding: clamp(26px,2.8vw,36px) clamp(22px,2.4vw,30px) clamp(26px,2.8vw,34px);
  transition: transform 260ms cubic-bezier(.2,.7,.2,1), box-shadow 260ms ease, background 260ms ease;
}
.eng:hover { transform: translateY(-6px); box-shadow: 0 30px 54px -34px rgba(18,48,46,.4); background: #FFFDFB; }
.eng .ghost {
  position: absolute; top: -18px; right: 14px; font-family: var(--serif); font-weight: 300;
  font-size: 96px; line-height: 1; letter-spacing: -.05em; color: rgba(18,48,46,.06);
}
.eng .bar { display: block; width: 34px; height: 3px; margin-bottom: 20px; background: var(--coral); }
.eng h4 { position: relative; font-size: 21px; font-weight: 700; letter-spacing: -.018em; margin: 0 0 12px; }
.eng p { position: relative; font-size: 16.5px; line-height: 1.6; color: var(--body-soft); margin: 0; text-wrap: pretty; }
.eng.dark { background: var(--teal-deep); border-color: var(--teal-deep); }
.eng.dark:hover { background: var(--teal-deep); box-shadow: 0 30px 54px -30px rgba(18,48,46,.6); }
.eng.dark .ghost { color: rgba(255,244,240,.12); }
.eng.dark h4 { color: var(--cream); }
.eng.dark p { color: #B7CBC8; }
.eng:nth-child(2) .bar { background: var(--teal); }
.eng:nth-child(3) .bar { background: var(--yellow); }
.eng:nth-child(4) .bar { background: var(--teal-bright); }
@media (min-width: 1060px) {
  .eng:nth-child(2) { margin-top: clamp(0px,2.4vw,30px); }
  .eng:nth-child(3) { margin-top: clamp(0px,4.8vw,60px); }
  .eng:nth-child(4) { margin-top: clamp(0px,7.2vw,90px); }
}

/* ---------- why ---------- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(24px,3vw,40px); }
.why {
  position: relative; padding: 28px 24px 30px 0; border-top: 2px solid var(--teal-deep);
  transition: background 240ms ease, padding-left 240ms ease;
}
.why:hover { background: #FBF8F5; padding-left: 18px; }
.why .n { display: block; font-size: 11.5px; font-weight: 800; letter-spacing: .2em; color: var(--coral); margin-bottom: 16px; }
.why h3 { font-size: 22px; font-weight: 700; letter-spacing: -.018em; line-height: 1.24; margin: 0 0 12px; text-wrap: pretty; }
.why p { font-size: 17px; line-height: 1.66; color: var(--body-soft); margin: 0; text-wrap: pretty; }

/* ---------- results ---------- */
.results {
  position: relative; overflow: hidden; background: var(--teal-deep); color: var(--cream);
  padding: clamp(68px,8.5vw,116px) var(--pad); scroll-margin-top: 100px;
}
.results .blob-r {
  position: absolute; top: -40%; right: -10%; width: 52vw; height: 52vw; max-width: 760px; max-height: 760px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(31,153,175,.3) 0%, rgba(31,153,175,0) 66%);
}
.results-in { position: relative; }
.results h2 { margin-bottom: clamp(40px,4.5vw,64px); max-width: 24ch; }
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; background: rgba(255,244,240,.16); }
.stat { background: var(--teal-deep); padding: clamp(28px,3vw,40px) clamp(20px,2.2vw,28px); transition: background 260ms ease; }
.stat:hover { background: #17403C; }
.stat .v {
  font-family: var(--serif); font-weight: 300; font-size: clamp(30px,3.9vw,54px);
  line-height: 1.02; letter-spacing: -.038em; margin-bottom: 16px; color: var(--cream); text-wrap: balance;
}
.stat .r { width: 26px; height: 2px; background: var(--coral); margin-bottom: 16px; }
.stat .l { font-size: 16px; line-height: 1.5; color: #A9BFBC; text-wrap: pretty; }
@media (min-width: 1120px) { .stat-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---------- who I help ---------- */
.serve-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(32px,4vw,72px); }
.col-head {
  display: flex; align-items: baseline; gap: 14px; padding-bottom: 16px;
  border-bottom: 2px solid var(--teal-deep); margin-bottom: 4px;
}
.col-head span { font-size: 11.5px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.col-head .count { font-weight: 700; letter-spacing: .12em; color: #B6ACA5; }
.serve-row {
  display: grid; grid-template-columns: 60px 1fr; gap: 20px; align-items: start;
  padding: 24px 12px 24px 0; border-bottom: 1px solid rgba(18,48,46,.1);
  transition: background 240ms ease, padding-left 240ms ease;
}
.serve-row:hover { background: #FBF8F5; padding-left: 14px; }
.serve-row .ic {
  display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px;
  background: #F3F8F7; border: 1px solid rgba(75,140,145,.18); border-radius: 3px;
}
.serve-row .t { display: block; font-size: 20px; font-weight: 700; letter-spacing: -.018em; margin-bottom: 8px; }
.serve-row .b { display: block; font-size: 17px; line-height: 1.62; color: var(--body-soft); }

/* ---------- testimonials ---------- */
.rating-row { display: flex; flex-wrap: wrap; align-items: baseline; gap: 12px 28px; margin-bottom: clamp(36px,4.5vw,60px); }
.rating {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--teal);
}
.stars { display: inline-flex; gap: 4px; }
.quote-grid { display: grid; grid-template-columns: 1fr; gap: clamp(20px,2.4vw,32px); align-items: start; }
@media (min-width: 860px) { .quote-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.quote { position: relative; overflow: hidden; margin: 0; border-radius: 4px; }
.quote .glyph { position: absolute; top: -28px; right: 18px; font-family: var(--serif); line-height: 1; }
.quote .meta { position: relative; display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.quote .cat { font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.quote blockquote {
  position: relative; margin: 0 0 24px; font-family: var(--serif); font-weight: 300;
  line-height: 1.6; letter-spacing: -.006em; text-wrap: pretty;
}
.quote figcaption { position: relative; display: flex; align-items: center; gap: 14px; padding-top: 20px; }
.quote .av {
  width: 44px; height: 44px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  font-size: 17px; font-weight: 800; flex-shrink: 0;
}
.quote .nm { display: block; font-size: 16.5px; font-weight: 700; }
.quote .rl { display: block; font-size: 15.5px; line-height: 1.4; }
.quote-dark { background: var(--teal-deep); padding: clamp(26px,2.4vw,36px); }
.quote-dark .glyph { font-size: 150px; color: rgba(255,244,240,.08); }
.quote-dark .cat { color: #7FA3A0; }
.quote-dark blockquote { font-size: clamp(15.5px,1.15vw,17.5px); color: var(--cream); }
.quote-dark figcaption { border-top: 1px solid rgba(255,244,240,.18); }
.quote-dark .av { background: var(--yellow); color: var(--teal-deep); }
.quote-dark .nm { color: var(--cream); }
.quote-dark .rl { color: #A9BFBC; }
.quote-light { background: #fff; border: 1px solid rgba(18,48,46,.1); padding: clamp(26px,2.4vw,36px); }
.quote-light .glyph { font-size: 150px; color: rgba(18,48,46,.05); }
.quote-light .cat { color: #9AA5A3; }
.quote-light blockquote { font-size: clamp(15.5px,1.15vw,17.5px); color: var(--teal-deep); }
.quote-light figcaption { border-top: 1px solid rgba(18,48,46,.1); }
.quote-light .av { background: #E8EFEE; color: var(--teal-mid); }
.quote-light .rl { color: var(--gray); }

/* ---------- about ---------- */
.about-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(40px,5vw,88px); align-items: start;
}
.photo { position: relative; max-width: 440px; width: 100%; }
.photo .plate { position: absolute; inset: 22px -22px -22px 22px; background: linear-gradient(150deg, var(--cream) 0%, var(--yellow) 100%); border-radius: 4px; }
.photo .edge { position: absolute; left: -14px; top: 40px; bottom: 40px; width: 3px; background: var(--coral); }
.photo img {
  position: relative; width: 100%; border-radius: 4px; object-fit: cover; object-position: 50% 16%;
  aspect-ratio: 4 / 5; box-shadow: 0 30px 60px -34px rgba(18,48,46,.45);
}
.photo-cap { position: relative; margin-top: 22px; display: flex; align-items: center; gap: 12px; }
.photo-cap i { width: 22px; height: 2px; background: var(--teal); }
.photo-cap span { font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--teal); }
.about-body p { font-size: 19px; line-height: 1.7; color: var(--body); margin: 0 0 20px; text-wrap: pretty; }
.about-body p strong { color: var(--teal-deep); font-weight: 700; }
.about-body h2 { margin-bottom: 30px; }
.exp-box {
  background: linear-gradient(120deg, var(--cream) 0%, #FFFDFC 100%); border-left: 3px solid var(--coral);
  padding: 26px 28px; border-radius: 0 3px 3px 0; margin: 14px 0 36px;
}
.exp-box .h { font-family: var(--serif); font-size: 28px; letter-spacing: -.022em; margin-bottom: 10px; }
.exp-box .s { font-size: 16.5px; line-height: 1.6; color: var(--body-soft); }

/* ---------- contact ---------- */
.contact {
  position: relative; overflow: hidden; background: var(--teal-mid); color: var(--cream);
  padding: clamp(72px,9vw,128px) var(--pad); scroll-margin-top: 100px;
}
.contact .blob-c {
  position: absolute; bottom: -34%; left: -8%; width: 46vw; height: 46vw; max-width: 700px; max-height: 700px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(255,250,200,.22) 0%, rgba(255,250,200,0) 66%);
}
.contact-in { position: relative; }
.contact-head { max-width: 800px; margin-bottom: clamp(44px,5vw,72px); }
.contact-head h2 { font-size: clamp(34px,4.6vw,60px); line-height: 1.02; letter-spacing: -.03em; margin-bottom: 26px; }
.contact-head p { font-size: 20px; line-height: 1.65; color: #DCEAE9; margin: 0; text-wrap: pretty; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: clamp(24px,3vw,44px); align-items: start; }
@media (min-width: 1120px) { .contact-grid { grid-template-columns: 1.05fr 1fr; } }
form {
  background: #fff; border-radius: 4px; padding: clamp(28px,3.4vw,48px);
  display: flex; flex-direction: column; gap: 20px; box-shadow: 0 40px 70px -40px rgba(6,40,44,.6);
}
form h3 { font-family: var(--serif); font-weight: 400; font-size: 32px; line-height: 1.08; letter-spacing: -.024em; margin: 0; color: var(--teal-deep); }
label {
  display: flex; flex-direction: column; gap: 8px;
  font-size: 14px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--teal);
}
input, select, textarea {
  font-family: var(--sans); font-size: 17.5px; font-weight: 500; color: var(--teal-deep);
  padding: 15px 16px; border: 0; border-bottom: 1.5px solid #DDD3CC; background: #FBF8F5;
  border-radius: 3px 3px 0 0; transition: border-color 180ms ease, background 180ms ease;
}
textarea { line-height: 1.55; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--teal-mid); background: #fff; }
form button { font-size: 17.5px; padding: 20px 30px; }
form .fine { font-size: 14.5px; line-height: 1.5; color: var(--gray); margin: 0; }
.contact-side { display: flex; flex-direction: column; gap: clamp(20px,2.4vw,28px); }
.call-card { position: relative; overflow: hidden; background: var(--teal-deep); border-radius: 4px; padding: clamp(28px,3.4vw,44px); }
.call-card .top-rule { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--yellow) 0%, var(--coral) 100%); }
.call-card .lbl { font-size: 11.5px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: #7FA3A0; margin-bottom: 20px; }
.call-card h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(28px,3vw,40px); line-height: 1.06; letter-spacing: -.024em; margin: 0 0 18px; color: var(--cream); }
.call-card p { font-size: 18px; line-height: 1.65; color: #C3D2CF; margin: 0 0 30px; text-wrap: pretty; }
.call-card .btn { display: inline-flex; align-items: center; gap: 12px; padding: 19px 30px; font-size: 17px; box-shadow: none; }
.call-card .btn:hover { background: var(--yellow); color: var(--teal-deep); gap: 20px; transform: none; box-shadow: none; }
.focus-card { border: 1px solid rgba(255,244,240,.24); border-radius: 4px; padding: clamp(24px,2.8vw,36px); }
.focus-card .lbl { font-size: 11.5px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: #BBD6D6; margin-bottom: 20px; }
.focus-card .tags { display: flex; flex-wrap: wrap; gap: 8px; }
.focus-card .tags span { font-size: 14.5px; font-weight: 600; color: var(--cream); border: 1px solid rgba(255,244,240,.3); padding: 9px 14px; border-radius: 100px; }

/* ---------- footer ---------- */
footer { background: var(--teal-deep); color: #C3D2CF; padding: clamp(56px,7vw,96px) var(--pad) 40px; }
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(36px,4vw,72px); padding-bottom: clamp(40px,4vw,64px);
}
.footer-brand { max-width: 400px; }
.footer-logo { display: inline-block; background: var(--cream); padding: 18px 22px; border-radius: 3px; margin-bottom: 24px; }
.footer-logo img { height: 52px; width: auto; }
.footer-name { font-family: var(--serif); font-size: 28px; letter-spacing: -.022em; color: var(--cream); margin-bottom: 12px; }
.footer-brand p { font-size: 17px; line-height: 1.65; margin: 0 0 26px; }
.footer-brand .btn { font-size: 16.5px; padding: 16px 26px; box-shadow: none; }
.footer-brand .btn:hover { background: var(--cream); color: var(--teal-deep); box-shadow: none; }
.footer-lbl { font-size: 11.5px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: #7FA3A0; margin-bottom: 24px; }
.footer-nav { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 14px 24px; }
.footer-nav a, .footer-list span { font-size: 17px; color: #C3D2CF; }
.footer-nav a:hover { color: var(--yellow); }
.footer-list { display: flex; flex-direction: column; gap: 12px; font-size: 16.5px; line-height: 1.4; }
.footer-bottom {
  border-top: 1px solid rgba(255,244,240,.16); padding-top: 28px;
  display: flex; flex-wrap: wrap; gap: 16px 28px; align-items: center; justify-content: space-between; font-size: 15.5px;
}
.footer-bottom a { color: #C3D2CF; }
.footer-bottom a:hover { color: var(--yellow); }
.legal { display: flex; flex-wrap: wrap; gap: 24px; }

/* ---------- mobile ---------- */
@media (max-width: 760px) {
  /* side rules read as stray lines once columns stack */
  .hero-side, .head-note { border-left: 0; padding-left: 0; }
  .hero-side { border-top: 1px solid rgba(18,48,46,.14); padding-top: 30px; }
  .head-note { border-top: 1px solid rgba(18,48,46,.12); padding-top: 26px; max-width: 100%; }
  .head-split { align-items: start; }
  .sub-head h3 { white-space: normal; }
  .sub-head i { display: none; }
  h1 { letter-spacing: -.028em; max-width: 100%; }
  h2 { max-width: 100% !important; }
  .statement { max-width: 100%; }
  .marquee-set span { font-size: 12.5px; gap: 30px; }
  .marquee-set { gap: 30px; padding-right: 30px; }
  .pain { padding-left: 0; padding-right: 0; }
  .pain:hover { padding-left: 0; background: transparent; }
  .pain .num { font-size: 34px; }
  .why:hover, .serve-row:hover { padding-left: 0; background: transparent; }
  .card:hover, .eng:hover, .quote:hover { transform: none; }
  .quote .glyph { font-size: 110px !important; top: -12px; right: 8px; }
  .icon-box { width: 64px; height: 64px; }
  .eng .ghost { font-size: 76px; }
  .photo { max-width: 100%; }
  .photo .plate { inset: 16px -12px -16px 16px; }
  .photo .edge { left: -8px; }
  .footer-logo { padding: 14px 18px; }
  .footer-logo img { height: 44px; }
}

@media (max-width: 560px) {
  .header-in { height: 84px; }
  .logo img { height: 46px; }
  .mobile-menu { inset: 84px 0 0 0; }
  .mobile-menu nav a { font-size: 27px; }
  .btn-lg, .btn-ghost, form button, .call-card .btn, .footer-brand .btn, .mobile-menu .btn {
    display: flex; align-items: center; justify-content: center; width: 100%; text-align: center;
  }
  .cta-row { flex-direction: column; align-items: stretch; }
  .stat-grid { grid-template-columns: 1fr; }
  .serve-row { grid-template-columns: 46px 1fr; gap: 14px; }
  .serve-row .ic { width: 46px; height: 46px; }
  .serve-row .ic svg { width: 26px; height: 26px; }
  .card, .quote-dark, .quote-light, form, .call-card, .focus-card { padding: 24px 20px; }
  .rating-row { gap: 10px 18px; }
  .footer-bottom { justify-content: flex-start; }
}

@media (hover: none) {
  /* avoid sticky hover states on touch devices */
  .card:hover, .eng:hover { transform: none; box-shadow: 0 2px 0 rgba(18,48,46,.03); }
  .btn:hover { transform: none; }
}


/* ---------- legal pages ---------- */
.legal-hero {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, #FFFDFC 100%);
  padding: clamp(48px,6vw,88px) var(--pad) clamp(40px,5vw,64px);
  border-bottom: 1px solid rgba(18,48,46,.09);
}
.legal-hero h1 {
  font-size: clamp(38px,5.6vw,72px); max-width: 20ch; margin-bottom: 22px;
}
.legal-date {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--teal-mid);
}
.legal-date i { width: 26px; height: 2px; background: var(--coral); }
.legal-body { max-width: 820px; margin: 0 auto; padding: clamp(48px,6vw,88px) var(--pad) clamp(64px,7vw,104px); }
.legal-body .intro { font-size: 20px; line-height: 1.7; color: var(--body); margin: 0 0 40px; text-wrap: pretty; }
.legal-body section { padding-top: clamp(30px,3.4vw,44px); }
.legal-body section + section { border-top: 1px solid rgba(18,48,46,.12); margin-top: clamp(30px,3.4vw,44px); }
.legal-body h2 {
  font-size: clamp(24px,2.6vw,34px); line-height: 1.14; letter-spacing: -.022em;
  margin: 0 0 18px; max-width: 28ch;
}
.legal-body h3 { font-size: 18px; font-weight: 700; letter-spacing: -.012em; margin: 26px 0 10px; color: var(--teal-mid); }
.legal-body p { font-size: 17.5px; line-height: 1.75; color: var(--body); margin: 0 0 16px; text-wrap: pretty; }
.legal-body p:last-child { margin-bottom: 0; }
.legal-body ul { margin: 0 0 16px; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.legal-body li {
  position: relative; font-size: 17.5px; line-height: 1.7; color: var(--body); padding-left: 26px; text-wrap: pretty;
}
.legal-body li::before {
  content: ""; position: absolute; left: 4px; top: 12px; width: 7px; height: 7px; background: var(--coral); border-radius: 50%;
}
.legal-body .caps { font-size: 16px; line-height: 1.7; color: var(--body-soft); }
.legal-cta {
  margin-top: clamp(44px,5vw,68px); background: var(--cream); border-left: 3px solid var(--coral);
  padding: 28px 30px; border-radius: 0 3px 3px 0;
}
.legal-cta .h { font-family: var(--serif); font-size: 26px; letter-spacing: -.022em; margin-bottom: 10px; }
.legal-cta p { font-size: 17px; margin: 0 0 20px; }
.back-link {
  display: inline-flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 700;
  color: var(--teal-mid); margin-bottom: 26px; transition: gap 200ms ease;
}
.back-link:hover { gap: 16px; }
@media (max-width: 560px) {
  .legal-body h2 { max-width: 100%; }
  .legal-cta { padding: 22px 20px; }
}
