:root {
  --forest-950: #071d18;
  --forest-900: #0a2b24;
  --forest-800: #104438;
  --forest-700: #1d5c4c;
  --forest-100: #dfe9e3;
  --ivory: #f7f5ef;
  --ivory-deep: #efede5;
  --paper: #fffefa;
  --ink: #102d26;
  --muted: #65736d;
  --gold: #c9ad70;
  --gold-light: #e3d4aa;
  --line: rgba(16, 68, 56, .14);
  --shadow: 0 26px 80px rgba(7, 29, 24, .12);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', Arial, sans-serif;
  --max: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 80% 10%, rgba(201,173,112,.09), transparent 26%);
}
p, h1, h2, h3 { margin: 0; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
button, a, input, textarea, select, summary { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}
[hidden] { display: none !important; }
.skip {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 1000;
  padding: 12px 18px;
  background: var(--paper);
  border-radius: 10px;
}
.skip:focus { top: 16px; }

header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 max(5.5%, calc((100vw - var(--max)) / 2));
  background: rgba(247,245,239,.88);
  border-bottom: 1px solid rgba(16,68,56,.09);
  backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand-logo { width: 40px; height: 40px; object-fit: contain; display: block; flex: 0 0 auto; }
.brand-name {
  font-family: 'Manrope', Arial, sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .13em;
  line-height: 1.25;
  white-space: nowrap;
}
.brand-name small {
  display: block;
  margin-top: 4px;
  font-family: var(--sans);
  font-size: .5rem;
  font-weight: 500;
  letter-spacing: .15em;
  color: var(--muted);
}
header nav { display: flex; align-items: center; gap: clamp(18px, 2vw, 32px); font-size: .8rem; }
header nav > a { position: relative; }
header nav > a:not(.nav-contact)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--forest-700);
  transition: right .25s ease;
}
header nav > a:hover::after { right: 0; }
.nav-contact {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  min-height: 40px;
  padding: 7px 16px;
  border: 1px solid rgba(16,68,56,.25);
  border-radius: 999px;
  transition: color .25s, background .25s, transform .25s;
}
.nav-contact:hover { color: var(--paper); background: var(--forest-900); transform: translateY(-2px); }
.menu-toggle { display: none; border: 0; background: none; color: var(--ink); }
#mobile-nav {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 99;
  display: grid;
  gap: 8px;
  padding: 18px 6% 28px;
  background: rgba(247,245,239,.98);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}
