@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,650;9..144,800&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #2E7D32;
    --primary-dark: #174A22;
    --secondary: #A5D6A7;
    --cream: #FFF8E7;
    --mint: #EFF8EF;
    --terracotta: #C7663D;
    --ink: #18301E;
    --muted: #4C5D50;
    --white: #FFFFFF;
    --line: rgba(24, 48, 30, .12);
    --shadow: 0 22px 60px rgba(23, 74, 34, .14);
    --radius: 26px;
    --radius-sm: 16px;
    --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    background: var(--primary);
    color: white;
    padding: 10px 14px;
    border-radius: 12px;
    z-index: 30;
}
.skip-link:focus { left: 12px; }

.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.section { padding: 76px 0; }
.soft-bg { background: linear-gradient(180deg, #F3FAF1, #E7F3E6); }

.topbar {
    background: var(--primary-dark);
    color: var(--cream);
    font-size: 14px;
    padding: 9px 16px;
    text-align: center;
}
.topbar span { display: inline-flex; gap: 8px; align-items: center; }
.topbar svg { width: 16px; height: 16px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 248, 231, .88);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}
.navbar {
    width: min(1240px, calc(100% - 28px));
    margin: 0 auto;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.02em; }
.brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: white;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(46,125,50,.25);
}
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
    padding: 10px 13px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    color: #284332;
    transition: .25s ease;
}
.nav-links a:hover, .nav-links a.active { background: rgba(165,214,167,.45); color: var(--primary-dark); }
.nav-links .nav-cta { background: var(--primary); color: white; padding-inline: 17px; }
.nav-links .nav-cta:hover { background: var(--primary-dark); color: white; transform: translateY(-1px); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; border-radius: 14px; background: var(--primary); padding: 11px; }
.menu-toggle span { display: block; height: 2px; background: white; margin: 5px 0; border-radius: 2px; }

h1, h2, h3 { font-family: 'Fraunces', Georgia, serif; line-height: 1.05; letter-spacing: -.035em; color: var(--ink); }
h1 { font-size: clamp(42px, 7vw, 82px); margin: 0 0 22px; }
h2 { font-size: clamp(30px, 4vw, 52px); margin: 0 0 18px; }
h3 { font-size: 24px; margin: 0 0 10px; }
p { margin: 0 0 16px; }

.eyebrow {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--terracotta);
    text-transform: uppercase;
    letter-spacing: .11em;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 14px;
}
.eyebrow svg { width: 16px; height: 16px; }

.hero { position: relative; min-height: 760px; display: grid; align-items: center; overflow: hidden; }
.hero-media { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.01); }
.hero-content { position: relative; z-index: 1; width: min(1000px, calc(100% - 32px)); margin: 0 auto; color: white; padding: 90px 0; }
.hero-content h1 { color: white; max-width: 930px; }
.hero-text { font-size: clamp(18px, 2.2vw, 23px); max-width: 720px; color: rgba(255,255,255,.92); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}
.hero-stats span {
    background: rgba(255,255,255,.14);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 18px;
    padding: 12px 16px;
}
.hero-stats strong { display: block; font-size: 28px; line-height: 1; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border-radius: 999px;
    font-weight: 900;
    border: 0;
    cursor: pointer;
    transition: .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: white; box-shadow: 0 16px 30px rgba(46,125,50,.24); }
.btn-primary:hover { background: var(--primary-dark); }
.btn-secondary { background: var(--secondary); color: var(--primary-dark); }
.btn-ghost { background: rgba(255,255,255,.14); color: white; border: 1px solid rgba(255,255,255,.4); }
.btn-light { background: white; color: var(--primary-dark); }
.text-link { color: var(--primary); font-weight: 900; }
.text-link:hover { color: var(--terracotta); }

