:root {
  --ink: #071a33;
  --ink-soft: #203451;
  --muted: #667185;
  --line: #d9dee7;
  --paper: #ffffff;
  --paper-warm: #f7f3ec;
  --paper-cool: #f6f8fb;
  --burgundy: #970f2e;
  --burgundy-dark: #770821;
  --brass: #b8914d;
  --shadow: 0 18px 52px rgba(7, 26, 51, 0.12);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

svg {
  width: 1em;
  height: 1em;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 222, 231, 0.85);
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr auto auto;
  left: 0;
  padding: 16px clamp(20px, 4vw, 56px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  align-items: center;
  border-right: 1px solid var(--line);
  color: var(--burgundy);
  display: inline-flex;
  flex: 0 0 auto;
  height: 48px;
  padding-right: 14px;
}

.brand-mark img {
  display: block;
  height: 46px;
  object-fit: contain;
  width: 46px;
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.brand small {
  color: var(--ink-soft);
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin-top: 6px;
  text-transform: uppercase;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 30px;
}

.desktop-nav a {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 700;
  position: relative;
}

.desktop-nav a::after {
  background: var(--burgundy);
  bottom: -9px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  align-items: center;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.84rem;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1;
  min-height: 48px;
  padding: 0 20px;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.header-cta,
.button-primary {
  background: var(--burgundy);
  color: #fff;
}

.header-cta:hover,
.button-primary:hover {
  background: var(--burgundy-dark);
  transform: translateY(-1px);
}

.button-secondary {
  background: #fff;
  border-color: var(--burgundy);
  color: var(--burgundy);
}

.button-secondary:hover {
  border-color: var(--ink);
  color: var(--ink);
  transform: translateY(-1px);
}

.header-cta svg,
.button svg {
  flex: 0 0 auto;
  fill: none;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 18px;
}

.menu-button,
.mobile-nav {
  display: none;
}

.section-shell {
  margin: 0 auto;
  max-width: var(--max);
  padding-left: clamp(20px, 4vw, 56px);
  padding-right: clamp(20px, 4vw, 56px);
}

.hero {
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1.14fr);
  min-height: clamp(680px, 72vh, 820px);
  padding-bottom: clamp(32px, 6vw, 80px);
  padding-top: clamp(42px, 5vw, 72px);
}

.hero-copy {
  align-self: center;
  max-width: 610px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6.2vw, 6.65rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.94;
  margin: 0 0 28px;
}

.hero-copy p {
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  line-height: 1.85;
  margin: 0;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-media {
  align-self: stretch;
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.hero-media::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.18) 36%, rgba(255, 255, 255, 0) 70%);
  bottom: 0;
  content: "";
  left: -2px;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 50%;
  z-index: 1;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.media-note {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  bottom: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 2px;
  padding: 16px 18px;
  position: absolute;
  right: 28px;
  z-index: 2;
}

.media-note strong {
  color: var(--burgundy);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.media-note span {
  color: var(--muted);
  font-size: 0.82rem;
}

.trust-strip {
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: clamp(76px, 9vw, 116px);
  margin-top: calc(clamp(32px, 6vw, 80px) * -0.55);
  padding: 0;
  position: relative;
  z-index: 4;
}

.trust-strip article {
  align-items: flex-start;
  display: grid;
  gap: 18px;
  grid-template-columns: auto minmax(0, 1fr);
  padding: clamp(22px, 3vw, 34px);
}

.trust-strip article + article {
  border-left: 1px solid var(--line);
}

.icon-ring {
  align-items: center;
  border: 1px solid rgba(151, 15, 46, 0.3);
  color: var(--burgundy);
  display: inline-flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.icon-ring svg,
.contact-details svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.trust-strip h2,
.trust-strip p {
  margin: 0;
}

.trust-strip h2 {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.2;
}

.trust-strip p {
  color: var(--muted);
  font-size: 0.91rem;
  margin-top: 7px;
}

.section-kicker {
  color: var(--burgundy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: clamp(22px, 4vw, 64px);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  margin-bottom: clamp(32px, 5vw, 56px);
}

.section-heading.compact {
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
  text-align: center;
}

.section-heading h2,
.documents h2,
.contact h2 {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 3.55rem);
  font-weight: 700;
  line-height: 1.05;
  margin: 0;
}

.section-heading p,
.documents p {
  color: var(--muted);
  font-size: 1rem;
  margin: 0;
}

.section-heading.compact p {
  margin-top: 16px;
}

.intro,
.pricing,
.process,
.documents,
.contact {
  padding-bottom: clamp(76px, 10vw, 128px);
}

.intro-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1.12fr 0.88fr;
}

.intro-panel {
  background: var(--paper-cool);
  border: 1px solid var(--line);
  padding: clamp(24px, 4vw, 44px);
}

.intro-panel.primary-panel {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.intro-panel h3 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  margin: 0 0 16px;
}

.intro-panel p {
  color: inherit;
  margin: 0;
  opacity: 0.82;
}

.price-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 370px;
  padding: clamp(24px, 3vw, 36px);
}

.price-card.featured {
  border-color: rgba(151, 15, 46, 0.42);
  box-shadow: 0 20px 50px rgba(151, 15, 46, 0.09);
}

.language-line {
  align-items: center;
  color: var(--burgundy);
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}

.language-line span {
  align-items: center;
  border: 1px solid rgba(151, 15, 46, 0.45);
  border-radius: 50%;
  display: inline-flex;
  font-size: 0.74rem;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.language-line svg {
  fill: none;
  height: 28px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 28px;
}

.price-card h3 {
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 1.3;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.price-card p {
  color: var(--muted);
  margin: 18px 0 22px;
  text-align: center;
}

.price-card strong {
  border-top: 1px solid rgba(151, 15, 46, 0.35);
  display: block;
  font-size: 1.05rem;
  margin-top: auto;
  padding-top: 18px;
  text-align: center;
}

.price-card small {
  color: var(--muted);
  display: block;
  font-size: 0.82rem;
  margin-top: 12px;
  text-align: center;
}

.process {
  background: linear-gradient(180deg, #fff 0%, var(--paper-cool) 100%);
  max-width: none;
  padding-left: max(clamp(20px, 4vw, 56px), calc((100vw - var(--max)) / 2 + clamp(20px, 4vw, 56px)));
  padding-right: max(clamp(20px, 4vw, 56px), calc((100vw - var(--max)) / 2 + clamp(20px, 4vw, 56px)));
  padding-top: clamp(64px, 8vw, 96px);
}

.process-list {
  counter-reset: item;
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-list li {
  position: relative;
  text-align: center;
}

.process-list li + li::before {
  background: var(--line);
  content: "";
  height: 1px;
  left: -28%;
  position: absolute;
  top: 22px;
  width: 56%;
}

.process-list span {
  align-items: center;
  background: var(--burgundy);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 800;
  height: 44px;
  justify-content: center;
  position: relative;
  width: 44px;
  z-index: 1;
}

.process-list h3 {
  font-family: var(--serif);
  font-size: 1.24rem;
  margin: 18px 0 8px;
}

.process-list p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0 auto;
  max-width: 220px;
}

.documents {
  display: grid;
  gap: clamp(32px, 6vw, 70px);
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.82fr);
  padding-top: clamp(76px, 10vw, 128px);
}

.document-copy {
  align-self: center;
}

.document-copy p {
  margin-top: 20px;
  max-width: 620px;
}

.check-list {
  display: grid;
  gap: 14px 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
}

.check-list li {
  color: var(--ink-soft);
  font-weight: 600;
  padding-left: 28px;
  position: relative;
}

.check-list li::before {
  color: var(--burgundy);
  content: "✓";
  font-weight: 900;
  left: 0;
  position: absolute;
}

.document-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.document-card img {
  aspect-ratio: 4 / 2.35;
  object-fit: cover;
  object-position: 62% center;
}

.document-card div {
  background: #fff;
  padding: 28px;
}

.document-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.2;
}

.document-card p {
  margin-top: 12px;
}

.contact {
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.58fr);
}

.contact-form-panel,
.contact-details {
  border: 1px solid var(--line);
  padding: clamp(26px, 4vw, 46px);
}

.contact-form-panel {
  background: #fff;
}

.contact-details {
  background: var(--paper-cool);
  border-left: 0;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

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

label {
  display: grid;
  gap: 7px;
}

label span {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

input,
select,
textarea {
  background: #fff;
  border: 1px solid #cfd6e3;
  color: var(--ink);
  min-height: 48px;
  outline: none;
  padding: 12px 14px;
  resize: vertical;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(151, 15, 46, 0.12);
}

.form-status {
  color: var(--burgundy);
  font-weight: 700;
  margin: 0;
  min-height: 24px;
}

.contact-details h2 {
  font-size: clamp(1.9rem, 3vw, 2.45rem);
  margin-bottom: 30px;
}

.contact-details a {
  align-items: flex-start;
  color: var(--ink-soft);
  display: grid;
  gap: 15px;
  grid-template-columns: 24px minmax(0, 1fr);
  margin-bottom: 22px;
}

.contact-details a:hover {
  color: var(--burgundy);
}

.contact-details svg {
  color: var(--burgundy);
  height: 22px;
  margin-top: 2px;
  width: 22px;
}

.contact-note {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 32px;
  padding-top: 28px;
}

.contact-note p {
  margin: 0 0 10px;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: #fff;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  padding: 30px clamp(20px, 4vw, 56px);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.85rem;
  margin: 0;
}

.brand.inverted .brand-mark {
  border-color: rgba(255, 255, 255, 0.25);
}

.brand.inverted .brand-mark img {
  background: #fff;
  border-radius: var(--radius);
  padding: 4px;
}

.brand.inverted small {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
  }

  .desktop-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .menu-button {
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--ink);
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    height: 44px;
    justify-content: center;
    width: 44px;
  }

  .menu-button span {
    background: currentColor;
    display: block;
    height: 2px;
    transition: transform 180ms ease, opacity 180ms ease;
    width: 18px;
  }

  .site-header.is-open .menu-button span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .site-header.is-open .menu-button span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
    grid-column: 1 / -1;
    margin: 0 -20px -16px;
    padding: 14px 20px 20px;
  }

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

  .mobile-nav a {
    border-bottom: 1px solid var(--line);
    font-weight: 800;
    padding: 14px 0;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-media {
    min-height: 430px;
  }

  .trust-strip,
  .price-grid,
  .process-list {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip article + article {
    border-left: 0;
  }

  .trust-strip article:nth-child(2n) {
    border-left: 1px solid var(--line);
  }

  .trust-strip article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .section-heading,
  .intro-grid,
  .documents,
  .contact {
    grid-template-columns: 1fr;
  }

  .contact-details {
    border-left: 1px solid var(--line);
    border-top: 0;
  }

  .process-list li + li::before {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 14px 18px;
  }

  .mobile-nav {
    margin: 0 -18px -14px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand-mark {
    height: 42px;
    padding-right: 10px;
  }

  .brand-mark img {
    height: 40px;
    width: 40px;
  }

  .brand strong {
    font-size: 1rem;
  }

  .brand small {
    font-size: 0.56rem;
    max-width: 205px;
  }

  .section-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    padding-top: 38px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 14vw, 4.1rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-media {
    min-height: 330px;
  }

  .hero-media::before {
    width: 42%;
  }

  .media-note {
    bottom: 16px;
    right: 16px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .trust-strip article,
  .trust-strip article:nth-child(2n) {
    border-left: 0;
  }

  .trust-strip article + article {
    border-top: 1px solid var(--line);
  }

  .price-grid,
  .process-list,
  .check-list,
  .form-row {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: 0;
  }

  .contact-form-panel,
  .contact-details {
    padding: 24px 18px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
