:root {
  --ink: #102523;
  --ink-2: #17312e;
  --ink-3: #24413e;
  --cream: #f4f1e9;
  --paper: #fbfaf6;
  --white: #ffffff;
  --muted: #586a66;
  --line: rgba(16, 37, 35, .14);
  --teal: #85d6c9;
  --teal-strong: #1f786d;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 70px rgba(13, 34, 33, .13);
  --wrap: min(1180px, calc(100% - 48px));
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: .2em; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.wrap { width: var(--wrap); margin-inline: auto; }
.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;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-140%);
  padding: 11px 16px;
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  font-weight: 800;
}
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid #91f3df; outline-offset: 4px; }

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  color: var(--white);
  background: linear-gradient(180deg, rgba(7, 21, 22, .62), rgba(7, 21, 22, .12));
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  transition: background .25s ease, box-shadow .25s ease, color .25s ease;
}
.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(251, 250, 246, .95);
  box-shadow: 0 12px 40px rgba(13, 34, 33, .08);
  backdrop-filter: blur(12px);
}
.header-inner {
  width: var(--wrap);
  height: 82px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  text-decoration: none;
  font-weight: 780;
  letter-spacing: -.02em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.brand-mark span { font-family: var(--serif); font-size: 22px; line-height: 1; }
.brand-name { white-space: nowrap; }
.brand-name small {
  margin-left: 3px;
  font-size: .58em;
  font-weight: 800;
  letter-spacing: .15em;
  vertical-align: .18em;
}
.primary-nav { display: flex; align-items: center; gap: 31px; }
.primary-nav a {
  position: relative;
  color: inherit;
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -8px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { transform: scaleX(1); }
.header-phone {
  justify-self: end;
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  font-size: 12px;
}
.header-phone span { opacity: .72; }
.header-phone strong { font-size: 14px; letter-spacing: .01em; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 780px;
  height: min(920px, 100svh);
  overflow: hidden;
  color: var(--white);
  background: #0b1c1b;
}
.hero picture, .hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center; }
.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 24, 27, .4) 0%, rgba(7, 24, 27, .12) 47%, rgba(7, 24, 27, .06) 100%),
    linear-gradient(180deg, rgba(6, 18, 19, .28) 0%, transparent 36%, rgba(6, 18, 19, .58) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 162px 0 116px;
  display: grid;
  grid-template-columns: minmax(0, 720px) 1fr;
  align-items: center;
  gap: 80px;
}
.eyebrow {
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, .84);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow span { width: 22px; height: 1px; background: currentColor; }
.eyebrow-dark { color: var(--teal-strong); }
.hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 6.8vw, 102px);
  font-weight: 400;
  line-height: .93;
  letter-spacing: -.055em;
  text-wrap: balance;
}
.hero-lead {
  max-width: 625px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, .83);
  font-size: 18px;
  line-height: 1.65;
}
.hero-actions { margin-top: 36px; display: flex; align-items: center; gap: 29px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 55px;
  padding: 14px 19px 14px 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 780;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--teal); }
