:root {
  --navy: #03416a;
  --navy-deep: #022a44;
  --navy-soft: #6288a5;
  --orange: #f97316;
  --orange-soft: rgba(249, 115, 22, 0.12);
  --paper: #f7fafc;
  --panel: rgba(255, 255, 255, 0.78);
  --line: rgba(3, 65, 106, 0.16);
  --text: #183143;
  --text-soft: #5c7284;
  --shadow: 0 22px 60px rgba(8, 36, 57, 0.08);
  --max-page: 1240px;
}

@font-face {
  font-family: "Fraunces";
  src: url("fonts/Fraunces-Regular.woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("fonts/Fraunces-Medium.woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("fonts/Fraunces-SemiBold.woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Fraunces";
  src: url("fonts/Fraunces-Bold.woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-VariableFont_wght.woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 1.2rem;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(249, 115, 22, 0.16), transparent 22rem),
    radial-gradient(circle at 85% 0%, rgba(3, 65, 106, 0.12), transparent 24rem),
    linear-gradient(180deg, #fbfdff 0%, var(--paper) 100%);
}

.background-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(3, 65, 106, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(3, 65, 106, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black 55%, transparent 100%);
  pointer-events: none;
}

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

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

button {
  font: inherit;
}

[hidden] {
  display: none !important;
}

.page-shell {
  width: min(calc(100% - 4rem), var(--max-page));
  margin: 0 auto;
  padding-bottom: 4rem;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.1rem;
  padding: 1rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.4rem;
  background:
    linear-gradient(135deg, rgba(3, 65, 106, 0.98), rgba(7, 81, 128, 0.92)),
    var(--navy);
  box-shadow: 0 16px 36px rgba(8, 36, 57, 0.14);
}

.site-nav-toggle {
  display: none;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.site-nav-toggle:hover,
.site-nav-toggle:focus-visible {
  transform: translateY(-1px);
  border-color: var(--orange);
  background: rgba(249, 115, 22, 0.16);
  color: white;
}

.site-nav-toggle:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.22);
  outline-offset: 3px;
}

.site-nav-toggle-lines {
  display: grid;
  gap: 3px;
}

.site-nav-toggle-lines span {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.site-nav-toggle-label {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand-mark {
  display: inline-grid;
  justify-items: center;
}

.brand-mark a {
  display: inline-grid;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  gap: 0.14rem;
  min-width: 0;
}

.brand-copy strong {
  color: var(--orange);
  font-size: 1rem;
  font-weight: 700;
}

.brand-copy span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.5rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--orange);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 3rem;
  align-items: start;
  padding: 5.5rem 0 2.4rem;
}

.kicker {
  margin: 0 0 1rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.service-stage-head h2,
.section-head h2,
.about-block h2,
.contact-block h2,
.service-card-main h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  color: var(--navy-deep);
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  line-height: 0.96;
}

.hero-text {
  max-width: 60ch;
  margin: 1.7rem 0 0;
  color: var(--text-soft);
  font-size: 1.12rem;
  line-height: 1.85;
  text-wrap: pretty;
}

.hero-badge {
  display: grid;
  justify-items: center;
  gap: 0.9rem;
  padding-top: 1rem;
}

.hero-badge-ring {
  position: relative;
  display: grid;
  place-items: center;
  width: min(22rem, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.98) 0 39%, rgba(219, 234, 245, 0.8) 40%, rgba(219, 234, 245, 0.24) 57%, transparent 58%),
    radial-gradient(circle at 30% 26%, rgba(249, 115, 22, 0.18), transparent 10rem),
    radial-gradient(circle at 72% 76%, rgba(3, 65, 106, 0.14), transparent 12rem);
  box-shadow: var(--shadow);
}

.hero-badge-ring::before,
.hero-badge-ring::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.hero-badge-ring::before {
  inset: 7%;
  border: 1px solid rgba(3, 65, 106, 0.14);
}

.hero-badge-ring::after {
  inset: 18%;
  border: 1px dashed rgba(249, 115, 22, 0.46);
}

.hero-badge-ring img {
  position: relative;
  z-index: 1;
  width: 42%;
}

.hero-badge p {
  margin: 0;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-badge .inline-cta {
  margin-top: 0.15rem;
}

.service-stage,
.method-section,
.about-contact {
  margin-top: 2.5rem;
}

.service-stage {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.68));
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.service-stage-head {
  display: block;
  margin-bottom: 1.6rem;
}

.service-stage-head-copy {
  display: grid;
  gap: 0.6rem;
}

.service-stage-head-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem;
}

.service-stage-head h2,
.section-head h2,
.about-block h2,
.contact-block h2 {
  max-width: 13ch;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.02;
}

.service-stage-head h2 {
  max-width: none;
  white-space: nowrap;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.7rem 1.05rem;
  border: 1px solid rgba(3, 65, 106, 0.24);
  border-radius: 999px;
  background: rgba(3, 65, 106, 0.95);
  color: white;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(3, 65, 106, 0.12);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.inline-cta:hover,
.inline-cta:focus-visible {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}

.service-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.9rem;
  margin-bottom: 1.2rem;
}

.service-pill {
  padding: 0.88rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
  cursor: pointer;
}

.service-pill:hover,
.service-pill:focus-visible {
  transform: translateY(-1px);
}

.service-pill:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.22);
  outline-offset: 3px;
}

