:root {
  --green-950: #102c24;
  --green-900: #173d31;
  --green-800: #245443;
  --green-700: #356b57;
  --green-100: #dce8e1;
  --gold-600: #a78343;
  --gold-500: #c3a164;
  --gold-200: #eadcbc;
  --cream-50: #fcfaf5;
  --cream-100: #f4efe4;
  --cream-200: #e9e0cf;
  --ink: #1c2622;
  --muted: #5d6964;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 44, 36, 0.13);
  --shadow-soft: 0 12px 36px rgba(16, 44, 36, 0.09);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-50);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green-950);
  transform: translateY(-150%);
}

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

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

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(16, 44, 36, 0.08);
  background: rgba(252, 250, 245, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 9px;
  color: var(--green-900);
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-sub {
  color: var(--gold-600);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  color: var(--green-950);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--gold-600);
}

.main-nav .nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green-900);
}

.main-nav .nav-cta:hover {
  color: var(--white);
  background: var(--green-800);
}

.menu-button {
  display: none;
  width: 45px;
  height: 45px;
  padding: 0;
  border: 1px solid var(--green-100);
  border-radius: 50%;
  color: var(--green-900);
  background: transparent;
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  content: "";
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.menu-button[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.announcement {
  padding: 9px 20px;
  color: var(--green-950);
  background: var(--gold-200);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 98px;
  background:
    radial-gradient(circle at 85% 18%, rgba(195, 161, 100, 0.27), transparent 27%),
    radial-gradient(circle at 4% 90%, rgba(53, 107, 87, 0.17), transparent 30%),
    linear-gradient(135deg, #fcfaf5 0%, #f2ecdf 100%);
}

.hero::after {
  position: absolute;
  right: -170px;
  bottom: -220px;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(167, 131, 67, 0.28);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.hero-copy {
  min-width: 0;
}

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

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

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.12;
}

h1 {
  max-width: 800px;
  margin-bottom: 25px;
  font-size: clamp(45px, 6.2vw, 78px);
  letter-spacing: -0.035em;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4.4vw, 54px);
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 12px;
  font-size: 25px;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 0 31px;
  color: var(--muted);
  font-size: 19px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--green-900);
  box-shadow: 0 12px 26px rgba(23, 61, 49, 0.2);
}

.button-primary:hover {
  background: var(--green-800);
}

.button-secondary {
  border-color: var(--green-100);
  color: var(--green-900);
  background: rgba(255, 255, 255, 0.65);
}

.button-secondary:hover {
  background: var(--white);
}

.hero-visual {
  position: relative;
}

.logo-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(167, 131, 67, 0.2);
  border-radius: 46% 46% 28px 28px;
  background: #efe9dc;
  box-shadow: var(--shadow);
}

.logo-card img {
  width: 100%;
  min-height: 350px;
  object-fit: cover;
}

.floating-note {
  position: absolute;
  right: -25px;
  bottom: 26px;
  max-width: 235px;
  padding: 17px 19px;
  border: 1px solid rgba(167, 131, 67, 0.22);
  border-radius: 16px;
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
  font-size: 14px;
  font-weight: 700;
}

.trust-strip {
  position: relative;
  z-index: 5;
  margin-top: -35px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.trust-item {
  padding: 23px 28px;
}

.trust-item + .trust-item {
  border-left: 1px solid var(--cream-200);
}

.trust-item strong {
  display: block;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-weight: 600;
}

.trust-item span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 68px 0;
}

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

.section-dark {
  color: rgba(255, 255, 255, 0.78);
  background: var(--green-950);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

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

.section-heading {
  max-width: 720px;
  margin-bottom: 43px;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

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

.card {
  position: relative;
  min-height: 100%;
  padding: 31px;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(16, 44, 36, 0.05);
}

.card-number,
.icon-disc {
  display: inline-grid;
  width: 43px;
  height: 43px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--green-900);
  background: var(--gold-200);
  font-size: 14px;
  font-weight: 900;
}

.card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.card-link {
  color: var(--green-800);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.card-link:hover {
  color: var(--gold-600);
}

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(42px, 8vw, 100px);
}

.portrait-placeholder {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 45% 36%, rgba(234, 220, 188, 0.8), transparent 18%),
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.5), transparent 30%),
    linear-gradient(150deg, var(--green-800), var(--green-950));
  box-shadow: var(--shadow);
}

.portrait-placeholder::before,
.portrait-placeholder::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.portrait-placeholder::before {
  top: 70px;
  left: 50%;
  width: 180px;
  height: 180px;
  transform: translateX(-50%);
}

.portrait-placeholder::after {
  bottom: -100px;
  left: 50%;
  width: 390px;
  height: 390px;
  transform: translateX(-50%);
}

.portrait-copy {
  position: absolute;
  right: 38px;
  bottom: 38px;
  left: 38px;
  z-index: 2;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(16, 44, 36, 0.72);
  backdrop-filter: blur(12px);
}

.portrait-copy strong {
  display: block;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.check-list,
.plain-list {
  margin: 25px 0 31px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 12px 0;
  padding-left: 31px;
}

.check-list li::before {
  position: absolute;
  top: 0.2em;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green-700);
  content: "✓";
  font-size: 11px;
  font-weight: 900;
}

.plain-list li {
  padding: 9px 0;
  border-bottom: 1px solid var(--cream-200);
}

.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}

.map-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(40deg, transparent 46%, rgba(255, 255, 255, 0.65) 47%, rgba(255, 255, 255, 0.65) 52%, transparent 53%),
    linear-gradient(-25deg, transparent 44%, rgba(255, 255, 255, 0.42) 45%, rgba(255, 255, 255, 0.42) 49%, transparent 50%),
    var(--green-100);
}

