:root {
  --ink: #182321;
  --muted: #64716d;
  --paper: #ffffff;
  --mist: #f2f5f2;
  --green: #173f3a;
  --green-2: #285e55;
  --gold: #f3b544;
  --clay: #a66d4f;
  --line: #dce4df;
  --shadow: 0 14px 34px rgba(20, 46, 40, .12);
  --shell: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.65; }
img { display: block; max-width: 100%; }
a { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.eyebrow { display: inline-block; color: var(--clay); font-size: .76rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 600; line-height: 1.08; }
h1 { font-size: clamp(2.5rem, 4.8vw, 4.7rem); }
h2 { font-size: clamp(2rem, 3.2vw, 3rem); }
h3 { font-size: 1.42rem; }
p { margin: .8rem 0 0; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.header-row { min-height: 78px; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
.brand-mark { width: 44px; height: 44px; display: grid; place-items: center; background: var(--green); color: white; border-radius: 6px; font-size: .76rem; font-weight: 900; letter-spacing: .08em; }
.brand strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: 1.18rem; }
.brand small { display: block; color: var(--muted); font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: 22px; }
.primary-nav a { color: #29433e; font-size: .9rem; font-weight: 700; text-decoration: none; text-decoration-thickness: 2px; text-underline-offset: 7px; }
.primary-nav a:hover { color: var(--green-2); }
.primary-nav a[aria-current="page"] { color: var(--green); text-decoration-line: underline; text-decoration-color: var(--gold); }
.header-cta, .button, .inquiry-form button { display: inline-flex; align-items: center; justify-content: center; min-height: 46px; padding: 0 20px; border: 1px solid var(--green); border-radius: 4px; background: var(--green); color: white; font-weight: 800; text-decoration: none; cursor: pointer; }
.header-cta:hover, .button.primary:hover, .inquiry-form button:hover { background: var(--green-2); }
.nav-toggle { display: none; border: 1px solid var(--line); background: white; padding: 8px 12px; }
:focus-visible { outline: 3px solid rgba(243,181,68,.72); outline-offset: 3px; }
.breadcrumbs { min-height: 46px; display: flex; align-items: center; gap: 9px; overflow: hidden; color: var(--muted); font-size: .78rem; white-space: nowrap; }
.breadcrumbs a { color: var(--green-2); font-weight: 750; text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; text-underline-offset: 4px; }
.breadcrumbs span[aria-current="page"] { overflow: hidden; text-overflow: ellipsis; }

.hero { position: relative; min-height: min(680px, calc(100vh - 78px)); display: grid; align-items: end; overflow: hidden; background: var(--green); }
.hero > img, .detail-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,35,31,.88) 0%, rgba(11,35,31,.52) 48%, rgba(11,35,31,.08) 100%); }
.hero-copy { position: relative; z-index: 2; max-width: 760px; padding-block: 74px; color: white; }
.hero-copy h1 { max-width: 720px; font-size: clamp(2.7rem, 4.3vw, 4.25rem); line-height: 1.02; text-wrap: balance; }
.hero-copy .eyebrow, .detail-hero-copy .eyebrow { color: var(--gold); }
.hero-copy p { max-width: 650px; font-size: 1.08rem; color: rgba(255,255,255,.88); }
.hero-actions { display: flex; gap: 12px; margin-top: 28px; }
.button.ghost { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.65); }
.button.ghost:hover { background: white; color: var(--green); }
.trust-strip { background: var(--green); color: white; }
.trust-strip .shell { min-height: 68px; display: grid; grid-template-columns: repeat(4,1fr); align-items: center; }
.trust-strip span { padding: 0 20px; border-left: 1px solid rgba(255,255,255,.2); font-size: .84rem; font-weight: 700; text-align: center; }
.trust-strip span:last-child { border-right: 1px solid rgba(255,255,255,.2); }

