:root {
  --primary: #123b38;
  --primary-deep: #0b2928;
  --secondary: #d9ece2;
  --accent: #d9ad68;
  --background: #f7f7f2;
  --surface: #ffffff;
  --text: #142321;
  --muted: #67736f;
  --line: #dde5df;
  --shadow: 0 24px 70px rgba(18, 59, 56, .1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--text); background: var(--background); font-family: 'DM Sans', sans-serif; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: fixed; left: 16px; top: -60px; background: var(--accent); color: var(--primary-deep); padding: 10px 16px; z-index: 100; }
.skip-link:focus { top: 16px; }
.site-header { position: relative; z-index: 10; background: rgba(247, 247, 242, .94); border-bottom: 1px solid rgba(221,229,223,.75); backdrop-filter: blur(12px); }
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--primary); letter-spacing: -.02em; font-size: 16px; }
.brand strong { font-weight: 700; }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; background: var(--primary); color: var(--accent); font-family: Georgia, serif; font-size: 21px; font-style: italic; border-radius: 50%; }
.site-nav { display: flex; align-items: center; gap: 26px; font-size: 13px; font-weight: 600; color: #4e5c57; }
.site-nav a { transition: color .2s ease; }
.site-nav a:hover, .site-nav a.is-active { color: var(--primary); }
.nav-cta { padding: 12px 18px; border: 1px solid var(--primary); color: var(--primary) !important; border-radius: 2px; }
.nav-cta:hover { background: var(--primary); color: white !important; }
.menu-toggle { display: none; background: transparent; border: 0; color: var(--primary); font-weight: 700; }
.eyebrow { display: block; color: #bd8e4d; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; margin-bottom: 14px; }
h1, h2, h3 { margin: 0 0 18px; font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.12; letter-spacing: -.025em; }
h1 { font-size: clamp(45px, 6.2vw, 80px); }
h2 { font-size: clamp(34px, 4vw, 56px); }
h3 { font-size: 24px; }
p { margin: 0 0 18px; color: var(--muted); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 11px; min-height: 50px; border: 1px solid transparent; padding: 0 20px; cursor: pointer; font-size: 13px; font-weight: 700; transition: transform .2s ease, background .2s ease, color .2s ease, border .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-dark { color: white; background: var(--primary); }
.button-dark:hover { background: var(--primary-deep); }
.button-outline { border-color: var(--primary); color: var(--primary); background: transparent; }
.button-outline:hover { background: var(--primary); color: white; }
.button-light { color: var(--primary); background: var(--secondary); }
.button-wide { width: 100%; }
.hero { min-height: 700px; display: grid; align-items: center; background: var(--primary); color: white; position: relative; overflow: hidden; }
.hero:after { content: ''; position: absolute; inset: 0 0 0 50%; background: linear-gradient(90deg, var(--primary) 0%, rgba(18,59,56,.08) 45%), url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1500&q=85') center/cover; opacity: .82; }
.hero .container { position: relative; z-index: 1; }
.hero-content { max-width: 620px; padding: 96px 0; }
.hero .eyebrow { color: #e0b976; }
.hero h1 { max-width: 600px; }
.hero-copy { max-width: 470px; color: rgba(255,255,255,.76); font-size: 17px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 33px; }
.hero .button-outline { border-color: rgba(255,255,255,.65); color: white; }
.hero .button-outline:hover { background: white; color: var(--primary); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 62px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.68); font-size: 12px; }
.hero-meta strong { color: white; display: block; font-size: 16px; margin-bottom: 2px; }
.section { padding: 110px 0; }
.section-soft { background: #eef2ec; }
.section-dark { background: var(--primary); color: white; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 48px; }
.section-heading > div { max-width: 620px; }
.section-heading p { max-width: 440px; }
.section-dark p { color: rgba(255,255,255,.7); }
.text-link { color: var(--primary); font-size: 13px; font-weight: 700; border-bottom: 1px solid var(--accent); padding-bottom: 4px; white-space: nowrap; }
.requirement-grid, .location-grid, .service-grid, .guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.requirement-card, .location-card, .service-card, .guide-card { background: var(--surface); border: 1px solid var(--line); padding: 28px; min-height: 190px; transition: transform .25s ease, box-shadow .25s ease, border .25s ease; }
.requirement-card:hover, .location-card:hover, .service-card:hover, .guide-card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: var(--shadow); }
.requirement-card .card-number, .location-card .card-number { color: var(--accent); font-size: 12px; font-weight: 700; }
.requirement-card h3, .location-card h3, .service-card h3, .guide-card h3 { margin-top: 38px; margin-bottom: 9px; font-size: 24px; }
.requirement-card p, .location-card p, .service-card p, .guide-card p { font-size: 14px; margin-bottom: 0; }
.location-card { position: relative; min-height: 245px; color: white; overflow: hidden; background: var(--primary); }
.location-card:before { content: ''; position: absolute; inset: 0; background: linear-gradient(145deg, rgba(11,41,40,.2), rgba(11,41,40,.9)); z-index: 0; }
.location-card:nth-child(1) { background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=700&q=75') center/cover; }
.location-card:nth-child(2) { background: url('https://images.unsplash.com/photo-1511818966892-d7d671e672a2?auto=format&fit=crop&w=700&q=75') center/cover; }
.location-card:nth-child(3) { background: url('https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=700&q=75') center/cover; }
.location-card:nth-child(4) { background: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=700&q=75') center/cover; }
.location-card:nth-child(5) { background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=700&q=75') center/cover; }
.location-card:nth-child(6) { background: url('https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=700&q=75') center/cover; }
.location-card > * { position: relative; z-index: 1; }
.location-card h3 { margin-top: 74px; }
.location-card p { color: rgba(255,255,255,.72); }
.location-arrow { position: absolute; right: 24px; bottom: 22px; color: var(--accent); font-size: 22px; }
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border-top: 1px solid rgba(255,255,255,.2); }
.step { padding: 27px 20px 0 0; border-right: 1px solid rgba(255,255,255,.2); margin-right: 20px; }
.step:last-child { border: 0; }
.step-number { color: var(--accent); font-weight: 700; font-size: 13px; }
.step h3 { margin-top: 28px; font-size: 19px; }
.step p { font-size: 13px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.split-image { min-height: 540px; background: center/cover url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1100&q=85'); }
.split-copy { max-width: 500px; }
.check-list { list-style: none; padding: 0; margin: 34px 0; display: grid; gap: 14px; }
.check-list li { display: flex; align-items: flex-start; gap: 13px; font-weight: 600; font-size: 14px; }
.check-list li:before { content: '✓'; color: #b48b4c; font-weight: 700; }
.cta-band { background: var(--accent); padding: 68px 0; }
.cta-band .container { display: flex; justify-content: space-between; align-items: center; gap: 30px; }
.cta-band h2 { color: var(--primary-deep); font-size: clamp(32px, 4vw, 49px); margin-bottom: 9px; }
.cta-band p { color: rgba(11,41,40,.72); }
.form-section { padding: 110px 0; background: #e8eee8; }
.form-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.form-intro { max-width: 430px; }
.form-card { background: white; box-shadow: var(--shadow); padding: 40px; }
.form-card-compact { padding: 30px; }
.form-heading h2 { font-size: 38px; }
.form-heading p { font-size: 14px; }
.lead-form { margin-top: 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lead-form label { color: var(--text); display: grid; gap: 7px; font-size: 12px; font-weight: 700; }
.lead-form label span { color: #bf754a; }
.lead-form input, .lead-form select, .lead-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 0; padding: 13px 14px; background: #fbfcfa; color: var(--text); outline: 0; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(18,59,56,.08); }
.lead-form textarea { resize: vertical; }
.full-span { grid-column: 1 / -1; }
.form-note { font-size: 11px; line-height: 1.5; margin: 19px 0; }
.hp-field { position: absolute; left: -10000px; width: 1px !important; height: 1px; opacity: 0; }
.page-hero { padding: 96px 0 84px; background: var(--primary); color: white; }
.page-hero p { color: rgba(255,255,255,.72); max-width: 610px; font-size: 17px; }
.page-hero h1 { max-width: 730px; }
.page-hero .eyebrow { color: #e0b976; }
.breadcrumb { color: rgba(255,255,255,.55); font-size: 12px; margin-bottom: 24px; }
.breadcrumb a { color: rgba(255,255,255,.82); }
.content-narrow { max-width: 780px; }
.content-narrow p, .article p { font-size: 17px; line-height: 1.8; }
.content-narrow h2, .article h2 { margin-top: 50px; font-size: 36px; }
.article { max-width: 820px; margin: 0 auto; }
.article-meta { color: var(--muted); font-size: 13px; margin-bottom: 34px; }
.article ul { color: var(--muted); font-size: 17px; line-height: 1.8; }
.faq-list { display: grid; gap: 12px; }
.faq-list details { background: white; border: 1px solid var(--line); padding: 20px 24px; }
.faq-list summary { cursor: pointer; font-weight: 700; }
.faq-list p { margin: 15px 0 0; font-size: 14px; }
.site-footer { padding: 76px 0 25px; background: var(--primary-deep); color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.15fr; gap: 38px; padding-bottom: 55px; }
.brand-light { color: white; }
.footer-brand > p { max-width: 300px; color: rgba(255,255,255,.55); font-size: 14px; margin: 20px 0; }
.site-footer h3 { color: white; font-family: 'DM Sans', sans-serif; font-size: 12px; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 19px; }
.site-footer > .container > div:not(.footer-brand) a { display: block; color: rgba(255,255,255,.68); font-size: 13px; margin: 0 0 12px; }
.site-footer a:hover { color: var(--accent) !important; }
.footer-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 17px; }
.footer-text-link { color: var(--accent); font-size: 12px; font-weight: 700; }
.footer-contact { font-size: 13px; color: rgba(255,255,255,.45); margin-top: 20px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.13); padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.38); font-size: 11px; }
.floating-whatsapp { position: fixed; right: 22px; bottom: 22px; z-index: 20; display: inline-flex; align-items: center; gap: 8px; padding: 13px 18px; background: #1b9b67; color: white; border-radius: 30px; box-shadow: 0 10px 30px rgba(0,0,0,.18); font-size: 12px; font-weight: 700; }
.whatsapp-icon { font-size: 17px; }
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.notice { max-width: 660px; margin: 0 auto 28px; padding: 14px 17px; border: 1px solid var(--line); background: #f0f6ef; color: var(--primary); font-size: 14px; }
.notice.error { background: #fff3ee; border-color: #e9b6a0; color: #863f27; }
@media (max-width: 850px) {
  .container { width: min(100% - 30px, 680px); }
  .menu-toggle { display: block; }
  .site-nav { display: none; position: absolute; left: 15px; right: 15px; top: 68px; padding: 18px; background: white; border: 1px solid var(--line); box-shadow: var(--shadow); flex-direction: column; align-items: stretch; gap: 15px; }
  .site-nav.is-open { display: flex; }
  .nav-cta { text-align: center; }
  .hero { min-height: 690px; }
  .hero:after { inset: 45% 0 0; background: linear-gradient(0deg, var(--primary-deep), transparent), url('https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1500&q=85') center/cover; }
  .section { padding: 75px 0; }
  .section-heading, .cta-band .container { display: block; }
  .section-heading > a, .cta-band .button { margin-top: 20px; }
  .requirement-grid, .location-grid, .service-grid, .guide-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 20px; border-top: 0; }
  .step { border-top: 1px solid rgba(255,255,255,.2); padding-top: 20px; }
  .split, .form-layout { grid-template-columns: 1fr; gap: 40px; }
  .split-image { min-height: 380px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  h1 { font-size: 44px; }
  .hero-content { padding: 78px 0 60px; }
  .hero-meta { gap: 15px; }
  .requirement-grid, .location-grid, .service-grid, .guide-grid, .form-grid { grid-template-columns: 1fr; }
  .full-span { grid-column: auto; }
  .form-card { padding: 24px 18px; }
  .footer-grid, .footer-bottom { grid-template-columns: 1fr; display: grid; }
  .footer-bottom { gap: 6px; }
  .floating-whatsapp { right: 13px; bottom: 13px; }
}