.intro-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 56px;
    align-items: start;
}
.rich-text { font-size: 18px; color: #405044; }
.section-heading {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
    margin-bottom: 30px;
}
.section-heading h2 { max-width: 760px; }
.section-heading > a { color: var(--primary); font-weight: 900; white-space: nowrap; }
.card-grid { display: grid; gap: 24px; }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.destination-card, .action-card, .value-card, .tool-card, .result-card, .content-panel, .sticky-card {
    background: rgba(255,255,255,.82);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.destination-card { overflow: hidden; transition: .25s ease; }
.destination-card:hover { transform: translateY(-5px); }
.destination-card img { width: 100%; height: 260px; object-fit: cover; }
.destination-card div { padding: 24px; }
.tag {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(199,102,61,.12);
    color: #99502F;
    font-weight: 900;
    font-size: 13px;
    padding: 7px 12px;
    margin-bottom: 12px;
}

.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: center; }
.image-stack { position: relative; padding: 0 32px 34px 0; }
.main-img, .rounded-img { width: 100%; border-radius: var(--radius); object-fit: cover; box-shadow: var(--shadow); }
.floating-note {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 300px;
    background: var(--primary-dark);
    color: white;
    padding: 20px;
    border-radius: 22px;
    box-shadow: var(--shadow);
}
.floating-note strong { display: block; margin-bottom: 6px; }
.floating-note span { color: rgba(255,255,255,.82); }
.steps { display: grid; gap: 16px; margin: 24px 0 28px; }
.steps div { display: grid; grid-template-columns: 54px 1fr; gap: 15px; align-items: start; }
.steps span { width: 46px; height: 46px; border-radius: 14px; background: var(--secondary); display: grid; place-items: center; font-weight: 900; color: var(--primary-dark); }
.steps p { margin: 0; }

.tool-card { padding: 30px; }
.mini-tool { display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; align-items: center; }
.quick-form, .calculator-form, .contact-form { display: grid; gap: 16px; }
.quick-form { grid-template-columns: 1fr 1fr auto; align-items: end; }
label { display: grid; gap: 7px; font-weight: 800; color: #354338; }
input, select, textarea {
    width: 100%;
    border: 1px solid rgba(24,48,30,.18);
    background: white;
    border-radius: 15px;
    padding: 13px 14px;
    outline: none;
    color: var(--ink);
}
input:focus, select:focus, textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(46,125,50,.12); }
output {
    grid-column: 1 / -1;
    display: block;
    padding: 14px 16px;
    background: var(--mint);
    border-radius: 16px;
    font-weight: 900;
    color: var(--primary-dark);
}
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.form-errors {
    background: #FFF0EA;
    border: 1px solid rgba(199,102,61,.35);
    color: #7A3217;
    border-radius: 18px;
    padding: 18px 20px;
    margin-bottom: 18px;
}
.form-errors h2 { font-size: 22px; margin-bottom: 8px; color: #7A3217; }
.form-errors ul { margin: 0; padding-left: 20px; }

.cta-band { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: white; }
.cta-band h2, .cta-band .eyebrow { color: white; }
.cta-content { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.cta-content p { color: rgba(255,255,255,.84); max-width: 760px; }

.page-hero {
    padding: 96px 0 84px;
    background: radial-gradient(circle at top left, rgba(165,214,167,.75), transparent 36%), linear-gradient(135deg, #F9F3DF, #EAF7E8);
    border-bottom: 1px solid var(--line);
}
.page-hero.compact h1 { max-width: 1000px; }
.page-hero.compact p:not(.eyebrow) { max-width: 760px; font-size: 19px; color: #3F5043; }
.guide-hero { background: radial-gradient(circle at right top, rgba(199,102,61,.18), transparent 34%), linear-gradient(135deg, #FFF8E7, #EAF7E8); }
.planner-hero { background: radial-gradient(circle at left top, rgba(46,125,50,.2), transparent 40%), linear-gradient(135deg, #FFF8E7, #F0FAED); }
.about-hero { background: linear-gradient(135deg, #F7F0DD, #E8F5E9); }
.contact-hero { background: linear-gradient(135deg, #FFF8E7, #EEF8ED); }
.error-hero { min-height: 56vh; display: grid; align-items: center; }

.destination-list { display: grid; gap: 28px; }
.wide-card { display: grid; grid-template-columns: .92fr 1.08fr; gap: 34px; align-items: center; padding: 18px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.wide-card.reverse { grid-template-columns: 1.08fr .92fr; }
.wide-card.reverse img { order: 2; }
.wide-card img { height: 360px; width: 100%; object-fit: cover; border-radius: 20px; }
.wide-card > div { padding: 10px 12px; }
.check-list { padding: 0; margin: 18px 0 0; list-style: none; display: grid; gap: 10px; }
.check-list li { position: relative; padding-left: 28px; }
.check-list li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--primary); font-weight: 900; }
.check-list.two-col { grid-template-columns: repeat(2, 1fr); }
.table-wrap { overflow-x: auto; border-radius: var(--radius-sm); box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; background: white; min-width: 720px; }
th, td { text-align: left; padding: 18px; border-bottom: 1px solid var(--line); }
th { background: var(--primary-dark); color: white; }
.faq { display: grid; gap: 14px; }
details { background: white; border: 1px solid var(--line); border-radius: 18px; padding: 18px 20px; }
summary { cursor: pointer; font-weight: 900; }
details p { margin-top: 10px; }

.guide-layout { display: grid; grid-template-columns: 330px 1fr; gap: 34px; align-items: start; }
.sticky-card { position: sticky; top: 120px; padding: 26px; }
.guide-content { display: grid; gap: 24px; }
.guide-block { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow); }
.tip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 18px; }
.tip-grid div { background: var(--mint); border-radius: 18px; padding: 18px; }
.tip-grid strong { display: block; color: var(--primary-dark); }
.tip-grid span { color: var(--muted); }
.small-cards .action-card { min-height: 210px; }
.action-card { padding: 24px; transition: .25s ease; }
.action-card:hover { transform: translateY(-4px); border-color: rgba(46,125,50,.35); }
.action-card svg, .value-card svg { width: 34px; height: 34px; color: var(--primary); margin-bottom: 16px; }

.planner-grid { display: grid; grid-template-columns: 1fr .85fr; gap: 28px; align-items: stretch; }
.calculator-form { grid-template-columns: repeat(2, 1fr); }
.calculator-form button { grid-column: 1 / -1; }
.result-card { padding: 32px; background: var(--primary-dark); color: white; display: grid; align-content: center; }
.result-card h2 { color: white; }
.result-card p { color: rgba(255,255,255,.84); }
.result-breakdown { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 18px; }
.result-breakdown div { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.16); border-radius: 18px; padding: 18px; }
.result-breakdown strong { display: block; font-size: 25px; }
.result-breakdown span { color: rgba(255,255,255,.75); }
.checklist-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 34px; align-items: start; }
.checklist-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.checklist-cards div { background: white; border-radius: 22px; padding: 22px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.checklist-cards svg { color: var(--terracotta); width: 30px; height: 30px; margin-bottom: 14px; }
.content-panel { padding: 34px; }
.legal h2 { font-size: 28px; margin-top: 24px; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card { padding: 28px; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 34px; align-items: start; }
.success-message { text-align: center; padding: 30px; }
.success-message svg { width: 52px; height: 52px; color: var(--primary); margin-bottom: 14px; }

.site-footer { background: #102719; color: rgba(255,255,255,.78); padding: 64px 0 24px; }
.footer-grid { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; display: grid; grid-template-columns: 1.3fr .7fr .7fr 1fr; gap: 30px; }
.footer-grid h2 { color: white; font-size: 22px; margin-bottom: 14px; }
.footer-grid a:not(.brand) { display: block; padding: 5px 0; color: rgba(255,255,255,.78); }
.footer-grid a:hover { color: white; }
.footer-brand { color: white; margin-bottom: 14px; }
.footer-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 22px; padding: 20px; }
.footer-bottom { width: min(var(--max), calc(100% - 32px)); margin: 38px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 16px; font-size: 14px; }

.reveal-on-scroll { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s ease; }
.reveal-on-scroll.revealed { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
    .menu-toggle { display: block; }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 14px;
        right: 14px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: var(--cream);
        border: 1px solid var(--line);
        border-radius: 22px;
        padding: 12px;
        box-shadow: var(--shadow);
    }
    .nav-links.open { display: flex; }
    .nav-links a { border-radius: 14px; }
    .hero { min-height: 660px; }
    .intro-grid, .split-section, .mini-tool, .wide-card, .wide-card.reverse, .guide-layout, .planner-grid, .checklist-layout, .contact-grid { grid-template-columns: 1fr; }
    .wide-card.reverse img { order: 0; }
    .card-grid.three, .values-grid, .checklist-cards, .footer-grid { grid-template-columns: 1fr 1fr; }
    .sticky-card { position: static; }
    .quick-form { grid-template-columns: 1fr 1fr; }
    .quick-form button { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    .section { padding: 54px 0; }
    .topbar { display: none; }
    .navbar { min-height: 70px; }
    .hero { min-height: 620px; }
    .hero-content { padding: 56px 0; }
    .hero-stats { display: grid; grid-template-columns: 1fr; }
    .hero-actions, .cta-content, .section-heading, .footer-bottom { flex-direction: column; align-items: flex-start; }
    .card-grid.three, .values-grid, .checklist-cards, .footer-grid, .tip-grid, .check-list.two-col, .calculator-form, .result-breakdown { grid-template-columns: 1fr; }
    .destination-card img, .wide-card img { height: 240px; }
    .wide-card { padding: 12px; gap: 18px; }
    .quick-form { grid-template-columns: 1fr; }
    .floating-note { position: relative; right: auto; bottom: auto; margin: -28px 18px 0; }
    .image-stack { padding: 0; }
    .page-hero { padding: 70px 0 58px; }
    .tool-card, .result-card, .content-panel, .guide-block { padding: 22px; }
}
