@font-face {
  font-family: "CRPT Sans";
  src: url("../fonts/DejaVuSans-Latin.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "CRPT Sans";
  src: url("../fonts/DejaVuSans-Bold-Latin.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "CRPT Serif";
  src: url("../fonts/DejaVuSerif-Bold-Latin.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --crpt-ink: #17231b;
  --crpt-muted: #5d685f;
  --crpt-forest: #0d422e;
  --crpt-forest-deep: #06271c;
  --crpt-leaf: #236f3c;
  --crpt-leaf-bright: #2a7b42;
  --crpt-gold: #d7aa36;
  --crpt-gold-soft: #f0d992;
  --crpt-teal: #22a9b6;
  --crpt-cream: #f8f6ef;
  --crpt-paper: #ffffff;
  --crpt-mist: #edf3ed;
  --crpt-line: #dce3da;
  --crpt-shadow: 0 18px 55px rgba(12, 48, 34, 0.12);
  --crpt-radius: 8px;
  --crpt-shell: 1180px;
}

/*
 * Elementor brand bridge.
 *
 * A new Elementor kit ships with bright blue/green defaults and Roboto. These
 * higher-specificity variables keep Elementor widgets aligned with the theme
 * without preventing editors from applying an intentional per-widget style.
 */
body.elementor-default {
  --e-global-color-primary: var(--crpt-forest);
  --e-global-color-secondary: var(--crpt-ink);
  --e-global-color-text: var(--crpt-muted);
  --e-global-color-accent: var(--crpt-leaf);
  --e-global-typography-primary-font-family: "CRPT Serif";
  --e-global-typography-primary-font-weight: 700;
  --e-global-typography-secondary-font-family: "CRPT Sans";
  --e-global-typography-secondary-font-weight: 700;
  --e-global-typography-text-font-family: "CRPT Sans";
  --e-global-typography-text-font-weight: 400;
  --e-global-typography-accent-font-family: "CRPT Sans";
  --e-global-typography-accent-font-weight: 700;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

[id] {
  scroll-margin-top: 120px;
}

body {
  margin: 0;
  color: var(--crpt-ink);
  background: var(--crpt-cream);
  font-family: "CRPT Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea,
select {
  font-family: "CRPT Sans", Arial, sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--crpt-forest);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--crpt-leaf);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
  box-shadow: 0 0 0 7px #765309;
}

h1,
h2,
h3,
h4,
h5,
h6,
.elementor-heading-title {
  margin: 0;
  color: var(--crpt-forest);
  font-family: "CRPT Serif", Georgia, serif;
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.025em;
}

h1,
.crpt-hero h1,
.crpt-page-hero h1 {
  font-size: clamp(3rem, 5.6vw, 5.35rem);
}

h2 {
  font-size: clamp(2.15rem, 3.4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
}

p {
  margin: 0 0 1.1em;
}

ul,
ol {
  margin: 0;
  padding-left: 1.2rem;
}

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

.section {
  position: relative;
  padding: 108px 0;
  background: var(--crpt-paper);
}

.section-cream {
  background: var(--crpt-cream);
}

.section-forest {
  color: rgba(255, 255, 255, 0.82);
  background: var(--crpt-forest);
}

.section-forest h1,
.section-forest h2,
.section-forest h3,
.section-forest .elementor-heading-title {
  color: #fff;
}

.section-header {
  max-width: 820px;
  margin-bottom: 48px;
}

.section-header .section-intro {
  max-width: 730px;
  margin-top: 20px;
  color: var(--crpt-muted);
  font-size: 1.08rem;
}

.section-forest .section-intro {
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: var(--crpt-leaf);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

.eyebrow-light {
  color: var(--crpt-gold-soft);
}

.elementor-widget-text-editor p:last-child,
.elementor-widget-html p:last-child,
.section-intro p:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 12px 18px;
  color: #fff;
  background: var(--crpt-forest-deep);
  transform: translateY(-160%);
}

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

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 1000;
  min-height: 94px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: var(--crpt-forest-deep);
  transition: background 180ms ease, box-shadow 180ms ease;
}

body.home .site-header {
  position: fixed;
  background: linear-gradient(180deg, rgba(3, 22, 15, 0.76), rgba(3, 22, 15, 0));
}

body.home .site-header.is-scrolled {
  background: rgba(6, 39, 28, 0.96);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
}

.admin-bar .site-header {
  top: 32px;
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 94px;
  gap: 28px;
}

.brand-lockup {
  display: inline-flex;
  flex: 0 0 auto;
  min-width: 0;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.brand-lockup:hover {
  color: #fff;
}

.brand-lockup img {
  display: block;
  width: 50px;
  height: 62px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  min-width: 0;
  gap: 1px;
  line-height: 1.15;
}

.brand-copy strong {
  font-family: "CRPT Serif", Georgia, serif;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 34px 0 31px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

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

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: #fff;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.button,
.crpt-button .elementor-button,
.elementor-widget-button.crpt-button .elementor-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  color: #fff;
  border: 1px solid var(--crpt-leaf);
  border-radius: 3px;
  background: linear-gradient(135deg, var(--crpt-leaf-bright), #1c753b);
  box-shadow: 0 12px 30px rgba(30, 117, 59, 0.22);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.crpt-button .elementor-button:hover {
  color: #fff;
  background: linear-gradient(135deg, #2c8146, #155d32);
  box-shadow: 0 16px 36px rgba(30, 117, 59, 0.3);
  transform: translateY(-2px);
}

.button-small,
.header-cta {
  min-height: 45px;
  padding: 12px 18px;
  white-space: nowrap;
}

.button-outline,
.crpt-button.crpt-button-ghost .elementor-button,
.elementor-widget-button.crpt-button-ghost .elementor-button,
.crpt-button-ghost .elementor-button {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(3, 23, 15, 0.18);
  box-shadow: none;
}

.crpt-button.crpt-button-ghost .elementor-button:hover,
.elementor-widget-button.crpt-button-ghost .elementor-button:hover,
.crpt-button-ghost .elementor-button:hover {
  color: var(--crpt-forest-deep);
  border-color: #fff;
  background: #fff;
}

.crpt-button.crpt-button-light .elementor-button,
.elementor-widget-button.crpt-button-light .elementor-button,
.crpt-button-light .elementor-button {
  color: var(--crpt-forest-deep);
  border-color: #fff;
  background: #fff;
  box-shadow: none;
}

.crpt-button.crpt-button-light .elementor-button:hover,
.elementor-widget-button.crpt-button-light .elementor-button:hover,
.crpt-button-light .elementor-button:hover {
  color: var(--crpt-forest-deep);
  background: var(--crpt-gold-soft);
}

.mobile-menu {
  display: none;
  position: relative;
  margin-left: auto;
}

.mobile-menu summary {
  min-width: 70px;
  min-height: 44px;
  padding: 10px 12px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 3px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  list-style: none;
  text-align: center;
  text-transform: uppercase;
}

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

.mobile-menu nav {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: grid;
  width: min(84vw, 330px);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--crpt-radius);
  background: var(--crpt-forest-deep);
  box-shadow: var(--crpt-shadow);
}

.mobile-menu nav a {
  padding: 12px 10px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.mobile-menu nav a:last-child {
  border-bottom: 0;
}

.mobile-menu nav a[aria-current="page"] {
  color: var(--crpt-gold-soft);
  background: rgba(255, 255, 255, 0.07);
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 950;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--crpt-leaf);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.24);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.floating-contact:hover {
  color: #fff;
  background: #155d32;
}

.floating-contact span {
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 50%;
}

/* Heroes */
.crpt-hero,
.crpt-page-hero,
.tourism-portal,
.tourism-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  background-color: var(--crpt-forest-deep);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.crpt-hero::before,
.crpt-page-hero::before,
.tourism-portal::before,
.tourism-banner::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(3, 24, 16, 0.92) 0%, rgba(5, 33, 22, 0.72) 42%, rgba(3, 22, 15, 0.16) 76%), linear-gradient(0deg, rgba(2, 18, 12, 0.55), rgba(2, 18, 12, 0) 58%);
}

.crpt-home-hero,
.crpt-page-hero-relocation,
.feature-image-relocation {
  background-image: var(--crpt-hero-image, url("../images/relocation-hero.webp"));
}

.crpt-page-hero-tourism,
.tourism-portal,
.tourism-banner,
.feature-image-chiriqui {
  background-image: var(--crpt-tourism-image, url("../images/beautiful-chiriqui.webp"));
}

.crpt-page-hero-move {
  background-image: var(--crpt-home-life-image, url("../images/chiriqui-home-life.webp"));
}

.crpt-page-hero-contact {
  background-image: radial-gradient(circle at 80% 15%, rgba(34, 169, 182, 0.24), transparent 36%), linear-gradient(135deg, #082d20, #0d543a);
}

.crpt-home-hero {
  display: flex;
  min-height: 760px;
  align-items: center;
  background-position: center center;
}

.crpt-hero-inner {
  padding-top: 132px;
  padding-bottom: 84px;
}

.crpt-hero-copy {
  width: min(710px, 60%);
}

.crpt-hero h1,
.crpt-page-hero h1,
.crpt-hero .elementor-heading-title,
.crpt-page-hero .elementor-heading-title {
  color: #fff;
  text-wrap: balance;
}

.hero-lead {
  max-width: 680px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.87);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-flow: row wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-flow: row wrap;
  gap: 12px 24px;
  margin-top: 34px;
  padding: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  list-style: none;
  text-transform: uppercase;
}

.hero-proof li {
  position: relative;
  padding-left: 13px;
}

.hero-proof li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: var(--crpt-gold);
}

.crpt-page-hero {
  display: flex;
  min-height: 580px;
  align-items: flex-end;
  background-position: center;
}

.crpt-page-hero-content {
  padding-top: 200px;
  padding-bottom: 88px;
}

.crpt-page-hero-content > * {
  max-width: 820px;
}

.crpt-page-hero .crpt-button {
  margin-top: 28px;
}

/* Content grids */
.positioning-section {
  padding: 84px 0;
}

.positioning-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: 70px;
}

.positioning-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: stretch;
  gap: clamp(36px, 5vw, 70px);
}

.positioning-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 34px;
}