.service-pill.is-active {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}

.service-picker-note {
  margin: 0 0 1.6rem;
  color: var(--navy-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

.service-stage-note {
  margin: 1.2rem 0 0;
  color: var(--navy-soft);
  font-size: 0.94rem;
  line-height: 1.7;
}

.service-results {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  margin-top: 0.6rem;
}

.service-card {
  display: grid;
  gap: 0.9rem;
  align-content: start;
  height: 100%;
  padding: 1rem;
  border: 1px solid rgba(3, 65, 106, 0.14);
  border-radius: 1.75rem;
  background: linear-gradient(180deg, rgba(225, 236, 246, 0.9), rgba(235, 243, 249, 0.86));
  box-shadow: 0 14px 36px rgba(8, 36, 57, 0.05);
}

.service-card-main,
.detail-card,
.method-card,
.about-block,
.contact-block {
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: var(--panel);
  backdrop-filter: blur(12px);
}

.service-card-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 144px;
  gap: 1.2rem;
  align-items: start;
  min-height: 210px;
  padding: 1.55rem 1.55rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: none;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset;
}

.service-card-copy {
  display: grid;
  align-items: start;
  min-height: 100%;
}

.panel-label {
  margin: 0;
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-thumb {
  width: 144px;
  height: 144px;
  object-fit: cover;
  justify-self: end;
  align-self: start;
  margin-top: 0.28rem;
  border-radius: 0.95rem;
  border: 1px solid rgba(3, 65, 106, 0.08);
  box-shadow: 0 10px 22px rgba(8, 36, 57, 0.08);
}

.service-card-main h3 {
  max-width: 12ch;
  margin-top: 0.55rem;
  font-size: clamp(1.6rem, 2.4vw, 2.25rem);
  line-height: 1.08;
}

.service-card-copy > p:not(.panel-label) {
  display: -webkit-box;
  margin: 0.95rem 0 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.72;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
  text-wrap: pretty;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  width: max-content;
  max-width: 100%;
  margin-top: 1rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(3, 65, 106, 0.2);
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.service-card-link:hover,
.service-card-link:focus-visible {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
  transform: translateY(-1px);
}

.service-card-link:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.22);
  outline-offset: 3px;
}

.service-card-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.detail-card {
  display: grid;
  gap: 0.5rem;
  padding: 1rem 1rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: none;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset;
}

.detail-card span,
.method-card span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-card p,
.method-card p,
.workflow-step p,
.about-block p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
  text-wrap: pretty;
}

