@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap");

:root {
  --white: #ffffff;
  --sand: #f3f1ec;
  --soft: #faf9f7;
  --graphite: #1a1a1a;
  --muted: #6f6a64;
  --accent: #b78968;
  --accent-dark: #966c50;
  --line: rgba(26, 26, 26, 0.11);
  --radius: 8px;
  --shadow: 0 24px 70px rgba(26, 26, 26, 0.08);
  --page: clamp(20px, 5vw, 82px);
  --section: 120px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  min-width: 320px;
  overflow-x: hidden;
  background: var(--white);
  color: var(--graphite);
  font-family: "Montserrat", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
summary {
  cursor: pointer;
}

h1,
h2,
h3,
p,
a,
button {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3rem, 10vw, 5.7rem);
  font-weight: 800;
  line-height: 0.98;
}

h2 {
  font-size: clamp(2.45rem, 8vw, 4.7rem);
  font-weight: 800;
  line-height: 1.02;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.2;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--accent-dark);
  font-size: 0.71rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  min-height: 68px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 12px var(--page);
  border-bottom: 1px solid rgba(26, 26, 26, 0.06);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-logo {
  width: clamp(112px, 14vw, 156px);
  height: auto;
  object-fit: contain;
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--graphite);
  color: var(--white);
  font-size: 0.68rem;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: grid;
  place-content: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.menu-toggle span {
  width: 17px;
  height: 1px;
  background: var(--graphite);
  transform-origin: center;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.site-header > nav {
  position: fixed;
  inset: 68px 0 0;
  display: none;
  align-content: start;
  gap: 4px;
  padding: 36px var(--page);
  background: rgba(255, 255, 255, 0.99);
}

.site-header > nav[data-open] {
  display: grid;
}

.menu-language,
.menu-contact {
  display: none;
}

.site-header > nav > a,
.services-menu > summary {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--graphite);
  font-size: 1rem;
  font-weight: 700;
  list-style: none;
}

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

.services-menu > summary::after {
  float: right;
  content: "+";
  color: var(--accent-dark);
}

.services-menu[open] > summary::after {
  content: "−";
}

.services-menu > div {
  display: grid;
  padding: 12px 0 18px 18px;
}

.services-menu > div a {
  padding: 9px 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.language-switcher {
  display: flex;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--sand);
}

.language-switcher a {
  min-width: 31px;
  padding: 7px 8px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 800;
  text-align: center;
}

.language-switcher a[aria-current="page"] {
  background: var(--white);
  color: var(--graphite);
  box-shadow: 0 5px 18px rgba(26, 26, 26, 0.08);
}

.header-cta {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 130px var(--page) 62px;
  color: var(--white);
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
  filter: saturate(1.14) contrast(1.06);
  transform: scale(1.02);
}

.hero-shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(16, 16, 16, 0.9) 0%, rgba(16, 16, 16, 0.58) 57%, rgba(16, 16, 16, 0.16) 100%), linear-gradient(180deg, transparent 40%, rgba(16, 16, 16, 0.74) 100%);
}

.hero-content {
  width: min(1060px, 100%);
}

.hero .eyebrow {
  color: #e1ba9c;
}

.hero h1 {
  max-width: 1000px;
}

.hero-content > p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  font-weight: 300;
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 26px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button-primary {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 22px 60px rgba(183, 137, 104, 0.3);
}

.button-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.text-link {
  padding: 12px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  font-size: 0.8rem;
  font-weight: 700;
}

.section {
  padding: var(--section) var(--page);
}

.section-heading {
  width: min(980px, 100%);
  margin: 0 auto;
}

.section-heading h2 {
  max-width: 900px;
}

.section-heading > p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 26px;
  color: var(--muted);
  font-weight: 300;
}

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

.projects-grid {
  width: min(1180px, 100%);
  margin: 68px auto 0;
  display: grid;
  gap: 28px;
}

.project-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.project-card img {
  height: 300px;
  object-fit: cover;
  transition: transform 500ms ease;
}