.positioning-content h2 {
  max-width: 610px;
}

.positioning-content .positioning-copy {
  max-width: 610px;
  margin-top: 28px;
}

.positioning-visual {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 540px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px);
  border-radius: calc(var(--crpt-radius) + 6px);
  background: var(--crpt-forest-deep);
  box-shadow: 0 24px 70px rgba(6, 39, 28, 0.2);
}

.positioning-visual::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(3, 24, 16, 0.88) 0%, rgba(3, 24, 16, 0.08) 66%);
  pointer-events: none;
}

.positioning-photo,
.positioning-photo .elementor-widget-container,
.positioning-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.positioning-photo img {
  object-fit: cover;
  object-position: center;
}

.visual-note {
  position: relative;
  z-index: 1;
  max-width: 520px;
  padding: 24px 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--crpt-radius);
  background: rgba(4, 34, 23, 0.74);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.visual-note h3,
.visual-note .elementor-heading-title {
  color: #fff;
}

.visual-note-label,
.gallery-kicker {
  margin: 0 0 10px;
  color: var(--crpt-gold-soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.positioning-copy {
  color: var(--crpt-muted);
  font-size: 1.06rem;
}

.text-link {
  display: inline-block;
  color: var(--crpt-forest);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.lifestyle-gallery-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 58px;
  margin-bottom: 22px;
}

.lifestyle-gallery-head h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.35rem);
}