.section-head {
  margin-bottom: 1.8rem;
}

.workflow-label {
  margin: 0 0 0.75rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.workflow-section .section-head h2 {
  max-width: none;
  white-space: nowrap;
}

.workflow-section {
  margin-top: 2.5rem;
  padding: 2rem 0 0;
}

.feed-section {
  margin-top: 2.8rem;
  padding: 0.4rem 0 0;
}

.feed-section .section-head h2 {
  max-width: none;
  white-space: nowrap;
}

.feed-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: start;
}

.feed-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.3rem;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(3, 65, 106, 0.12);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 16px 36px rgba(8, 36, 57, 0.06);
}

.feed-card-link {
  display: block;
  height: 100%;
  position: relative;
}

.feed-card-media,
.feed-card-media img {
  width: 100%;
  height: 100%;
}

.feed-card-media img {
  object-fit: cover;
  object-position: top center;
  transition: transform 500ms ease;
}

.feed-card:hover .feed-card-media img,
.feed-card:focus-within .feed-card-media img {
  transform: scale(1.08);
}

.feed-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 52%;
  background: linear-gradient(180deg, transparent 0%, rgba(6, 20, 31, 0.14) 35%, rgba(6, 20, 31, 0.86) 100%);
  pointer-events: none;
  z-index: 1;
}

.feed-card-caption {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: grid;
  align-content: end;
  gap: 0.4rem;
  min-height: 7.4rem;
  padding: 1.05rem 1rem 1rem;
  color: white;
}

.feed-card-caption p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-wrap: pretty;
}

.feed-card-caption p strong {
  color: white;
  font-weight: 800;
}

.workflow-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.35rem;
  align-items: stretch;
}

.workflow-step {
  position: relative;
  display: grid;
  gap: 0.85rem;
  min-height: 100%;
  padding: 1.35rem;
  border: 1px solid rgba(3, 65, 106, 0.14);
  border-radius: 1.6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(240, 246, 251, 0.9));
  box-shadow: 0 14px 36px rgba(8, 36, 57, 0.05);
}

.workflow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.92rem;
  width: 1.82rem;
  height: 2px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(3, 65, 106, 0.72) 0 6px,
      rgba(3, 65, 106, 0.16) 6px 10px
    );
  transform: translateY(-50%);
}

.workflow-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: -1.08rem;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid rgba(3, 65, 106, 0.8);
}

