:root {
  --ink: #112e3d;
  --ink-2: #183d4d;
  --blue: #2b6074;
  --blue-light: #7696a2;
  --sand: #d5b9a2;
  --paper: #f7f3ed;
  --paper-deep: #ece5dc;
  --white: #ffffff;
  --muted: #586a72;
  --line: rgba(17, 46, 61, 0.16);
  --container: 1180px;
  --shadow: 0 24px 70px rgba(17, 46, 61, 0.12);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

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

:focus-visible {
  outline: 3px solid #e29b61;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 200;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  background: #d99868;
  pointer-events: none;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(17, 46, 61, 0.08);
  background: rgba(247, 243, 237, 0.96);
  backdrop-filter: blur(16px);
}

.header-inner {
  position: relative;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 132px;
  height: auto;
}

.desktop-nav,
.site-header .header-cta {
  display: none;
}

.mobile-menu {
  position: static;
}

.mobile-menu summary {
  display: grid;
  width: 48px;
  height: 48px;
  cursor: pointer;
  list-style: none;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  display: block;
  width: 19px;
  height: 1px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu[open] summary span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu[open] summary span:nth-child(2) {
  opacity: 0;
}

.mobile-menu[open] summary span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu nav {
  position: fixed;
  top: 72px;
  right: 0;
  left: 0;
  width: 100vw;
  display: grid;
  gap: 0;
  padding: 10px 16px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 18px 35px rgba(17, 46, 61, 0.1);
}

.mobile-menu nav a {
  min-height: 52px;
  padding: 13px 4px;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.mobile-menu nav a:last-child {
  border: 0;
  color: var(--blue);
  font-weight: 700;
}

.hero {
  padding: 34px 0 64px;
}

.hero-grid {
  display: grid;
  gap: 32px;
}

.hero-copy {
  padding-top: 14px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 1px;
  content: "";
  background: currentColor;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  max-width: 16ch;
  font-size: clamp(2.45rem, 11vw, 5.4rem);
  line-height: 0.98;
}

h2 {
  font-size: clamp(2rem, 9vw, 4.2rem);
  line-height: 1.04;
}

h3,
p {
  overflow-wrap: anywhere;
}

.hero-lead {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 4.4vw, 1.32rem);
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  border-color: var(--blue);
  background: var(--blue);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 11px 18px;
}

.text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-facts {
  display: grid;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.hero-facts li {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: baseline;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.hero-facts strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 400;
}

.hero-facts span {
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-visual {
  margin: 0;
  overflow: hidden;
  background: var(--paper-deep);
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 66% center;
}

.hero-visual figcaption {
  display: grid;
  gap: 2px;
  padding: 18px 20px 20px;
  background: var(--white);
}

.hero-visual figcaption strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 400;
}

.hero-visual figcaption span {
  color: var(--muted);
  font-size: 0.82rem;
}

.section {
  padding: 76px 0;
}

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

.section-heading {
  max-width: 730px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.request-grid {
  display: grid;
  gap: 1px;
  margin-top: 42px;
  border: 1px solid var(--line);
  background: var(--line);
}

.request-card {
  min-width: 0;
  padding: 28px 24px 30px;
  background: var(--paper-deep);
}

.request-card > span {
  display: block;
  margin-bottom: 52px;
  color: var(--blue-light);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.request-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.15;
}

.request-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.about-grid {
  display: grid;
  gap: 54px;
}

.about-intro p:not(.eyebrow) + p {
  margin-top: 14px;
}

.credentials {
  display: grid;
  border-top: 1px solid var(--line);
}

.credentials article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.credentials article > span {
  padding-top: 4px;
  color: var(--blue-light);
  font-size: 0.74rem;
  font-weight: 700;
}

.credentials h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.38rem;
  font-weight: 400;
  line-height: 1.2;
}

.credentials p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.section-ink {
  background: var(--ink);
  color: var(--white);
}

.section-heading-light .eyebrow {
  color: #afcbd5;
}

.steps {
  display: grid;
  gap: 1px;
  margin: 42px 0 0;
  padding: 1px;
  background: rgba(255, 255, 255, 0.16);
  list-style: none;
}

.steps li {
  min-height: 280px;
  padding: 28px 24px;
  background: var(--ink);
}

.steps span {
  color: #afcbd5;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.steps h3 {
  margin: 76px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 400;
}

.steps p {
  margin: 12px 0 0;
  color: #c5d2d7;
  font-size: 0.9rem;
}

.outcome-grid {
  display: grid;
  gap: 48px;
}

.outcome-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.outcome-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  line-height: 1.3;
}

.outcome-list span {
  padding-top: 3px;
  color: var(--blue-light);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
}

.price-grid {
  display: grid;
  gap: 42px;
}

.price-card {
  padding: 28px 24px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 50px rgba(17, 46, 61, 0.08);
}

.price-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.price-top span {
  color: var(--muted);
  font-size: 0.85rem;
}

.price-top strong {
  flex: 0 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 11vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.price-card li::before {
  position: absolute;
  top: 0.66em;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  content: "";
  background: var(--blue);
}

.price-card .button {
  width: 100%;
}

.faq-grid {
  display: grid;
  gap: 42px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  min-height: 72px;
  cursor: pointer;
  list-style: none;
  grid-template-columns: 1fr 36px;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  line-height: 1.25;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 1.15rem;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -2px 52px 24px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-section {
  padding: 16px 0 0;
}

.contact-panel {
  position: relative;
  isolation: isolate;
  min-height: 520px;
  overflow: hidden;
  background: #132f3b;
  color: var(--white);
}

.contact-media {
  position: absolute;
  z-index: -2;
  inset: -6% 0;
  overflow: hidden;
}

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

.contact-panel::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: rgba(9, 26, 35, 0.76);
}

.contact-copy {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: center;
  padding: 54px 24px;
}

.contact-copy .eyebrow {
  color: #c4d8df;
}

.contact-copy h2 {
  font-size: clamp(2.8rem, 14vw, 5.8rem);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 24px 0 0;
  color: #dae4e7;
}

.button-light {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button-light:hover {
  border-color: #dce9ed;
  background: #dce9ed;
}

.contact-actions > a:not(.button) {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
}

.site-footer {
  padding: 58px 0 28px;
  background: var(--paper);
}

.footer-grid {
  display: grid;
  gap: 34px;
}

.footer-grid img {
  width: 145px;
  height: auto;
}

.footer-grid p {
  max-width: 340px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-contacts {
  display: grid;
  align-content: start;
  gap: 8px;
  font-size: 0.9rem;
}

.footer-contacts a {
  width: fit-content;
}

.footer-contacts span {
  color: var(--muted);
}

.footer-bottom {
  display: grid;
  gap: 16px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
}

.privacy summary {
  width: fit-content;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.privacy p {
  max-width: 620px;
  margin: 12px 0 0;
}

.emergency-note {
  margin: 0;
  padding: 14px 16px;
  background: var(--ink);
  color: #c8d5da;
  font-size: 0.68rem;
  line-height: 1.5;
  text-align: center;
}

@media (min-width: 600px) {
  .container {
    width: min(100% - 56px, var(--container));
  }

  .hero-actions,
  .contact-actions {
    display: flex;
    align-items: center;
  }

  .button {
    width: fit-content;
  }

  .hero-facts {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-facts li {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 18px;
    border-right: 1px solid var(--line);
  }

  .hero-facts li:first-child {
    padding-left: 0;
  }

  .hero-facts li:last-child {
    border-right: 0;
  }

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

  .price-card {
    padding: 38px;
  }

  .contact-copy {
    padding: 72px 48px;
  }

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

  .footer-contacts,
  .footer-bottom > :last-child {
    justify-self: end;
  }
}

@media (min-width: 900px) {
  .site-header {
    background: rgba(247, 243, 237, 0.92);
  }

  .header-inner {
    min-height: 88px;
  }

  .brand img {
    width: 155px;
  }

  .mobile-menu {
    display: none;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.4vw, 34px);
    margin-left: auto;
  }

  .desktop-nav a {
    position: relative;
    padding: 14px 0;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
  }

  .desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 8px;
    left: 0;
    height: 1px;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .desktop-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .site-header .header-cta {
    display: inline-flex;
  }

  .hero {
    padding: 56px 0 88px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(380px, 0.96fr);
    align-items: center;
    gap: clamp(50px, 7vw, 100px);
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero-visual img {
    aspect-ratio: 4 / 5;
    object-position: 66% center;
  }

  .section {
    padding: 120px 0;
  }

  .request-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 64px;
  }

  .request-card {
    min-height: 330px;
    padding: 34px 30px;
  }

  .request-card > span {
    margin-bottom: 74px;
  }

  .about-grid,
  .outcome-grid,
  .price-grid,
  .faq-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
    align-items: start;
    gap: clamp(70px, 10vw, 150px);
  }

  .about-intro,
  .faq-intro {
    position: sticky;
    top: 130px;
  }

  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 64px;
  }

  .steps li {
    min-height: 350px;
    padding: 36px 30px;
  }

  .steps h3 {
    margin-top: 112px;
  }

  .price-card {
    padding: 44px;
  }

  .contact-section {
    padding-top: 24px;
  }

  .contact-panel {
    min-height: 650px;
  }

  .contact-media img {
    object-position: center;
  }

  .contact-panel::before {
    background: linear-gradient(90deg, rgba(9, 26, 35, 0.9) 0%, rgba(9, 26, 35, 0.72) 48%, rgba(9, 26, 35, 0.35) 100%);
  }

  .contact-copy {
    min-height: 650px;
    padding: 90px;
  }

  .contact-actions > a:not(.button) {
    justify-content: flex-start;
  }

  .site-footer {
    padding-top: 76px;
  }
}

@media (min-width: 1200px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) 500px;
  }
}

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

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