:root {
  --green-950: #08271b;
  --green-900: #0d3122;
  --green-800: #123b2a;
  --green-700: #1b5039;
  --green-100: #dce8df;
  --ivory: #f4efe4;
  --ivory-deep: #e9e0ce;
  --paper: #fbf8f1;
  --red: #b33a2e;
  --red-dark: #8f2b22;
  --gold: #c9a66b;
  --ink: #1d241f;
  --muted: #647069;
  --line: rgba(18, 59, 42, 0.18);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1180px;
  --shadow: 0 28px 70px rgba(4, 27, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--green-950);
}

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

body::selection {
  background: var(--gold);
  color: var(--green-950);
}

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

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

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

.section {
  padding: 126px 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--ivory);
  color: var(--green-950);
  border-radius: 3px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.utility-bar {
  background: var(--red);
  color: #fffaf2;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.utility-inner {
  min-height: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-inner p {
  margin: 0;
}

.utility-inner a {
  padding: 5px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 239, 228, 0.94);
  border-bottom: 1px solid rgba(18, 59, 42, 0.12);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 44px;
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--green-800);
  border-radius: 50%;
  color: var(--green-800);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1;
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(18, 59, 42, 0.35);
  border-radius: inherit;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: var(--serif);
  color: var(--green-900);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

.desktop-nav a {
  position: relative;
  color: var(--green-900);
  font-size: 13px;
  font-weight: 700;
}

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

.desktop-nav a:hover::after {
  right: 0;
}

.button {
  min-height: 54px;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 24px;
  border: 1px solid var(--red);
  border-radius: 2px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

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

.button-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 10px;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(201, 166, 107, 0.12), transparent 28%),
    linear-gradient(105deg, var(--green-800), var(--green-950));
  color: var(--ivory);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 31px, rgba(244, 239, 228, 0.04) 32px),
    repeating-linear-gradient(90deg, transparent 0, transparent 31px, rgba(244, 239, 228, 0.035) 32px);
  pointer-events: none;
}

.hero::after {
  content: "ITALIA";
  position: absolute;
  right: -50px;
  bottom: -90px;
  color: rgba(244, 239, 228, 0.035);
  font-family: var(--serif);
  font-size: clamp(160px, 24vw, 390px);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  align-items: center;
  gap: 90px;
  padding-top: 42px;
  padding-bottom: 65px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 22px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.eyebrow span {
  color: var(--ivory);
}

.eyebrow.dark {
  color: var(--red);
}

.hero h1 {
  max-width: 770px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 6.4vw, 96px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.hero h1 em {
  color: var(--gold);
  font-weight: 400;
}

.hero-lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: rgba(244, 239, 228, 0.78);
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 38px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0 7px;
  border-bottom: 1px solid currentColor;
  color: var(--ivory);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--gold);
}

.dark-link {
  color: var(--green-800);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 36px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid rgba(244, 239, 228, 0.18);
  list-style: none;
  color: rgba(244, 239, 228, 0.7);
  font-size: 12px;
}

.trust-list span {
  margin-right: 7px;
  color: var(--gold);
}

.route-card {
  position: relative;
  background: var(--ivory);
  color: var(--ink);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.route-card::before,
.route-card::after {
  content: "";
  position: absolute;
  top: 0;
  width: 9px;
  height: 100%;
}

.route-card::before {
  right: 18px;
  background: #198153;
}

.route-card::after {
  right: 0;
  background: var(--red);
}

.route-card-top {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px 0 26px;
  border-bottom: 1px solid var(--line);
  color: var(--green-800);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.route-card-top small {
  font-size: 8px;
}

.route-body {
  padding: 34px 56px 36px 36px;
}

.route-kicker {
  margin: 0 0 26px;
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1.1;
}

.route-body ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.route-body li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.route-body li > span {
  color: var(--red);
  font-family: var(--serif);
  font-size: 17px;
}

.route-body li div {
  display: grid;
}

.route-body li strong {
  color: var(--green-900);
  font-family: var(--serif);
  font-size: 19px;
}

.route-body li small {
  color: var(--muted);
  font-size: 11px;
}

.route-note {
  margin: 20px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}

.route-stamp {
  position: absolute;
  right: -28px;
  bottom: -30px;
  width: 94px;
  height: 94px;
  display: grid;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: var(--red);
  color: var(--ivory);
  box-shadow: 0 12px 30px rgba(4, 27, 18, 0.3);
  transform: rotate(-9deg);
}

.route-stamp::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(244, 239, 228, 0.75);
  border-radius: inherit;
}

.route-stamp span {
  font-family: var(--serif);
  font-size: 28px;
}

.hero-index {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  width: min(56%, 850px);
  height: 70px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 0 36px max(0px, env(safe-area-inset-bottom));
  background: var(--ivory);
  color: var(--green-800);
}

.hero-index span {
  font-family: var(--serif);
  font-size: 25px;
}

.hero-index i {
  height: 1px;
  background: var(--line);
}

.hero-index small {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.intro-grid {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr) 260px;
  gap: 60px;
  align-items: start;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green-800);
}