.workflow-step span {
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.workflow-step h3 {
  margin: 0;
  color: var(--navy-deep);
  font-family: "Fraunces", serif;
  font-size: 1.28rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.workflow-step-contact {
  background:
    linear-gradient(180deg, rgba(3, 65, 106, 0.95), rgba(7, 81, 128, 0.9)),
    var(--navy);
  border-color: rgba(255, 255, 255, 0.08);
}

.workflow-step-contact span,
.workflow-step-contact h3,
.workflow-step-contact p {
  color: white;
}

.workflow-step-contact .workflow-mini-form {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.workflow-step-contact .button-primary:hover,
.workflow-step-contact .button-primary:focus-visible {
  background: #facc15;
  color: #111;
}

.workflow-step-contact .button-primary.is-success,
.workflow-step-contact .button-primary.is-success:hover,
.workflow-step-contact .button-primary.is-success:focus-visible,
.workflow-step-contact .button-primary.is-success:disabled {
  background: #16a34a;
  color: white;
  cursor: default;
  transform: none;
}

.workflow-mini-form {
  display: grid;
  gap: 0.65rem;
}

.workflow-mini-form input {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(3, 65, 106, 0.16);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  font: inherit;
}

.workflow-mini-form input::placeholder {
  color: rgba(92, 114, 132, 0.75);
}

.workflow-mini-form .button {
  width: fit-content;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  margin-top: 4.2rem;
  padding: 1.2rem 1.4rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.4rem;
  background:
    linear-gradient(135deg, rgba(3, 65, 106, 0.98), rgba(7, 81, 128, 0.92)),
    var(--navy);
  box-shadow: 0 16px 36px rgba(8, 36, 57, 0.14);
}

.site-footer-links,
.site-footer-actions {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.site-footer-links a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 600;
}

.site-footer-links a:hover,
.site-footer-links a:focus-visible {
  color: var(--orange);
}

.site-footer-brand {
  display: grid;
  justify-items: center;
  gap: 0.15rem;
  text-align: center;
}

.site-footer-brand strong {
  color: var(--orange);
  font-size: 0.98rem;
  font-weight: 700;
}

.site-footer-brand span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer-actions {
  justify-content: flex-end;
}

.footer-icon-link {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.footer-icon-link:hover,
.footer-icon-link:focus-visible {
  transform: translateY(-1px);
  border-color: var(--orange);
  background: var(--orange);
  color: white;
}

.footer-icon-link svg {
  width: 0.96rem;
  height: 0.96rem;
  fill: currentColor;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.method-card {
  padding: 1.6rem;
}

.method-card h3 {
  margin: 1rem 0 0.7rem;
  color: var(--navy-deep);
  font-size: 1.18rem;
}

.about-contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 1rem;
  padding: 4rem 0 0;
}

.about-block,
.contact-block {
  padding: 2rem;
}

.contact-block {
  background:
    linear-gradient(135deg, rgba(3, 65, 106, 0.96), rgba(7, 81, 128, 0.9)),
    var(--navy);
  border-color: rgba(255, 255, 255, 0.08);
}

.contact-block h2,
.contact-block .kicker,
.contact-block a {
  color: white;
}

.contact-block p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:focus-visible {
  outline: 3px solid rgba(249, 115, 22, 0.22);
  outline-offset: 3px;
}

.button-primary {
  background: var(--orange);
  color: white;
}

.button-guide {
  background: var(--navy);
  border-color: var(--navy);
  color: white;
}

.button-guide:hover,
.button-guide:focus-visible {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}

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

@media (max-width: 1100px) {
  .hero,
  .method-grid {
    grid-template-columns: 1fr;
  }

  .service-results {
    grid-template-columns: 1fr;
  }

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

  .workflow-track {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4rem;
    justify-items: center;
  }

  .hero-badge {
    justify-items: center;
    text-align: center;
  }

  .hero-badge-ring {
    width: min(19rem, 80vw);
  }

  .hero-copy {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .hero h1,
  .hero-text,
  .hero-copy .kicker {
    text-align: center;
  }

  .service-stage-head {
    margin-bottom: 1.6rem;
  }

  .service-stage-head h2 {
    max-width: 16ch;
    white-space: normal;
  }

  .feed-section .section-head h2,
  .workflow-section .section-head h2 {
    white-space: normal;
  }

  .service-stage-head-line {
    align-items: flex-start;
  }

  .workflow-step:not(:last-child)::after {
    top: auto;
    right: auto;
    left: 1.6rem;
    bottom: -0.7rem;
    width: 2px;
    height: 1.4rem;
    background: linear-gradient(180deg, rgba(3, 65, 106, 0.65), rgba(249, 115, 22, 0.85));
    transform: none;
  }

  .workflow-section .section-head h2 {
    white-space: normal;
  }

  .airbnb-page {
    gap: 2rem;
  }

  .airbnb-offer {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "media"
      "details";
  }

  .airbnb-offer-media {
    margin-top: 0;
  }

  .airbnb-proof-grid {
    grid-template-columns: 1fr;
  }

  .airbnb-offer-heading h2,
  .airbnb-contact h2 {
    max-width: none;
  }

  .airbnb-section-head h2,
  .airbnb-contact h2 {
    font-size: 2.15rem;
  }

  .airbnb-offer-heading h2 {
    font-size: 1.95rem;
  }

  .airbnb-offer-media img {
    min-height: 16rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    margin-top: 3.6rem;
  }

  .site-footer-links,
  .site-footer-actions {
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(calc(100% - 1rem), var(--max-page));
  }

  .site-header {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem 0.9rem;
  }

  .brand {
    flex-direction: row;
    align-items: center;
  }

  .brand-mark {
    justify-items: center;
  }

  .site-nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    margin-top: 0.1rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    background: rgba(1, 31, 51, 0.26);
    backdrop-filter: blur(10px);
  }

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

  .airbnb-page {
    padding-top: 2.6rem;
    gap: 2.55rem;
  }

  .airbnb-offer,
  .airbnb-contact {
    padding: 1.5rem;
  }

  .airbnb-section-head h2,
  .airbnb-contact h2 {
    font-size: 1.95rem;
  }

  .airbnb-offer-heading h2 {
    font-size: 1.75rem;
  }

  .airbnb-offer-heading,
  .airbnb-offer-details {
    gap: 0.95rem;
  }

  .airbnb-guide-teaser {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 0.85rem;
    padding: 0.85rem;
  }

  .airbnb-guide-teaser img {
    width: 92px;
  }

  .airbnb-section-head {
    padding: 0;
  }

  .airbnb-request-form {
    grid-template-columns: 1fr;
  }

  .airbnb-request-form .field-full {
    grid-column: auto;
  }

  .hero {
    gap: 2rem;
    padding: 3.2rem 0 1.5rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 14vw, 4.8rem);
  }

  .service-stage,
  .about-block,
  .contact-block,
  .service-card-main {
    padding: 1.4rem;
  }

  .service-card-main {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .service-thumb {
    width: 100%;
    max-width: 180px;
    height: 140px;
    justify-self: start;
    margin-top: 0;
  }

  .method-card,
  .detail-card {
    padding: 1.2rem;
  }

  .service-card-main h3,
  .service-stage-head h2,
  .section-head h2,
  .about-block h2,
  .contact-block h2 {
    max-width: 100%;
  }

  .service-card-meta {
    grid-template-columns: 1fr;
  }

  .feed-grid {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    justify-items: center;
    text-align: center;
  }

  .hero-badge .inline-cta {
    align-self: center;
  }

  .site-footer {
    margin-top: 3.35rem;
    padding-inline: 1rem;
  }
}

.legal-shell {
  padding-bottom: 4rem;
}

.legal-page {
  display: grid;
  gap: 1rem;
  padding: 3rem 0 0;
}

.legal-hero {
  display: grid;
  gap: 0.8rem;
  max-width: 60rem;
  padding: 2rem;
  border: 1px solid rgba(3, 65, 106, 0.12);
  border-radius: 1.6rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(243, 247, 251, 0.86));
  box-shadow: var(--shadow);
}

.legal-hero h1 {
  margin: 0;
  font-family: "Fraunces", serif;
  color: var(--navy-deep);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  line-height: 0.98;
}

.legal-hero p:last-child {
  margin: 0;
  max-width: 58ch;
  color: var(--text-soft);
  line-height: 1.8;
}

.legal-card {
  max-width: 60rem;
  padding: 1.7rem 2rem;
  border: 1px solid rgba(3, 65, 106, 0.12);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 30px rgba(8, 36, 57, 0.04);
}

.legal-card h2 {
  margin: 0 0 0.85rem;
  font-family: "Fraunces", serif;
  color: var(--navy-deep);
  font-size: 1.45rem;
  line-height: 1.08;
}

.legal-card p {
  margin: 0.35rem 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.legal-card a {
  color: var(--navy);
  font-weight: 700;
}

.legal-card a:hover,
.legal-card a:focus-visible {
  color: var(--orange);
}

.airbnb-shell {
  padding-bottom: 4rem;
}

.airbnb-page {
  display: grid;
  gap: 2.85rem;
  padding: 2.25rem 0 0;
}

.airbnb-section {
  display: grid;
  gap: 1.9rem;
}

.airbnb-section-head {
  display: grid;
  gap: 0.55rem;
  padding: 0 0.15rem;
}

.airbnb-section-head h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  color: var(--navy-deep);
  font-size: 2.35rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.airbnb-section-head p {
  margin: 0;
  max-width: 58ch;
  color: var(--text-soft);
  line-height: 1.65;
}

.airbnb-offers {
  display: grid;
  gap: 2.55rem;
}

.airbnb-offer {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  grid-template-areas:
    "heading media"
    "details media";
  gap: 2rem;
  align-items: start;
  padding: 2.05rem;
  border: 1px solid rgba(3, 65, 106, 0.12);
  border-radius: 1.7rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 34px rgba(8, 36, 57, 0.05);
}

.airbnb-offer-reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-template-areas:
    "media heading"
    "media details";
}

.airbnb-offer-media {
  grid-area: media;
  align-self: start;
  overflow: hidden;
  border-radius: 1.35rem;
  margin-top: 2.05rem;
  min-height: 100%;
}

.airbnb-offer-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 19rem;
  border-radius: inherit;
  object-fit: cover;
  object-position: top center;
}

.airbnb-offer-heading,
.airbnb-offer-details {
  display: grid;
  align-content: start;
  gap: 0.9rem;
  padding: 0.5rem 0.35rem 0.3rem;
}

.airbnb-offer-heading {
  grid-area: heading;
  padding-bottom: 0;
}

.airbnb-offer-details {
  grid-area: details;
  padding-top: 0;
}

.airbnb-offer-heading h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  color: var(--navy-deep);
  font-size: 2.05rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.airbnb-offer-details p {
  margin: 0;
  max-width: 56ch;
  color: var(--text-soft);
  line-height: 1.65;
}

.airbnb-guide-teaser {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  margin: 0.25rem 0 0.15rem;
  padding: 0.95rem;
  border: 1px solid rgba(3, 65, 106, 0.12);
  border-radius: 1.2rem;
  background: rgba(225, 236, 246, 0.55);
}

.airbnb-guide-teaser img {
  width: 108px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 0.85rem;
}

.airbnb-guide-teaser div {
  display: grid;
  gap: 0.55rem;
  justify-items: start;
}

.airbnb-guide-teaser strong {
  color: var(--navy-deep);
  font-family: "Fraunces", serif;
  font-size: 1.25rem;
  line-height: 1.08;
}

.airbnb-guide-teaser p {
  font-size: 0.95rem;
}

.airbnb-guide-teaser .button {
  min-height: 42px;
  padding: 0.65rem 1rem;
  font-size: 0.86rem;
}

.airbnb-list {
  display: grid;
  gap: 0.55rem;
  margin: 0.2rem 0 0.15rem;
  padding: 0;
  list-style: none;
}

.airbnb-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: start;
  color: var(--text);
  line-height: 1.5;
}

.airbnb-list li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: var(--orange);
}