.button-primary:hover { background: #a0e4da; }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: var(--ink-3); }
.text-link {
  display: inline-flex;
  gap: 9px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.text-link:hover { text-decoration: underline; }
.hero-card {
  align-self: end;
  justify-self: end;
  width: 238px;
  margin-bottom: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(7, 24, 27, .34);
  backdrop-filter: blur(12px);
}
.hero-card p, .hero-card address { margin: 0; }
.hero-card-label {
  color: var(--teal);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero-card-name { margin-top: 12px !important; font-family: var(--serif); font-size: 25px; }
.hero-card address { margin-top: 8px; color: rgba(255,255,255,.7); font-size: 13px; font-style: normal; line-height: 1.65; }
.hero-card a { display: inline-block; margin-top: 15px; color: var(--white); font-weight: 800; text-decoration: none; }
.hero-footer {
  position: absolute;
  z-index: 2;
  inset: auto 0 0;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 34px;
  border-top: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .7);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.hero-footer span + span::before { content: "•"; margin-right: 34px; color: var(--teal); }

.intro-strip { background: var(--ink); color: var(--white); }
.strip-grid { min-height: 124px; display: grid; grid-template-columns: .8fr 1.4fr auto; align-items: center; gap: 50px; }
.strip-grid p { margin: 0; }
.strip-kicker { font-family: var(--serif); font-size: 23px; }
.strip-grid p:nth-child(2) { color: rgba(255,255,255,.66); font-size: 14px; }
.strip-grid a { color: var(--teal); font-size: 13px; font-weight: 800; text-decoration: none; white-space: nowrap; }
.strip-grid a:hover { text-decoration: underline; }

.section { padding: 120px 0; }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 80px; margin-bottom: 54px; }
.section h2, .contact-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 5vw, 73px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.045em;
}
.section-heading > p { max-width: 470px; margin: 0 0 5px; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.service-card {
  position: relative;
  min-height: 400px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream);
}
.service-card:nth-child(even) { border-left: 0; }
.service-card:nth-child(n+3) { border-top: 0; }
.service-number { color: var(--teal-strong); font-size: 12px; font-weight: 850; letter-spacing: .16em; }
.service-card h3 { max-width: 380px; margin: 82px 0 18px; font-family: var(--serif); font-size: 38px; font-weight: 400; line-height: 1.06; }
.service-card p { max-width: 430px; margin: 0; color: var(--muted); }
.service-card a { position: absolute; left: 38px; bottom: 35px; font-size: 13px; font-weight: 800; text-decoration: none; }
.service-card a:hover { text-decoration: underline; }
.service-card-dark { color: var(--white); background: var(--ink-2); }
.service-card-dark p { color: rgba(255,255,255,.63); }
.service-card-dark a { color: var(--teal); }
.service-card-image { color: var(--white); background: var(--ink); }
.service-card-image picture, .service-card-image img, .service-image-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.service-card-image img { object-fit: cover; }
.service-image-overlay { background: linear-gradient(180deg, rgba(11,28,27,.1), rgba(11,28,27,.8)); }
.service-image-content { position: relative; z-index: 1; height: 100%; }
.service-card-image p { color: rgba(255,255,255,.75); }
.service-card-image a { color: var(--teal); }

.process { padding-top: 0; }
.process-grid { display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr); min-height: 750px; background: var(--cream); }
.process-visual { position: relative; min-height: 690px; overflow: hidden; }
.process-visual picture, .process-visual img { width: 100%; height: 100%; }
.process-visual img { object-fit: cover; }
.visual-note {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 225px;
  padding: 22px 26px;
  color: var(--white);
  background: var(--ink);
}
.visual-note span { display: block; color: rgba(255,255,255,.6); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.visual-note strong { display: block; margin-top: 4px; font-family: var(--serif); font-size: 22px; font-weight: 400; }
.process-copy { padding: 80px 72px; align-self: center; }
.process-lead { margin: 26px 0 34px; color: var(--muted); font-size: 17px; }
.steps { margin: 0 0 37px; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 37px 1fr; gap: 18px; padding: 19px 0; border-top: 1px solid var(--line); }
.steps li:last-child { border-bottom: 1px solid var(--line); }
.steps li > span { display: grid; place-items: center; width: 31px; height: 31px; border: 1px solid rgba(61,180,162,.65); border-radius: 50%; color: var(--teal-strong); font-size: 11px; font-weight: 800; }
.steps h3 { margin: 0; font-size: 15px; }
.steps p { margin: 3px 0 0; color: var(--muted); font-size: 13px; }

.faq-section { padding-top: 28px; }
.faq-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 110px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 25px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: 23px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-family: var(--sans); font-size: 25px; font-weight: 300; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 620px; margin: -6px 45px 26px 0; color: var(--muted); font-size: 14px; }
.faq-list details a { font-weight: 800; }