.section-label span {
  font-family: var(--serif);
  font-size: 13px;
}

.section-label p {
  margin: 0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-label::after {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.intro-copy h2,
.section-heading h2,
.process-head h2,
.benefits-copy h2,
.faq-intro h2,
.contact-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 4.8vw, 68px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.intro-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin: 40px 0 26px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.intro-columns p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.signature-card {
  margin-top: 76px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  background: var(--ivory);
}

.signature-monogram {
  height: 120px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  background:
    linear-gradient(135deg, rgba(18, 59, 42, 0.03), rgba(179, 58, 46, 0.12)),
    repeating-linear-gradient(45deg, transparent 0 9px, rgba(18, 59, 42, 0.035) 10px);
  color: var(--green-800);
  font-family: var(--serif);
  font-size: 45px;
}

.signature-monogram span {
  color: var(--red);
  font-size: 25px;
}

.signature-card strong {
  font-family: var(--serif);
  font-size: 22px;
}

.signature-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.services {
  background: var(--green-900);
  color: var(--ivory);
}

.section-heading {
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr) 240px;
  gap: 60px;
  align-items: end;
  margin-bottom: 66px;
}

.light-label {
  color: var(--gold);
  align-self: start;
}

.light-heading h2 {
  color: var(--ivory);
}

.heading-note {
  margin: 0 0 6px;
  color: rgba(244, 239, 228, 0.55);
  font-size: 13px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(244, 239, 228, 0.16);
  border-left: 1px solid rgba(244, 239, 228, 0.16);
}

.service-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-right: 1px solid rgba(244, 239, 228, 0.16);
  border-bottom: 1px solid rgba(244, 239, 228, 0.16);
  transition: background 180ms ease, transform 180ms ease;
}

.service-card:hover {
  background: var(--green-800);
  transform: translateY(-4px);
}

.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.service-meta > span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 17px;
}

.service-meta small {
  color: rgba(244, 239, 228, 0.42);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card h3 {
  margin: 50px 0 15px;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.1;
}

.service-card p {
  margin: 0;
  color: rgba(244, 239, 228, 0.58);
  font-size: 13px;
}

.service-card a {
  width: fit-content;
  margin-top: auto;
  padding-top: 30px;
  color: var(--ivory);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card a span {
  margin-left: 9px;
  color: var(--gold);
}

.process {
  background: var(--ivory);
}

.process-head {
  display: grid;
  grid-template-columns: 145px minmax(0, 750px);
  gap: 60px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 70px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-list > li > span {
  color: var(--red);
  font-family: var(--serif);
  font-size: 20px;
}

.process-list h3 {
  margin: 0 0 12px;
  color: var(--green-900);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.process-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  margin-top: 34px;
}

.process-cta p {
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-style: italic;
}

.benefits {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background:
    linear-gradient(90deg, rgba(8, 39, 27, 0.98), rgba(13, 49, 34, 0.94)),
    repeating-linear-gradient(45deg, transparent 0 17px, rgba(244, 239, 228, 0.03) 18px);
  color: var(--ivory);
}

.benefits::after {
  content: "27";
  position: absolute;
  right: -20px;
  bottom: -125px;
  color: rgba(244, 239, 228, 0.035);
  font-family: var(--serif);
  font-size: 430px;
  line-height: 1;
}

.benefits-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}

.benefits-copy h2 {
  color: var(--ivory);
}

.benefits-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 28px 0 32px;
  color: rgba(244, 239, 228, 0.62);
  font-size: 15px;
}

.benefits-copy .section-label {
  margin-bottom: 68px;
}

.button-ivory {
  border-color: var(--ivory);
  background: var(--ivory);
  color: var(--green-900);
}

.button-ivory:hover {
  border-color: var(--gold);
  background: var(--gold);
}

.benefit-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(244, 239, 228, 0.18);
  border-left: 1px solid rgba(244, 239, 228, 0.18);
}