.airbnb-offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.45rem;
}

.airbnb-link-note {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.93rem;
  line-height: 1.6;
}

.airbnb-price-note {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.2rem;
  padding: 1rem;
  border: 1px solid rgba(3, 65, 106, 0.12);
  border-radius: 1rem;
  background: rgba(242, 247, 251, 0.78);
}

.airbnb-price-note strong {
  color: var(--navy-deep);
}

.airbnb-price-note span {
  color: var(--text-soft);
  line-height: 1.55;
}

.airbnb-price-note a {
  width: fit-content;
  color: var(--orange);
  font-weight: 800;
  text-decoration-color: rgba(249, 115, 22, 0.32);
}

.airbnb-price-note a:hover,
.airbnb-price-note a:focus-visible {
  color: var(--navy-deep);
}

.airbnb-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.airbnb-quote {
  display: grid;
  gap: 1rem;
  padding: 1.8rem 1.8rem 1.85rem;
  border: 1px solid rgba(3, 65, 106, 0.12);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 30px rgba(8, 36, 57, 0.04);
}

.airbnb-quote p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.airbnb-quote footer {
  display: grid;
  justify-items: start;
  gap: 0.2rem;
}

.airbnb-quote footer img {
  width: 2.6rem;
  height: 2.6rem;
  object-fit: cover;
  border-radius: 999px;
  border: 1px solid rgba(3, 65, 106, 0.12);
  background: white;
}