.project-card:hover img {
  transform: scale(1.035);
}

.project-card > div {
  position: relative;
  padding: 28px;
}

.project-card span {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--accent-dark);
  font-size: 0.7rem;
  font-weight: 800;
}

.project-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 300;
}

.coverage-section {
  display: grid;
  gap: 54px;
  padding: var(--section) var(--page);
  background: var(--sand);
}

.coverage-copy {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.coverage-copy p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 25px;
  color: var(--muted);
  font-weight: 300;
}

.coverage-copy h2 {
  max-width: 760px;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 1.02;
}

.coast-map {
  position: relative;
  width: min(1120px, 100%);
  margin: 0 auto;
  border-radius: 4px;
  background: #dce4df;
  box-shadow: 0 28px 70px rgba(26, 26, 26, 0.13);
}

.coast-map-canvas {
  position: relative;
  z-index: 1;
  width: 100%;
  height: clamp(430px, 52vw, 610px);
  overflow: hidden;
  border-radius: 4px;
  background: #dce4df;
}

.map-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--graphite);
  font-size: 0.72rem;
  font-weight: 700;
}

.coast-map-canvas.map-unavailable {
  height: 180px;
}

.coast-map figcaption {
  position: absolute;
  left: 18px;
  bottom: 17px;
  z-index: 500;
  padding: 8px 11px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--graphite);
  font-size: 0.64rem;
  font-weight: 700;
  pointer-events: none;
}

.coverage-places {
  display: none;
}

.service-area-label {
  padding: 7px 9px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--graphite);
  font-family: inherit;
  font-size: 0.67rem;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(26, 26, 26, 0.14);
}

.service-area-label::before {
  display: none;
}

.coast-map .leaflet-control-zoom a {
  color: var(--graphite);
  font-family: inherit;
}

.coast-map .leaflet-control-attribution {
  font-size: 9px;
}

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

.services-grid {
  width: min(1180px, 100%);
  margin: 68px auto 0;
  display: grid;
  gap: 24px;
}

.service-card {
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.06);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 54px rgba(26, 26, 26, 0.05);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-card img {
  height: 250px;
  object-fit: cover;
}

.service-card > div {
  display: grid;
  gap: 12px;
  padding: 28px;
}

.service-card span {
  color: var(--accent-dark);
  font-size: 0.68rem;
  font-weight: 800;
}

.service-card p {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 300;
}

.service-card b {
  width: fit-content;
  margin-top: 8px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--accent);
  color: var(--accent-dark);
  font-size: 0.75rem;
}

.process-section,
.trust-section {
  padding: var(--section) var(--page);
}

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

.process-heading,
.trust-heading {
  width: min(1080px, 100%);
  margin: 0 auto 64px;
}

.process-heading h2,
.trust-heading h2 {
  max-width: 900px;
}

.process-heading > p:not(.eyebrow),
.trust-heading > p:not(.eyebrow) {
  max-width: 670px;
  margin-top: 24px;
  color: var(--muted);
  font-weight: 300;
}

.process-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 46px;
}

.process-layout figure {
  position: relative;
  align-self: start;
}

.process-layout figure img {
  height: 520px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.process-layout figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 11px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--graphite);
  font-size: 0.62rem;
  font-weight: 700;
}