.lifestyle-gallery-head .gallery-kicker {
  color: var(--crpt-leaf);
}

.lifestyle-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 18px;
}

.lifestyle-card,
.destination-visual-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 230px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 28px;
  color: rgba(255, 255, 255, 0.84);
  border: 0;
  border-radius: calc(var(--crpt-radius) + 3px);
  background-color: var(--crpt-forest-deep);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 16px 46px rgba(6, 39, 28, 0.12);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.lifestyle-card::before,
.destination-visual-card::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(3, 24, 16, 0.92) 0%, rgba(3, 24, 16, 0.1) 68%);
}

.lifestyle-card > *,
.destination-visual-card > * {
  position: relative;
  z-index: 1;
}

.lifestyle-card:hover,
.destination-visual-card:hover {
  box-shadow: 0 24px 60px rgba(6, 39, 28, 0.22);
  transform: translateY(-4px);
}

.lifestyle-card-1 {
  grid-row: 1 / 3;
  min-height: 500px;
}

.lifestyle-card h3,
.lifestyle-card .elementor-heading-title,
.destination-visual-card h3,
.destination-visual-card .elementor-heading-title {
  margin-bottom: 10px;
  color: #fff;
}

.lifestyle-card p,
.destination-visual-card p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.65;
}

.pillar-grid,
.journey-grid,
.area-grid,
.destination-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-grid,
.fact-grid,
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pillar-card,
.journey-card,
.info-card,
.fact-card,
.experience-card,
.destination-card,
.trust-card,
.reassurance-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--crpt-line);
  border-radius: var(--crpt-radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(13, 66, 46, 0.05);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.pillar-card:hover,
.info-card:hover,
.experience-card:hover,
.destination-card:hover {
  border-color: #b8c9bb;
  box-shadow: var(--crpt-shadow);
  transform: translateY(-4px);
}

.trust-card {
  border-top: 4px solid var(--crpt-leaf);
}

.pillar-card h3,
.journey-card h3,
.info-card h3,
.fact-card h3,
.experience-card h3,
.destination-card h3 {
  margin-bottom: 15px;
}

.trust-card h3 {
  margin-bottom: 15px;
}

.pillar-card p,
.journey-card p,
.info-card p,
.fact-card p,
.experience-card p,
.destination-card p,
.trust-card p,
.reassurance-card p {
  color: var(--crpt-muted);
  font-size: 0.93rem;
  line-height: 1.7;
}

.card-number {
  margin: 0 0 24px;
  color: var(--crpt-leaf);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.journey-card {
  position: relative;
  padding-top: 36px;
  border-top: 4px solid var(--crpt-gold);
}

.source-note {
  margin-top: 26px;
  color: var(--crpt-muted);
  font-size: 0.82rem;
}

.area-grid {
  margin-top: 6px;
}

.area-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 30px;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: calc(var(--crpt-radius) + 3px);
  background-color: rgba(255, 255, 255, 0.045);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.area-card::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(2, 19, 13, 0.95) 0%, rgba(3, 27, 18, 0.32) 72%);
}