#mobile-nav a { padding: 10px 0; }

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(760px, calc(100svh - 70px));
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
  padding: 54px max(5.5%, calc((100vw - var(--max)) / 2)) 72px;
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 78% 35%, rgba(73,129,106,.34), transparent 33%),
    linear-gradient(135deg, var(--forest-950), var(--forest-800));
}
.hero::before {
  content: '';
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  left: -300px;
  bottom: -320px;
  border: 1px solid rgba(227,212,170,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(227,212,170,.025), 0 0 0 180px rgba(227,212,170,.02);
}
.hero-copy { position: relative; z-index: 2; max-width: 700px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-size: .71rem;
  font-weight: 600;
  letter-spacing: .18em;
  line-height: 1.5;
}
.mini-globe { font-size: 1.45rem; line-height: 1; }
h1, h2 { font-family: var(--serif); font-weight: 400; }
h1 {
  max-width: 760px;
  margin: 28px 0 24px;
  font-size: clamp(3.1rem, 5.4vw, 5.15rem);
  line-height: 1.01;
  letter-spacing: -.045em;
}
h1 em, h2 em { color: var(--gold-light); font-weight: 400; }
.hero-lead { max-width: 470px; font-size: 1.2rem; line-height: 1.5; }
.hero-description { max-width: 520px; margin-top: 12px; color: rgba(239,246,241,.7); font-size: 1rem; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 600;
  transition: transform .25s, background .25s, box-shadow .25s;
}
.button span { font-size: 1.15rem; line-height: 1; }
.button:hover { transform: translateY(-3px); }
.button-light { color: var(--forest-950); background: var(--paper); box-shadow: 0 12px 40px rgba(0,0,0,.15); }
.button-light:hover { background: var(--gold-light); box-shadow: 0 18px 45px rgba(0,0,0,.2); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.3);
  font-size: .86rem;
}
.text-link span { transition: transform .25s; }
.text-link:hover span { transform: translate(3px, -3px); }
.hero-foot {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 42px;
  color: rgba(227,237,230,.58);
  font-size: .7rem;
  letter-spacing: .12em;
}
.hero-foot i { width: 3px; height: 3px; background: var(--gold); border-radius: 50%; }
.hero-art { position: relative; min-width: 0; }
.hero-art::before {
  content: '';
  position: absolute;
  top: -25px;
  right: -25px;
  width: 90%;
  height: 90%;
  border: 1px solid rgba(227,212,170,.25);
  border-radius: 240px 240px 28px 28px;
}
.art-frame {
  position: relative;
  height: 570px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 240px 240px 28px 28px;
  background: var(--forest-800);
  box-shadow: 0 36px 80px rgba(0,0,0,.27);
}
.art-frame img { width: 100%; height: 100%; display: block; object-fit: cover; }
.portrait-frame img { object-position: center 13%; transform: scale(1.015); }
.portrait-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(7,29,24,.56), transparent 34%);
}
.architecture-label {
  position: absolute;
  z-index: 1;
  left: 24px;
  bottom: 22px;
  padding: 8px 14px;
  color: var(--paper);
  background: rgba(7,29,24,.48);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  font-size: .62rem;
  letter-spacing: .13em;
}
.image-caption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  color: rgba(230,239,233,.65);
  font-size: .76rem;
}
.image-caption span:last-child { letter-spacing: .1em; }

.jurisdiction {
  position: relative;
  z-index: 4;
  max-width: 1060px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: -34px auto 0;
  padding: 24px 30px;
  color: #51615b;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
  font-size: .8rem;
}
.jurisdiction > span { color: var(--gold); font-size: 1.55rem; line-height: 1; }
.jurisdiction p { max-width: 900px; }