.process-steps {
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-steps li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.process-steps li > span,
.trust-grid article > span {
  color: var(--accent-dark);
  font-size: 0.68rem;
  font-weight: 800;
}

.process-steps h3 {
  margin-bottom: 7px;
  font-size: 1rem;
}

.process-steps p,
.trust-grid p {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 300;
}

.trust-section {
  background: var(--sand);
}

.partner-band {
  display: grid;
  gap: 34px;
  padding: 86px var(--page);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.partner-band > div {
  width: min(1080px, 100%);
}

.partner-band h2 {
  max-width: 760px;
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.partner-copy {
  display: grid;
  align-content: end;
  gap: 24px;
}

.partner-copy p {
  max-width: 620px;
  color: var(--muted);
  font-weight: 300;
}

.partner-copy a,
.footer-partner {
  width: fit-content;
  color: var(--accent-dark) !important;
  font-size: 0.74rem;
  font-weight: 800 !important;
}

.partner-copy a {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--accent);
}

.trust-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 1px;
  background: rgba(26, 26, 26, 0.12);
}

.trust-grid article {
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 30px;
  background: var(--white);
}

.trust-grid h3 {
  max-width: 280px;
  font-size: 1.08rem;
}

.lead-section {
  display: grid;
  gap: 64px;
  padding: var(--section) var(--page);
  background: var(--graphite);
  color: var(--white);
  overflow: clip;
}

.lead-copy,
.quiz-card {
  width: min(680px, 100%);
  margin: 0 auto;
}

.lead-copy .eyebrow,
.quiz-card .eyebrow {
  color: #e1ba9c;
}

.lead-copy > p:not(.eyebrow) {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.67);
  font-weight: 300;
}

.quiz-promise {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0 16px;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.quiz-promise span,
.quiz-promise p {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.quiz-promise span {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
}

.quiz-promise p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
}

.contact-form {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.quiz-card {
  min-height: 570px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 4px;
  background: #282827;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
}

.quiz-meta {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.73rem;
  font-weight: 700;
}

.progress {
  height: 3px;
  margin: 14px 0 34px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
  transition: width 220ms ease;
}

.quiz-step,
.quiz-contact {
  display: grid;
  gap: 24px;
  animation: quiz-in 300ms ease both;
}

@keyframes quiz-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-step > header {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
}

.quiz-step > header > span {
  padding-top: 5px;
  color: var(--accent);
  font-size: 0.67rem;
  font-weight: 700;
}

.quiz-step h3,
.quiz-contact h3 {
  font-size: clamp(1.35rem, 4vw, 2rem);
  line-height: 1.12;
}

.quiz-step header p,
.quiz-contact-heading p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 300;
}

.quiz-options {
  display: grid;
  gap: 10px;
}

.quiz-options button {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  min-height: 58px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  background: transparent;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease;
}

.quiz-options button:hover,
.quiz-options button.is-selected {
  border-color: var(--accent);
  background: rgba(183, 137, 104, 0.12);
}

.quiz-options button i {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: transparent;
  font-size: 0.65rem;
  font-style: normal;
}

.quiz-options button:not(.is-selected):not(:hover) i {
  color: rgba(255, 255, 255, 0.48);
}

.quiz-options button.is-selected i {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

.quiz-visual-options {
  display: grid;
  gap: 10px;
}

.quiz-visual-option {
  position: relative;
  display: grid;
  grid-template-columns: 108px 1fr;
  min-height: 88px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  background: #333332;
  color: var(--white);
  text-align: left;
}

.quiz-visual-option img {
  width: 100%;
  height: 88px;
  object-fit: cover;
  filter: saturate(0.88);
  transition: transform 350ms ease, filter 350ms ease;
}

.quiz-visual-option > span {
  display: grid;
  align-content: start;
  gap: 5px;
  min-height: 86px;
  padding: 14px 12px;
  background: var(--sand);
  color: var(--graphite);
}

.quiz-visual-option strong {
  font-size: 0.82rem;
  line-height: 1.25;
}

.quiz-visual-option small {
  color: var(--muted);
  font-size: 0.62rem;
  line-height: 1.35;
}

.quiz-visual-option > i {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 0.68rem;
  font-style: normal;
  opacity: 0;
}

.quiz-visual-option:hover,
.quiz-visual-option.is-selected {
  border-color: var(--accent);
}

.quiz-visual-option:hover > span,
.quiz-visual-option.is-selected > span {
  background: #e2c6b1;
}

.quiz-visual-option:hover img,
.quiz-visual-option.is-selected img {
  filter: saturate(1.05);
  transform: scale(1.03);
}

.quiz-visual-option.is-selected > i {
  opacity: 1;
}

.quiz-range {
  display: grid;
  gap: 24px;
  padding: 36px 0 18px;
}

.quiz-range output {
  color: var(--white);
  font-size: clamp(2.8rem, 12vw, 5.4rem);
  font-weight: 600;
  line-height: 1;
}

.quiz-range output span {
  color: var(--accent);
  font-size: 0.22em;
  font-weight: 500;
}

.quiz-range input {
  width: 100%;
  height: 3px;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: linear-gradient(to right, var(--accent) 0 var(--range-progress, 26%), rgba(255, 255, 255, 0.16) var(--range-progress, 26%) 100%);
}

.quiz-range input::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  appearance: none;
  border: 6px solid var(--accent);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 5px rgba(183, 137, 104, 0.15);
}

.quiz-range > div {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.66rem;
}

.quiz-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 4px;
}