.airbnb-quote footer strong {
  color: var(--navy-deep);
}

.airbnb-quote footer span {
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.airbnb-contact {
  display: grid;
  gap: 1rem;
  padding: 2.4rem;
  border: 1px solid rgba(3, 65, 106, 0.12);
  border-radius: 1.7rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.91), rgba(242, 247, 251, 0.88));
  box-shadow: var(--shadow);
}

.airbnb-contact h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  color: var(--navy-deep);
  font-size: 2.45rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.airbnb-contact p {
  margin: 0;
  max-width: 58ch;
  color: var(--text-soft);
  line-height: 1.65;
}

.airbnb-request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.75rem;
}

.airbnb-request-field {
  display: grid;
  gap: 0.45rem;
  align-content: start;
}

.airbnb-request-field span {
  color: var(--navy-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.airbnb-request-form input,
.airbnb-request-form select,
.airbnb-request-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(3, 65, 106, 0.16);
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  font: inherit;
}

.airbnb-request-form textarea {
  min-height: 140px;
  resize: vertical;
}

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

.airbnb-request-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.airbnb-request-consent input {
  width: 1rem;
  min-height: auto;
  margin-top: 0.25rem;
  padding: 0;
  flex: 0 0 auto;
}

.airbnb-request-consent a {
  color: var(--navy-deep);
  text-decoration-color: rgba(3, 65, 106, 0.35);
}

.airbnb-request-form .button {
  width: fit-content;
}

.airbnb-request-form-note {
  margin: 0.35rem 0 0;
  color: var(--text-soft);
  font-size: 0.93rem;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .airbnb-page {
    gap: 2rem;
  }

  .airbnb-offer {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "media"
      "details";
  }

  .airbnb-proof-grid {
    grid-template-columns: 1fr;
  }

  .airbnb-offer-heading h2,
  .airbnb-contact h2 {
    max-width: none;
  }

  .airbnb-section-head h2,
  .airbnb-contact h2 {
    font-size: 2.15rem;
  }

  .airbnb-offer-heading h2 {
    font-size: 1.95rem;
  }

  .airbnb-offer-media img {
    min-height: 16rem;
  }
}

@media (max-width: 760px) {
  .airbnb-page {
    padding-top: 2.6rem;
    gap: 2.55rem;
  }

  .airbnb-offer,
  .airbnb-contact {
    padding: 1.5rem;
  }

  .airbnb-section-head h2,
  .airbnb-contact h2 {
    font-size: 1.95rem;
  }

  .airbnb-offer-heading h2 {
    font-size: 1.75rem;
  }

  .airbnb-offer-heading,
  .airbnb-offer-details {
    gap: 0.95rem;
  }

  .airbnb-guide-teaser {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 0.85rem;
  }

  .airbnb-guide-teaser img {
    width: min(100%, 11rem);
  }

  .airbnb-section-head {
    padding: 0;
  }

  .airbnb-request-form {
    grid-template-columns: 1fr;
  }

  .airbnb-request-form .field-full {
    grid-column: auto;
  }
}

.guide-shell {
  padding-bottom: 4rem;
}

.guide-page {
  display: grid;
  gap: 2.55rem;
  padding: 2.25rem 0 0;
}

.guide-hero {
  display: grid;
  max-width: none;
  gap: 1.25rem;
}

.guide-hero-copy {
  display: grid;
  gap: 1.25rem;
}

.guide-hero h1 {
  margin: 0;
  max-width: none;
  font-family: "Fraunces", serif;
  color: var(--navy-deep);
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.guide-hero p {
  margin: 0;
  max-width: 76ch;
  color: var(--text-soft);
  line-height: 1.68;
}

.guide-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.guide-rules-title {
  margin: -0.6rem 0 -1.65rem;
  font-family: "Fraunces", serif;
  color: var(--navy-deep);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.guide-principles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.guide-principles article,
.guide-index-section,
.guide-chapter {
  border: 1px solid rgba(3, 65, 106, 0.12);
  border-radius: 1.55rem;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 32px rgba(8, 36, 57, 0.045);
}

.guide-principles article {
  display: grid;
  gap: 0.3rem;
  align-content: start;
  padding: 1rem 1.05rem;
}

.guide-principles span,
.guide-chapter-head span {
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.guide-principles h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  color: var(--navy-deep);
  font-size: 1.18rem;
  line-height: 1.08;
}

.guide-principles p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.48;
}

.guide-index-section {
  position: sticky;
  top: 0.75rem;
  z-index: 8;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.68rem 0.82rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.guide-index-head {
  display: grid;
  flex: 0 0 auto;
}

.guide-index-head a {
  color: var(--orange);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.guide-index-head a:hover,
.guide-index-head a:focus-visible {
  color: var(--navy-deep);
}

.guide-index {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: wrap;
  gap: 0.3rem;
  padding: 0.05rem 0;
}

.guide-index a {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 27px;
  padding: 0.28rem 0.52rem;
  border: 1px solid rgba(3, 65, 106, 0.16);
  border-radius: 999px;
  background: rgba(242, 247, 251, 0.82);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.guide-index a:hover,
.guide-index a:focus-visible {
  transform: translateY(-1px);
  border-color: var(--orange);
  background: var(--orange);
  color: white;
}

.guide-content {
  display: grid;
  gap: 2rem;
}

.guide-chapter {
  display: grid;
  gap: 1.55rem;
  padding: 1.75rem;
  scroll-margin-top: 6rem;
}

.guide-chapter-head {
  display: grid;
  gap: 0.45rem;
  max-width: 52rem;
}

.guide-chapter-head h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  color: var(--navy-deep);
  font-size: clamp(2.15rem, 4vw, 3.5rem);
  line-height: 1;
}

.guide-chapter-head p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.guide-shot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  min-width: 0;
}

.guide-shot {
  display: grid;
  min-width: 0;
  overflow: visible;
  padding: 0.9rem;
  border: 1px solid rgba(3, 65, 106, 0.1);
  border-radius: 1.25rem;
  background: linear-gradient(180deg, rgba(245, 249, 252, 0.95), rgba(255, 255, 255, 0.96));
  box-shadow: 0 10px 24px rgba(8, 36, 57, 0.04);
}

.guide-shot img {
  width: 100%;
  max-width: 100%;
  height: auto;
  min-width: 0;
  background: rgba(3, 65, 106, 0.06);
}

.guide-shot-copy {
  display: grid;
  gap: 0.55rem;
  align-content: start;
  min-width: 0;
  padding: 1rem 0.1rem 0.05rem;
}

.guide-shot-copy .panel-label {
  overflow-wrap: anywhere;
}

.guide-shot-copy h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  color: var(--navy-deep);
  font-size: 1.35rem;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.guide-shot-copy p:not(.panel-label) {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.58;
  overflow-wrap: anywhere;
}

.guide-shot-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.15rem;
}

.guide-shot-meta span {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 30px;
  padding: 0.35rem 0.62rem;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

@media (max-width: 960px) {
  .guide-page {
    gap: 2rem;
    padding-top: 2.2rem;
  }

  .guide-index-section {
    top: 0.5rem;
    display: grid;
    gap: 0.7rem;
  }

  .guide-hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
  }

  .guide-shot,
  .guide-shot-grid {
    grid-template-columns: 1fr;
  }

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

  .guide-chapter {
    padding: 1.35rem;
  }

  .guide-index-section {
    padding: 0.8rem;
  }

  .guide-shot img {
    height: auto;
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .guide-principles {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