.section { padding: 112px max(5.5%, calc((100vw - var(--max)) / 2)); }
h2 {
  font-size: clamp(2.6rem, 4.2vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
h2 em { color: #557c68; }
.eyebrow.dark { margin-bottom: 23px; color: #60766a; }
.dark-link { margin-top: 8px; color: var(--ink); border-color: rgba(16,68,56,.25); }
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
  padding-top: 130px;
}
.intro h2 { font-size: clamp(2.6rem, 4vw, 4.2rem); }
.intro-copy { position: relative; padding: 16px 0 16px 36px; border-left: 1px solid var(--gold); }
.intro-copy p { margin-bottom: 18px; color: var(--muted); font-size: 1rem; }
.intro-copy p:first-child { color: var(--ink); font-size: 1.2rem; line-height: 1.55; }

.areas { background: #e9eee9; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 45px; margin-bottom: 48px; }
.section-heading > p { max-width: 300px; padding-bottom: 8px; color: var(--muted); }
.area-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.area-card {
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  padding: 36px;
  overflow: hidden;
  background: rgba(255,254,250,.83);
  border: 1px solid rgba(16,68,56,.1);
  border-radius: 28px;
  box-shadow: 0 8px 30px rgba(7,29,24,.035);
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.area-card::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  right: -110px;
  top: -110px;
  border: 1px solid rgba(201,173,112,.28);
  border-radius: 50%;
  transition: transform .35s;
}
.area-card:hover { transform: translateY(-6px); border-color: rgba(16,68,56,.25); box-shadow: 0 22px 60px rgba(7,29,24,.1); }
.area-card:hover::before { transform: scale(1.35); }
.card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 28px; }
.card-top svg { width: 40px; height: 40px; fill: none; stroke: var(--forest-700); stroke-width: 1.15; }
.card-top > span { color: #829087; font-family: var(--serif); font-size: 1.05rem; }
.area-card h3 { max-width: 430px; font-family: var(--serif); font-size: 2rem; font-weight: 400; line-height: 1.15; }
.area-card > p { max-width: 500px; margin: 18px 0; color: var(--muted); }
.area-card ul { display: flex; flex-wrap: wrap; gap: 8px; margin: 2px 0 22px; padding: 0; list-style: none; }
.area-card li { padding: 7px 11px; color: #405b50; background: #edf2ed; border-radius: 999px; font-size: .79rem; }
.area-details { margin-bottom: 22px; color: var(--muted); font-size: .82rem; }
.area-details summary { display: flex; justify-content: space-between; padding: 9px 0; cursor: pointer; border-bottom: 1px solid var(--line); }
.area-details summary::-webkit-details-marker, .faq-items summary::-webkit-details-marker { display: none; }
.area-details p { padding-top: 12px; }
.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: .84rem;
  font-weight: 600;
}
.card-link span { font-size: 1.15rem; transition: transform .25s; }
.card-link:hover span { transform: translate(4px,-4px); }
.section-note { max-width: 700px; margin: 30px auto 0; text-align: center; color: var(--muted); font-size: .78rem; }

.remote {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(60px, 10vw, 150px);
  overflow: hidden;
  color: var(--paper);
  background: var(--forest-950);
}
.remote::after {
  content: '';
  position: absolute;
  right: -180px;
  bottom: -240px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(201,173,112,.15);
  border-radius: 50%;
}
.remote-title, .remote-content { position: relative; z-index: 1; }
.remote h2 em, .contact h2 em { color: var(--gold-light); }
.remote-title > p { max-width: 390px; margin-top: 25px; color: rgba(229,238,232,.68); }
.remote .button { margin-top: 30px; }
.remote-content {
  padding: 34px 38px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  backdrop-filter: blur(10px);
}
.remote-intro { color: rgba(243,247,244,.86); font-size: 1.05rem; }
.analysis-list { margin: 22px 0; padding: 0; list-style: none; counter-reset: analysis; }
.analysis-list li {
  counter-increment: analysis;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  color: rgba(244,248,245,.85);
}
.analysis-list li::before { content: '0' counter(analysis); color: var(--gold); font-size: .7rem; letter-spacing: .08em; }
.remote-note { color: rgba(222,234,226,.58); font-size: .77rem; }

.process { text-align: center; background: var(--paper); }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 64px; text-align: left; }
.steps article { position: relative; padding: 25px 24px 12px; border-top: 1px solid var(--line); }
.steps article::before { content: ''; position: absolute; top: -5px; left: 24px; width: 9px; height: 9px; background: var(--paper); border: 2px solid var(--gold); border-radius: 50%; }
.steps article > span { color: #8a9a91; font-family: var(--serif); font-size: 2rem; }
.steps h3 { min-height: 48px; margin: 18px 0 12px; font-size: 1rem; font-weight: 600; line-height: 1.4; }
.steps p { color: var(--muted); font-size: .88rem; }

.about { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(60px, 10vw, 150px); align-items: center; background: var(--ivory-deep); }
.about-signature { position: relative; min-height: 620px; overflow: hidden; border-radius: 34px; box-shadow: var(--shadow); }
.about-signature > img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: center 42%; }
.about-signature::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,29,24,.76), transparent 62%); }
.signature-card {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: 'mark name' 'mark role';
  column-gap: 20px;
  align-items: center;
  padding: 20px;
  color: var(--paper);
  background: rgba(7,29,24,.65);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  backdrop-filter: blur(12px);
}
.about-monogram { grid-area: mark; color: var(--paper); font-family: var(--serif); font-size: 3rem; letter-spacing: -.15em; line-height: 1; padding-right: .12em; }
.about-monogram span { color: var(--gold); }
.signature-line { display: none; }
.signature-card > span:not(.about-monogram) { grid-area: name; font-size: .72rem; font-weight: 600; letter-spacing: .12em; }
.signature-card small { grid-area: role; color: rgba(238,245,240,.65); font-size: .62rem; letter-spacing: .11em; }
.about-copy h3 { margin-top: 30px; font-size: 1.12rem; font-weight: 600; }
.about-copy p { margin-top: 17px; color: var(--muted); }
.about-copy .text-link { margin-top: 26px; }