.section { padding-block: 88px; }
.section-head { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; margin-bottom: 38px; }
.section-head p { color: var(--muted); font-size: 1.04rem; }
.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.content-card { border: 1px solid var(--line); background: white; border-radius: 6px; overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.content-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-image { display: block; aspect-ratio: 3 / 2; overflow: hidden; }
.card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.content-card:hover .card-image img { transform: scale(1.025); }
.card-body { padding: 23px; }
.card-body h3 { margin-top: 8px; }
.card-body h3 a, .guide-card h3 a { text-decoration: none; }
.card-body p { color: var(--muted); }
.card-meta { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-top: 18px; color: var(--green-2); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.section-link, .text-link { display: inline-flex; margin-top: 26px; color: var(--green); font-weight: 800; text-underline-offset: 5px; }

.decision-band { background: var(--mist); border-block: 1px solid var(--line); }
.decision-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; padding-block: 78px; }
.decision-list { display: grid; }
.decision-list a { display: grid; grid-template-columns: .75fr 1.25fr; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.decision-list a:first-child { border-top: 1px solid var(--line); }
.decision-list strong { color: var(--green); }
.decision-list span { color: var(--muted); }

.guide-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.guide-card { display: grid; grid-template-columns: 200px 1fr; gap: 22px; border-bottom: 1px solid var(--line); padding-bottom: 28px; }
.guide-card > a { aspect-ratio: 1; overflow: hidden; }
.guide-card img { width: 100%; height: 100%; object-fit: cover; }
.guide-card h3 { margin-top: 7px; }
.guide-card p { color: var(--muted); }
.guide-card .text-link { margin-top: 12px; }

.page-hero { padding-block: 92px; background: var(--green); color: white; }
.page-hero.simple { background: #eaf0ec; color: var(--ink); }
.page-hero.guide { background: #3f4b55; }
.page-hero.contact { background: #35584f; }
.page-hero .shell { max-width: 930px; margin-left: max(20px, calc((100vw - 1180px)/2)); }
.page-hero p { max-width: 740px; color: rgba(255,255,255,.8); font-size: 1.12rem; }
.page-hero.simple p { color: var(--muted); }
.page-hero .eyebrow { color: var(--gold); }
.page-hero.simple .eyebrow { color: var(--clay); }
.page-hero a { color: inherit; }

.detail-hero { position: relative; min-height: 650px; display: grid; align-items: end; background: var(--green); overflow: hidden; }
.detail-hero-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,28,25,.9), rgba(8,28,25,.08) 72%); }
.detail-hero-copy { position: relative; z-index: 2; padding-block: 72px; color: white; }
.detail-hero-copy h1 { max-width: 920px; font-size: clamp(2.5rem,4.5vw,4.25rem); text-wrap: balance; }
.detail-hero-copy p { max-width: 740px; color: rgba(255,255,255,.85); font-size: 1.12rem; }
.detail-meta { display: flex; gap: 18px; margin-top: 24px; }
.detail-meta span { border: 1px solid rgba(255,255,255,.35); padding: 7px 10px; background: rgba(0,0,0,.15); font-size: .8rem; font-weight: 800; }
.detail-layout, .article-layout { display: grid; grid-template-columns: minmax(0,1fr) 330px; gap: 70px; padding-block: 72px; align-items: start; }
.content-section { margin-bottom: 52px; }
.content-section h2 { font-size: 2.25rem; margin-bottom: 16px; }
.content-section p { color: #40514d; font-size: 1.03rem; }
.intro-section { padding: 30px; background: var(--mist); border-left: 4px solid var(--gold); }
.highlight-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px 30px; margin: 24px 0 0; padding: 0; list-style: none; }
.highlight-list li { position: relative; padding-left: 20px; }
.highlight-list li::before { content: ""; position: absolute; left: 0; top: .7em; width: 8px; height: 8px; background: var(--clay); border-radius: 50%; }
.itinerary { padding: 0; margin: 26px 0 0; list-style: none; counter-reset: trip-step; }
.itinerary li { counter-increment: trip-step; position: relative; padding: 0 0 25px 60px; border-left: 1px solid var(--line); margin-left: 19px; }
.itinerary li::before { content: counter(trip-step); position: absolute; left: -20px; top: 0; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--green); color: white; font-weight: 800; }
.itinerary p { margin-top: 4px; }
.quote-panel, .related-panel { position: sticky; top: 104px; padding: 28px; border: 1px solid var(--line); background: var(--mist); }
.quote-panel h2, .related-panel h2 { margin-top: 8px; font-size: 2rem; }
.quote-panel p, .related-panel p { color: var(--muted); }
.quote-panel .button, .related-panel .button { width: 100%; margin-top: 22px; }
.quote-panel .text-link, .related-panel .text-link { display: block; margin-top: 18px; overflow-wrap: anywhere; }
.faq-section { margin: 60px 0 20px; }
.faq-section h2 { margin-top: 7px; }
.faq-list { margin-top: 25px; border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); padding: 18px 4px; }
.faq-list summary { cursor: pointer; font-weight: 800; color: var(--green); }
.faq-list p { color: var(--muted); }