.benefit-cards article {
  min-height: 220px;
  padding: 28px;
  border-right: 1px solid rgba(244, 239, 228, 0.18);
  border-bottom: 1px solid rgba(244, 239, 228, 0.18);
}

.benefit-cards article > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 12px;
}

.benefit-cards h3 {
  margin: 34px 0 10px;
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
}

.benefit-cards p {
  margin: 0;
  color: rgba(244, 239, 228, 0.52);
  font-size: 12px;
}

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

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.faq-intro .section-label {
  margin-bottom: 70px;
}

.faq-intro > p:last-child {
  max-width: 430px;
  margin: 25px 0 0;
  color: var(--muted);
}

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

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

.faq-list summary {
  min-height: 88px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  color: var(--green-900);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--red);
  font-family: var(--sans);
  font-size: 26px;
  font-weight: 300;
  transition: transform 180ms ease;
}

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

.faq-list details p {
  max-width: 650px;
  margin: -5px 45px 28px 0;
  color: var(--muted);
  font-size: 14px;
}

.contact {
  padding: 130px 0;
  background: var(--red-dark);
  color: var(--ivory);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
  align-items: start;
}

.contact-copy .section-label {
  margin-bottom: 72px;
}

.contact-copy h2 {
  max-width: 560px;
  color: var(--ivory);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 26px 0 38px;
  color: rgba(244, 239, 228, 0.68);
}

.direct-contact {
  display: grid;
  border-top: 1px solid rgba(244, 239, 228, 0.22);
}

.direct-contact a {
  display: grid;
  padding: 18px 0;
  border-bottom: 1px solid rgba(244, 239, 228, 0.22);
}

