:root {
  --ink: #17312f;
  --teal: #123c3a;
  --teal-2: #245a55;
  --sage: #a9b9a5;
  --cream: #f4f0e8;
  --paper: #fbfaf6;
  --white: #fff;
  --copper: #c97e55;
  --line: rgba(23, 49, 47, 0.14);
  --muted: #5f706d;
  --serif: "Newsreader", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --shadow: 0 24px 80px rgba(18, 60, 58, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--teal);
  transform: translateY(-150%);
}

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

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
}

.header-inner {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--teal);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand > span:last-child > span {
  color: var(--copper);
}

.brand-mark {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border-radius: 50% 50% 48% 52% / 42% 50% 50% 58%;
  color: var(--white);
  background: var(--teal);
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 600;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 31px;
}

.primary-nav > a:not(.button) {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.primary-nav > a:not(.button):hover {
  color: var(--copper);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--teal);
  transition: 0.25s ease;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid var(--teal);
  border-radius: 2px;
  color: var(--white);
  background: var(--teal);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}

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

.button-small {
  min-height: 43px;
  padding: 0 19px;
}

.hero {
  position: relative;
  min-height: 770px;
  overflow: hidden;
  padding: 152px 0 80px;
  background:
    radial-gradient(circle at 13% 8%, rgba(201, 126, 85, 0.09), transparent 25%),
    var(--cream);
}

.hero::before {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(18, 60, 58, 0.1);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(45px, 7vw, 100px);
  grid-template-columns: 0.82fr 1.18fr;
}

.eyebrow {
  margin: 0 0 19px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h1 {
  max-width: 570px;
  margin-bottom: 28px;
  font-size: clamp(60px, 6vw, 88px);
}

h2 {
  margin-bottom: 25px;
  font-size: clamp(43px, 5vw, 66px);
}

h3 {
  line-height: 1.25;
}

.hero-lead {
  max-width: 570px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  color: var(--copper);
  font-size: 20px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin: 36px 0 0;
  padding: 25px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 17px;
  color: var(--muted);
  font-size: 12px;
}

.trust-list li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--copper);
  content: "";
}

.hero-visual {
  position: relative;
  padding: 24px 0 45px 24px;
}

.hero-visual::before {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 58%;
  height: 70%;
  border: 1px solid rgba(18, 60, 58, 0.2);
  border-radius: 230px 230px 0 0;
  content: "";
}

.hero-image {
  position: relative;
  z-index: 1;
  height: 530px;
  overflow: hidden;
  border-radius: 270px 270px 12px 12px;
  box-shadow: var(--shadow);
}

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

.floating-note {
  position: absolute;
  z-index: 2;
  right: -22px;
  bottom: 0;
  display: flex;
  max-width: 320px;
  gap: 13px;
  padding: 20px 22px;
  background: var(--white);
  box-shadow: 0 15px 50px rgba(18, 60, 58, 0.18);
}

.note-icon {
  display: grid;
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--copper);
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note strong {
  margin-bottom: 2px;
  font-size: 13px;
}

.floating-note div span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.intro {
  background: var(--paper);
}

.intro-grid {
  display: grid;
  gap: 90px;
  grid-template-columns: 0.9fr 1.1fr;
}

.intro h2 {
  max-width: 560px;
}

.intro-copy {
  padding-top: 34px;
  color: var(--muted);
  font-size: 18px;
}

.intro-copy p {
  margin-bottom: 24px;
}

.situations {
  background: #ede9df;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 62px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 630px;
  margin: 0 auto;
  color: var(--muted);
}

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

.info-card {
  position: relative;
  min-height: 330px;
  padding: 38px 28px 30px;
  overflow: hidden;
  border-top: 3px solid transparent;
  background: rgba(255, 255, 255, 0.64);
  transition: border-color 0.25s ease, transform 0.25s ease, background 0.25s ease;
}

.info-card:hover {
  border-color: var(--copper);
  background: var(--white);
  transform: translateY(-6px);
}

.card-number {
  position: absolute;
  top: 21px;
  right: 24px;
  color: rgba(23, 49, 47, 0.25);
  font-family: var(--serif);
  font-size: 15px;
}

.line-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 43px;
  color: var(--teal-2);
}

.line-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.info-card h3 {
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.process {
  color: var(--white);
  background: var(--teal);
}

.process-grid {
  display: grid;
  gap: clamp(65px, 10vw, 150px);
  grid-template-columns: 0.8fr 1.2fr;
}

.eyebrow-light {
  color: #df9b73;
}

.process-intro {
  align-self: center;
}

.process-intro p:not(.eyebrow) {
  max-width: 460px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.67);
}

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

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

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  gap: 24px;
  padding: 29px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  grid-template-columns: 45px 1fr;
}

.steps li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.steps li > span {
  color: #df9b73;
  font-family: var(--serif);
  font-size: 20px;
}