.area-card > * {
  position: relative;
  z-index: 1;
}

.area-card:hover {
  border-color: rgba(240, 217, 146, 0.58);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
  transform: translateY(-5px);
}

.area-card h3 {
  margin-bottom: 14px;
  color: #fff;
}

.area-kicker {
  margin: 0 0 12px;
  color: var(--crpt-gold-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.area-card p:not(.area-kicker) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.65;
}

.scenic-section {
  isolation: isolate;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.scenic-section::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(4, 38, 26, 0.96), rgba(4, 38, 26, 0.82) 50%, rgba(4, 38, 26, 0.58));
}

.scenic-section > .site-shell {
  position: relative;
  z-index: 1;
}

.scenic-section a {
  color: var(--crpt-gold-soft);
}

.recognition-section {
  padding: 0;
  background: var(--crpt-paper);
}

.recognition-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 0;
  width: 100%;
  max-width: none;
}

.recognition-card {
  min-height: 360px;
  padding: 76px max(6vw, 42px);
  background: var(--crpt-mist);
}

.recognition-card-primary {
  color: rgba(255, 255, 255, 0.82);
  background: var(--crpt-forest-deep);
}

.recognition-card-secondary {
  min-height: 0;
  padding-inline: max(4vw, 38px);
  background: #f3f0e7;
}