.article-hero { padding-block: 65px; background: var(--mist); border-bottom: 1px solid var(--line); }
.article-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.article-hero h1 { font-size: clamp(2.4rem,4.2vw,4.15rem); margin-top: 12px; text-wrap: balance; }
.article-hero p { color: var(--muted); font-size: 1.12rem; }
.article-hero img { width: 100%; aspect-ratio: 3/2; object-fit: cover; box-shadow: var(--shadow); }
.article-layout article { max-width: 760px; }
.article-figure { margin: 24px 0 28px; }
.article-figure img { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: 2px; box-shadow: var(--shadow); }
.article-figure figcaption { margin-top: 10px; color: var(--muted); font-size: .9rem; line-height: 1.55; }
.section-links { display: flex; flex-wrap: wrap; gap: 9px 16px; align-items: baseline; margin-top: 24px; padding: 17px 20px; border-left: 3px solid var(--gold); background: var(--mist); }
.section-links strong { color: var(--ink); font-size: .92rem; }
.section-links a { color: var(--green); font-weight: 700; text-decoration: underline; text-decoration-color: rgba(21,84,75,.32); text-underline-offset: 3px; }
.prose-page { max-width: 800px; padding-block: 75px; }
.prose-page h2 { font-size: 2.2rem; margin-top: 42px; }
.prose-page p { color: var(--muted); font-size: 1.04rem; }
.category-guide { padding-block: 72px; background: var(--mist); border-block: 1px solid var(--line); }
.category-guide .shell { max-width: 860px; }
.category-guide h2 { margin-top: 8px; }
.category-guide p { color: #40514d; font-size: 1.04rem; }

.inquiry-band { background: #122f2b; color: white; padding-block: 76px; }
.inquiry-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.inquiry-band .eyebrow { color: var(--gold); }
.inquiry-band h2 { margin-top: 8px; }
.inquiry-band p { color: rgba(255,255,255,.72); }
.inquiry-form { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.inquiry-form label { color: rgba(255,255,255,.85); font-size: .8rem; font-weight: 800; }
.inquiry-form input, .inquiry-form textarea { width: 100%; margin-top: 5px; border: 1px solid rgba(255,255,255,.22); border-radius: 3px; background: rgba(255,255,255,.08); color: white; padding: 12px; font: inherit; }
.inquiry-form input::placeholder, .inquiry-form textarea::placeholder { color: rgba(255,255,255,.45); }
.inquiry-form .wide { grid-column: 1 / -1; }
.inquiry-form button { border-color: var(--gold); background: var(--gold); color: #1d2e2a; }
.inquiry-form button:disabled { opacity: .65; cursor: wait; }
.hp-field { position: absolute !important; left: -9999px !important; opacity: 0 !important; }
.form-status { margin: 0; }
.form-status.success { color: #a7e3be; }
.form-status.error { color: #ffb6a3; }

.site-footer { background: #0b211e; color: white; padding-top: 58px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .5fr; gap: 80px; padding-bottom: 48px; }
.footer-brand { font-family: Georgia, "Times New Roman", serif; font-size: 1.7rem; }
.footer-grid p { max-width: 450px; color: rgba(255,255,255,.65); }
.footer-grid strong { display: block; color: var(--gold); margin-bottom: 12px; }
.footer-grid a { display: block; color: rgba(255,255,255,.78); margin: 8px 0; text-decoration: none; }
.footer-grid a:hover { color: white; }
.footer-grid .email-link { display: inline-block; color: white; text-decoration: underline; text-underline-offset: 4px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-block: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.55); font-size: .78rem; }

@media (max-width: 980px) {
  .primary-nav { display: none; position: absolute; left: 0; right: 0; top: 78px; padding: 18px 20px; background: white; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .primary-nav.is-open { display: grid; }
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .trust-strip .shell { grid-template-columns: repeat(2,1fr); }
  .card-grid { grid-template-columns: repeat(2,1fr); }
  .guide-grid { grid-template-columns: 1fr; }
  .detail-layout, .article-layout { grid-template-columns: 1fr; }
  .quote-panel, .related-panel { position: static; }
  .decision-grid, .inquiry-grid { grid-template-columns: 1fr; gap: 42px; }
  .article-hero-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  :root { --shell: min(100% - 28px, 1180px); }
  .header-row { min-height: 68px; }
  .brand small { display: none; }
  .primary-nav { top: 68px; }
  .breadcrumbs { min-height: 42px; font-size: .73rem; }
  .hero { min-height: 560px; }
  .hero-shade { background: linear-gradient(0deg, rgba(11,35,31,.92), rgba(11,35,31,.18)); }
  .hero-copy { padding-block: 46px; }
  .hero-copy h1 { font-size: clamp(2.35rem, 10.6vw, 2.9rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .trust-strip .shell { grid-template-columns: 1fr; padding-block: 10px; }
  .trust-strip span { border: 0; padding: 8px; }
  .section { padding-block: 58px; }
  .section-head { grid-template-columns: 1fr; gap: 18px; }
  .card-grid { grid-template-columns: 1fr; }
  .guide-card { grid-template-columns: 120px 1fr; gap: 15px; }
  .decision-list a { grid-template-columns: 1fr; gap: 5px; }
  .page-hero { padding-block: 60px; }
  .detail-hero { min-height: 580px; }
  .detail-hero-copy { padding-block: 45px; }
  .detail-meta { align-items: flex-start; flex-direction: column; }
  .detail-layout, .article-layout { padding-block: 50px; }
  .intro-section { padding: 22px; }
  .highlight-list { grid-template-columns: 1fr; }
  .article-hero { padding-block: 45px; }
  .inquiry-form { grid-template-columns: 1fr; }
  .inquiry-form .wide { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; }
}