.steps h3 {
  margin: 0 0 7px;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.benefits {
  background: var(--paper);
}

.benefits-grid {
  display: grid;
  align-items: center;
  gap: clamp(60px, 10vw, 145px);
  grid-template-columns: 1fr 0.8fr;
}

.benefits-copy > p:not(.eyebrow) {
  max-width: 600px;
  color: var(--muted);
  font-size: 17px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 33px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  font-size: 15px;
  font-weight: 600;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  content: "✓";
  color: var(--copper);
  font-size: 18px;
}

.bring-card {
  padding: 48px 43px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.bring-card h3 {
  margin-bottom: 30px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 500;
}

.bring-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bring-card li {
  display: grid;
  align-items: center;
  gap: 16px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
  grid-template-columns: 32px 1fr;
}

.bring-card li span {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 15px;
}

.small-note {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.quote-band {
  padding: 85px 0;
  background: #cdd5ca;
}

.quote-inner {
  display: flex;
  max-width: 970px;
  align-items: flex-start;
  gap: 35px;
}

.quote-mark {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 100px;
  line-height: 0.7;
}

blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 57px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  gap: 100px;
  grid-template-columns: 0.7fr 1.3fr;
}

.faq-intro {
  position: sticky;
  top: 50px;
  align-self: start;
}

.faq-intro p:last-child {
  max-width: 380px;
  color: var(--muted);
}

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

.accordion details:first-child {
  border-top: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  min-height: 91px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  list-style: none;
}

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

.accordion summary span {
  position: relative;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
}

.accordion summary span::before,
.accordion summary span::after {
  position: absolute;
  top: 10px;
  left: 2px;
  width: 18px;
  height: 1px;
  background: var(--copper);
  content: "";
  transition: transform 0.2s ease;
}

.accordion summary span::after {
  transform: rotate(90deg);
}

.accordion details[open] summary span::after {
  transform: rotate(0);
}

.accordion details p {
  max-width: 650px;
  padding: 0 55px 28px 0;
  color: var(--muted);
}

.contact {
  padding-top: 20px;
  background: var(--paper);
}

.contact-shell {
  display: grid;
  gap: 80px;
  padding: 80px;
  color: var(--white);
  background:
    radial-gradient(circle at 2% 90%, rgba(201, 126, 85, 0.22), transparent 28%),
    var(--teal);
  grid-template-columns: 0.85fr 1.15fr;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 500px;
  color: rgba(255, 255, 255, 0.67);
}

.contact-points {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.contact-points > div {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-points span {
  display: grid;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: #df9b73;
  font-family: var(--serif);
  font-size: 12px;
}

.contact-points p,
.contact-points strong {
  display: block;
  margin: 0;
}

.contact-points p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.contact-points strong {
  margin-bottom: 1px;
  color: var(--white);
  font-size: 14px;
}

.email-card {
  padding: 39px;
  color: var(--ink);
  background: var(--white);
}

.email-card h3 {
  max-width: 460px;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(31px, 3.2vw, 45px);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.email-card > p:not(.eyebrow) {
  max-width: 500px;
  margin-bottom: 29px;
  color: var(--muted);
}

.button-email {
  width: 100%;
  gap: 13px;
}

.button-email span {
  font-size: 17px;
}

.email-note {
  display: block;
  margin-top: 13px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.site-footer {
  padding: 70px 0 30px;
  color: rgba(255, 255, 255, 0.72);
  background: #0c2a29;
}

.footer-top {
  display: grid;
  align-items: center;
  gap: 45px;
  padding-bottom: 55px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  grid-template-columns: 0.6fr 1fr auto;
}

.brand-footer {
  color: var(--white);
}

.brand-footer .brand-mark {
  color: var(--teal);
  background: var(--white);
}

.footer-top p {
  max-width: 500px;
  margin: 0;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.4;
}

.footer-link {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.footer-link span {
  margin-left: 9px;
  color: #df9b73;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 28px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid {
    gap: 45px;
    grid-template-columns: 1fr 1fr;
  }

  .floating-note {
    right: 0;
  }

  .process-grid,
  .benefits-grid,
  .faq-grid {
    gap: 65px;
  }

  .contact-shell {
    gap: 50px;
    padding: 55px 45px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 34px, 620px);
  }

  .section {
    padding: 78px 0;
  }

  .site-header {
    position: absolute;
  }

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

  .menu-toggle {
    position: relative;
    z-index: 12;
    display: block;
    cursor: pointer;
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: 11;
    inset: 0;
    display: flex;
    padding: 110px 30px 40px;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    background: var(--cream);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .menu-open .primary-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav > a:not(.button) {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-family: var(--serif);
    font-size: 27px;
  }

  .primary-nav .button {
    margin-top: 22px;
  }

  .hero {
    padding: 118px 0 70px;
  }

  .hero-grid,
  .intro-grid,
  .process-grid,
  .benefits-grid,
  .faq-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(54px, 17vw, 75px);
  }

  h2 {
    font-size: clamp(40px, 13vw, 56px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-visual {
    margin-top: 10px;
    padding-left: 13px;
  }

  .hero-image {
    height: 470px;
  }

  .intro-grid {
    gap: 15px;
  }

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

  .process-grid,
  .benefits-grid,
  .faq-grid {
    gap: 55px;
  }

  .faq-intro {
    position: static;
  }

  .contact {
    padding-top: 0;
  }

  .contact-shell {
    width: 100%;
    gap: 40px;
    padding: 65px max(22px, calc((100% - 586px) / 2));
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    min-height: 290px;
  }

  .hero-image {
    height: 390px;
  }

  .floating-note {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 2;
    max-width: none;
    margin: -28px 12px 0;
  }

  .bring-card,
  .email-card {
    padding: 32px 24px;
  }

  .quote-inner {
    gap: 15px;
  }

  .quote-mark {
    font-size: 70px;
  }

  .accordion summary {
    font-size: 20px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