.quiz-back,
.quiz-next {
  min-height: 46px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
  font-weight: 600;
}

.quiz-next {
  padding: 0 20px;
  border: 1px solid var(--accent);
  color: var(--white);
}

.quiz-next:disabled {
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.3);
}

.quiz-summary {
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.quiz-receive {
  padding: 18px;
  border-left: 2px solid var(--accent);
  background: rgba(183, 137, 104, 0.09);
}

.quiz-receive > p,
.contact-method legend {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.quiz-receive ul {
  display: grid;
  gap: 8px;
  list-style: none;
}

.quiz-receive li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.68rem;
}

.quiz-receive i {
  color: var(--accent);
  font-style: normal;
}

.contact-method {
  min-width: 0;
  border: 0;
}

.contact-method > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.contact-method label {
  position: relative;
}

.contact-method input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-method span {
  min-height: 44px;
  display: grid;
  place-items: center;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 3px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.66rem;
  font-weight: 700;
  text-align: center;
}

.contact-method input:checked + span {
  border-color: var(--accent);
  background: rgba(183, 137, 104, 0.14);
  color: var(--white);
}

.quiz-summary > p {
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.quiz-summary ul {
  display: grid;
  gap: 8px;
  list-style: none;
}

.quiz-summary li {
  display: grid;
  grid-template-columns: minmax(90px, 0.7fr) 1.3fr;
  gap: 12px;
  font-size: 0.65rem;
}

.quiz-summary li span {
  color: rgba(255, 255, 255, 0.42);
}

.quiz-summary li strong {
  font-weight: 500;
}

.quiz-contact-grid {
  display: grid;
  gap: 14px;
}

.quiz-contact label small {
  color: rgba(255, 255, 255, 0.38);
  font-weight: 400;
}

.quiz-contact select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #333332;
  color: var(--white);
}

.phone-control {
  display: grid;
  grid-template-columns: minmax(92px, 116px) minmax(0, 1fr);
  gap: 8px;
}

.phone-field {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
}

.phone-control select {
  width: 100%;
  min-height: 50px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #333332;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
}

.phone-field > small {
  color: rgba(255, 255, 255, 0.44) !important;
  font-size: 0.6rem;
  font-weight: 400;
}

.contact-form .phone-control select {
  background: rgba(255, 255, 255, 0.08);
}

.legal-check {
  grid-template-columns: 20px 1fr !important;
  align-items: start;
  gap: 10px !important;
  font-size: 0.62rem !important;
  font-weight: 400 !important;
  line-height: 1.5;
}

.legal-check input {
  width: 18px !important;
  min-height: 18px !important;
  margin-top: 2px;
  accent-color: var(--accent-dark);
}

.legal-check a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.turnstile-slot {
  width: 100%;
  min-height: 65px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.65rem;
}

.turnstile-slot[hidden] {
  display: none;
}

.turnstile-slot iframe {
  max-width: 100%;
}

.quiz-success {
  min-height: 470px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 16px;
}

.quiz-success > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  font-size: 1.25rem;
}

