:root {
  color-scheme: light;
  --paper: #f7f3ea;
  --paper-strong: #fffaf0;
  --ink: #17222b;
  --muted: #5d676f;
  --line: rgba(23, 34, 43, 0.14);
  --teal: #0d6d6b;
  --teal-dark: #084a49;
  --coral: #c96545;
  --gold: #e5b94d;
  --sage: #6f836f;
  --stone: #292724;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(23, 34, 43, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

#top,
#process,
#areas,
#remote,
#resources,
#contact {
  scroll-margin-top: 104px;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(calc(100% - 32px), 1240px);
  min-height: 72px;
  margin: 14px auto 0;
  padding: 10px 12px 10px 16px;
  color: var(--white);
  background: rgba(16, 27, 34, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 250, 240, 0.94);
  border-color: rgba(23, 34, 43, 0.12);
  box-shadow: 0 18px 48px rgba(23, 34, 43, 0.12);
}

.brand {
  display: inline-grid;
  grid-template-columns: 44px auto;
  align-items: center;
  gap: 10px;
  min-width: 180px;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  border-radius: 0;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
  font-weight: 800;
}

.brand-copy small {
  margin-top: 2px;
  color: currentColor;
  opacity: 0.76;
  font-size: 0.76rem;
  font-weight: 650;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.site-nav a,
.footer-links a,
.text-link {
  text-decoration: none;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 0.92rem;
  font-weight: 720;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

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

.language-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.site-header.is-scrolled .language-switch,
.site-header.is-open .language-switch {
  background: rgba(23, 34, 43, 0.06);
  border-color: rgba(23, 34, 43, 0.12);
}

.language-switch button {
  min-width: 38px;
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: currentColor;
  font-size: 0.78rem;
  font-weight: 800;
}

.language-switch button.active {
  color: var(--ink);
  background: var(--gold);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 13px;
  color: currentColor;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-weight: 760;
}

.nav-toggle svg,
.btn svg,
.value-card svg,
.service-card svg,
.check-panel svg,
.contact-points svg,
.text-link svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 820;
  line-height: 1;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn span {
  min-width: 0;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 14px 34px rgba(13, 109, 107, 0.22);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--teal-dark);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.46);
}

.btn-dark {
  color: var(--white);
  background: var(--stone);
}

.btn-small {
  min-height: 42px;
  padding: 0 14px;
  font-size: 0.88rem;
}

.hero {
  position: relative;
  min-height: 84vh;
  overflow: hidden;
  isolation: isolate;
}

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

.hero-image {
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(14, 22, 27, 0.72) 0%, rgba(14, 22, 27, 0.48) 34%, rgba(14, 22, 27, 0.2) 63%, rgba(14, 22, 27, 0.04) 100%),
    linear-gradient(0deg, rgba(14, 22, 27, 0.54) 0%, rgba(14, 22, 27, 0) 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(calc(100% - 40px), var(--max));
  min-height: 76vh;
  margin: 0 auto;
  padding-top: 124px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.84rem;
  font-weight: 860;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

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

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: 5.6rem;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 1.24rem;
}

.hero-lede {
  max-width: 620px;
  margin: 22px 0 0;
  font-size: 1.32rem;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(calc(100% - 40px), var(--max));
  margin: -28px auto 0;
  background: var(--paper-strong);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-proof span {
  min-height: 104px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.hero-proof span:last-child {
  border-right: 0;
}

.hero-proof strong,
.hero-proof em {
  display: block;
}

.hero-proof strong {
  font-size: 1.02rem;
}

.hero-proof em {
  margin-top: 5px;
  color: var(--muted);
  font-style: normal;
  font-size: 0.92rem;
}

.section {
  padding: 96px 0;
}

.section-inner {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.intro-band {
  padding-top: 92px;
  padding-bottom: 76px;
  background: var(--paper-strong);
}

.split-intro,
.remote-layout,
.resource-layout,
.transparency-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: start;
}

.section-lede,
.section-heading p,
.process-copy > p,
.remote-layout > div > p,
.resource-layout > div > p,
.contact-copy > p,
.site-footer p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.section-heading.wide {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 42px;
  max-width: none;
  align-items: end;
}

.section-heading.wide p:last-child {
  margin: 0;
}

.value-grid,
.service-grid,
.area-grid,
.do-not-grid {
  display: grid;
  gap: 16px;
}

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

.value-card,
.service-card,
.area-grid article,
.do-not-grid article,
.check-panel,
.lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.74);
}