.recognition-card-secondary .recognition-stat {
  margin-bottom: 18px;
  color: #6b5111;
  font-family: "CRPT Sans", Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.recognition-card-secondary h3 {
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
}

.recognition-card h3 {
  margin-bottom: 18px;
}

.recognition-card-primary h3,
.recognition-card-primary a {
  color: #fff;
}

.recognition-card p:not(.recognition-stat) {
  max-width: 570px;
}

.recognition-stat {
  margin: 0 0 22px;
  color: var(--crpt-gold);
  font-family: "CRPT Serif", Georgia, serif;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 1;
}

/* Genuine guide and client proof only appears after it is configured. */
.verified-proof-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

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

.guide-profile,
.client-proof {
  min-width: 0;
  margin: 0;
  padding: 30px;
  border: 1px solid var(--crpt-line);
  border-radius: var(--crpt-radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(13, 66, 46, 0.05);
}

.guide-profile {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
}

.guide-profile img {
  width: 132px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
}

.guide-profile h3 {
  margin-bottom: 7px;
}

.guide-profile-copy > p:last-child {
  margin-bottom: 0;
}

.guide-role {
  color: var(--crpt-leaf);
  font-size: 0.82rem;
  font-weight: 700;
}

.proof-label {
  margin: 0 0 12px;
  color: var(--crpt-leaf);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.client-proof blockquote {
  margin: 0;
  color: var(--crpt-forest);
  font-family: "CRPT Serif", Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.45;
}

.client-proof figcaption {
  display: grid;
  gap: 2px;
  margin-top: 24px;
  color: var(--crpt-muted);
  font-size: 0.82rem;
}

.client-proof figcaption strong {
  color: var(--crpt-forest);
}

.split-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--crpt-radius);
  background: #fff;
  box-shadow: var(--crpt-shadow);
}

.split-feature-reverse .feature-image {
  order: 2;
}

.feature-image {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.feature-photo,
.feature-photo .elementor-widget-container,
.feature-photo img {
  width: 100%;
  height: 100%;
}

.feature-photo {
  position: absolute;
  inset: 0;
}

.feature-photo img {
  display: block;
  object-fit: cover;
  object-position: center;
}

.destination-visual-card {
  min-height: 390px;
  padding: 30px;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 78px);
}

.feature-copy .crpt-button {
  margin-top: 22px;
}

.tourism-portal {
  min-height: 470px;
  background-position: center 45%;
}

.tourism-portal::before,
.tourism-banner::before {
  background: linear-gradient(90deg, rgba(3, 25, 16, 0.93) 0%, rgba(5, 34, 22, 0.72) 52%, rgba(5, 34, 22, 0.18));
}

.tourism-portal-inner,
.tourism-banner-inner {
  display: flex;
  min-height: inherit;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 82px 0;
}

.tourism-portal-inner > *,
.tourism-banner-inner > * {
  max-width: 680px;
}

.tourism-portal h2,
.tourism-banner h2 {
  color: #fff;
}

.tourism-portal .crpt-button,
.tourism-banner .crpt-button {
  margin-top: 24px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  align-items: start;
  gap: 74px;
}

.faq-layout .section-header {
  position: sticky;
  top: 130px;
  margin: 0;
}

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

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

.faq-list summary {
  position: relative;
  padding: 24px 42px 24px 0;
  color: var(--crpt-forest);
  cursor: pointer;
  font-family: "CRPT Serif", Georgia, serif;
  font-size: 1.18rem;
  font-weight: 700;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 5px;
  content: "+";
  color: var(--crpt-leaf);
  font-family: "CRPT Sans", Arial, sans-serif;
  font-size: 1.35rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details > div {
  padding: 0 36px 24px 0;
  color: var(--crpt-muted);
}

.final-cta {
  color: #fff;
  background: var(--crpt-forest-deep);
}

.final-cta h2 {
  color: #fff;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 60px;
}

.final-cta-inner p {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.76);
}

/* Relocation details */
.match-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}