.worldwide { position: relative; text-align: center; background: var(--paper); }
.worldwide-heading p { max-width: 700px; margin: 24px auto 38px; color: var(--muted); }
.country-list { max-width: 900px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: auto; }
.country-list > span { padding: 10px 17px; color: #456157; background: #f1f4f0; border: 1px solid rgba(16,68,56,.1); border-radius: 999px; font-size: .84rem; }
.country-list .other-country { color: var(--paper); background: var(--forest-800); }
.worldwide-note { max-width: 900px; margin: 36px auto 0; color: #738078; font-size: .76rem; }

.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 9vw, 130px); align-items: start; }
  .faq-heading { position: sticky; top: 96px; }
.faq-heading > p { max-width: 390px; margin-top: 24px; color: var(--muted); }
.faq-items { border-top: 1px solid var(--line); }
.faq-items details { border-bottom: 1px solid var(--line); }
.faq-items summary { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 24px 0; cursor: pointer; font-weight: 600; line-height: 1.5; }
.faq-items summary span { flex: 0 0 auto; width: 30px; height: 30px; display: grid; place-items: center; color: var(--forest-800); background: #e6ece7; border-radius: 50%; font-size: 1.2rem; font-weight: 400; transition: transform .25s; }
.faq-items details[open] summary span { transform: rotate(45deg); }
.faq-items details > p { max-width: 700px; padding: 0 48px 25px 0; color: var(--muted); }

.contact {
  position: relative;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(50px, 8vw, 120px);
  color: var(--paper);
  background:
    radial-gradient(circle at 0 100%, rgba(201,173,112,.16), transparent 30%),
    linear-gradient(145deg, var(--forest-950), var(--forest-800));
}
.contact-copy > p { max-width: 400px; margin: 25px 0; color: rgba(231,239,234,.7); }
.contact-channels { display: flex; flex-direction: column; gap: 6px; margin-top: 16px; color: rgba(240,246,242,.76); font-size: .8rem; }
.contact-channels a { width: fit-content; border-bottom: 1px solid transparent; overflow-wrap: anywhere; }
.contact-channels a:hover { border-color: rgba(255,255,255,.5); }
.contact-sign { display: flex; flex-direction: column; gap: 4px; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); }
.contact-sign strong { font-family: var(--serif); font-size: 1.45rem; font-weight: 400; }
.contact-sign span { color: rgba(231,239,234,.6); font-size: .75rem; }
form {
  min-width: 0;
  padding: 38px;
  color: var(--ink);
  background: var(--paper);
  border-radius: 28px;
  box-shadow: 0 35px 80px rgba(0,0,0,.2);
}
form h3 { font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.form-intro { margin: 3px 0 22px; color: var(--muted); }
.preview-notice { margin-bottom: 24px; padding: 13px 15px; color: #4e6258; background: #edf2ed; border-radius: 10px; font-size: .76rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
form label:not(.consent) { display: block; margin-bottom: 17px; font-size: .78rem; font-weight: 600; }
input:not([type=checkbox]), select, textarea {
  width: 100%;
  min-width: 0;
  display: block;
  margin-top: 7px;
  padding: 12px 13px;
  color: var(--ink);
  background: #f8f8f4;
  border: 1px solid rgba(16,68,56,.14);
  border-radius: 10px;
  font-size: .9rem;
  line-height: 1.5;
  transition: border-color .2s, box-shadow .2s;
}
input:focus, select:focus, textarea:focus { border-color: var(--forest-700); box-shadow: 0 0 0 3px rgba(29,92,76,.1); outline: 0; }
input::placeholder, textarea::placeholder { color: #8a958f; }
textarea { min-height: 110px; resize: vertical; }
.consent { display: flex; align-items: flex-start; gap: 11px; margin: 7px 0 22px; color: #5d6b64; font-size: .73rem; line-height: 1.6; }
.consent input { flex: 0 0 auto; width: 17px; height: 17px; margin-top: 3px; accent-color: var(--forest-800); }
.inline-button { padding: 0; color: inherit; background: none; border: 0; border-bottom: 1px solid; }
.button-green { width: 100%; justify-content: space-between; color: var(--paper); background: var(--forest-800); }
.button-green:hover { background: var(--forest-950); box-shadow: 0 14px 35px rgba(7,29,24,.2); }
.form-status { margin-top: 10px; font-size: .78rem; }
.form-footnote { margin-top: 14px; text-align: center; color: #7c8881; font-size: .68rem; }

/* Inline SVG arrows avoid emoji rendering on mobile browsers. */
:is(.nav-contact, .button, .text-link, .card-link, .back-top) > span,
.country-list .other-country > span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  overflow: hidden;
  color: inherit;
  vertical-align: middle;
}
:is(.nav-contact, .button, .text-link, .card-link, .back-top) > span > svg,
.country-list .other-country > span > svg {
  width: 100%;
  height: 100%;
}

footer { padding: 50px max(5.5%, calc((100vw - var(--max)) / 2)) 25px; background: var(--ivory-deep); }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.back-top { font-size: .75rem; }
.footer-legal { display: grid; grid-template-columns: .9fr 1.3fr; gap: 10%; padding: 30px 0; color: #68766f; font-size: .74rem; }
.footer-legal strong { color: #3f574d; font-weight: 600; }
.footer-legal a { overflow-wrap: anywhere; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 22px; border-top: 1px solid var(--line); color: #748078; font-size: .7rem; }
.footer-bottom > div { display: flex; gap: 22px; }
.footer-bottom button { padding: 0; color: inherit; background: none; border: 0; font: inherit; }

dialog { width: min(650px, calc(100% - 32px)); max-height: 85vh; padding: 34px; color: var(--ink); background: var(--paper); border: 0; border-radius: 24px; box-shadow: var(--shadow); }
dialog::backdrop { background: rgba(7,29,24,.76); backdrop-filter: blur(6px); }
.dialog-top { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.dialog-top .eyebrow { margin: 0; }
.close-dialog { width: 40px; height: 40px; display: grid; place-items: center; padding: 0; color: var(--ink); background: #edf2ed; border: 0; border-radius: 50%; font-size: 1.55rem; }
dialog h2 { margin-bottom: 18px; font-size: 2.2rem; }
dialog p { margin-top: 15px; color: var(--muted); font-size: .9rem; }

.js-ready .reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
.js-ready .reveal.is-visible { opacity: 1; transform: none; }
.area-card:nth-child(2), .steps article:nth-child(2) { transition-delay: .07s; }
.area-card:nth-child(3), .steps article:nth-child(3) { transition-delay: .14s; }
.area-card:nth-child(4), .steps article:nth-child(4) { transition-delay: .21s; }
.steps article:nth-child(5) { transition-delay: .28s; }

/* ---- Design polish enhancements ---- */
header {
  height: 76px;
  background: rgba(247,245,239,.92);
  box-shadow: 0 1px 0 rgba(16,68,56,.06), 0 4px 20px rgba(7,29,24,.04);
}
.brand-name { letter-spacing: .14em; }
.brand-name small { letter-spacing: .16em; }
.nav-contact {
  gap: 10px;
  background: rgba(16,68,56,.04);
  border: 1px solid rgba(16,68,56,.14);
}
.nav-contact:hover { background: var(--forest-900); color: var(--paper); }
.mini-globe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  color: var(--gold-light);
}
.mini-globe svg { width: 100%; height: 100%; }
.hero::before {
  border-color: rgba(227,212,170,.28);
  box-shadow: 0 0 0 110px rgba(227,212,170,.03), 0 0 0 220px rgba(227,212,170,.015);
}
.art-frame {
  border-radius: 260px 260px 32px 32px;
  box-shadow: 0 40px 90px rgba(0,0,0,.32);
}
.architecture-label {
  background: rgba(7,29,24,.55);
  border-color: rgba(255,255,255,.22);
  letter-spacing: .14em;
}
.jurisdiction {
  border-radius: 22px;
  gap: 18px;
  box-shadow: 0 22px 60px rgba(7,29,24,.1);
}
.jurisdiction > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(201,173,112,.12);
  border-radius: 50%;
  flex: 0 0 auto;
}
.area-card {
  border-radius: 30px;
  box-shadow: 0 10px 36px rgba(7,29,24,.04);
}
.area-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.area-card:hover::after { opacity: 1; }
.area-card:hover { transform: translateY(-8px); }
.card-top svg {
  padding: 12px;
  background: rgba(16,68,56,.06);
  border-radius: 50%;
}
.card-top > span {
  font-size: .95rem;
  letter-spacing: .05em;
  color: #9aa89f;
}
.area-details summary { align-items: center; }
.area-details summary span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  background: #edf2ed;
  border-radius: 50%;
  color: var(--forest-800);
  transition: transform .25s ease;
}
.area-details[open] summary span { transform: rotate(180deg); }
.steps article::before {
  width: 11px;
  height: 11px;
  border-width: 2px;
  border-color: var(--gold);
  background: var(--paper);
  box-shadow: 0 0 0 5px rgba(201,173,112,.12);
  transition: transform .25s ease, background .25s ease;
}
.steps article:hover::before {
  transform: scale(1.25);
  background: var(--gold);
}
.steps article > span { color: var(--gold); }
.faq-items summary span {
  background: #edf2ed;
  transition: transform .25s ease, background .25s ease;
}
.faq-items details[open] summary span { transform: rotate(180deg); background: var(--forest-100); }
.faq-items summary:hover span { background: #e1ebe4; }
form { box-shadow: 0 42px 100px rgba(0,0,0,.18); }
input:not([type=checkbox]), select, textarea {
  background: #fbfbf8;
  border: 1px solid rgba(16,68,56,.12);
  box-shadow: inset 0 1px 2px rgba(0,0,0,.03);
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,173,112,.15), inset 0 1px 2px rgba(0,0,0,.03);
}
input:not([type=checkbox]):invalid:not(:placeholder-shown),
textarea:invalid:not(:placeholder-shown) { border-color: #b23b3b; }
input:not([type=checkbox]):focus:invalid,
textarea:focus:invalid { box-shadow: 0 0 0 4px rgba(178,59,59,.10); }
.button-green {
  background: linear-gradient(135deg, var(--forest-700) 0%, var(--forest-900) 100%);
}
.button-green:hover {
  background: linear-gradient(135deg, var(--forest-900) 0%, var(--forest-950) 100%);
  box-shadow: 0 16px 40px rgba(7,29,24,.22);
}
footer {
  border-top: 1px solid rgba(16,68,56,.08);
  padding-top: 60px;
}
.back-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background .25s ease, color .25s ease;
}
.back-top:hover {
  background: rgba(16,68,56,.07);
  color: var(--forest-900);
}
.button:hover span,
.card-link:hover span,
.nav-contact:hover span,
.text-link:hover span {
  transform: translate(3px, -3px);
}
.hero-actions .text-link:hover span { transform: translate(0, 3px); }
.close-dialog { display: grid; place-items: center; }
.close-dialog svg { width: 18px; height: 18px; }
.menu-toggle span { display: inline-flex; align-items: center; }
.menu-toggle svg { width: 18px; height: 18px; }

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 28px rgba(37,211,102,.4), 0 4px 12px rgba(0,0,0,.15);
  transition: transform .25s ease, box-shadow .25s ease;
}
.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 36px rgba(37,211,102,.5), 0 6px 16px rgba(0,0,0,.18);
}
.whatsapp-float svg { width: 28px; height: 28px; }

@media (max-width: 1080px) {
  header nav { gap: 20px; }
  header nav > a:not(.nav-contact) { display: none; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(340px, .78fr); gap: 42px; }
  .art-frame { height: 520px; }
  .steps { grid-template-columns: repeat(3, 1fr); row-gap: 32px; }
  .about, .contact { gap: 60px; }
  .about-signature { min-height: 560px; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 66px; }
  header { height: 62px; padding-inline: 5%; }
  .brand { gap: 10px; }
  .brand-logo { width: 34px; height: 34px; }
  .brand-name { font-size: .7rem; letter-spacing: .09em; }
  .brand-name small { max-width: 190px; font-size: .46rem; letter-spacing: .08em; white-space: normal; }
  header nav { display: none; }
  .menu-toggle { display: flex; align-items: center; gap: 8px; padding: 8px 0 8px 8px; font-size: .72rem; }
  .menu-toggle span { font-size: 1.1rem; }
  #mobile-nav { top: 62px; }
  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 54px 6% 44px;
  }
  .hero::before { display: none; }
  h1 { margin-top: 22px; font-size: clamp(2.65rem, 12vw, 4rem); line-height: 1.02; }
  .hero-lead { font-size: 1.08rem; }
  .hero-description { font-size: .94rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 14px; margin-top: 28px; }
  .hero-actions .button { width: 100%; justify-content: space-between; }
  .hero-foot { margin-top: 30px; font-size: .62rem; }
  .hero-art { width: 100%; max-width: 520px; margin: auto; }
  .hero-art::before { top: -12px; right: -12px; }
  .art-frame { height: min(510px, 125vw); border-radius: 190px 190px 22px 22px; }
  .architecture-label { left: 15px; bottom: 15px; font-size: .55rem; }
  .image-caption { font-size: .68rem; }
  .jurisdiction { align-items: flex-start; margin: 0; padding: 22px 6%; border-width: 0 0 1px; border-radius: 0; box-shadow: none; }
  .section { padding: 78px 6%; }
  h2 { font-size: clamp(2.35rem, 10vw, 3.4rem); }
  .intro, .remote, .about, .faq, .contact { grid-template-columns: 1fr; gap: 42px; }
  .intro { padding-top: 84px; }
  .intro-copy { padding: 4px 0 4px 22px; }
  .section-heading { display: block; margin-bottom: 30px; }
  .section-heading > p { margin-top: 18px; }
  .area-grid { grid-template-columns: 1fr; }
  .area-card { min-height: 0; padding: 28px 24px; border-radius: 22px; }
  .area-card h3 { font-size: 1.7rem; }
  .remote-content { padding: 26px 22px; border-radius: 22px; }
  .steps { grid-template-columns: 1fr; gap: 24px; margin-top: 42px; }
  .steps article { display: grid; grid-template-columns: 44px 1fr; column-gap: 14px; padding: 18px 0 0; }
  .steps article::before { left: 0; }
  .steps article > span { grid-row: span 2; font-size: 1.7rem; }
  .steps h3 { min-height: 0; margin: 3px 0 8px; }
  .steps p { grid-column: 2; }
  .process { text-align: left; }
  .section-note { text-align: left; }
  .about-signature { min-height: 470px; border-radius: 24px; }
  .signature-card { left: 14px; right: 14px; bottom: 14px; }
  .faq-heading { position: static; }
  .faq-items summary { font-size: .94rem; }
  .contact { gap: 38px; }
  .contact-sign { margin-top: 32px; }
  form { padding: 26px 20px; border-radius: 22px; }
  .form-grid { grid-template-columns: 1fr; }
  input:not([type=checkbox]), select, textarea { font-size: 1rem; }
  .footer-top { align-items: flex-start; }
  .footer-top .brand-name { font-size: .7rem; }
  .back-top { max-width: 75px; text-align: right; }
  .footer-legal { grid-template-columns: 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; }
  .footer-bottom > div { flex-wrap: wrap; gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js-ready .reveal { opacity: 1; transform: none; }
}

@media (max-width: 760px) {
  .back-top { max-width: none; text-align: left; }
  .jurisdiction > span { width: 36px; height: 36px; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 48px; height: 48px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
}