.value-card,
.service-card {
  min-height: 260px;
  padding: 26px;
}

.value-card svg,
.service-card svg {
  width: 28px;
  height: 28px;
  margin-bottom: 28px;
  color: var(--teal);
}

.value-card p,
.service-card p,
.area-grid p,
.do-not-grid p {
  color: var(--muted);
}

.process-section {
  background: #eaf1ec;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: 54px;
  align-items: center;
}

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

.process-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(23, 34, 43, 0.14);
}

.process-list li:last-child {
  border-bottom: 0;
}

.process-list span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 860;
}

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

.process-image {
  margin: 0;
}

.process-image img,
.area-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.process-image figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.area-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.56fr);
  gap: 20px;
  align-items: stretch;
  margin-bottom: 18px;
}

.area-feature img {
  aspect-ratio: 16 / 8.6;
}

.area-note {
  display: flex;
  flex-direction: column;
  justify-content: end;
  min-height: 320px;
  padding: 28px;
  color: var(--white);
  background: var(--stone);
  border-radius: var(--radius);
}

.area-note p {
  color: rgba(255, 255, 255, 0.78);
}

.area-grid {
  grid-template-columns: repeat(4, 1fr);
}

.area-grid article {
  min-height: 210px;
  padding: 22px;
}

.remote-section {
  color: var(--white);
  background: var(--teal-dark);
}

.remote-section .eyebrow {
  color: var(--gold);
}

.remote-section p {
  color: rgba(255, 255, 255, 0.78);
}

.check-panel {
  padding: 28px;
  color: var(--ink);
  background: var(--paper-strong);
}

.check-panel ul {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-panel li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 680;
}

.check-panel svg {
  color: var(--coral);
}

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

.resources-section {
  background: #f1e7d3;
}

.resource-layout {
  align-items: center;
}

.resource-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  color: var(--stone);
  font-weight: 820;
}

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

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

.do-not-grid article {
  min-height: 170px;
  padding: 24px;
  background: #fffdf7;
}

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

.contact-section .eyebrow {
  color: var(--gold);
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-points span {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
}

.contact-points em {
  font-style: normal;
  font-weight: 720;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  color: var(--ink);
  background: var(--paper-strong);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 780;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(23, 34, 43, 0.18);
  border-radius: var(--radius);
  outline: none;
}

.lead-form textarea {
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 109, 107, 0.13);
}

.btn-submit {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  padding: 44px 0;
  background: #111a20;
  color: var(--white);
}

.article-page {
  background: var(--paper);
}

.article-hero {
  position: relative;
  min-height: 560px;
  padding: 168px 0 84px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(14, 22, 27, 0.82) 0%, rgba(14, 22, 27, 0.62) 48%, rgba(14, 22, 27, 0.28) 100%),
    url("assets/images/buyer-process.jpg") center / cover;
}

.article-hero-inner {
  position: relative;
  z-index: 1;
}

.seo-hero {
  background:
    linear-gradient(90deg, rgba(14, 22, 27, 0.82) 0%, rgba(14, 22, 27, 0.6) 48%, rgba(14, 22, 27, 0.25) 100%),
    url("assets/images/south-coast.jpg") center / cover;
}

.canariabolig-hero {
  background:
    linear-gradient(90deg, rgba(14, 22, 27, 0.84) 0%, rgba(14, 22, 27, 0.62) 48%, rgba(14, 22, 27, 0.24) 100%),
    url("assets/images/south-coast.jpg") center / cover;
}

