@charset "UTF-8";

:root {
    --navy: #071a2b;
    --navy-soft: #102d42;
    --gold: #c79a52;
    --gold-text: #8b6225;
    --gold-light: #e5c58e;
    --rust: #9e5e43;
    --paper: #fffdf8;
    --soft: #f1eee7;
    --ink: #142432;
    --muted: #66737b;
    --line: #d9d4ca;
    --control-border: #837b70;
    --serif: Georgia, 'Times New Roman', serif;
    --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    --shadow: 0 18px 50px rgba(7, 26, 43, .12);
    --content-max: 1500px;
    --header-max: 1750px;
    --footer-max: 1350px;
    --gutter: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--sans); line-height: 1.6; text-rendering: optimizeLegibility; }
button, input { font: inherit; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { border-radius: 0; }
:focus-visible { outline: 3px solid var(--gold-text); outline-offset: 4px; }
.container { width: min(var(--content-max), calc(100% - (var(--gutter) * 2))); margin-inline: auto; }
.header-container { width: min(var(--header-max), calc(100% - (var(--gutter) * 2))); }
.footer-container { width: min(var(--footer-max), calc(100% - (var(--gutter) * 2))); }
.narrow { max-width: var(--content-max); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; left: 16px; top: 12px; padding: 10px 14px; background: #fff; color: var(--navy); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.topline { background: #04131f; color: #b8c4cc; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.topline .container { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.topline span:last-child { color: var(--gold-light); }
.site-header { position: relative; z-index: 50; border-bottom: 1px solid var(--line); background: rgba(255, 253, 248, .97); }
.header-main { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.brand { display: inline-flex; align-items: center; gap: 13px; color: var(--navy); }
.brand-mark { width: 58px; height: 58px; display: grid; place-items: center; flex: 0 0 auto; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand strong, .brand small { display: block; line-height: 1; }
.brand > span:last-child { text-align: center; }
.brand strong { font: 700 1.25rem var(--serif); letter-spacing: .12em; }
.brand small { margin-top: 6px; color: var(--gold-text); font-size: .56rem; font-weight: 800; letter-spacing: .48em; }
.main-nav { display: flex; align-items: stretch; align-self: stretch; }
.main-nav a { position: relative; display: grid; place-items: center; padding: 0 13px; color: #314350; font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.main-nav a::after { content: ''; position: absolute; right: 13px; bottom: 23px; left: 13px; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform .2s ease; }
.main-nav a:hover::after, .main-nav a.is-active::after { transform: scaleX(1); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--line); background: transparent; }
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 4px 0; background: var(--navy); }

.hero { position: relative; min-height: 660px; display: flex; align-items: center; overflow: hidden; background: var(--navy); color: #fff; }
.hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3, 16, 28, .94), rgba(3, 16, 28, .5) 60%, rgba(3, 16, 28, .16)); }
.hero-content { position: relative; padding-block: 90px; }
.hero h1, .page-hero h1, .simple-hero h1, .error-page h1 { margin: 18px 0 22px; font: 400 clamp(4rem, 9vw, 7.7rem)/.84 var(--serif); letter-spacing: -.045em; }
.hero h1 span { color: var(--gold-light); }
.hero-content > p:not(.eyebrow) { max-width: 650px; margin: 0 0 34px; color: #e0e7eb; font: 400 clamp(1rem, 2vw, 1.25rem)/1.65 var(--serif); }
.eyebrow { margin: 0 0 16px; color: var(--gold-text); font-size: .68rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow::before { content: ''; display: inline-block; width: 28px; height: 1px; margin: 0 10px 3px 0; background: currentColor; }
.eyebrow-light { color: var(--gold-light); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }
.button { min-height: 49px; display: inline-flex; align-items: center; justify-content: center; padding: 0 21px; border: 1px solid transparent; font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; transition: transform .2s ease, background-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-gold { background: var(--gold); color: var(--navy); }
.button-outline { border-color: rgba(255,255,255,.55); color: #fff; }
.button-outline:hover { background: rgba(255,255,255,.1); }
.hero-proof { margin: 27px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 22px; list-style: none; color: #d7e0e5; font-size: .67rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.hero-proof li { display: flex; align-items: center; gap: 8px; }
.hero-proof li::before { content: '✓'; color: var(--gold-light); font-size: .78rem; }

.quick-links { border-bottom: 1px solid var(--line); background: #fff; }
.quick-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.quick-grid a { min-height: 116px; display: grid; grid-template-columns: auto 1fr; align-content: center; gap: 2px 15px; padding: 20px 25px; border-left: 1px solid var(--line); }
.quick-grid a:last-child { border-right: 1px solid var(--line); }
.quick-grid a:hover { background: var(--soft); }
.quick-grid span { grid-row: 1 / 3; color: var(--gold-text); font: 400 1.8rem var(--serif); }
.quick-grid strong { font: 400 1.05rem var(--serif); }
.quick-grid small { color: var(--muted); font-size: .7rem; }
.proof-strip { border-bottom: 1px solid var(--line); background: var(--navy); color: #fff; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid a { min-height: 118px; padding: 24px 27px; display: flex; align-items: center; gap: 16px; border-left: 1px solid rgba(255,255,255,.14); transition: background-color .2s ease; }
.proof-grid a:last-child { border-right: 1px solid rgba(255,255,255,.14); }
.proof-grid a:hover { background: rgba(255,255,255,.06); }
.proof-grid strong { color: var(--gold-light); font: 400 clamp(1.8rem, 3vw, 2.55rem)/1 var(--serif); white-space: nowrap; }
.proof-grid span { max-width: 135px; color: #c4d0d6; font-size: .67rem; font-weight: 700; letter-spacing: .04em; line-height: 1.45; text-transform: uppercase; }

.section { padding-block: 100px; }
.section-soft { background: var(--soft); }
.section-head { margin-bottom: 45px; display: flex; align-items: end; justify-content: space-between; gap: 50px; }
.section-head h2, .deauville-strip h2, .source-callout h2, .next-step h2 { margin: 0; font: 400 clamp(2.6rem, 5vw, 4.3rem)/1 var(--serif); letter-spacing: -.035em; }
.section-head > p { max-width: 390px; margin: 0; color: var(--muted); font-family: var(--serif); }
.text-link { padding-bottom: 5px; border-bottom: 1px solid var(--gold); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.feature-grid { display: grid; grid-template-columns: 1.35fr 1fr; grid-template-rows: repeat(2, 300px); gap: 14px; }
.feature { position: relative; overflow: hidden; color: #fff; }
.feature-large { grid-row: 1 / 3; }
.feature img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.feature:hover img { transform: scale(1.025); }
.feature-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3, 16, 28, .92), rgba(3, 16, 28, 0) 75%); }
.feature-copy { position: absolute; right: 28px; bottom: 26px; left: 28px; }
.feature-copy small { color: var(--gold-light); font-size: .65rem; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.feature-copy strong { max-width: 650px; margin: 9px 0 14px; display: block; font: 400 clamp(1.45rem, 3vw, 2.6rem)/1.08 var(--serif); }
.feature:not(.feature-large) .feature-copy strong { font-size: 1.55rem; }
.feature-copy em { color: #fff; font-size: .66rem; font-style: normal; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.topic-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.topic-card { min-height: 245px; padding: 30px 27px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); transition: transform .2s ease, box-shadow .2s ease; }
.topic-card:hover { position: relative; z-index: 1; transform: translateY(-4px); box-shadow: var(--shadow); }
.topic-card small, .guide-cards small, .guide-list small, .contact-card small { color: var(--gold-text); font-size: .63rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.topic-card h3 { margin: 35px 0 13px; font: 400 1.55rem/1.1 var(--serif); }
.topic-card p { margin: 0; color: var(--muted); font-size: .82rem; }
.topic-card span, .guide-cards span { margin-top: 25px; display: block; color: var(--gold-text); font-size: .65rem; font-weight: 800; text-transform: uppercase; }
.intent-section { background: var(--paper); }
.intent-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.intent-card { min-height: 460px; display: grid; grid-template-columns: 58px 1fr; grid-template-rows: 178px 1fr; overflow: hidden; border: 1px solid var(--line); background: #fff; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.intent-card:hover { position: relative; z-index: 1; transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow); }
.intent-card > img { width: 100%; height: 178px; grid-column: 1 / -1; object-fit: cover; transition: transform .4s ease; }
.intent-card:hover > img { transform: scale(1.025); }
.intent-card > span { padding: 30px 0 0 28px; color: var(--gold-text); font: 400 1.35rem/1 var(--serif); }
.intent-card > div { padding: 30px 30px 30px 18px; }
.intent-card small { color: var(--rust); font-size: .62rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.intent-card h3 { margin: 18px 0 12px; color: var(--navy); font: 400 clamp(1.5rem, 2.3vw, 2rem)/1.08 var(--serif); }
.intent-card p { margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.7; }
.intent-card em { margin-top: 22px; display: inline-block; color: var(--gold-text); font-size: .63rem; font-style: normal; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.intent-card-featured { border-color: var(--navy); background: var(--navy); }
.intent-card-featured h3 { color: #fff; }
.intent-card-featured p { color: #bdc9d0; }
.intent-card-featured small, .intent-card-featured > span, .intent-card-featured em { color: var(--gold-light); }
.home-answer .article-body { max-width: 900px; }
.answer-lead { color: var(--navy) !important; font: 400 clamp(1.05rem, 1.7vw, 1.3rem)/1.65 var(--serif) !important; }
.answer-list { margin: 28px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.answer-list li { padding: 16px 0 16px 28px; position: relative; border-bottom: 1px solid var(--line); color: var(--muted); }
.answer-list li::before { content: '→'; position: absolute; left: 0; color: var(--gold-text); }
.answer-list strong { color: var(--navy); }
.resource-box-trust small { padding: 21px 0 0; display: block; color: var(--muted); font-size: .69rem; line-height: 1.65; }
.deauville-strip { padding-block: 78px; background: var(--rust); color: #fff; }
.deauville-strip .container { display: grid; grid-template-columns: 1.2fr .9fr auto; align-items: center; gap: 55px; }
.deauville-strip p:not(.eyebrow) { color: #f0ded5; font-family: var(--serif); }
.guide-cards { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.guide-cards > a { min-height: 340px; display: grid; grid-template-rows: 142px 1fr; overflow: hidden; border-right: 1px solid var(--line); }
.guide-cards > a:last-child { border-right: 0; }
.guide-cards > a:hover { background: var(--soft); }
.guide-cards > a > img { width: 100%; height: 142px; object-fit: cover; transition: transform .35s ease; }
.guide-cards > a:hover > img { transform: scale(1.025); }
.guide-cards > a > div { padding: 24px 27px 27px; }
.guide-cards h3 { margin: 24px 0 12px; font: 400 1.45rem/1.12 var(--serif); }
.guide-cards p { color: var(--muted); font-size: .78rem; }
.knowledge-hub { background: #e8e3d8; }
.knowledge-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.knowledge-grid a { position: relative; min-height: 430px; overflow: hidden; color: #fff; }
.knowledge-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.knowledge-grid a::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,16,28,.94), rgba(3,16,28,.08) 75%); }
.knowledge-grid a:hover img { transform: scale(1.025); }
.knowledge-grid span { position: absolute; z-index: 1; right: 32px; bottom: 30px; left: 32px; }
.knowledge-grid small, .knowledge-grid em { display: block; color: var(--gold-light); font-size: .66rem; font-style: normal; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.knowledge-grid strong { max-width: 620px; margin: 9px 0 15px; display: block; font: 400 clamp(1.7rem, 3vw, 2.8rem)/1.08 var(--serif); }
.home-faq { background: #fff; }
.faq-layout { display: grid; grid-template-columns: .75fr 1.4fr; gap: clamp(50px, 8vw, 130px); align-items: start; }
.faq-intro { position: sticky; top: 35px; }
.faq-intro h2 { margin: 0 0 22px; color: var(--navy); font: 400 clamp(2.6rem, 5vw, 4.3rem)/1 var(--serif); letter-spacing: -.035em; }
.faq-intro > p:not(.eyebrow) { max-width: 420px; margin: 0 0 28px; color: var(--muted); font-family: var(--serif); }
.home-faq .faq-list { margin-top: 0; border-top: 1px solid var(--line); }
.home-faq .faq-list details { border-bottom: 1px solid var(--line); }
.home-faq .faq-list summary { min-height: 92px; padding: 24px 4px; display: flex; align-items: center; justify-content: space-between; gap: 25px; cursor: pointer; color: var(--navy); font: 400 clamp(1.15rem, 2vw, 1.45rem)/1.25 var(--serif); list-style: none; }
.home-faq .faq-list summary::-webkit-details-marker { display: none; }
.home-faq .faq-list summary span { width: 34px; height: 34px; flex: 0 0 auto; display: grid; place-items: center; border: 1px solid var(--gold-text); border-radius: 50%; color: var(--gold-text); font: 400 1.2rem/1 var(--sans); transition: transform .2s ease, background-color .2s ease; }
.home-faq .faq-list details[open] summary span { transform: rotate(45deg); background: var(--gold); color: var(--navy); }
.home-faq .faq-list details > div { max-width: 760px; padding: 0 55px 29px 0; }
.home-faq .faq-list details p { margin: 0 0 14px; padding: 0; color: var(--muted); font-size: .86rem; line-height: 1.75; }
.home-faq .faq-list details a { color: var(--gold-text); font-size: .65rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.source-callout { padding-block: 90px; background: var(--navy); color: #fff; }
.source-callout .container { text-align: center; }
.source-callout h2 { max-width: 1100px; margin-inline: auto; }
.source-callout p:not(.eyebrow) { margin: 24px auto; max-width: 850px; color: #b8c5cc; }
.source-callout a { color: var(--gold-light); border-bottom: 1px solid; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.breadcrumbs { min-height: 54px; display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: .7rem; }
.breadcrumbs a:hover { color: var(--gold-text); }
.page-hero { padding-block: 55px 70px; background: var(--soft); }
.page-hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.page-hero h1 { margin-block: 15px 24px; font-size: clamp(3.2rem, 6.3vw, 6rem); color: var(--navy); }
.page-hero img { width: 100%; height: 420px; object-fit: cover; box-shadow: 22px 22px 0 var(--gold); }
.page-lead, .simple-hero p:not(.eyebrow) { color: var(--muted); font: 400 1.2rem/1.65 var(--serif); }
.article-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; align-items: start; gap: 80px; }
.article-body section + section { margin-top: 48px; padding-top: 48px; border-top: 1px solid var(--line); }
.article-body section { scroll-margin-top: 30px; }
.article-body h2, .legal-copy h2, .steps h2, .contact-title { margin: 0 0 14px; color: var(--navy); font: 400 2rem/1.15 var(--serif); }
.article-body p, .legal-copy p { margin: 0; color: #485963; font-size: 1rem; line-height: 1.85; }
.article-sidebar { position: sticky; top: 30px; display: grid; gap: 18px; }
.article-sidebar .resource-box { position: static; }
.page-toc { padding: 26px 27px; border: 1px solid var(--line); background: #fff; }
.page-toc > p { margin: 0 0 16px; color: var(--gold-text); font-size: .64rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.page-toc ol { margin: 0; padding: 0; list-style: none; counter-reset: toc; }
.page-toc li { counter-increment: toc; border-top: 1px solid var(--line); }
.page-toc a { padding: 11px 0; display: grid; grid-template-columns: 25px 1fr; gap: 8px; color: var(--muted); font-size: .7rem; line-height: 1.4; }
.page-toc a::before { content: counter(toc, decimal-leading-zero); color: var(--gold-text); font-family: var(--serif); }
.page-toc a:hover { color: var(--navy); }
.resource-box { position: sticky; top: 30px; padding: 28px; border-top: 3px solid var(--gold); background: var(--navy); color: #fff; }
.resource-box > p { margin: 0 0 18px; color: var(--gold-light); font-size: .65rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.resource-box a, .resource-box > span { display: flex; justify-content: space-between; gap: 14px; padding-block: 14px; border-top: 1px solid rgba(255,255,255,.14); font: 400 .95rem var(--serif); }
.resource-box a:hover { color: var(--gold-light); }
.faq-list { margin-top: 35px; border-top: 1px solid var(--line); }
.standalone-title { margin: 0; color: var(--navy); font: 400 clamp(2.3rem, 4vw, 4rem)/1 var(--serif); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 21px 35px 21px 0; cursor: pointer; color: var(--navy); font: 400 1.15rem var(--serif); }
.faq-list p { margin: 0; padding: 0 40px 22px 0; color: var(--muted); }
.related-section { background: var(--paper); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.related-grid a { min-height: 220px; padding: 28px; display: flex; align-items: flex-start; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; transition: transform .2s ease, box-shadow .2s ease; }
.related-grid a:hover { position: relative; z-index: 1; transform: translateY(-4px); box-shadow: var(--shadow); }
.related-grid small { color: var(--rust); font-size: .62rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.related-grid h3 { margin: 30px 0 20px; color: var(--navy); font: 400 clamp(1.4rem, 2.3vw, 1.9rem)/1.08 var(--serif); }
.related-grid span { margin-top: auto; color: var(--gold-text); font-size: .63rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.next-step { padding-block: 65px; background: var(--rust); color: #fff; }
.next-step .container { display: flex; align-items: center; gap: 15px; }
.next-step .container > div { margin-right: auto; }
.next-step h2 { font-size: clamp(2rem, 4vw, 3.3rem); }

.simple-hero { padding-block: 90px; background: var(--navy); color: #fff; text-align: center; }
.simple-hero.compact { padding-block: 65px; }
.simple-hero h1 { margin-top: 14px; font-size: clamp(3.2rem, 7vw, 6rem); }
.simple-hero p:not(.eyebrow) { color: #c4cfd5; }
.simple-hero .container > p:not(.eyebrow) { max-width: 900px; margin-inline: auto; }
.guide-list { border-top: 1px solid var(--line); }
.guide-at-glance { margin: 0 0 38px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 3px solid var(--gold); border-left: 1px solid var(--line); background: #fff; }
.guide-at-glance > div { min-height: 155px; padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.guide-at-glance small { color: var(--gold-text); font-size: .62rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.guide-at-glance p { margin: 17px 0 0; color: var(--muted); font-size: .79rem; line-height: 1.65; }
.guide-list article { min-height: 190px; display: grid; grid-template-columns: 70px minmax(180px, 230px) 1fr 56px; align-items: center; gap: 28px; padding-block: 18px; border-bottom: 1px solid var(--line); }
.guide-list article > span { color: var(--gold-text); font: 400 2.2rem var(--serif); }
.guide-list-image { height: 145px; overflow: hidden; background: var(--soft); }
.guide-list-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.guide-list article:hover .guide-list-image img { transform: scale(1.025); }
.guide-list h2 { margin: 5px 0; font: 400 1.7rem var(--serif); }
.guide-list h2 a:hover { color: var(--rust); }
.guide-list p { margin: 0; color: var(--muted); }
.circle-link { width: 48px; height: 48px; display: grid; place-items: center; border: 1px solid var(--gold-text); border-radius: 50%; color: var(--gold-text); }
.steps { margin: 0; padding: 0; list-style: none; counter-reset: guide; }
.steps li { display: grid; grid-template-columns: 75px 1fr; gap: 25px; padding-block: 34px; border-bottom: 1px solid var(--line); }
.steps li:first-child { padding-top: 0; }
.steps li > span { color: var(--gold-text); font: 400 2rem var(--serif); }
.steps p { margin: 0; color: var(--muted); }
.notice { margin-top: 45px; padding: 24px 27px; border-left: 3px solid var(--gold); background: var(--soft); color: var(--muted); }
.notice strong { color: var(--navy); }
.notice p { margin: 5px 0 0; }
.back-link { margin-top: 36px; display: inline-block; }
.guide-banner { width: 100%; height: clamp(280px, 32vw, 470px); object-fit: cover; }
.monogram { width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid var(--gold); color: var(--navy); font: 700 .7rem var(--serif); }

.directory-summary { margin-top: 42px; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); background: #fff; }
.directory-summary div { min-height: 112px; display: grid; place-content: center; padding: 18px; text-align: center; }
.directory-summary div + div { border-left: 1px solid var(--line); }
.directory-summary strong { color: var(--navy); font: 400 2.35rem/1 var(--serif); }
.directory-summary span { margin-top: 8px; color: var(--muted); font-size: .63rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.directory-audit { margin-top: 30px; padding: 23px 26px; border-left: 3px solid var(--gold); background: var(--soft); }
.directory-sources { display:grid; grid-template-columns:repeat(5,1fr); margin-top:26px; border:1px solid var(--line); background:#fff; }
.directory-sources a { min-height:148px; display:flex; flex-direction:column; justify-content:end; gap:4px; padding:18px 21px; border-right:1px solid var(--line); color:var(--navy); text-decoration:none; transition:border-color .2s ease,box-shadow .2s ease; }
.directory-sources a:last-child { border-right:0; }
.directory-sources a:hover { position:relative; z-index:1; box-shadow:inset 0 0 0 2px var(--gold-text); }
.directory-sources img { width:auto; max-width:125px; height:48px; margin-bottom:auto; object-fit:contain; object-position:left center; }
.directory-sources span { font:800 .9rem/1 var(--sans); letter-spacing:.07em; }
.directory-sources small { color:var(--muted); font-size:.62rem; line-height:1.35; text-transform:uppercase; letter-spacing:.06em; }
.directory-audit strong { color: var(--navy); font: 400 1.2rem var(--serif); }
.directory-audit p { margin: 7px 0 0; color: var(--muted); font-size: .82rem; }
.directory-gallery { margin-top: 24px; display: grid; grid-template-columns: 1.15fr .85fr 1fr; gap: 10px; }
.directory-gallery figure { position: relative; min-height: 230px; margin: 0; overflow: hidden; background: var(--navy); }
.directory-gallery img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; opacity: .78; transition: transform .35s ease; }
.directory-gallery figure:hover img { transform: scale(1.025); }
.directory-gallery figure::after { content: ''; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent, rgba(3,16,28,.9)); }
.directory-gallery figcaption { position: absolute; z-index: 1; right: 20px; bottom: 18px; left: 20px; color: #fff; font: 400 1.15rem var(--serif); }
.directory-gallery figcaption span { margin-top: 5px; display: block; color: var(--gold-light); font: 800 .55rem var(--sans); letter-spacing: .13em; text-transform: uppercase; }
.directory-tools { margin-bottom: 35px; }
.directory-refine { display: grid; grid-template-columns: 1fr minmax(240px, .33fr); gap: 12px; }
.directory-tools label { display: grid; gap: 8px; color: var(--navy); font: 400 1.15rem var(--serif); }
.directory-tools input, .directory-tools select { width: 100%; height: 56px; padding: 0 18px; border: 1px solid var(--control-border); border-radius: 0; background: #fff; color: var(--ink); font: 400 .85rem var(--sans); }
.directory-tools input:focus, .directory-tools select:focus { outline: 2px solid var(--gold-text); outline-offset: 1px; }
.directory-toolbar { margin-top: 14px; display: flex; align-items: start; justify-content: space-between; gap: 24px; }
.directory-count { min-width: 108px; margin: 8px 0 0; color: var(--muted); font-size: .72rem; font-weight: 700; white-space: nowrap; }
.filters { display: flex; flex-wrap: wrap; justify-content: end; gap: 8px; }
.filters button { min-height: 44px; padding: 0 14px; border: 1px solid var(--control-border); background: transparent; color: var(--ink); cursor: pointer; font-size: .66rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.filters button:hover, .filters button.is-selected { border-color: var(--navy); background: var(--navy); color: #fff; }
.filters button span { margin-left: 4px; color: var(--muted); font-size: .58rem; }
.filters button:hover span, .filters button.is-selected span { color: var(--gold-light); }
.directory-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.directory-grid[aria-busy="true"] { opacity: .62; }
.directory-card { min-height: 330px; position: relative; display: grid; grid-template-rows: 126px 1fr; overflow: hidden; border: 1px solid transparent; background: #fff; }
.directory-card:hover { border-color: var(--gold-text); box-shadow: var(--shadow); }
.directory-card[hidden] { display: none; }
.directory-card-visual { position: relative; display: block; overflow: hidden; background: var(--navy); }
.directory-card-visual img { width: 100%; height: 100%; object-fit: cover; opacity: .82; transition: transform .3s ease; }
.directory-card:hover .directory-card-visual img { transform: scale(1.035); }
.directory-card-visual i { position: absolute; right: 10px; bottom: 9px; padding: 5px 7px; background: rgba(3,16,28,.78); color: #fff; font: 800 .5rem var(--sans); font-style: normal; letter-spacing: .1em; text-transform: uppercase; }
.directory-card-generated { isolation: isolate; display: grid; place-items: center; background: linear-gradient(135deg, hsl(var(--visual-hue) 48% 18%), hsl(var(--visual-hue-alt) 52% 35%)); }
.directory-card-generated::before { content: ""; position: absolute; left: var(--visual-x); top: var(--visual-y); width: 132px; height: 132px; border: 1px solid rgba(255,255,255,.28); border-radius: 50%; transform: translate(-50%,-50%); box-shadow: 0 0 0 28px rgba(255,255,255,.055), 0 0 0 57px rgba(255,255,255,.035); }
.directory-card-generated::after { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .3; background: repeating-linear-gradient(118deg, transparent 0 22px, rgba(255,255,255,.1) 23px 24px); }
.directory-card-monogram { color: rgba(255,255,255,.92); font: 500 2.15rem/1 var(--serif); letter-spacing: .08em; text-shadow: 0 7px 22px rgba(0,0,0,.25); transition: transform .3s ease; }
.directory-card:hover .directory-card-monogram { transform: scale(1.06); }
.directory-card-content { padding: 20px 42px 21px 21px; }
.directory-card small { color: var(--gold-text); font-size: .6rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.directory-card strong { margin-top: 5px; display: block; font: 400 1rem/1.15 var(--serif); }
.directory-card p { margin: 7px 0 0; display: -webkit-box; overflow: hidden; color: var(--muted); font-size: .72rem; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.directory-card em { margin-top: 9px; display: block; color: #7a6750; font-size: .59rem; font-style: normal; letter-spacing: .04em; }
.directory-card b { position: absolute; right: 19px; bottom: 21px; color: var(--gold-text); }
.empty-result { padding: 30px; background: #fff; text-align: center; }
.directory-more { margin-top: 30px; display: flex; justify-content: center; }
.directory-more .button-outline { border-color: var(--navy); background: transparent; color: var(--navy); cursor: pointer; }
.directory-more .button-outline:hover { background: var(--navy); color: #fff; }
.directory-more .button-outline:disabled { cursor: wait; opacity: .55; }
.directory-note { margin: 28px 0 0; color: var(--muted); font-size: .72rem; text-align: center; }
.directory-note a { border-bottom: 1px solid var(--gold); color: var(--navy); }
.directory-hero .page-hero-grid { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); }
.directory-hero .page-hero-grid img { object-position: center; }
.directory-intro > p { max-width: 460px; }
.directory-paths { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.directory-path { min-height: 430px; position: relative; overflow: hidden; background: var(--navy); color: #fff; }
.directory-path > img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; opacity: .55; transition: transform .4s ease; }
.directory-path::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,16,28,.96), rgba(3,16,28,.25)); }
.directory-path:hover > img { transform: scale(1.035); }
.directory-path > div { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: end; padding: 28px; }
.directory-path .eyebrow { color: var(--gold-light); }
.directory-path h3 { margin: 0; font: 400 clamp(1.65rem, 2.3vw, 2.2rem)/1.03 var(--serif); }
.directory-path p:not(.eyebrow) { margin: 15px 0 22px; color: #d7e0e5; font-size: .82rem; line-height: 1.65; }
.directory-path .text-link { width: fit-content; color: var(--gold-light); border-bottom: 1px solid currentColor; font-size: .66rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.directory-guidance { padding-block: 72px; background: var(--rust); color: #fff; }
.directory-guidance .container { display: grid; grid-template-columns: 1fr minmax(280px, .75fr) auto; align-items: center; gap: 55px; }
.directory-guidance h2 { margin: 0; font: 400 clamp(2.3rem, 4vw, 3.7rem)/1 var(--serif); }
.directory-guidance p:not(.eyebrow) { margin: 0; color: #f0ddd5; font-family: var(--serif); }
.glossary-intro { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 80px; }
.glossary-intro h2 { margin: 0 0 14px; color: var(--navy); font: 400 clamp(2.3rem, 4vw, 4rem)/1 var(--serif); }
.glossary-intro p { max-width: 820px; color: var(--muted); }
.glossary-search span { margin-bottom: 8px; display: block; color: var(--navy); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.glossary-search input { width: 100%; min-height: 58px; padding: 0 18px; border: 1px solid var(--control-border); background: #fff; }
.glossary-jump { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 8px; }
.glossary-jump a { padding: 9px 13px; border: 1px solid var(--control-border); background: var(--paper); font-size: .68rem; font-weight: 700; }
.glossary-jump a:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.glossary-sources { margin: 24px 0 0; color: var(--muted); font-size: .75rem; }
.glossary-sources a { border-bottom: 1px solid var(--gold); color: var(--navy); }
.glossary-section + .glossary-section { margin-top: 75px; padding-top: 75px; border-top: 1px solid var(--line); }
.glossary-section > header { margin-bottom: 30px; display: flex; align-items: baseline; gap: 22px; }
.glossary-section > header span { color: var(--gold-text); font: 400 1.8rem var(--serif); }
.glossary-section h2 { margin: 0; color: var(--navy); font: 400 clamp(2rem, 4vw, 3.4rem)/1 var(--serif); }
.glossary-section dl { margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.glossary-entry { min-height: 145px; padding: 24px 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.glossary-entry[hidden], .glossary-section[hidden] { display: none; }
.glossary-entry dt { color: var(--navy); font: 400 1.3rem var(--serif); }
.glossary-entry dd { margin: 10px 0 0; color: var(--muted); font-size: .84rem; line-height: 1.7; }
.editorial-banner { width: 100%; height: clamp(380px, 40vw, 620px); object-fit: cover; }
.event-group + .event-group { margin-top: 90px; padding-top: 90px; border-top: 1px solid var(--line); }
.event-group > header { margin-bottom: 35px; }
.event-group h2 { margin: 0; color: var(--navy); font: 400 clamp(2.3rem, 4vw, 4rem)/1 var(--serif); }
.event-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.event-grid article { min-height: 220px; padding: 28px; border-top: 3px solid var(--gold); background: #fff; }
.event-grid small { color: var(--rust); font-size: .63rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.event-grid h3 { margin: 25px 0 12px; color: var(--navy); font: 400 1.55rem/1.12 var(--serif); }
.event-grid p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.7; }
.contact-card { display: grid; grid-template-columns: 70px 1fr; align-items: center; gap: 25px; padding: 30px; border: 1px solid var(--line); }
.contact-card .monogram { width: 70px; height: 70px; }
.contact-card h2 { margin: 5px 0 10px; color: var(--navy); font: 400 clamp(1.35rem, 2.2vw, 2rem)/1.15 var(--serif); }
.contact-card a { margin-top: 18px; display: inline-block; }
.contact-card p { color: var(--muted); }
.contact-title { margin-top: 55px; }
.inline-link { border-bottom: 1px solid var(--gold); color: var(--navy); }
.academy-grid { display: grid; grid-template-columns: 1.2fr 1fr; grid-template-rows: repeat(3, 260px); gap: 14px; }
.academy-card { position: relative; overflow: hidden; background: var(--navy); color: #fff; }
.academy-card-wide { grid-row: 1 / 4; }
.academy-card img { width: 100%; height: 100%; object-fit: cover; opacity: .76; transition: transform .45s ease; }
.academy-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(3,16,28,.96), rgba(3,16,28,.05) 72%); }
.academy-card:hover img { transform: scale(1.025); }
.academy-card > span { position: absolute; z-index: 1; right: 28px; bottom: 26px; left: 28px; }
.academy-card small, .academy-card em { display: block; color: var(--gold-light); font-size: .62rem; font-style: normal; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.academy-card strong { margin: 7px 0 9px; display: block; font: 400 clamp(1.4rem, 2.3vw, 2.2rem)/1.08 var(--serif); }
.academy-card-wide strong { font-size: clamp(2.2rem, 4vw, 4rem); }
.academy-card p { max-width: 620px; margin: 0 0 12px; color: #d4dfe4; font-size: .82rem; }
.breed-jump { margin-bottom: 60px; display: flex; flex-wrap: wrap; gap: 8px; }
.breed-jump a { padding: 11px 15px; border: 1px solid var(--control-border); background: var(--paper); font-size: .66rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.breed-jump a:hover { border-color: var(--navy); background: var(--navy); color: #fff; }
.breed-family + .breed-family { margin-top: 90px; padding-top: 90px; border-top: 1px solid var(--line); }
.breed-family > header { margin-bottom: 34px; }
.breed-family h2, .culture-group h2 { margin: 0; color: var(--navy); font: 400 clamp(2.4rem, 4.5vw, 4.2rem)/1 var(--serif); }
.breed-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.breed-card { overflow: hidden; border: 1px solid var(--line); background: #fff; }
.breed-card figure { margin: 0; }
.breed-card figure img { width: 100%; height: 280px; object-fit: cover; background: #d8d8d2; transition: transform .35s ease; }
.breed-card:hover figure img { transform: scale(1.02); }
.breed-card figcaption { min-height: 42px; padding: 9px 15px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .55rem; line-height: 1.45; }
.breed-card figcaption a { border-bottom: 1px solid var(--gold); color: var(--navy); }
.breed-card > div { padding: 25px; }
.breed-card small { color: var(--gold-text); font-size: .59rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.breed-card h3 { margin: 8px 0 14px; color: var(--navy); font: 400 2rem/1 var(--serif); }
.breed-card p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.72; }
.breed-card dl { margin: 22px 0 0; border-top: 1px solid var(--line); }
.breed-card dl > div { padding: 12px 0; display: grid; grid-template-columns: 95px 1fr; gap: 14px; border-bottom: 1px solid var(--line); }
.breed-card dt { color: var(--navy); font-size: .61rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.breed-card dd { margin: 0; color: var(--muted); font-size: .72rem; }
.source-footnote { max-width: 1000px; margin: 42px auto 0; color: var(--muted); font-size: .7rem; line-height: 1.7; text-align: center; }
.urgent-strip, .gambling-warning { padding-block: 27px; color: #fff; }
.urgent-strip { background: #8c3f32; }
.gambling-warning { background: #251713; border-block: 4px solid var(--gold); }
.urgent-strip .container, .gambling-warning .container { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; }
.urgent-strip strong, .gambling-warning strong { font: 400 1.25rem var(--serif); }
.urgent-strip p, .gambling-warning p { margin: 0; color: #f3dfd8; font-size: .8rem; }
.urgent-strip a, .gambling-warning a { padding-bottom: 3px; border-bottom: 1px solid currentColor; color: var(--gold-light); font-size: .64rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.principle-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.principle-grid article { min-height: 270px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.principle-grid span { color: var(--gold-text); font: 400 1.8rem var(--serif); }
.principle-grid h3 { margin: 35px 0 12px; color: var(--navy); font: 400 1.45rem/1.1 var(--serif); }
.principle-grid p { margin: 0; color: var(--muted); font-size: .79rem; line-height: 1.7; }
.action-steps { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); list-style: none; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.action-steps li { min-height: 270px; padding: 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.action-steps li > span { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid var(--gold-text); border-radius: 50%; color: var(--gold-text); font: 400 1.1rem var(--serif); }
.action-steps h3 { margin: 32px 0 10px; color: var(--navy); font: 400 1.35rem var(--serif); }
.action-steps p { margin: 0; color: var(--muted); font-size: .78rem; }
.bet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.bet-grid article { min-height: 235px; padding: 27px; border-top: 3px solid var(--gold); background: #fff; }
.bet-grid small { color: var(--rust); font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.bet-grid h3 { margin: 24px 0 12px; color: var(--navy); font: 400 1.7rem var(--serif); }
.bet-grid p { margin: 0; color: var(--muted); font-size: .82rem; }
.bet-grid span { margin-top: 22px; display: block; color: var(--gold-text); font-size: .6rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.responsible-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.responsible-grid p { min-height: 170px; margin: 0; padding: 25px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); font-size: .8rem; }
.responsible-grid strong { margin-bottom: 14px; display: block; color: var(--navy); font: 400 1.3rem var(--serif); }
.culture-hero { background: radial-gradient(circle at 70% 20%, #26435b 0, var(--navy) 42%, #04131f 100%); }
.culture-group + .culture-group { margin-top: 85px; padding-top: 85px; border-top: 1px solid var(--line); }
.culture-group > header { margin-bottom: 33px; display: grid; grid-template-columns: 65px 1fr; align-items: end; gap: 20px; }
.culture-group > header > span { color: var(--gold-text); font: 400 2rem var(--serif); }
.book-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.book-grid article { min-height: 270px; padding: 28px; border: 1px solid var(--line); background: #fff; }
.book-grid small, .film-grid small { color: var(--rust); font-size: .61rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.book-grid h3, .film-grid h2 { margin: 28px 0 8px; color: var(--navy); font: 400 1.65rem/1.08 var(--serif); }
.book-grid p, .film-grid p { color: var(--muted); font-size: .79rem; line-height: 1.7; }
.book-grid .creator, .film-grid .creator { margin: 0 0 14px; color: var(--gold-text); font-size: .69rem; font-weight: 800; letter-spacing: .04em; }
.film-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.film-grid article { min-height: 300px; padding: 28px; border-top: 3px solid var(--gold); background: #fff; }
.film-grid article > span { display: block; color: var(--gold-text); font: 400 2rem var(--serif); }
.film-grid small { margin-top: 25px; display: block; }
.clean-list { padding: 0; list-style: none; }
.clean-list li { padding: 12px 0 12px 25px; border-bottom: 1px solid var(--line); position: relative; }
.clean-list li::before { content: '→'; position: absolute; left: 0; color: var(--gold-text); }
.legal-copy h2 { margin-top: 38px; }
.legal-copy h2:first-child { margin-top: 0; }
.legal-copy a { border-bottom: 1px solid var(--gold); }
.legal-copy > * { max-width: 1050px; margin-right: auto; }
.legal-copy .legal-intro { max-width: 1180px; color: var(--navy); font: 400 clamp(1.2rem, 2vw, 1.6rem)/1.55 var(--serif); }
.error-page { min-height: 65vh; display: grid; align-items: center; padding-block: 90px; background: var(--navy); color: #fff; text-align: center; }
.error-page p:not(.eyebrow) { color: #bbc8cf; font-family: var(--serif); }
.error-page .button-row { justify-content: center; margin-top: 30px; }

.editorial-trust { border-top: 1px solid var(--line); background: var(--soft); color: var(--muted); font-size: .72rem; }
.editorial-trust .container { min-height: 58px; display: flex; align-items: center; gap: 10px 22px; }
.editorial-trust a { color: var(--navy); font-weight: 700; text-decoration: underline; text-decoration-color: var(--gold-text); text-underline-offset: 3px; }
.editorial-trust a:last-child { margin-left: auto; }

.site-footer { background: #04131f; color: #91a1aa; }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 65px; padding-block: 75px 60px; }
.brand-light { color: #fff; }
.footer-intro p { max-width: 320px; font-family: var(--serif); }
.footer-grid > div:not(.footer-intro) { display: flex; flex-direction: column; align-items: start; gap: 10px; }
.footer-grid h2 { margin: 0 0 10px; color: var(--gold-light); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-grid > div:not(.footer-intro) a { font-size: .78rem; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { min-height: 56px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; }

@media (max-width: 1120px) {
    .menu-toggle { display: block; }
    .main-nav { position: absolute; top: 100%; right: 0; left: 0; display: none; padding: 10px 24px 20px; border-bottom: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow); }
    .main-nav.is-open { display: grid; }
    .main-nav a { min-height: 48px; justify-content: start; padding: 0; border-bottom: 1px solid var(--line); }
    .main-nav a::after { display: none; }
    .quick-grid, .proof-grid, .topic-grid, .guide-cards { grid-template-columns: repeat(2, 1fr); }
    .quick-grid a:nth-child(2) { border-right: 1px solid var(--line); }
    .proof-grid a:nth-child(2) { border-right: 1px solid rgba(255,255,255,.14); }
    .proof-grid a:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.14); }
    .intent-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-layout { grid-template-columns: 1fr; gap: 45px; }
    .faq-intro { position: static; }
    .feature-grid { grid-template-columns: 1fr; grid-template-rows: 480px repeat(2, 280px); }
    .feature-large { grid-row: auto; }
    .deauville-strip .container { grid-template-columns: 1fr 1fr; }
    .deauville-strip .button { grid-column: 1 / -1; justify-self: start; }
    .page-hero-grid { gap: 38px; }
    .page-hero img { height: 340px; }
    .article-grid { grid-template-columns: 1fr; gap: 50px; }
    .resource-box { position: static; }
    .article-sidebar { position: static; grid-template-columns: 1fr 1fr; align-items: start; }
    .directory-grid { grid-template-columns: repeat(2, 1fr); }
    .directory-paths { grid-template-columns: repeat(2, 1fr); }
    .directory-guidance .container { grid-template-columns: 1fr 1fr; gap: 30px; }
    .directory-guidance .button { grid-column: 1 / -1; justify-self: start; }
    .event-grid { grid-template-columns: repeat(2, 1fr); }
    .academy-grid { grid-template-rows: repeat(3, 230px); }
    .breed-grid, .bet-grid, .book-grid, .film-grid { grid-template-columns: repeat(2, 1fr); }
    .principle-grid, .action-steps { grid-template-columns: repeat(2, 1fr); }
    .responsible-grid { grid-template-columns: repeat(2, 1fr); }
    .urgent-strip .container, .gambling-warning .container { grid-template-columns: 1fr; gap: 8px; }
    .glossary-intro { grid-template-columns: 1fr; gap: 35px; }
    .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 45px; }
    .footer-intro { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
    :root { --gutter: 16px; }
    .topline .container { justify-content: center; }
    .topline span:first-child { display: none; }
    .header-main { min-height: 76px; }
    .brand-mark { width: 48px; height: 48px; }
    .brand strong { font-size: 1rem; }
    .hero { min-height: 620px; align-items: end; }
    .hero-overlay { background: linear-gradient(0deg, rgba(3,16,28,.96), rgba(3,16,28,.2)); }
    .hero-content { padding-block: 80px 65px; }
    .hero h1 { font-size: clamp(4rem, 22vw, 6rem); }
    .button-row { display: grid; }
    .quick-grid, .topic-grid, .guide-cards, .directory-grid, .intent-grid { grid-template-columns: 1fr; }
    .proof-grid { grid-template-columns: repeat(2, 1fr); }
    .proof-grid a { min-height: 105px; padding: 18px; align-items: flex-start; flex-direction: column; gap: 8px; }
    .proof-grid strong { font-size: 1.85rem; }
    .proof-grid span { max-width: none; font-size: .59rem; }
    .hero-proof { display: grid; gap: 7px; }
    .intent-card { min-height: 0; }
    .home-faq .faq-list summary { min-height: 80px; }
    .home-faq .faq-list details > div { padding-right: 0; }
    .article-sidebar, .related-grid, .guide-at-glance { grid-template-columns: 1fr; }
    .guide-at-glance > div { min-height: 0; }
    .knowledge-grid, .glossary-section dl, .event-grid, .breed-grid, .bet-grid, .book-grid, .film-grid, .principle-grid, .action-steps, .responsible-grid { grid-template-columns: 1fr; }
    .academy-grid { grid-template-columns: 1fr; grid-template-rows: 440px repeat(3, 330px); }
    .academy-card-wide { grid-row: auto; }
    .academy-card-wide strong { font-size: 2.4rem; }
    .breed-card figure img { height: 250px; }
    .knowledge-grid a { min-height: 390px; }
    .knowledge-grid span { right: 22px; bottom: 24px; left: 22px; }
    .glossary-entry { min-height: auto; }
    .quick-grid a, .quick-grid a:nth-child(2), .quick-grid a:last-child { border-right: 1px solid var(--line); }
    .section { padding-block: 72px; }
    .section-head { align-items: start; flex-direction: column; gap: 15px; }
    .feature-grid { grid-template-rows: repeat(3, 390px); }
    .feature-copy { inset: auto 20px 21px; }
    .feature-copy strong, .feature:not(.feature-large) .feature-copy strong { font-size: 1.65rem; }
    .guide-cards > a { border-right: 0; border-bottom: 1px solid var(--line); }
    .deauville-strip .container { grid-template-columns: 1fr; gap: 20px; }
    .deauville-strip .button { grid-column: auto; }
    .page-hero { padding-bottom: 50px; }
    .page-hero-grid { grid-template-columns: 1fr; }
    .directory-hero .page-hero-grid { grid-template-columns: 1fr; }
    .page-hero img { height: 270px; box-shadow: 12px 12px 0 var(--gold); }
    .page-hero h1 { font-size: 3.25rem; }
    .simple-hero { padding-block: 68px; }
    .simple-hero h1 { font-size: 3.25rem; }
    .directory-summary { grid-template-columns: repeat(2, 1fr); }
    .directory-summary div + div { border-left: 1px solid var(--line); }
    .directory-summary div:nth-child(odd) { border-left: 0; }
    .directory-summary div:nth-child(n+3) { border-top: 1px solid var(--line); }
    .directory-sources { grid-template-columns:repeat(2,1fr); }
    .directory-sources a:nth-child(even) { border-right:0; }
    .directory-sources a:nth-child(n+3) { border-top:1px solid var(--line); }
    .directory-sources a:nth-child(5) { grid-column:1 / -1; border-right:0; }
    .directory-sources a:last-child { border-right:0; }
    .directory-gallery { grid-template-columns: 1fr; }
    .directory-paths { grid-template-columns: 1fr; }
    .directory-path { min-height: 360px; }
    .directory-guidance .container { grid-template-columns: 1fr; gap: 22px; }
    .directory-guidance .button { grid-column: auto; }
    .directory-gallery figure { min-height: 210px; }
    .directory-refine { grid-template-columns: 1fr; }
    .directory-toolbar { align-items: stretch; flex-direction: column; gap: 10px; }
    .filters { justify-content: start; }
    .next-step .container { align-items: stretch; flex-direction: column; }
    .next-step .container > div { margin: 0 0 16px; }
    .guide-list article { grid-template-columns: 48px 1fr; gap: 14px; padding-block: 24px; }
    .guide-list article > span { grid-row: 1 / 3; align-self: start; }
    .guide-list-image { grid-column: 2; height: 180px; }
    .circle-link { display: none; }
    .steps li { grid-template-columns: 48px 1fr; }
    .directory-card { min-height: 315px; }
    .contact-card { grid-template-columns: 1fr; }
    .editorial-trust .container { min-height: 0; padding-block: 18px; align-items: flex-start; flex-direction: column; gap: 5px; }
    .editorial-trust a:last-child { margin: 5px 0 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 38px 24px; }
    .footer-bottom { padding-block: 18px; flex-direction: column; justify-content: center; text-align: center; }
}

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

@media print {
    .topline, .site-header, .site-footer, .editorial-trust, .next-step, .button-row { display: none !important; }
    body { background: #fff; color: #000; }
    .section { padding-block: 25px; }
    a { text-decoration: underline; }
}

/* HTML pagination remains usable without JavaScript. */
[hidden] { display: none !important; }
.directory-pagination { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1rem; margin: 1.5rem 0; }
.directory-tools > .button { margin: 1rem 0; }
.guide-summary, .guide-sources { margin: 0 0 2.5rem; padding: 1.5rem; background: #f3f6f4; border-radius: .75rem; }
.guide-summary li, .guide-sources li { margin: .6rem 0; }
.guide-summary a, .guide-sources a { text-decoration: underline; text-underline-offset: .2em; }
.guide-depth section, .steps li { scroll-margin-top: 7rem; }
.practical-data{background:#18372f;color:#fff}.practical-data .section-head{align-items:end}.practical-data .section-head h2,.practical-data .section-head p{color:#fff}.practical-data .eyebrow{color:#d9b769}.practical-data-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.practical-data-grid article{display:flex;flex-direction:column;min-height:270px;padding:28px;border:1px solid rgba(255,255,255,.18);border-radius:18px;background:rgba(255,255,255,.06)}.practical-data-grid strong{font-family:var(--font-display);font-size:clamp(1.8rem,4vw,3rem);line-height:1;color:#e9c878}.practical-data-grid h3{margin:10px 0 12px;font-size:1.15rem;color:#fff}.practical-data-grid p{margin:0 0 22px;color:rgba(255,255,255,.82)}.practical-data-grid a{margin-top:auto;color:#f2d58d;font-weight:700;font-size:.9rem}@media(max-width:800px){.practical-data-grid{grid-template-columns:1fr}.practical-data-grid article{min-height:0}}