.match-table {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.match-table > div {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.match-table strong {
  color: #fff;
}

.referral-section {
  background: var(--crpt-cream);
}

/* Evidence page */
.fact-card {
  display: flex;
  flex-direction: column;
}

.fact-card .elementor-widget-html:last-child {
  margin-top: auto;
}

.fact-source {
  margin: 24px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--crpt-line);
  font-size: 0.78rem;
  font-weight: 700;
}

.fact-source a {
  text-transform: uppercase;
}

.split-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 74px;
}

.split-copy a {
  color: var(--crpt-gold-soft);
}

.sources-section .prose {
  max-width: 920px;
}

.source-list {
  display: grid;
  gap: 12px;
  padding-left: 1.2rem;
}

.source-list a {
  font-weight: 700;
}

.legal-note {
  margin-top: 36px;
  padding: 24px;
  color: #5b4620;
  border-left: 4px solid var(--crpt-gold);
  background: #fff8e4;
}

/* Tourism */
.experience-card {
  min-height: 280px;
}

.destination-card {
  min-height: 220px;
}

.tourism-banner {
  min-height: 470px;
  background-position: center;
}

/* Contact */
.contact-section {
  background: var(--crpt-cream);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: start;
  gap: 28px;
}

.contact-form-card,
.contact-aside {
  padding: clamp(28px, 4vw, 50px);
  border: 1px solid var(--crpt-line);
  border-radius: var(--crpt-radius);
  background: #fff;
  box-shadow: 0 14px 40px rgba(13, 66, 46, 0.07);
}

.contact-form-card > .elementor-widget-text-editor,
.contact-aside > .elementor-widget-text-editor {
  margin-top: 16px;
}

.crpt-contact-form {
  margin-top: 32px;
}

.crpt-contact-form fieldset {
  margin: 0 0 28px;
  padding: 0;
  border: 0;
}