.canariabolig-hero h1 {
  max-width: 780px;
}

.canariabolig-grid {
  grid-template-columns: repeat(4, 1fr);
}

.about-hero {
  min-height: 620px;
  padding-bottom: 72px;
  color: var(--ink);
  background: var(--paper-strong);
}

.about-hero .article-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 56px;
  align-items: center;
}

.about-hero h1 {
  max-width: 820px;
}

.about-hero .hero-lede {
  color: var(--muted);
}

.about-portrait {
  margin: 0;
}

.about-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-portrait figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.trust-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-weight: 680;
}

.trust-list svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
  stroke-width: 2.4;
}

.article-hero h1 {
  max-width: 880px;
}

.article-hero .hero-lede {
  max-width: 760px;
}

.article-section {
  padding-top: 72px;
}

.article-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.toc-panel {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 10px;
  padding: 22px;
  background: var(--paper-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.toc-panel h2 {
  font-size: 1.04rem;
}

.toc-panel a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 720;
}

.toc-panel a:hover,
.toc-panel a:focus-visible {
  color: var(--teal);
}

.checklist-content {
  max-width: 820px;
}

.checklist-content section {
  padding: 0 0 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.checklist-content h2 {
  margin-bottom: 16px;
  font-size: 2.1rem;
}

.checklist-content p,
.checklist-content li {
  color: var(--muted);
  font-size: 1.05rem;
}

.checklist-content ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding-left: 22px;
}

.article-cta {
  padding: 28px;
  background: var(--stone);
  color: var(--white);
  border-radius: var(--radius);
}

.article-cta h2 {
  font-size: 2rem;
}

.article-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.faq-section details {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.faq-section summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 820;
}

.faq-section details p {
  margin-bottom: 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 42px;
  align-items: start;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-inner p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-links {
  display: grid;
  gap: 10px;
  min-width: 190px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav,
  .header-actions {
    grid-column: 1 / -1;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 8px 0 4px;
  }

  .site-header.is-open .site-nav {
    display: flex;
  }

  .site-header.is-open .site-nav a {
    display: block;
    padding: 11px 4px;
    border-bottom: 1px solid rgba(23, 34, 43, 0.1);
  }

  .site-header.is-open .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-actions {
    display: none;
    justify-content: space-between;
    padding-bottom: 4px;
  }

  .site-header.is-open .header-actions {
    display: flex;
  }

  h1 {
    font-size: 4.3rem;
  }

  h2 {
    font-size: 2.7rem;
  }

  .value-grid,
  .service-grid,
  .canariabolig-grid,
  .area-grid,
  .do-not-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-layout,
  .about-hero .article-hero-inner,
  .area-feature,
  .remote-layout,
  .resource-layout,
  .contact-layout,
  .transparency-layout,
  .article-layout,
  .section-heading.wide,
  .split-intro {
    grid-template-columns: 1fr;
  }

  .toc-panel {
    position: static;
  }

  .resource-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    right: 10px;
    left: 10px;
    width: auto;
    max-width: none;
    min-height: 62px;
    margin: 10px 0 0;
    padding: 8px 9px;
    border-radius: 8px;
  }

  .site-header.is-open {
    max-height: calc(100svh - 20px);
    overflow-y: auto;
  }

  .brand {
    min-width: 0;
    max-width: 100%;
    grid-template-columns: 38px minmax(0, auto);
    gap: 8px;
    overflow: hidden;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 0.78rem;
  }

  .brand-copy {
    min-width: 0;
    font-size: 0.98rem;
  }

  .brand-copy > span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-copy small {
    display: none;
  }

  .nav-toggle {
    flex-shrink: 0;
    min-width: 44px;
    min-height: 40px;
    padding: 0 11px;
  }

  .header-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .language-switch {
    width: 100%;
  }

  .btn-small {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-bottom: 18px;
  }

  .article-hero {
    min-height: auto;
    padding: 128px 0 58px;
  }

  .about-hero {
    padding-bottom: 48px;
  }

  .about-hero .article-hero-inner {
    gap: 28px;
  }

  .about-portrait img {
    max-height: 560px;
  }

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

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(14, 22, 27, 0.76) 0%, rgba(14, 22, 27, 0.5) 58%, rgba(14, 22, 27, 0.28) 100%),
      linear-gradient(0deg, rgba(14, 22, 27, 0.62) 0%, rgba(14, 22, 27, 0) 52%);
  }

  .hero-content {
    width: auto;
    min-height: auto;
    margin-right: 14px;
    margin-left: 14px;
    padding-top: 128px;
    padding-bottom: 28px;
  }

  h1 {
    max-width: 10ch;
    font-size: 3.05rem;
  }

  #hero-title {
    max-width: 100%;
  }

  .article-hero h1 {
    max-width: 12ch;
  }

  .about-hero h1 {
    max-width: 100%;
  }

  h2 {
    font-size: 2.08rem;
  }

  h3 {
    font-size: 1.12rem;
  }

  .hero-lede {
    max-width: 31rem;
    font-size: 1.02rem;
    line-height: 1.46;
  }

  .hero-actions,
  .resource-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .resource-actions .btn,
  .resource-actions .text-link {
    width: 100%;
    white-space: normal;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    width: auto;
    margin: 0 14px;
    box-shadow: 0 12px 32px rgba(23, 34, 43, 0.14);
  }

  .hero-proof span {
    min-height: auto;
    padding: 14px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-proof span:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 58px 0;
  }

  .article-section {
    padding-top: 48px;
  }

  #top,
  #process,
  #areas,
  #remote,
  #resources,
  #contact {
    scroll-margin-top: 82px;
  }

  .section-inner {
    width: min(calc(100% - 28px), var(--max));
  }

  .intro-band {
    padding-top: 60px;
    padding-bottom: 54px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-lede,
  .section-heading p,
  .process-copy > p,
  .remote-layout > div > p,
  .resource-layout > div > p,
  .contact-copy > p,
  .site-footer p {
    font-size: 1rem;
  }

  .value-grid,
  .service-grid,
  .canariabolig-grid,
  .area-grid,
  .do-not-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .value-card,
  .service-card,
  .area-grid article,
  .do-not-grid article {
    min-height: auto;
    padding: 20px;
  }

  .value-card svg,
  .service-card svg {
    width: 24px;
    height: 24px;
    margin-bottom: 18px;
  }

  .process-list li {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 15px 0;
  }

  .process-list span {
    width: 38px;
    height: 38px;
  }

  .process-image img,
  .area-feature img {
    box-shadow: 0 12px 32px rgba(23, 34, 43, 0.13);
  }

  .area-note {
    min-height: auto;
    padding: 22px;
  }

  .area-feature {
    gap: 14px;
  }

  .area-feature img {
    aspect-ratio: 4 / 3;
  }

  .check-panel,
  .lead-form,
  .toc-panel,
  .article-cta {
    padding: 20px;
  }

  .checklist-content section {
    padding-bottom: 28px;
    margin-bottom: 28px;
  }

  .checklist-content h2,
  .article-cta h2 {
    font-size: 1.72rem;
  }

  .checklist-content p,
  .checklist-content li {
    font-size: 1rem;
  }

  .lead-form input,
  .lead-form select,
  .lead-form textarea {
    font-size: 16px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    width: min(calc(100% - 28px), var(--max));
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .nav-toggle {
    padding: 0 12px;
  }

  .nav-toggle span {
    display: none;
  }

  .btn {
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .brand-copy {
    font-size: 0.9rem;
  }

  .hero-content {
    margin-right: 12px;
    margin-left: 12px;
  }

  .hero-proof {
    margin-right: 12px;
    margin-left: 12px;
  }
}

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