.direct-contact small {
  color: var(--gold);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.direct-contact strong {
  margin-top: 3px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.contact-form {
  position: relative;
  display: grid;
  gap: 19px;
  padding: 46px;
  background: var(--ivory);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.contact-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #198153 0 33.33%, var(--ivory) 33.33% 66.66%, var(--red) 66.66% 100%);
}

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

.form-heading span {
  color: var(--green-900);
  font-family: var(--serif);
  font-size: 28px;
}

.form-heading small {
  color: var(--muted);
  font-size: 9px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form label > span:first-child {
  color: var(--green-900);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(18, 59, 42, 0.24);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input,
.contact-form select {
  height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 110px;
  padding: 12px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(18, 59, 42, 0.1);
}

.contact-form input[aria-invalid="true"],
.contact-form select[aria-invalid="true"] {
  border-color: var(--red);
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px !important;
}

.consent input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--green-800);
}

.consent span {
  color: var(--muted) !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  line-height: 1.45;
  text-transform: none !important;
}

.website-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 22px;
  margin: -6px 0;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 700;
}

.form-button {
  width: 100%;
}

.privacy-note {
  margin: -5px 0 0;
  color: var(--muted);
  font-size: 9px;
  text-align: center;
}

.privacy-note span {
  margin-right: 5px;
  color: #198153;
}

.site-footer {
  padding: 74px 0 24px;
  background: var(--green-950);
  color: var(--ivory);
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding-bottom: 60px;
}

.footer-brand .brand-mark {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-brand .brand-mark::after {
  border-color: rgba(201, 166, 107, 0.45);
}

.footer-brand .brand-copy strong {
  color: var(--ivory);
}

.footer-brand .brand-copy small {
  color: rgba(244, 239, 228, 0.5);
}

.footer-main > p {
  max-width: 360px;
  margin: 0;
  color: rgba(244, 239, 228, 0.52);
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.footer-links a {
  color: rgba(244, 239, 228, 0.72);
  font-size: 12px;
}

.footer-links a:hover,
.credits a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  padding-top: 22px;
  border-top: 1px solid rgba(244, 239, 228, 0.14);
  color: rgba(244, 239, 228, 0.44);
  font-size: 9px;
}

.footer-bottom p {
  margin: 0;
}

.security-line {
  white-space: nowrap;
}

.security-line span {
  margin-right: 6px;
  color: #66bd87;
}

.credits {
  text-align: right;
}

.credits a {
  color: rgba(244, 239, 228, 0.78);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px 7px 7px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: #168b50;
  color: white;
  box-shadow: 0 12px 32px rgba(4, 27, 18, 0.3);
}

.floating-whatsapp span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 10px;
  font-weight: 900;
}

.floating-whatsapp strong {
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .header-inner {
    gap: 22px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .hero-grid {
    gap: 50px;
  }

  .intro-grid,
  .section-heading {
    grid-template-columns: 110px minmax(0, 1fr) 220px;
    gap: 38px;
  }

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

  .benefits-grid,
  .faq-grid,
  .contact-grid {
    gap: 60px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 96px 0;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 78px;
  }

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

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    padding: 9px 13px;
    border: 1px solid var(--line);
    color: var(--green-900);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    cursor: pointer;
    list-style: none;
  }

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

  .mobile-menu nav {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    width: min(300px, calc(100vw - 48px));
    display: grid;
    padding: 12px;
    background: var(--ivory);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .mobile-menu nav a {
    padding: 12px 10px;
    border-bottom: 1px solid var(--line);
    color: var(--green-900);
    font-size: 13px;
    font-weight: 700;
  }

  .mobile-menu nav a:last-child {
    border-bottom: 0;
    color: var(--red);
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 90px;
    padding-bottom: 120px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .route-card {
    width: min(100%, 520px);
    margin-left: auto;
  }

  .hero-index {
    width: 80%;
  }

  .intro-grid {
    grid-template-columns: 1fr 240px;
  }

  .intro-grid > .section-label {
    grid-column: 1 / -1;
  }

  .intro-copy h2,
  .section-heading h2,
  .process-head h2,
  .benefits-copy h2,
  .faq-intro h2,
  .contact-copy h2 {
    font-size: clamp(42px, 7vw, 62px);
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .heading-note {
    max-width: 500px;
  }

  .process-head {
    grid-template-columns: 1fr;
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
  }

  .benefits-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .benefits-copy,
  .faq-intro,
  .contact-copy {
    max-width: 720px;
  }

  .benefits-copy .section-label,
  .faq-intro .section-label,
  .contact-copy .section-label {
    margin-bottom: 48px;
  }

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

  .footer-links {
    grid-column: 1 / -1;
  }

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

  .security-line {
    grid-column: 1 / -1;
    grid-row: 1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .utility-inner {
    min-height: 32px;
    justify-content: center;
  }

  .utility-inner p {
    display: none;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .hero h1 {
    font-size: clamp(51px, 15vw, 72px);
  }

  .hero-lead {
    font-size: 16px;
  }

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

  .trust-list {
    display: grid;
    gap: 8px;
  }

  .route-card {
    transform: none;
  }

  .route-body {
    padding: 30px 42px 34px 26px;
  }

  .route-stamp {
    right: 10px;
    bottom: -42px;
    width: 82px;
    height: 82px;
  }

  .hero-index {
    width: calc(100% - 16px);
    height: 60px;
    gap: 10px;
    padding-inline: 16px;
  }

  .hero-index small {
    max-width: 175px;
    font-size: 7px;
  }

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

  .intro-columns {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .signature-card {
    margin-top: 10px;
  }

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

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

  .process-list,
  .benefit-cards {
    grid-template-columns: 1fr;
  }

  .process-list li {
    min-height: 220px;
  }

  .process-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .benefits {
    padding: 86px 0;
  }

  .benefit-cards article {
    min-height: 200px;
  }

  .faq-list summary {
    min-height: 78px;
    font-size: 18px;
    line-height: 1.25;
  }

  .contact {
    padding: 86px 0;
  }

  .contact-form {
    padding: 32px 22px;
  }

  .form-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

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

  .footer-bottom {
    gap: 10px;
  }

  .security-line {
    grid-column: auto;
    grid-row: auto;
    white-space: normal;
  }

  .credits {
    text-align: left;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    padding-right: 7px;
  }

  .floating-whatsapp strong {
    display: none;
  }
}

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

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

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: #123b2a;
  color: #f4efe4;
  padding: 24px;
}

.error-card {
  max-width: 680px;
  text-align: center;
}

.error-eyebrow {
  justify-content: center;
}

.error-card h1 {
  font: 500 clamp(48px, 8vw, 84px)/1.02 var(--serif);
  margin: 0 0 22px;
}

.error-copy {
  color: rgba(244, 239, 228, 0.7);
  margin: 0 0 30px;
}

@media print {
  .utility-bar,
  .site-header,
  .floating-whatsapp,
  .contact-form,
  .hero-actions,
  .process-cta {
    display: none !important;
  }

  body,
  .hero,
  .services,
  .benefits,
  .contact,
  .site-footer {
    background: #fff !important;
    color: #111 !important;
  }

  * {
    box-shadow: none !important;
  }
}