.quiz-success > p:not(.eyebrow) {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
}

.quiz-success small {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.55rem;
}

.form-error {
  padding: 12px 14px;
  border: 1px solid rgba(214, 103, 83, 0.5);
  border-radius: 4px;
  background: rgba(214, 103, 83, 0.12);
  color: #ffd8cf;
  font-size: 0.7rem;
}

.form-error a {
  font-weight: 800;
  text-decoration: underline;
}

.quiz-privacy {
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.58rem;
}

.consent-banner {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 2000;
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: 4px;
  background: var(--white);
  color: var(--graphite);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.consent-copy a {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: underline;
}

.consent-options {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.consent-options label {
  min-height: 54px;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--soft);
}

.consent-options input {
  width: 17px;
  height: 17px;
  accent-color: var(--accent-dark);
}

.consent-options span {
  display: grid;
}

.consent-options b {
  font-size: 0.68rem;
}

.consent-options small {
  color: var(--muted);
  font-size: 0.58rem;
}

.consent-banner strong {
  font-size: 0.84rem;
}

.consent-banner p {
  max-width: 620px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 300;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.consent-actions button[data-consent-action="save"] {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--graphite);
  font-size: 0.68rem;
  font-weight: 700;
}

.consent-actions button:not(.button) {
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
}

.consent-actions .consent-reject {
  border: 1px solid var(--graphite) !important;
  background: var(--graphite) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
}

.consent-actions .button {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  white-space: nowrap;
}

.quiz-contact label,
.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 700;
}

.quiz-contact input,
.quiz-contact textarea,
.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  outline: none;
}

.inner-hero {
  padding: 130px var(--page) var(--section);
  background: var(--sand);
}

.inner-hero > div {
  width: min(1060px, 100%);
  margin: 0 auto 58px;
}

.inner-hero h1 {
  max-width: 940px;
}

.inner-hero > div > p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 26px;
  color: var(--muted);
  font-weight: 300;
}

