:root {
  --font-display: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg: #f8fafc;
  --paper: #ffffff;
  --ink: #1f2937;
  --muted: #5f6b7a;
  --line: rgba(31, 41, 55, 0.14);
  --brand: #243b53;
  --brand-2: #ff6b4a;
  --brand-3: #5bc0eb;
  --soft: #edf5fb;
  --shadow: 0 18px 45px rgba(31, 41, 55, 0.12);
}

[data-theme="press"] {
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg: #fbfaf8;
  --paper: #ffffff;
  --ink: #111111;
  --muted: #4b5563;
  --line: rgba(17, 17, 17, 0.14);
  --brand: #111111;
  --brand-2: #c9a66b;
  --brand-3: #e8d8d2;
  --soft: #f4eee7;
  --shadow: 0 18px 46px rgba(17, 17, 17, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

[data-theme="press"] .site-header {
  background: rgba(250, 247, 242, 0.9);
}

.nav-shell,
.section-inner,
.footer-inner {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

.nav-shell {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--brand);
}

.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  font-weight: 900;
}

[data-theme="press"] .brand-icon {
  color: var(--brand);
  background: var(--brand-3);
  border: 1px solid rgba(17, 17, 17, 0.12);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
}

.site-nav a[aria-current="page"],
.site-nav a:hover {
  color: var(--brand);
  background: var(--soft);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--brand);
}

.menu-button span {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  margin: 3px auto;
}

.button,
.ghost-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
}

.button {
  color: #fff;
  background: var(--brand-2);
  box-shadow: 0 12px 26px rgba(255, 107, 74, 0.24);
}

[data-theme="press"] .button {
  color: var(--brand);
  background: var(--brand-2);
  box-shadow: 0 12px 26px rgba(201, 166, 107, 0.22);
}

.ghost-button {
  color: var(--brand);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.8);
}

.hero {
  min-height: 620px;
  display: flex;
  align-items: end;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--brand);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-image) center / cover no-repeat;
  transform: scale(1.01);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 29, 45, 0.9), rgba(14, 29, 45, 0.66) 42%, rgba(14, 29, 45, 0.12) 78%),
    linear-gradient(0deg, rgba(14, 29, 45, 0.74), transparent 58%);
}

[data-theme="press"] .hero::after {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.92), rgba(17, 17, 17, 0.62) 44%, rgba(17, 17, 17, 0.08) 78%),
    linear-gradient(0deg, rgba(17, 17, 17, 0.7), transparent 58%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0 92px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--brand-3);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

[data-theme="press"] .eyebrow {
  color: var(--brand-2);
}

.hero h1,
.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero p,
.page-hero p {
  max-width: 670px;
  margin: 22px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-steps {
  max-width: 1040px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 54px;
}

.hero-steps article {
  min-height: 172px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(12, 26, 42, 0.54);
  backdrop-filter: blur(12px);
}

.hero-steps strong {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--brand);
  background: #fff;
  font-weight: 900;
}

.hero-steps h2 {
  margin: 16px 0 0;
  font-size: 1rem;
  letter-spacing: 0;
}

.hero-steps p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
}

.hero .ghost-button {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
}

.section {
  padding: 84px 0;
  background: var(--bg);
}

.section.alt {
  background: var(--paper);
}

.section.compact {
  padding: 58px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-kicker {
  margin: 0 0 8px;
  color: var(--brand-2);
  font-weight: 900;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section h2,
.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.section-head p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.metric,
.case-card,
.faq-item,
.contact-panel,
.table-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(31, 41, 55, 0.06);
}

.card {
  padding: 24px;
}

.photo-card {
  overflow: hidden;
  padding: 0;
}

.card-media {
  position: relative;
  width: 100%;
  height: 188px;
  min-height: 188px;
  max-height: 188px;
  overflow: hidden;
  display: block;
  background: var(--soft);
}

.card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card-media .card-icon {
  position: absolute;
  left: 14px;
  bottom: 14px;
  margin: 0;
  color: var(--brand);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 18px rgba(31, 41, 55, 0.14);
}

.card-body {
  padding: 20px;
}

.card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  margin-bottom: 18px;
  color: var(--brand);
  background: var(--soft);
  font-weight: 900;
}

.card h3,
.metric strong,
.case-card h3,
.timeline-item h3,
.contact-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0;
}

.contact-panel h2 {
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.08;
}

.card p,
.card li,
.timeline-item p,
.case-card p,
.faq-answer,
.contact-panel p {
  color: var(--muted);
}