.contact-section { padding: 116px 0; color: var(--white); background: var(--ink); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 115px; }
.contact-heading > p:last-child { max-width: 450px; margin: 28px 0 0; color: rgba(255,255,255,.62); font-size: 17px; }
.contact-card { border: 1px solid rgba(255,255,255,.16); }
.contact-person { display: flex; align-items: center; gap: 16px; padding: 23px 26px; border-bottom: 1px solid rgba(255,255,255,.16); }
.contact-initial { display: grid; place-items: center; width: 43px; height: 43px; border-radius: 50%; color: var(--ink); background: var(--teal); font-size: 12px; font-weight: 850; }
.contact-person div span, .contact-phone > span, .contact-address > span { display: block; color: rgba(255,255,255,.55); font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.contact-person strong { display: block; margin-top: 2px; font-family: var(--serif); font-size: 20px; font-weight: 400; }
.contact-phone, .contact-address {
  position: relative;
  display: block;
  padding: 25px 72px 25px 26px;
  text-decoration: none;
  transition: background .2s ease;
}
.contact-phone { border-bottom: 1px solid rgba(255,255,255,.16); }
.contact-phone:hover, .contact-address:hover { background: rgba(255,255,255,.05); }
.contact-phone strong { display: block; margin-top: 7px; font-family: var(--serif); font-size: clamp(29px,3vw,42px); font-weight: 400; }
.contact-address strong { display: block; margin-top: 8px; font-size: 15px; line-height: 1.5; }
.contact-phone i, .contact-address i { position: absolute; top: 50%; right: 27px; transform: translateY(-50%); color: var(--teal); font-size: 24px; font-style: normal; }

.site-footer { padding: 0 0 28px; color: var(--white); background: #091817; }
.footer-top { min-height: 130px; display: grid; grid-template-columns: 1fr 1fr auto; align-items: center; gap: 45px; border-bottom: 1px solid rgba(255,255,255,.12); }
.brand-footer { color: var(--white); }
.footer-top p { margin: 0; color: rgba(255,255,255,.55); font-size: 13px; }
.footer-call { color: var(--teal); font-size: 14px; font-weight: 800; text-decoration: none; }
.footer-bottom { min-height: 72px; display: flex; align-items: end; justify-content: space-between; gap: 35px; color: rgba(255,255,255,.56); font-size: 11px; }
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; gap: 22px; }
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }
.mobile-call { display: none; }