.inner-hero > img {
  width: min(1180px, 100%);
  height: min(66vw, 680px);
  min-height: 360px;
  margin: 0 auto;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-gallery {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
}

.about-gallery img {
  min-width: 0;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-gallery img:nth-child(1) {
  grid-column: 1 / span 4;
  height: 420px;
}

.about-gallery img:nth-child(2) {
  grid-column: 5 / span 3;
  height: 330px;
}

.about-gallery img:nth-child(3) {
  grid-column: 8 / span 5;
  height: 510px;
}

.story-section {
  display: grid;
  gap: 50px;
  padding: var(--section) var(--page);
}

.story-section > div {
  width: min(980px, 100%);
  margin: 0 auto;
}

.story-section p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 300;
}

.story-section dl {
  display: grid;
  gap: 1px;
  margin-top: 46px;
  background: var(--line);
}

.story-section dl > div {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 24px;
  background: var(--white);
}

.story-section dt {
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 800;
}

.story-section dd {
  font-weight: 700;
}

.contact-page {
  min-height: 100svh;
  display: grid;
  gap: 54px;
  align-items: start;
  padding: 140px var(--page) var(--section);
  background: var(--graphite);
  color: var(--white);
}

.contact-intro,
.contact-form {
  width: min(680px, 100%);
  margin: 0 auto;
}

.contact-intro .eyebrow {
  color: #e1ba9c;
}

.contact-intro > p:not(.eyebrow) {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 300;
}

.direct-contact {
  display: grid;
  gap: 12px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.direct-contact span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.direct-contact a {
  width: fit-content;
  font-weight: 600;
}

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

.legal-page {
  min-height: 100svh;
  padding: 140px var(--page) var(--section);
  background: var(--soft);
}

.legal-page > header,
.legal-content {
  width: min(900px, 100%);
  margin: 0 auto;
}

.legal-page > header {
  padding-bottom: 52px;
  border-bottom: 1px solid var(--line);
}

.legal-page > header h1 {
  max-width: 820px;
}

.legal-page > header > p:last-child {
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.72rem;
}

.legal-content {
  display: grid;
  gap: 0;
}

.legal-content section {
  display: grid;
  gap: 16px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.legal-content h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.legal-content p {
  max-width: 760px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 300;
}

.site-footer {
  display: grid;
  gap: 38px;
  padding: 58px var(--page) 100px;
  border-top: 1px solid var(--line);
  background: var(--sand);
}

.site-footer > div,
.site-footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer p,
.site-footer a:not(.brand) {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
}

.site-footer button {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  text-align: left;
}

.mobile-actions {
  display: none;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #238b57;
  color: var(--white);
  box-shadow: 0 16px 44px rgba(35, 139, 87, 0.28);
  font-size: 0.72rem;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (min-width: 769px) {
  :root {
    --section: 150px;
  }

  .projects-grid,
  .services-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .project-1 {
    grid-column: 1 / span 7;
  }

  .project-2 {
    grid-column: 8 / span 5;
    margin-top: 90px;
  }

  .project-3 {
    grid-column: 2 / span 5;
  }

  .project-4 {
    grid-column: 7 / span 6;
    margin-top: -35px;
  }

  .project-1 img,
  .project-4 img {
    height: 430px;
  }

  .project-2 img,
  .project-3 img {
    height: 350px;
  }

  .service-card {
    grid-column: span 6;
  }

  .service-card:nth-child(1) {
    grid-column: 1 / span 7;
  }

  .service-card:nth-child(2) {
    grid-column: 8 / span 5;
    margin-top: 76px;
  }

  .service-card:nth-child(3) {
    grid-column: 1 / span 4;
  }

  .service-card:nth-child(4) {
    grid-column: 5 / span 4;
    margin-top: 36px;
  }

  .service-card:nth-child(5) {
    grid-column: 9 / span 4;
  }

  .lead-section,
  .contact-page,
  .story-section {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    align-items: start;
  }

  .partner-band {
    grid-template-columns: minmax(0, 7fr) minmax(300px, 5fr);
    align-items: end;
  }

  .process-layout {
    grid-template-columns: minmax(0, 7fr) minmax(360px, 5fr);
    align-items: start;
  }

  .process-layout figure {
    position: sticky;
    top: 104px;
  }

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

  .lead-copy,
  .quiz-card,
  .contact-intro,
  .contact-form,
  .story-section > div {
    width: 100%;
  }

  .quiz-card {
    padding: 42px;
  }

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

  .quiz-visual-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quiz-visual-option {
    grid-template-columns: 1fr;
    grid-template-rows: 164px minmax(76px, auto);
  }

  .quiz-visual-option img {
    height: 164px;
  }

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

  .consent-banner {
    right: 24px;
    bottom: 24px;
    left: auto;
    width: min(760px, calc(100vw - 48px));
    padding: 22px 24px;
  }

  .consent-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1.5fr 1fr 0.6fr;
    padding-bottom: 58px;
  }
}

@media (min-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
    gap: 34px;
  }

  .menu-toggle {
    display: none;
  }

  .site-header > nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    padding: 0;
    background: transparent;
  }

  .site-header > nav > a,
  .services-menu > summary {
    padding: 10px 0;
    border: 0;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
  }

  .services-menu {
    position: relative;
  }

  .services-menu > summary::after {
    margin-left: 8px;
    float: none;
  }

  .services-menu > div {
    position: absolute;
    top: calc(100% + 14px);
    left: -24px;
    width: 250px;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .services-menu[open] > div {
    display: grid;
  }

  .services-menu > div a {
    padding: 10px;
    border-radius: 5px;
  }

  .services-menu > div a:hover {
    background: var(--sand);
    color: var(--graphite);
  }

  .header-cta {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: var(--radius);
    background: var(--accent);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 800;
  }

  .coverage-section {
    grid-template-columns: minmax(340px, 5fr) minmax(0, 8fr);
    align-items: center;
  }

  .coverage-copy {
    margin: 0;
  }

}

@media (max-width: 768px) {
  :root {
    --page: clamp(16px, 5vw, 28px);
    --section: 76px;
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  body {
    min-width: 0;
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
  }

  main,
  section,
  header,
  footer,
  form,
  figure,
  nav,
  div,
  article {
    min-width: 0;
  }

  h1 {
    font-size: clamp(2.35rem, 11.5vw, 3.65rem);
    line-height: 1.02;
  }

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

  .site-header {
    z-index: 1600;
    min-height: 64px;
    grid-template-columns: minmax(40px, 1fr) auto;
    gap: 8px;
    padding-top: 10px;
    padding-bottom: 10px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: none;
  }

  .site-header .brand-logo {
    width: clamp(94px, 29vw, 116px);
  }

  .site-header > nav {
    position: fixed;
    inset: 64px 0 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: max-content;
    align-content: start;
    gap: 0;
    padding: 28px var(--page) calc(28px + env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--white);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .site-header > nav[data-open] {
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }

  .site-header > nav > a,
  .services-menu > summary {
    min-height: 58px;
    display: flex;
    align-items: center;
    padding: 13px 0;
    font-size: clamp(1.12rem, 5.5vw, 1.45rem);
    line-height: 1.2;
  }

  .services-menu > summary {
    justify-content: space-between;
  }

  .services-menu > summary::after {
    float: none;
    margin-left: 18px;
  }

  .services-menu > div {
    padding: 8px 0 18px 14px;
    border-bottom: 1px solid var(--line);
  }

  .services-menu > div a {
    display: block;
    padding: 10px 0;
    font-size: 0.9rem;
  }

  .site-header > .language-switcher {
    display: none;
  }

  .menu-language {
    display: flex;
    gap: 8px;
    margin-top: 26px;
  }

  .menu-language a {
    min-width: 48px;
    padding: 10px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 800;
    text-align: center;
  }

  .menu-language a[aria-current="page"] {
    border-color: var(--graphite);
    background: var(--graphite);
    color: var(--white);
  }

  .site-header > nav .menu-contact {
    min-height: 52px;
    display: inline-flex;
    justify-content: center;
    margin-top: 22px;
    padding: 14px 18px;
    border: 0;
    border-radius: var(--radius);
    background: var(--accent);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 800;
  }

  body.menu-open .mobile-actions {
    transform: translateY(110%);
    pointer-events: none;
  }

  .language-switcher a {
    min-width: 29px;
  }

  .hero {
    height: auto;
    min-height: max(640px, 100svh);
    padding-top: 112px;
    padding-bottom: 48px;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(16, 16, 16, 0.22) 0%, rgba(16, 16, 16, 0.63) 44%, rgba(16, 16, 16, 0.94) 100%);
  }

  .hero-image {
    object-position: 57% center;
  }

  .hero-content > p:not(.eyebrow) {
    font-size: 0.9rem;
  }

  .brand > span:last-child {
    display: none;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 30px;
  }

  .hero-actions .text-link {
    width: fit-content;
    margin-top: 3px;
  }

  .section,
  .coverage-section,
  .process-section,
  .trust-section,
  .lead-section,
  .partner-band {
    padding-right: var(--page);
    padding-left: var(--page);
  }

  .partner-band {
    gap: 24px;
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .partner-band h2 {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
  }

  .projects-grid,
  .services-grid {
    gap: 18px;
    margin-top: 42px;
  }

  .project-card img,
  .service-card img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .project-card > div,
  .service-card > div {
    padding: 22px 20px;
  }

  .section-heading,
  .process-heading,
  .trust-heading {
    margin-bottom: 42px;
  }

  .process-layout {
    gap: 34px;
  }

  .process-layout figure img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .process-steps li {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 12px;
    padding: 22px 0;
  }

  .trust-grid article {
    min-height: 0;
    padding: 24px 22px;
  }

  .lead-section {
    gap: 42px;
    overflow: hidden;
  }

  .quiz-card {
    width: 100%;
    min-height: 0;
    padding: 20px 16px;
  }

  .quiz-step,
  .quiz-contact {
    gap: 20px;
  }

  .quiz-step > header {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 10px;
  }

  .quiz-step h3,
  .quiz-contact h3 {
    font-size: clamp(1.25rem, 6vw, 1.75rem);
  }

  .quiz-visual-option {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .quiz-visual-option img {
    height: 100%;
    min-height: 96px;
  }

  .quiz-summary li {
    grid-template-columns: 1fr;
    gap: 2px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .contact-method > div,
  .quiz-contact-grid {
    grid-template-columns: 1fr;
  }

  .quiz-actions {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px;
  }

  .quiz-actions .button,
  .quiz-next {
    width: 100%;
    max-width: none;
    padding-right: 12px;
    padding-left: 12px;
  }

  .consent-banner {
    right: 10px;
    bottom: calc(74px + env(safe-area-inset-bottom));
    left: 10px;
    max-height: calc(100svh - 92px - env(safe-area-inset-bottom));
    overflow-y: auto;
    padding: 18px;
  }

  .consent-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .consent-actions .button {
    width: 100%;
  }

  .consent-actions button {
    width: 100%;
  }

  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1500;
    height: calc(64px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-bottom: env(safe-area-inset-bottom);
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(18px);
    transition: transform 180ms ease;
  }

  .mobile-actions a {
    min-width: 0;
    display: grid;
    grid-template-columns: 22px minmax(0, auto);
    place-content: center;
    align-items: center;
    gap: 7px;
    border-right: 1px solid var(--line);
    color: var(--graphite);
  }

  .mobile-actions a:nth-child(2) {
    background: #238b57;
    color: var(--white);
  }

  .mobile-actions b {
    font-size: 0.7rem;
    text-align: center;
  }

  .mobile-actions span {
    min-width: 0;
    font-size: 0.61rem;
    font-weight: 800;
    white-space: nowrap;
  }

  .whatsapp-float {
    display: none;
  }

  .legal-page {
    padding-top: 112px;
  }

  .legal-page > header {
    padding-bottom: 36px;
  }

  .site-footer {
    padding-bottom: 44px;
  }

  .coast-map {
    box-shadow: 0 20px 45px rgba(26, 26, 26, 0.11);
  }

  .coast-map-canvas {
    height: clamp(300px, 92vw, 400px);
    border-radius: 4px 4px 0 0;
  }

  .coverage-places {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    padding: 1px;
    background: rgba(26, 26, 26, 0.12);
  }

  .coverage-places li {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 46px;
    padding: 10px 12px;
    background: var(--white);
    color: var(--graphite);
    font-size: 0.7rem;
    font-weight: 700;
  }

  .coverage-places i {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--accent-dark);
  }

  .coast-map figcaption {
    top: 12px;
    right: 12px;
    bottom: auto;
    left: auto;
  }

  .inner-hero > img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .inner-hero {
    padding-top: 112px;
  }

  .inner-hero > div {
    margin-bottom: 38px;
  }

  .about-gallery {
    grid-template-columns: 1fr;
  }

  .about-gallery img:nth-child(1),
  .about-gallery img:nth-child(2),
  .about-gallery img:nth-child(3) {
    grid-column: auto;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .contact-page {
    gap: 42px;
    padding-top: 112px;
  }

  .contact-form {
    width: 100%;
    padding: 22px 18px;
  }

  .story-section dl > div {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    padding: 20px 16px;
  }

  .site-footer .brand-logo {
    width: 150px;
  }
}

@media (max-width: 374px) {
  :root {
    --page: 14px;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .language-switcher a {
    min-width: 27px;
    padding-right: 6px;
    padding-left: 6px;
  }

  .quiz-visual-option {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .mobile-actions a {
    grid-template-columns: 1fr;
    gap: 1px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