.card p {
  margin: 10px 0 0;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.logo-strip span,
.pill {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: var(--paper);
  color: var(--muted);
  font-weight: 800;
}

.timeline {
  display: grid;
  gap: 16px;
  counter-reset: steps;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.timeline-item::before {
  counter-increment: steps;
  content: counter(steps);
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--brand);
  font-weight: 900;
}

[data-theme="press"] .timeline-item::before {
  color: var(--brand);
  background: var(--brand-2);
}

.timeline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.timeline-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--brand);
  background: var(--soft);
  font-size: 0.88rem;
  font-weight: 800;
}

.timeline-links a:hover {
  border-color: color-mix(in srgb, var(--brand) 38%, var(--line));
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.metric {
  padding: 24px;
}

.metric strong {
  display: block;
  color: var(--brand);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 700;
}

.case-card {
  overflow: hidden;
}

.case-media {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(91, 192, 235, 0.28), rgba(255, 107, 74, 0.22)),
    var(--soft);
}

.case-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(237, 245, 251, 0.84));
}

.case-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.case-media span {
  position: relative;
  z-index: 1;
  width: fit-content;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 10px;
  color: var(--brand);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.case-media strong {
  position: relative;
  z-index: 1;
  max-width: 260px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.05;
  color: var(--brand);
}

[data-theme="press"] .case-media {
  background:
    linear-gradient(135deg, rgba(201, 166, 107, 0.22), rgba(232, 216, 210, 0.7)),
    var(--soft);
}

.case-body {
  padding: 24px;
}

.case-body ul,
.card ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.comparison .card {
  min-height: 100%;
}

.fit-grid,
.package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.fit-grid-main {
  align-items: stretch;
}

.package-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fit-card,
.package-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(31, 41, 55, 0.06);
}

.fit-card {
  padding: 26px;
}

.fit-card-primary {
  border-color: color-mix(in srgb, var(--brand) 24%, var(--line));
}

.fit-card h3,
.package-card h3,
.intake-note h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0;
}

.fit-card ul,
.package-card ul,
.intake-note ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.fit-card li,
.package-card li,
.intake-note li {
  margin-top: 8px;
}

.muted-card {
  background: linear-gradient(180deg, var(--paper), var(--soft));
}

.package-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 22px;
}

.package-card p {
  color: var(--muted);
}

.package-label {
  width: fit-content;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  margin: 0 0 16px;
  border-radius: 8px;
  padding: 0 10px;
  color: var(--brand);
  background: var(--soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.package-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  color: var(--muted);
  font-weight: 800;
}

.package-meta a {
  color: var(--brand);
}

.intake-note {
  margin: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--brand);
  background: var(--soft);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

tr:last-child td {
  border-bottom: 0;
}

.page-hero {
  color: #fff;
  background: var(--brand);
  padding: 92px 0 72px;
}

[data-theme="press"] .page-hero {
  background: #111111;
}

.page-hero .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 36px;
  align-items: end;
}

.page-hero-badge {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
}

.page-hero-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-question {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 0;
  background: transparent;
  padding: 0 18px;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-question span:last-child {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--soft);
}

.faq-answer {
  display: none;
  margin: 0;
  padding: 0 18px 18px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.faq-item.is-open .faq-question span:last-child {
  transform: rotate(45deg);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 22px;
  align-items: start;
}

.contact-panel {
  padding: 26px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.form-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 58px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
}

.cta-band h2 {
  max-width: 820px;
}

.cta-band p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  padding: 56px 0;
  background: #101820;
  color: #fff;
}

[data-theme="press"] .site-footer {
  background: #111111;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
}

.footer-inner p,
.footer-inner a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

@media (max-width: 960px) {
  .grid.three,
  .grid.four,
  .hero-steps,
  .package-grid,
  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-hero .section-inner,
  .contact-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .nav-shell,
  .section-inner,
  .footer-inner,
  .hero-content {
    width: min(100% - 28px, 1220px);
  }

  .menu-button {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 650px;
  }

  .hero-content {
    padding: 92px 0 70px;
  }

  .section {
    padding: 62px 0;
  }

  .grid.two,
  .grid.three,
  .grid.four,
  .hero-steps,
  .fit-grid,
  .package-grid,
  .metrics,
  .comparison,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .card-media {
    height: 210px;
    min-height: 210px;
    max-height: 210px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 32px 24px;
  }
}