/* Legal and error pages */
.inner-page { min-height: 100vh; background: var(--paper); }
.inner-page .site-header { color: var(--white); background: var(--ink); }
.inner-page .site-header.is-scrolled { color: var(--ink); background: rgba(251,250,246,.96); }
.inner-hero { padding: 170px 0 80px; color: var(--white); background: var(--ink); }
.inner-hero h1 { max-width: 850px; margin: 0; font-family: var(--serif); font-size: clamp(54px,7vw,88px); font-weight: 400; line-height: .95; letter-spacing: -.05em; }
.inner-hero p:last-child { margin: 27px 0 0; color: rgba(255,255,255,.62); }
.legal-content { width: min(820px, calc(100% - 48px)); margin: 0 auto; padding: 85px 0 120px; }
.legal-content h2 { margin: 46px 0 12px; font-family: var(--serif); font-size: 31px; font-weight: 400; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p, .legal-content li { color: #536561; }
.legal-content ul { padding-left: 1.3em; }
.legal-content a { color: var(--ink); font-weight: 750; }
.legal-contact { margin-top: 48px; padding: 27px; border-left: 3px solid var(--teal-strong); background: var(--cream); }
.legal-contact p { margin: 0; }
.error-page { min-height: 100svh; display: grid; place-items: center; padding: 40px; color: var(--white); text-align: center; background: var(--ink); }
.error-page .brand { justify-self: center; margin-bottom: 45px; }
.error-code { margin: 0; color: var(--teal); font-size: 12px; font-weight: 850; letter-spacing: .2em; text-transform: uppercase; }
.error-page h1 { margin: 18px 0; font-family: var(--serif); font-size: clamp(54px,8vw,100px); font-weight: 400; line-height: .95; letter-spacing: -.05em; }
.error-page p { max-width: 520px; margin: 0 auto 28px; color: rgba(255,255,255,.65); }

@media (max-width: 980px) {
  :root { --wrap: min(100% - 36px, 900px); }
  .header-inner { grid-template-columns: 1fr auto auto; }
  .header-phone { display: none; }
  .hero-content { grid-template-columns: 1fr; align-items: center; }
  .hero-copy { max-width: 690px; }
  .hero-card { position: absolute; right: 0; bottom: 95px; }
  .strip-grid { grid-template-columns: 1fr 1.3fr; gap: 30px; }
  .strip-grid a { grid-column: 2; margin-top: -26px; justify-self: start; }
  .section-heading { gap: 45px; }
  .process-grid { min-height: 0; }
  .process-copy { padding: 58px 44px; }
  .faq-grid, .contact-grid { gap: 60px; }
}

@media (max-width: 760px) {
  :root { --wrap: calc(100% - 32px); }
  html { scroll-padding-top: 70px; }
  body { padding-bottom: 66px; }
  .site-header { background: rgba(8,23,24,.18); }
  .header-inner { height: 70px; grid-template-columns: 1fr auto; }
  .brand-name { font-size: 14px; }
  .brand-mark { width: 34px; height: 34px; flex-basis: 34px; }
  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    place-content: center;
    gap: 6px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle span:not(.sr-only) { display: block; width: 23px; height: 1px; background: currentColor; transition: transform .2s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); }
  .primary-nav {
    position: fixed;
    inset: 70px 0 auto;
    display: grid;
    gap: 0;
    padding: 12px 16px 20px;
    color: var(--ink);
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease, visibility .25s ease;
  }
  .primary-nav.is-open { transform: none; opacity: 1; visibility: visible; pointer-events: auto; }
  .primary-nav a { padding: 13px 3px; border-bottom: 1px solid var(--line); }
  .primary-nav a:last-child { border-bottom: 0; }
  .hero { min-height: 700px; height: auto; }
  .hero-image { object-position: 68% center; }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7,24,27,.84), rgba(7,24,27,.23)),
      linear-gradient(180deg, rgba(6,18,19,.25), transparent 36%, rgba(6,18,19,.8));
  }
  .hero-content { min-height: 700px; padding: 140px 0 115px; display: block; }
  .hero h1 { max-width: 600px; font-size: clamp(49px, 13.3vw, 68px); }
  .hero-lead { max-width: 570px; margin-top: 25px; font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; margin-top: 29px; }
  .hero-card { display: none; }
  .hero-footer { min-height: 68px; gap: 16px; overflow: hidden; white-space: nowrap; font-size: 9px; }
  .hero-footer span + span::before { margin-right: 16px; }
  .intro-strip { padding: 30px 0; }
  .strip-grid { min-height: 0; display: block; }
  .strip-grid p:nth-child(2) { margin-top: 10px; }
  .strip-grid a { display: inline-block; margin-top: 17px; }
  .section { padding: 82px 0; }
  .section-heading { display: block; margin-bottom: 35px; }
  .section-heading > p { margin-top: 24px; }
  .section h2, .contact-section h2 { font-size: clamp(43px, 12vw, 59px); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 360px; padding: 28px; }
  .service-card:nth-child(even) { border-left: 1px solid var(--line); }
  .service-card:nth-child(n+2) { border-top: 0; }
  .service-card h3 { margin-top: 68px; font-size: 34px; }
  .service-card a { left: 28px; bottom: 27px; }
  .process { padding-top: 0; }
  .process-grid { width: 100%; grid-template-columns: 1fr; }
  .process-visual { min-height: 530px; }
  .process-copy { padding: 58px 24px 66px; }
  .visual-note { min-width: 198px; }
  .faq-section { padding-top: 76px; }
  .faq-grid { grid-template-columns: 1fr; gap: 38px; }
  .faq-list summary { font-size: 20px; }
  .contact-section { padding: 84px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .contact-phone strong { font-size: 29px; }
  .footer-top { padding: 40px 0; grid-template-columns: 1fr; gap: 20px; }
  .footer-bottom { padding: 24px 0; align-items: flex-start; flex-direction: column-reverse; gap: 16px; }
  .mobile-call {
    position: fixed;
    z-index: 55;
    inset: auto 0 0;
    min-height: 66px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--ink);
    background: var(--teal);
    text-decoration: none;
  }
  .mobile-call span { font-size: 11px; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
  .mobile-call strong { font-size: 16px; }
  .inner-hero { padding: 145px 0 65px; }
  .legal-content { width: calc(100% - 32px); padding: 62px 0 85px; }
}

@media (max-width: 420px) {
  .brand { gap: 9px; }
  .hero h1 { font-size: 47px; }
  .hero-footer span:nth-child(3) { display: none; }
  .contact-phone, .contact-address { padding-left: 20px; }
}

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