.crpt-contact-form legend {
  margin-bottom: 13px;
  color: var(--crpt-forest);
  font-size: 0.84rem;
  font-weight: 700;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice-grid label {
  position: relative;
  display: block;
  cursor: pointer;
}

.choice-grid input {
  position: absolute;
  opacity: 0;
}

.choice-grid span {
  display: flex;
  min-height: 56px;
  align-items: center;
  padding: 12px 14px;
  color: var(--crpt-muted);
  border: 1px solid var(--crpt-line);
  border-radius: 5px;
  background: var(--crpt-cream);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.choice-grid input:checked + span {
  color: var(--crpt-forest);
  border-color: var(--crpt-leaf);
  background: #edf8ef;
  box-shadow: inset 0 0 0 1px var(--crpt-leaf);
}

.choice-grid input:focus-visible + span {
  outline: 3px solid var(--crpt-gold);
  outline-offset: 2px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

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

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--crpt-forest);
  font-size: 0.76rem;
  font-weight: 700;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  color: var(--crpt-ink);
  border: 1px solid #c9d2c9;
  border-radius: 4px;
  background: #fff;
  font-size: 0.9rem;
}

.form-field textarea {
  min-height: 138px;
  resize: vertical;
}

.crpt-contact-form .button {
  margin-top: 24px;
  cursor: pointer;
}

.form-note,
.form-status {
  margin: 13px 0 0;
  color: var(--crpt-muted);
  font-size: 0.76rem;
}

.form-status {
  padding: 12px;
  color: var(--crpt-forest);
  border-left: 3px solid var(--crpt-leaf);
  background: var(--crpt-mist);
}

.contact-hub {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-option {
  display: grid;
  gap: 3px;
  padding: 16px;
  color: var(--crpt-forest);
  border: 1px solid var(--crpt-line);
  border-radius: 5px;
  background: var(--crpt-cream);
  text-decoration: none;
}

.contact-option:hover {
  color: var(--crpt-forest);
  border-color: var(--crpt-leaf);
}

.contact-option-primary {
  color: #fff;
  border-color: var(--crpt-leaf);
  background: var(--crpt-leaf);
}

.contact-option-primary:hover {
  color: #fff;
  background: #1e6738;
}

.contact-option span {
  font-size: 0.78rem;
  opacity: 0.78;
  overflow-wrap: anywhere;
}

.contact-option-static {
  cursor: default;
}

.contact-setup-note {
  margin: 16px 0 0;
  padding: 12px;
  color: #5b4620;
  background: #fff8e4;
  font-size: 0.75rem;
}

.next-card {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--crpt-line);
}

.next-card h3 {
  margin-bottom: 14px;
}

.next-card ol {
  display: grid;
  gap: 9px;
  color: var(--crpt-muted);
  font-size: 0.86rem;
}

.reassurance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.reassurance-card {
  text-align: center;
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--crpt-forest-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.75fr;
  gap: 70px;
  padding-top: 76px;
  padding-bottom: 58px;
}

.brand-lockup-footer {
  margin-bottom: 22px;
}

.footer-brand p {
  max-width: 430px;
  font-size: 0.9rem;
}

.footer-tour-link {
  color: var(--crpt-gold-soft);
  font-size: 0.78rem;
  font-weight: 700;
}

.site-footer h2 {
  margin: 9px 0 18px;
  color: #fff;
  font-family: "CRPT Sans", Arial, sans-serif;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  gap: 9px;
  padding: 0;
  list-style: none;
}

.site-footer .footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-socials a {
  color: var(--crpt-gold-soft);
  font-weight: 700;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.84rem;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-disclaimer {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-disclaimer p {
  max-width: 1000px;
  margin: 0;
  font-size: 0.72rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  padding-bottom: 30px;
  font-size: 0.72rem;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

/* Fallback without Elementor */
.crpt-fallback .fallback-hero {
  min-height: 560px;
  padding: 210px 0 90px;
  color: #fff;
  background: linear-gradient(90deg, rgba(3, 24, 16, 0.93), rgba(3, 24, 16, 0.35)), var(--crpt-hero-image, url("../images/relocation-hero.webp")) center / cover;
}

.crpt-fallback .fallback-hero h1 {
  max-width: 820px;
  color: #fff;
}

.fallback-lead {
  max-width: 720px;
  margin-top: 24px;
  font-size: 1.08rem;
}

.prose {
  max-width: 860px;
}

.prose h2 {
  margin-bottom: 22px;
}

/* Tablet */
@media (max-width: 1160px) {
  .desktop-nav {
    gap: 16px;
  }

  .desktop-nav a {
    font-size: 0.65rem;
  }

  .header-inner {
    gap: 18px;
  }

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

@media (max-width: 1020px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .header-cta {
    margin-left: auto;
  }

  .mobile-menu {
    margin-left: 0;
  }

  .crpt-hero-copy {
    width: min(720px, 74%);
  }

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

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

  .faq-layout .section-header {
    position: static;
  }

  .contact-aside {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 28px;
  }

  .contact-aside > *:nth-child(-n+2) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .admin-bar .site-header {
    top: 46px;
  }

  .section {
    padding: 78px 0;
  }

  .positioning-grid,
  .split-copy {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .positioning-showcase {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .positioning-content {
    padding-block: 0;
  }

  .positioning-visual {
    min-height: 500px;
  }

  .split-feature {
    grid-template-columns: 1fr;
  }

  .split-feature-reverse .feature-image {
    order: 0;
  }

  .feature-image {
    min-height: 400px;
  }

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

  .recognition-card {
    min-height: 0;
    padding: 58px 32px;
  }

  .verified-proof-grid-two {
    grid-template-columns: 1fr;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }

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

/* Mobile */
@media (max-width: 640px) {
  .site-shell {
    width: min(calc(100% - 32px), var(--crpt-shell));
  }

  .header-inner {
    min-height: 78px;
    gap: 12px;
  }

  .site-header {
    min-height: 78px;
  }

  .brand-lockup img {
    width: 38px;
    height: 48px;
  }

  .brand-copy strong {
    font-size: 0.94rem;
    white-space: nowrap;
  }

  .brand-copy small {
    font-size: 0.52rem;
    white-space: nowrap;
  }

  .header-cta {
    display: none;
  }

  .crpt-home-hero {
    min-height: 720px;
    align-items: flex-end;
    background-position: 67% center;
  }

  .crpt-hero::before,
  .crpt-page-hero::before {
    background: linear-gradient(0deg, rgba(3, 24, 16, 0.96) 0%, rgba(3, 24, 16, 0.78) 56%, rgba(3, 24, 16, 0.35) 100%);
  }

  .crpt-hero-inner {
    padding-top: 150px;
    padding-bottom: 60px;
  }

  .crpt-hero-copy {
    width: 100%;
  }

  .crpt-hero h1,
  .crpt-page-hero h1 {
    font-size: clamp(2.5rem, 12vw, 3.5rem);
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
  }

  .crpt-button .elementor-button,
  .hero-actions .elementor-widget-button,
  .hero-actions .elementor-button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 14px;
    font-size: 0.62rem;
  }

  .crpt-page-hero {
    min-height: 560px;
    background-position: 62% center;
  }

  .crpt-page-hero-content {
    padding-top: 160px;
    padding-bottom: 58px;
  }

  .section {
    padding: 66px 0;
  }

  .section-header {
    margin-bottom: 34px;
  }

  .pillar-grid,
  .journey-grid,
  .area-grid,
  .destination-grid,
  .info-grid,
  .fact-grid,
  .experience-grid,
  .reassurance-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .positioning-visual {
    min-height: 430px;
    padding: 18px;
  }

  .visual-note {
    padding: 20px;
  }

  .lifestyle-gallery-head {
    display: block;
    margin-top: 42px;
  }

  .lifestyle-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .lifestyle-card,
  .lifestyle-card-1,
  .destination-visual-card {
    min-height: 320px;
    grid-row: auto;
    padding: 24px;
  }

  .pillar-card,
  .journey-card,
  .info-card,
  .fact-card,
  .experience-card,
  .destination-card,
  .trust-card,
  .reassurance-card {
    padding: 25px;
  }

  .feature-image {
    min-height: 300px;
  }

  .area-card {
    min-height: 330px;
  }

  .feature-copy {
    padding: 34px 24px;
  }

  .tourism-portal,
  .tourism-banner {
    min-height: 520px;
    background-position: 62% center;
  }

  .tourism-portal::before,
  .tourism-banner::before {
    background: linear-gradient(0deg, rgba(3, 25, 16, 0.95), rgba(3, 25, 16, 0.42));
  }

  .match-table > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .choice-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field-full {
    grid-column: auto;
  }

  .contact-form-card,
  .contact-aside {
    padding: 25px 20px;
  }

  .guide-profile {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .guide-profile img {
    width: 112px;
  }

  .contact-aside {
    display: block;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 56px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-legal-links {
    justify-content: flex-start;
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
  }
}

@media (max-width: 380px) {
  html {
    scroll-padding-top: 96px;
  }

  [id] {
    scroll-margin-top: 96px;
  }

  .header-inner {
    gap: 8px;
  }

  .brand-lockup {
    gap: 8px;
  }

  .brand-copy strong {
    font-size: 0.86rem;
  }

  .brand-copy small {
    display: none;
  }

  .mobile-menu summary {
    min-width: 64px;
    padding-inline: 9px;
  }
}

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

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

@media print {
  .site-header,
  .site-footer,
  .floating-contact,
  .hero-actions,
  .final-cta {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section {
    padding: 36px 0;
  }
}