.map-card::before {
  position: absolute;
  top: 42%;
  left: 52%;
  width: 34px;
  height: 34px;
  border: 7px solid var(--gold-500);
  border-radius: 50% 50% 50% 0;
  content: "";
  background: var(--white);
  box-shadow: 0 8px 20px rgba(16, 44, 36, 0.25);
  transform: rotate(-45deg);
}

.map-label {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  padding: 22px;
  border-radius: 15px;
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.map-label strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.info-panel {
  padding: 36px;
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, 0.78);
  background: var(--green-900);
}

.info-panel h3 {
  color: var(--white);
}

.info-row {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.info-row:last-of-type {
  border-bottom: 0;
}

.info-row strong {
  display: block;
  color: var(--gold-200);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

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

.faq-list summary {
  position: relative;
  padding: 24px 50px 24px 0;
  color: var(--green-950);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 600;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 3px;
  content: "+";
  color: var(--gold-600);
  font-family: system-ui, sans-serif;
  font-size: 26px;
  font-weight: 400;
}

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

.faq-list details p {
  max-width: 760px;
  margin: -5px 0 25px;
  color: var(--muted);
}

.cta-band {
  padding: 74px 0;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 88% 50%, rgba(195, 161, 100, 0.2), transparent 25%),
    var(--green-950);
}

.cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta-grid h2 {
  max-width: 690px;
  margin-bottom: 12px;
  color: var(--white);
}

.cta-grid p {
  max-width: 640px;
  margin: 0;
}

.cta-grid .button-primary {
  color: var(--green-950);
  background: var(--gold-200);
  box-shadow: none;
  white-space: nowrap;
}

.page-hero {
  padding: 78px 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(195, 161, 100, 0.24), transparent 30%),
    var(--cream-100);
}

.page-hero h1 {
  max-width: 890px;
  font-size: clamp(42px, 6vw, 68px);
}

.page-hero p:not(.eyebrow) {
  max-width: 750px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 19px;
}

.breadcrumb {
  margin-bottom: 35px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb a {
  color: var(--green-800);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
  gap: 70px;
}

.prose h2 {
  margin-top: 55px;
  font-size: clamp(31px, 4vw, 44px);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: 38px;
}

.prose p,
.prose li {
  color: #48554f;
}

.prose li + li {
  margin-top: 9px;
}

.prose-note {
  margin: 35px 0;
  padding: 25px 27px;
  border-left: 4px solid var(--gold-500);
  border-radius: 0 14px 14px 0;
  background: var(--cream-100);
}

.sidebar {
  position: sticky;
  top: 110px;
  padding: 28px;
  border: 1px solid var(--cream-200);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.sidebar h2 {
  margin-bottom: 12px;
  font-size: 28px;
}

.sidebar p {
  color: var(--muted);
  font-size: 15px;
}

.sidebar .button {
  width: 100%;
}

.legal-copy h2 {
  margin-top: 45px;
  font-size: 32px;
}

.legal-copy h3 {
  margin-top: 30px;
  font-family: inherit;
  font-size: 19px;
  font-weight: 800;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
}

.site-footer {
  padding: 65px 0 25px;
  color: rgba(255, 255, 255, 0.7);
  background: #0c231c;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1fr;
  gap: 65px;
  padding-bottom: 45px;
}

.footer-brand {
  margin-bottom: 16px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.footer-title {
  margin-bottom: 15px;
  color: var(--gold-200);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin: 8px 0;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  color: var(--white);
  background: #1c8754;
  box-shadow: 0 12px 30px rgba(16, 44, 36, 0.3);
  font-size: 0;
  text-decoration: none;
}

.whatsapp-float::before {
  content: "WA";
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 960px) {
  .menu-button {
    display: block;
    flex: 0 0 auto;
  }

  .main-nav {
    position: fixed;
    top: 79px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 26px 20px;
    background: var(--cream-50);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--cream-200);
    font-size: 17px;
  }

  .main-nav .nav-cta {
    margin-top: 18px;
    padding: 14px 18px;
    text-align: center;
  }

  .hero-grid,
  .split,
  .location-grid,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    width: min(100%, 580px);
    margin-inline: auto;
  }

  .floating-note {
    right: 18px;
  }

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

  .content-layout {
    gap: 45px;
  }

  .sidebar {
    position: static;
  }
}

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

  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    min-height: 70px;
  }

  .main-nav {
    top: 71px;
  }

  .brand-mark {
    font-size: 25px;
  }

  .brand-sub {
    display: none;
  }

  .announcement {
    padding-inline: 14px;
    font-size: 12px;
  }

  .hero,
  .page-hero {
    padding: 58px 0 70px;
  }

  .hero-grid {
    gap: 45px;
  }

  h1 {
    font-size: clamp(39px, 12vw, 50px);
  }

  .hero-copy > p:not(.eyebrow),
  .page-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .logo-card img {
    min-height: 250px;
  }

  .floating-note {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    margin: -22px 16px 0;
  }

  .trust-strip {
    margin-top: -22px;
  }

  .trust-grid,
  .cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-item + .trust-item {
    border-top: 1px solid var(--cream-200);
    border-left: 0;
  }

  .section {
    padding: 72px 0;
  }

  .section-sm {
    padding: 52px 0;
  }

  .card {
    padding: 25px;
  }

  .portrait-placeholder {
    min-height: 470px;
  }

  .map-card {
    min-height: 350px;
  }

  .info-panel {
    padding: 27px;
  }

  .cta-grid,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-grid .button {
    width: 100%;
  }

  .footer-grid {
    gap: 37px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
  }
}

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