:root {
  --navy-950: #06182a;
  --navy-900: #08213a;
  --navy-800: #0c2e4f;
  --navy-700: #17476f;
  --gold-500: #c99d4f;
  --gold-400: #dbb66d;
  --gold-300: #ecd39d;
  --cream-100: #f8f6f1;
  --cream-200: #f1ede4;
  --ink: #10263a;
  --muted: #64717d;
  --line: #dfe4e4;
  --white: #fff;
  --green: #1da86f;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 10px 35px rgb(7 28 51 / .07);
  --shadow: 0 22px 70px rgb(7 28 51 / .13);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 94px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { max-width: 820px; }
.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: 999; top: -80px; left: 20px; padding: 10px 15px;
  color: white; background: var(--navy-900); border-radius: 0 0 8px 8px;
}
.skip-link:focus { top: 0; }

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  color: var(--navy-900);
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.035em;
  line-height: 1.1;
}
h1 { font-size: clamp(2.75rem, 5vw, 5rem); }
h2 { font-size: clamp(2.15rem, 3.5vw, 3.55rem); }
h3 { color: var(--navy-900); line-height: 1.25; }

.topbar { color: #c9d5df; background: var(--navy-950); font-size: .75rem; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; min-height: 35px; }
.topbar-inner span, .topbar-contact, .topbar-contact a { display: flex; align-items: center; gap: 8px; }
.topbar-contact { gap: 24px; }
.topbar a:hover { color: var(--white); }
.site-header {
  position: sticky; z-index: 90; top: 0; background: rgb(255 255 255 / .96);
  border-bottom: 1px solid rgb(12 46 79 / .08); backdrop-filter: blur(14px); transition: box-shadow .25s;
}
.site-header.scrolled { box-shadow: 0 10px 30px rgb(7 28 51 / .08); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; min-height: 78px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-logo { display: block; width: 52px; height: 52px; object-fit: contain; border-radius: 13px; }
.may-brand-copy { display: flex; flex-direction: column; line-height: 1; }
.may-brand-copy strong { color: var(--navy-900); font: 400 1.35rem Georgia, serif; letter-spacing: .01em; white-space: nowrap; }
.may-brand-copy strong em { color: var(--gold-500); font-style: normal; }
.may-brand-copy small { margin-top: 7px; color: #647487; font-size: .56rem; letter-spacing: .2em; text-transform: uppercase; white-space: nowrap; }
.brand-mark {
  display: grid; place-items: center; width: 43px; height: 43px; color: var(--gold-300);
  background: var(--navy-900); border: 1px solid rgb(215 173 88 / .5); transform: rotate(45deg); border-radius: 9px;
}
.brand-mark span { font: 700 21px Georgia, serif; transform: rotate(-45deg); }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong { color: var(--navy-900); font-family: Georgia, serif; font-size: 1.16rem; letter-spacing: .015em; }
.brand-copy small { margin-top: 5px; color: var(--gold-500); font-size: .55rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: 29px; color: #253b4e; font-size: .87rem; font-weight: 650; }
.main-nav > a:not(.button) { position: relative; padding: 28px 0; }
.main-nav > a:not(.button)::after {
  position: absolute; right: 50%; bottom: 18px; left: 50%; height: 2px; content: "";
  background: var(--gold-500); transition: inset .2s;
}
.main-nav > a:not(.button):hover::after, .main-nav > a.active::after { right: 0; left: 0; }
.nav-toggle { display: none; color: var(--navy-900); background: none; border: 0; }
.menu-close { display: none; }
.nav-toggle[aria-expanded="true"] .menu-close { display: inline; }
.nav-toggle[aria-expanded="true"] .menu-open { display: none; }

.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px; min-height: 52px;
  padding: 0 24px; border: 1px solid transparent; border-radius: 8px; cursor: pointer;
  font-size: .88rem; font-weight: 760; line-height: 1; transition: transform .2s, box-shadow .2s, background .2s;
}
.button:hover { transform: translateY(-2px); }
.button-sm { min-height: 42px; padding-inline: 18px; font-size: .78rem; }
.button-primary { color: white; background: var(--navy-800); box-shadow: 0 9px 25px rgb(8 33 58 / .18); }
.button-primary:hover { background: var(--navy-700); }
.button-gold { color: var(--navy-950); background: var(--gold-400); box-shadow: 0 12px 28px rgb(183 134 51 / .24); }
.button-gold:hover { background: #e7c57f; }
.button-block { width: 100%; }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: white; font-size: .87rem; font-weight: 750; }
.text-link svg { transition: transform .2s; }
.text-link:hover svg { transform: translateX(4px); }
.dark-link { color: var(--navy-800); }

.flash-stack { position: fixed; z-index: 100; top: 102px; right: 0; left: 0; pointer-events: none; }
.flash { width: fit-content; max-width: 600px; margin-left: auto; padding: 13px 18px; color: white; border-radius: 8px; box-shadow: var(--shadow); pointer-events: auto; }
.flash-success { background: #197b57; }
.flash-error { background: #b74747; }

.hero {
  position: relative; overflow: hidden; color: white;
  background:
    radial-gradient(circle at 12% 5%, rgb(38 87 124 / .62), transparent 34%),
    linear-gradient(123deg, var(--navy-950) 0%, var(--navy-900) 62%, #0e3657 100%);
}
.hero::before {
  position: absolute; inset: 0; content: ""; pointer-events: none; opacity: .16;
  background-image: linear-gradient(rgb(255 255 255 / .15) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / .12) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to right, black, transparent 72%);
}
.hero-glow { position: absolute; width: 600px; height: 600px; top: -300px; right: -180px; border: 1px solid rgb(215 173 88 / .2); border-radius: 50%; box-shadow: 0 0 0 100px rgb(215 173 88 / .025), 0 0 0 200px rgb(215 173 88 / .02); }
.hero-grid { position: relative; display: grid; grid-template-columns: .94fr 1.06fr; align-items: center; min-height: 680px; padding-block: 68px 54px; gap: 60px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--gold-300); font-size: .7rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow > span { width: 28px; height: 1px; background: currentColor; }
.eyebrow.dark { color: #a67b34; }
.hero h1 { max-width: 670px; margin-bottom: 24px; color: white; font-size: clamp(3.3rem, 5.7vw, 5.8rem); }
.hero-lead { max-width: 600px; margin-bottom: 33px; color: #cbd7e1; font-size: 1.08rem; line-height: 1.78; }
.hero-actions { display: flex; align-items: center; gap: 28px; }
.hero-proof { display: flex; align-items: center; gap: 14px; margin-top: 42px; }
.avatar-stack { display: flex; }
.avatar-stack span {
  display: grid; place-items: center; width: 36px; height: 36px; margin-left: -8px; color: white;
  background: linear-gradient(135deg, #4a6c86, #1b3b55); border: 2px solid var(--navy-900); border-radius: 50%; font-size: .6rem; font-weight: 800;
}
.avatar-stack span:first-child { margin-left: 0; background: linear-gradient(135deg, #c89a71, #6e4935); }
.avatar-stack span:nth-child(2) { background: linear-gradient(135deg, #bc9075, #46342d); }
.hero-proof p { margin: 0; font-size: .76rem; line-height: 1.45; }
.hero-proof strong { color: white; }
.hero-proof p span { color: #91a5b6; }
.hero-visual { position: relative; }
.hero-frame { position: relative; max-width: 590px; margin-left: auto; padding: 12px; background: rgb(255 255 255 / .09); border: 1px solid rgb(255 255 255 / .18); border-radius: 32px 32px 110px 32px; }
.hero-frame::before { position: absolute; top: -18px; right: 68px; width: 78px; height: 4px; content: ""; background: var(--gold-400); border-radius: 20px; }
.hero-frame img { width: 100%; aspect-ratio: 1 / .99; object-fit: cover; border-radius: 22px 22px 98px 22px; }
.hero-badge { position: absolute; display: flex; align-items: center; color: var(--ink); background: rgb(255 255 255 / .96); border: 1px solid rgb(255 255 255 / .6); box-shadow: var(--shadow); backdrop-filter: blur(10px); }
.hero-badge-top { top: 42px; left: -46px; gap: 12px; padding: 13px 18px 13px 13px; border-radius: 13px; }
.badge-icon { display: grid; place-items: center; width: 39px; height: 39px; color: var(--gold-400); background: var(--navy-900); border-radius: 9px; }
.hero-badge-top span:last-child { display: flex; flex-direction: column; line-height: 1.35; }
.hero-badge-top small { color: var(--muted); font-size: .6rem; }
.hero-badge-top strong { color: var(--navy-900); font-size: .75rem; }
.hero-badge-bottom { right: -20px; bottom: 65px; gap: 12px; padding: 15px 18px; border-radius: 12px; }
.hero-badge-bottom strong { color: var(--gold-500); font: 700 1.8rem Georgia, serif; }
.hero-badge-bottom span { color: #536373; font-size: .67rem; line-height: 1.35; }
.trust-row { position: relative; display: flex; align-items: center; justify-content: space-between; padding-block: 24px; border-top: 1px solid rgb(255 255 255 / .12); color: #8197aa; }
.trust-row > span { font-size: .66rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.trust-logos { display: flex; align-items: center; gap: clamp(24px, 4vw, 55px); }
.trust-logos b { color: #91a5b6; font-family: Georgia, serif; font-size: .86rem; letter-spacing: .09em; }

.section { padding-block: 105px; }
.section-heading { margin-bottom: 50px; }
.split-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 60px; }
.split-heading > div { max-width: 720px; }
.split-heading h2 { margin-bottom: 0; }
.split-heading > p { max-width: 390px; margin: 0 0 5px; color: var(--muted); line-height: 1.8; }
.centered { max-width: 790px; margin-inline: auto; text-align: center; }
.centered p { max-width: 620px; margin: 0 auto; color: #aec0cf; }
.centered h2 { margin-bottom: 20px; }

.services-section { background: var(--cream-100); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  position: relative; overflow: hidden; padding: 35px 32px 30px; background: white; border: 1px solid #e5e2db;
  border-radius: var(--radius); box-shadow: 0 3px 0 transparent; transition: transform .3s, box-shadow .3s, border-color .3s;
}
.service-card::before { position: absolute; top: 0; right: 0; left: 0; height: 3px; content: ""; background: var(--gold-400); transform: scaleX(0); transform-origin: left; transition: transform .3s; }
.service-card:hover { transform: translateY(-8px); border-color: #d9c9a8; box-shadow: var(--shadow-sm); }
.service-card:hover::before { transform: scaleX(1); }
.service-number { position: absolute; top: 22px; right: 26px; color: #e4e3df; font: 700 2.6rem Georgia, serif; }
.service-icon { display: grid; place-items: center; width: 57px; height: 57px; margin-bottom: 26px; color: var(--gold-500); background: var(--navy-900); border-radius: 13px; }
.service-card h3 { max-width: 270px; margin-bottom: 14px; font-family: Georgia, serif; font-size: 1.38rem; }
.service-card > p { min-height: 82px; margin-bottom: 21px; color: var(--muted); font-size: .88rem; line-height: 1.75; }
.service-card ul { display: grid; gap: 9px; min-height: 126px; margin: 0 0 24px; padding: 21px 0 0; list-style: none; border-top: 1px solid #ece9e3; }
.service-card li { display: flex; align-items: center; gap: 8px; color: #394b5a; font-size: .79rem; }
.service-card li svg { flex: 0 0 auto; color: var(--gold-500); }
.service-card > a { display: inline-flex; align-items: center; gap: 8px; color: var(--navy-800); font-size: .78rem; font-weight: 800; }

.about-section { overflow: hidden; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 100px; }
.about-visual { position: relative; min-height: 560px; }
.about-visual::before { position: absolute; top: 18px; right: 50px; bottom: 0; left: -100vw; content: ""; background: var(--cream-200); border-radius: 0 180px 20px 0; }
.about-panel { position: relative; z-index: 1; max-width: 500px; margin-top: 45px; padding: 72px 55px 55px; color: white; background: var(--navy-900); border-radius: 10px 120px 10px 10px; box-shadow: var(--shadow); }
.about-quote { position: absolute; top: 34px; left: 47px; color: var(--gold-400); font: 700 5rem Georgia, serif; line-height: 1; }
.about-panel blockquote { margin: 30px 0 25px; font: 400 1.72rem/1.48 Georgia, serif; }
.gold-line { display: block; width: 42px; height: 2px; margin-bottom: 15px; background: var(--gold-400); }
.about-panel small { color: #a8bac8; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.about-floating { position: absolute; z-index: 2; right: -18px; bottom: 47px; display: flex; align-items: center; gap: 14px; width: 280px; padding: 17px; background: white; border-radius: 12px; box-shadow: var(--shadow); }
.about-floating > span { display: grid; place-items: center; flex: 0 0 51px; height: 51px; color: var(--gold-500); background: #f6f0e3; border-radius: 50%; }
.about-floating div { display: flex; flex-direction: column; line-height: 1.45; }
.about-floating strong { color: var(--navy-900); font-size: .78rem; }
.about-floating small { color: var(--muted); font-size: .65rem; }
.about-copy h2 { margin-bottom: 25px; }
.about-copy > p { margin-bottom: 31px; color: var(--muted); line-height: 1.85; }
.principles { display: grid; }
.principles > div { display: grid; grid-template-columns: 47px 1fr; gap: 18px; padding: 19px 0; border-top: 1px solid var(--line); }
.principles > div > span { color: var(--gold-500); font: 700 .9rem Georgia, serif; }
.principles section strong { display: block; margin-bottom: 3px; color: var(--navy-900); font-family: Georgia, serif; }
.principles section p { margin: 0; color: var(--muted); font-size: .79rem; }

.process-section { position: relative; overflow: hidden; padding-block: 105px 115px; color: white; background: var(--navy-900); }
.process-section::before { position: absolute; inset: 0; content: ""; opacity: .08; background-image: radial-gradient(circle, #fff 1px, transparent 1px); background-size: 28px 28px; }
.process-section .container { position: relative; }
.process-section h2 { color: white; }
.process-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 35px; }
.process-grid::before { position: absolute; top: 56px; right: 10%; left: 10%; height: 1px; content: ""; background: linear-gradient(90deg, transparent, #526b80 8%, #526b80 92%, transparent); }
.process-step { position: relative; text-align: center; }
.process-step > span { display: block; margin-bottom: 23px; color: var(--gold-300); font: 700 .8rem Georgia, serif; }
.step-dot { position: relative; z-index: 1; width: 14px; height: 14px; margin: 0 auto 28px; background: var(--gold-400); border: 4px solid var(--navy-900); border-radius: 50%; box-shadow: 0 0 0 1px var(--gold-400), 0 0 0 6px rgb(215 173 88 / .12); }
.process-step h3 { margin-bottom: 12px; color: white; font-family: Georgia, serif; font-size: 1.15rem; }
.process-step p { margin: 0; color: #9cb0c0; font-size: .78rem; line-height: 1.75; }
.stats-section { position: relative; z-index: 2; margin-top: -1px; color: var(--navy-900); background: var(--gold-400); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-grid > div { display: flex; flex-direction: column; padding: 30px 20px; text-align: center; border-right: 1px solid rgb(7 28 51 / .16); }
.stats-grid > div:last-child { border: 0; }
.stats-grid strong { font: 700 2rem Georgia, serif; }
.stats-grid span { margin-top: 2px; font-size: .66rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; }

.testimonial-section { background: white; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.testimonial-card { position: relative; padding: 35px; background: var(--cream-100); border: 1px solid #e7e3da; border-radius: var(--radius); }
.quote-mark { color: var(--gold-400); font: 700 3.8rem Georgia, serif; line-height: .6; }
.testimonial-card > p { min-height: 120px; margin: 24px 0 29px; color: #435463; font: 400 1.01rem/1.75 Georgia, serif; }
.testimonial-card footer { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid #e1ded5; }
.testimonial-avatar { display: grid; place-items: center; width: 42px; height: 42px; color: white; background: var(--navy-800); border-radius: 50%; font-weight: 800; }
.testimonial-card footer div { display: flex; flex-direction: column; }
.testimonial-card footer strong { color: var(--navy-900); font-size: .78rem; }
.testimonial-card footer small { color: var(--muted); font-size: .65rem; }

.insights-section { background: var(--cream-100); }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.article-card { overflow: hidden; background: white; border: 1px solid #e4e2dc; border-radius: var(--radius); transition: transform .3s, box-shadow .3s; }
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-sm); }
.article-cover { position: relative; display: grid; place-items: center; aspect-ratio: 1.65; overflow: hidden; }
.article-cover::before, .article-cover::after { position: absolute; content: ""; border: 1px solid rgb(255 255 255 / .17); border-radius: 50%; }
.article-cover::before { width: 230px; height: 230px; right: -85px; bottom: -100px; }
.article-cover::after { width: 140px; height: 140px; top: -50px; left: -40px; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s; }
.article-card:hover .article-cover img { transform: scale(1.04); }
.article-cover > span { display: grid; place-items: center; width: 84px; height: 84px; color: var(--gold-300); background: rgb(8 33 58 / .78); border: 1px solid rgb(255 255 255 / .14); border-radius: 50%; }
.cover-1 { background: linear-gradient(135deg, #506d7b, #b7a486); }
.cover-2 { background: linear-gradient(135deg, #1b4965, #839fa7); }
.cover-3 { background: linear-gradient(135deg, #6f574d, #ba9b70); }
.article-body { padding: 25px 26px 27px; }
.article-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 15px; color: #87919a; font-size: .63rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.article-meta span:first-child { color: #9c702a; }
.article-meta span:first-child::after { margin-left: 12px; color: #ccd0d2; content: "•"; }
.article-card h3, .article-card h2 { margin-bottom: 12px; font: 700 1.24rem/1.35 Georgia, serif; letter-spacing: -.015em; }
.article-card h2 { font-size: 1.35rem; }
.article-card h3 a:hover, .article-card h2 a:hover { color: var(--navy-700); }
.article-card p { min-height: 70px; margin-bottom: 20px; color: var(--muted); font-size: .8rem; line-height: 1.7; }
.article-link { display: inline-flex; align-items: center; gap: 8px; color: var(--navy-800); font-size: .73rem; font-weight: 800; }

.contact-section { position: relative; overflow: hidden; padding-block: 110px; color: white; background: linear-gradient(120deg, #06182a, #0b2e4d); }
.contact-section::after { position: absolute; top: -230px; right: -170px; width: 600px; height: 600px; content: ""; border: 1px solid rgb(215 173 88 / .16); border-radius: 50%; box-shadow: 0 0 0 100px rgb(215 173 88 / .025), 0 0 0 200px rgb(215 173 88 / .02); }
.contact-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 90px; }
.contact-copy h2 { margin-bottom: 25px; color: white; }
.contact-copy > p { color: #b5c4d0; line-height: 1.85; }
.contact-points { display: grid; gap: 18px; margin: 34px 0; }
.contact-points > div { display: flex; align-items: center; gap: 14px; }
.contact-points > div > svg { color: var(--gold-400); }
.contact-points span { display: flex; flex-direction: column; }
.contact-points strong { font-size: .78rem; }
.contact-points small { color: #849aac; font-size: .67rem; }
.wa-direct { display: flex; align-items: center; gap: 13px; max-width: 370px; padding: 14px 17px; background: rgb(255 255 255 / .06); border: 1px solid rgb(255 255 255 / .12); border-radius: 10px; }
.wa-direct > svg:first-child { color: #45d489; }
.wa-direct span { display: flex; flex: 1; flex-direction: column; }
.wa-direct small { color: #91a5b6; font-size: .62rem; }
.wa-direct strong { font-size: .78rem; }
.wa-direct > svg:last-child { color: var(--gold-400); }
.contact-form { display: grid; gap: 17px; padding: 38px; color: var(--ink); background: white; border-radius: var(--radius); box-shadow: 0 30px 90px rgb(0 0 0 / .25); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form label { display: grid; gap: 7px; }
.contact-form label span { color: #344a5d; font-size: .69rem; font-weight: 750; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 12px 13px; color: var(--ink); background: #fafafa;
  border: 1px solid #dce1e4; border-radius: 7px; outline: none; font-size: .82rem; transition: border .2s, box-shadow .2s;
}
.contact-form input, .contact-form select { height: 46px; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--gold-500); box-shadow: 0 0 0 3px rgb(201 157 79 / .12); }
.form-consent { color: #8a939a; font-size: .59rem; text-align: center; }
.honeypot { position: absolute !important; left: -10000px !important; }

.site-footer { padding-top: 72px; color: #aebdca; background: #041321; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr 1fr 1.3fr; gap: 60px; padding-bottom: 60px; }
.brand-light .brand-copy strong { color: white; }
.footer-brand-logo { display: block; width: 76px; height: 76px; object-fit: contain; border-radius: 20px; }
.footer-logo-copy { color: white; font: 400 1.55rem Georgia, serif; letter-spacing: .01em; white-space: nowrap; }
.footer-logo-copy em { color: var(--gold-400); font-style: normal; }
.footer-brand > p { max-width: 300px; margin: 26px 0 12px; color: #96a9b9; font-family: Georgia, serif; font-size: 1.1rem; }
.footer-map { position: relative; display: block; box-sizing: border-box; width: 100%; max-width: 400px; aspect-ratio: 2.65 / 1; margin-top: 18px; overflow: hidden; background: #12283b; border: 1px solid rgb(215 173 88 / .35); border-radius: 10px; }
.footer-map iframe { display: block; width: 100%; height: 100%; border: 0; pointer-events: none; }
.footer-map:hover { border-color: var(--gold-400); box-shadow: 0 10px 30px rgb(0 0 0 / .2); }
.footer-license { font-size: .64rem; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 9px; }
.footer-grid h3 { margin: 2px 0 13px; color: white; font-family: Georgia, serif; font-size: 1rem; }
.footer-grid a, .footer-grid span, .footer-grid p { font-size: .72rem; }
.footer-grid a:hover { color: white; }
.footer-action p { color: #879baa; line-height: 1.7; }
.footer-action .button { color: var(--navy-900); }
.footer-bottom { display: flex; justify-content: space-between; padding-block: 20px; border-top: 1px solid rgb(255 255 255 / .08); color: #607689; font-size: .62rem; }
.floating-wa {
  position: fixed; z-index: 80; right: 22px; bottom: 22px; display: grid; place-items: center; width: 54px; height: 54px;
  color: white; background: var(--green); border: 5px solid white; border-radius: 50%; box-shadow: 0 10px 30px rgb(7 28 51 / .25); transition: transform .2s;
}
.floating-wa:hover { transform: translateY(-4px) scale(1.03); }

.page-hero { position: relative; overflow: hidden; padding-block: 98px 100px; color: white; background: linear-gradient(123deg, var(--navy-950), #0d3558); }
.page-hero::after { position: absolute; top: -250px; right: -130px; width: 600px; height: 600px; content: ""; border: 1px solid rgb(215 173 88 / .2); border-radius: 50%; box-shadow: 0 0 0 90px rgb(215 173 88 / .025), 0 0 0 180px rgb(215 173 88 / .02); }
.page-hero .container { position: relative; z-index: 1; text-align: center; }
.page-hero h1 { margin-bottom: 22px; color: white; }
.page-hero p { max-width: 630px; margin-inline: auto; color: #bdcbd6; font-size: 1.05rem; }
.article-index { background: var(--cream-100); }
.article-filters { margin-bottom: 44px; }
.search-field { display: flex; max-width: 680px; margin: -132px auto 35px; padding: 7px; background: white; border: 1px solid #e3dfd6; border-radius: 11px; box-shadow: var(--shadow-sm); position: relative; z-index: 2; }
.search-field input { flex: 1; min-width: 0; padding: 12px 14px; border: 0; outline: 0; }
.search-field button { padding: 0 24px; color: white; background: var(--navy-800); border: 0; border-radius: 7px; cursor: pointer; font-weight: 700; }
.category-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.category-pills a { padding: 8px 14px; color: #5e6c78; background: white; border: 1px solid #dfded9; border-radius: 999px; font-size: .72rem; font-weight: 700; }
.category-pills a.active, .category-pills a:hover { color: white; background: var(--navy-800); border-color: var(--navy-800); }
.article-grid-index { grid-template-columns: repeat(3, 1fr); }
.empty-public { padding: 80px 20px; text-align: center; }
.empty-public h2 { font-size: 2rem; }
.empty-public p { color: var(--muted); }

.article-detail-header { padding-block: 85px 75px; background: var(--cream-100); text-align: center; }
.article-narrow { max-width: 900px; }
.back-link { display: inline-block; margin-bottom: 38px; color: var(--navy-700); font-size: .76rem; font-weight: 750; }
.breadcrumbs { margin-bottom: 28px; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 6px; margin: 0; padding: 0; list-style: none; color: #8a949c; font-size: .72rem; font-weight: 700; }
.breadcrumbs li { display: inline-flex; align-items: center; gap: 6px; max-width: 280px; }
.breadcrumbs li:not(:last-child)::after { color: #c4cacf; content: "/"; }
.breadcrumbs a { color: var(--navy-700); }
.breadcrumbs a:hover { color: var(--gold-700, #9c702a); }
.breadcrumbs [aria-current="page"] { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.article-meta.large { justify-content: center; margin-bottom: 20px; }
.article-detail-header h1 { margin-bottom: 22px; font-size: clamp(2.75rem, 5.2vw, 5rem); }
.article-detail-header p { max-width: 720px; margin-inline: auto; color: var(--muted); font-size: 1.03rem; }
.article-hero-image { margin-top: 60px; }
.article-hero-image img { width: 100%; max-height: 600px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.article-layout { display: grid; grid-template-columns: minmax(0, 760px) 300px; justify-content: center; align-items: start; gap: 90px; padding-block: 75px 100px; }
.article-content { color: #344858; font-family: Georgia, serif; font-size: 1.08rem; line-height: 1.9; }
.article-content h1, .article-content h2, .article-content h3 { margin: 2.2em 0 .7em; color: var(--navy-900); }
.article-content h1 { font-size: 2rem; }
.article-content h2 { font-size: 1.75rem; }
.article-content h3 { font-size: 1.4rem; }
.article-content p { margin-bottom: 1.5em; }
.article-content ul { margin: 0 0 1.7em; padding-left: 1.3em; }
.article-content li { margin-bottom: .5em; }
.article-content a { color: var(--navy-700); text-decoration: underline; text-decoration-color: var(--gold-400); text-underline-offset: 3px; }
.article-aside { position: sticky; top: 120px; padding: 28px; background: var(--navy-900); border-radius: var(--radius); }
.article-aside h2 { margin-bottom: 15px; color: white; font-size: 1.65rem; }
.article-aside p { color: #aebfcd; font-size: .77rem; line-height: 1.7; }
.related-section { background: var(--cream-100); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-grid > a { padding: 27px; background: white; border: 1px solid #e4e1da; border-radius: 13px; transition: transform .2s, box-shadow .2s; }
.related-grid > a:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.related-grid span { color: #a27935; font-size: .62rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.related-grid h3 { min-height: 70px; margin: 11px 0 22px; font: 700 1.15rem/1.35 Georgia, serif; }
.related-grid small { display: flex; align-items: center; gap: 7px; color: var(--navy-700); font-weight: 750; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; transition-delay: var(--delay, 0ms); }
.reveal-delay { --delay: 140ms; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .main-nav { gap: 19px; }
  .main-nav .nav-cta { display: none; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 35px; }
  .hero-frame { border-radius: 28px 28px 80px 28px; }
  .hero-frame img { border-radius: 20px 20px 70px 20px; }
  .about-grid { gap: 60px; }
  .contact-grid { gap: 55px; }
  .footer-grid { grid-template-columns: 1.4fr .7fr 1fr; }
  .footer-action { grid-column: 1 / -1; padding: 25px; background: rgb(255 255 255 / .04); border-radius: 12px; }
}

@media (max-width: 820px) {
  .topbar { display: none; }
  .site-header { backdrop-filter: none; }
  .nav-wrap { min-height: 70px; }
  .nav-toggle { position: relative; z-index: 102; display: grid; place-items: center; width: 44px; height: 44px; padding: 8px; cursor: pointer; border-radius: 50%; }
  .nav-toggle:hover, .nav-toggle[aria-expanded="true"] { background: var(--cream-200); }
  .main-nav {
    position: fixed; z-index: 101; top: 70px; right: 0; bottom: 0; left: 0; display: flex; flex-direction: column; align-items: stretch;
    gap: 8px; min-height: calc(100vh - 70px); min-height: calc(100dvh - 70px); padding: 20px max(20px, calc((100vw - var(--container)) / 2));
    color: var(--navy-900); background: rgb(255 255 255 / .99); box-shadow: 0 24px 50px rgb(7 28 51 / .16);
    transform: translateX(100%); transition: transform .28s ease; overflow-y: auto; overscroll-behavior: contain;
  }
  .main-nav.open { transform: none; }
  .main-nav > a:not(.button) {
    display: flex; align-items: center; min-height: 58px; padding: 12px 17px; color: var(--navy-900);
    background: var(--cream-100); border: 1px solid #ebe7de; border-radius: 12px; font: 700 1.08rem Georgia, serif;
  }
  .main-nav > a:not(.button):hover, .main-nav > a.active:not(.button) { color: var(--navy-800); background: #f3ead8; border-color: #dfc994; }
  .main-nav > a:not(.button)::after { display: none; }
  .main-nav .nav-cta { display: inline-flex; flex: 0 0 auto; width: 100%; min-height: 54px; margin-top: 10px; }
  .hero-grid { grid-template-columns: 1fr; padding-block: 70px 45px; }
  .hero-copy { text-align: center; }
  .hero h1, .hero-lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-proof { justify-content: center; text-align: left; }
  .hero-visual { max-width: 610px; margin-inline: auto; }
  .hero-frame { margin: 0; }
  .trust-row { flex-direction: column; gap: 20px; }
  .trust-logos { flex-wrap: wrap; justify-content: center; }
  .section { padding-block: 80px; }
  .split-heading { display: block; }
  .split-heading > p, .split-heading > a { margin-top: 22px; }
  .service-grid, .testimonial-grid, .article-grid { grid-template-columns: 1fr 1fr; }
  .service-grid .service-card:last-child, .testimonial-grid .testimonial-card:last-child, .article-grid .article-card:last-child { grid-column: 1 / -1; }
  .about-grid { grid-template-columns: 1fr; gap: 55px; }
  .about-visual { min-height: 500px; }
  .about-panel { max-width: 620px; }
  .process-grid { grid-template-columns: 1fr 1fr; row-gap: 55px; }
  .process-grid::before { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid > div:nth-child(2) { border-right: 0; }
  .stats-grid > div:nth-child(-n+2) { border-bottom: 1px solid rgb(7 28 51 / .16); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-copy { max-width: 650px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 35px; }
  .article-layout { grid-template-columns: minmax(0, 760px); gap: 50px; }
  .article-aside { position: static; }
}

@media (max-width: 580px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand { gap: 9px; }
  .brand-logo { width: 46px; height: 46px; border-radius: 12px; }
  .may-brand-copy strong { font-size: 1.08rem; }
  .may-brand-copy small { margin-top: 5px; font-size: .46rem; letter-spacing: .14em; }
  .brand-copy strong { font-size: 1rem; }
  .hero-grid { min-height: 0; padding-top: 55px; }
  .hero h1 { font-size: 2.85rem; }
  .hero-lead { font-size: .95rem; }
  .hero-actions { flex-direction: column; gap: 20px; }
  .hero-actions .button { width: 100%; }
  .hero-proof { margin-top: 32px; }
  .hero-badge-top { top: 20px; left: -5px; }
  .hero-badge-bottom { right: -5px; bottom: 25px; }
  .trust-logos { gap: 15px 23px; }
  .section { padding-block: 67px; }
  .section-heading { margin-bottom: 35px; }
  .service-grid, .testimonial-grid, .article-grid { grid-template-columns: 1fr; }
  .service-grid .service-card:last-child, .testimonial-grid .testimonial-card:last-child, .article-grid .article-card:last-child { grid-column: auto; }
  .service-card > p, .service-card ul, .testimonial-card > p, .article-card p { min-height: 0; }
  .about-visual { min-height: 480px; }
  .about-panel { padding: 65px 32px 45px; border-radius: 10px 80px 10px 10px; }
  .about-panel blockquote { font-size: 1.4rem; }
  .about-floating { right: 5px; bottom: 10px; width: 260px; }
  .process-grid { grid-template-columns: 1fr; gap: 45px; }
  .process-step { max-width: 330px; margin-inline: auto; }
  .process-section { padding-block: 75px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 25px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-action { grid-column: 1 / -1; }
  .footer-map { width: calc(200% + 35px); max-width: none; aspect-ratio: 2.4 / 1; margin-left: calc(-100% - 35px); }
  .footer-bottom { gap: 18px; }
  .page-hero { padding-block: 70px 120px; }
  .page-hero h1 { font-size: 2.75rem; }
  .search-field { margin-top: -116px; }
  .search-field button { padding-inline: 16px; }
  .article-detail-header { padding-block: 65px 55px; }
  .article-meta.large { flex-wrap: wrap; }
  .article-detail-header h1 { font-size: 2.65rem; }
  .article-layout { padding-block: 55px 70px; }
  .related-grid { grid-template-columns: 1fr; }
  .floating-wa { right: 15px; bottom: 15px; }
}

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