
:root {
  --bg: #F7F8FB;
  --surface: #ffffff;
  --surface-soft: #eef2f7;
  --ink: #101826;
  --muted: #5D6675;
  --line: #DFE4EC;
  --navy: #071D3A;
  --navy-2: #0D2D55;
  --accent: #B8A06A;
  --accent-soft: #E7DCC4;
  --shadow: 0 24px 70px rgba(7, 29, 58, .12);
  --shadow-soft: 0 16px 40px rgba(7, 29, 58, .07);
  --radius: 24px;
  --radius-lg: 34px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Carlito, Calibri, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
a:hover { color: var(--navy-2); }
img { max-width: 100%; height: auto; display: block; }
.skip-link { position: absolute; left: -999px; top: 12px; z-index: 999; padding: 10px 14px; background: var(--navy); color: #fff; border-radius: 999px; }
.skip-link:focus { left: 12px; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 96px 0; }
.section.compact { padding: 72px 0; }
.section-head { max-width: 850px; }
.section-head > p:last-child { font-size: 1.12rem; color: var(--muted); margin: 18px 0 0; }
.site-header { position: sticky; top: 0; z-index: 20; background: rgba(247,248,251,.94); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(223,228,236,.9); }
.nav { width: min(1180px, calc(100% - 40px)); margin: 0 auto; min-height: 106px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand-logo { width: 320px; height: auto; }
.nav-menu { display: flex; gap: 28px; font-size: .95rem; color: var(--navy); align-items: center; }
.nav-menu a { position: relative; font-weight: 700; }
.nav-menu a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: .2s ease; }
.nav-menu a:hover::after, .nav-menu a[aria-current="page"]::after { transform: scaleX(1); }
.nav-toggle { display: none; border: 1px solid var(--line); background: var(--surface); border-radius: 999px; padding: 10px 16px; font: inherit; font-weight: 700; color: var(--navy); }
.hero { padding: 98px 0 104px; background: radial-gradient(circle at top right, rgba(184,160,106,.24), transparent 32%), radial-gradient(circle at 10% 20%, rgba(13,45,85,.08), transparent 25%), linear-gradient(135deg, #ffffff, #eef2f7); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.22fr .88fr; gap: 58px; align-items: center; }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 700; color: var(--accent); margin: 0 0 18px; }
h1, h2, h3 { line-height: 1.12; margin: 0; color: var(--navy); }
h1 { font-size: clamp(2.15rem, 4.1vw, 4.05rem); letter-spacing: -.045em; max-width: 940px; }
h2 { font-size: clamp(1.9rem, 3vw, 3rem); letter-spacing: -.035em; }
h3 { font-size: 1.32rem; letter-spacing: -.015em; }
.lead { font-size: 1.22rem; color: var(--ink); max-width: 780px; margin: 28px 0 0; }
.hero-text { font-size: 1.08rem; color: var(--muted); max-width: 760px; margin: 18px 0 0; }
.highlight-statement { color: var(--navy); font-weight: 700; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 13px 20px; border-radius: 999px; font-weight: 700; border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; white-space: nowrap; }
.button:hover { transform: translateY(-1px); }
.button.primary { color: #fff; background: var(--navy); box-shadow: 0 18px 30px rgba(7,29,58,.22); }
.button.primary:hover { color: #fff; background: var(--navy-2); }
.button.secondary { color: var(--navy); background: rgba(255,255,255,.74); border-color: var(--line); }
.button.secondary:hover { color: var(--navy); background: #fff; box-shadow: var(--shadow-soft); }
.button.light { color: var(--navy); background: #fff; border-color: rgba(255,255,255,.7); }
.text-link { color: var(--navy); font-weight: 700; display: inline-flex; margin-top: auto; }
.hero-card { background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow); position: relative; overflow: hidden; }
.hero-card::before { content: ""; position: absolute; inset: -70px -90px auto auto; width: 220px; height: 220px; border-radius: 999px; background: rgba(184,160,106,.25); }
.hero-card p, .hero-card h2, .hero-card li { position: relative; }
.hero-card .card-kicker { color: var(--accent-soft); margin: 0 0 18px; font-weight: 700; }
.hero-card h2 { color: #fff; font-size: clamp(1.55rem, 2.2vw, 2.28rem); }
.hero-card ul { margin: 28px 0 0; padding: 0; list-style: none; }
.hero-card li { padding: 12px 0 12px 26px; border-top: 1px solid rgba(255,255,255,.14); }
.hero-card li::before { content: ""; width: 9px; height: 9px; border-radius: 999px; background: var(--accent); position: absolute; left: 0; top: 20px; }
.about-focus { padding: 34px; }
.about-focus h2 { color: #fff; font-size: clamp(1.55rem, 2.2vw, 2.28rem); margin: 0; }
.about-focus ul { margin: 28px 0 0; padding: 0; list-style: none; }
.about-focus li { padding: 12px 0 12px 26px; border-top: 1px solid rgba(255,255,255,.14); position: relative; color: #fff; }
.about-focus li::before { content: ""; width: 9px; height: 9px; border-radius: 999px; background: var(--accent); position: absolute; left: 0; top: 20px; }
.muted { background: var(--surface-soft); }
.navy { background: radial-gradient(circle at 90% 10%, rgba(184,160,106,.2), transparent 22%), var(--navy); color: rgba(255,255,255,.84); }
.navy h2, .navy h3 { color: #fff; }
.navy .eyebrow { color: var(--accent-soft); }
.page-hero { padding: 92px 0 76px; background: linear-gradient(135deg, #fff, #eef2f7); border-bottom: 1px solid var(--line); }
.compact-hero { padding: 76px 0 66px; }
.page-hero .lead { color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 42px; }
.service-card { min-height: 100%; background: var(--surface); border: 1px solid rgba(223,228,236,.9); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; }
.service-card.featured { border-color: rgba(184,160,106,.55); }
.service-number { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 999px; background: var(--surface-soft); color: var(--accent); font-weight: 700; margin-bottom: 24px; }
.large-number { width: 58px; height: 58px; font-size: 1.1rem; }
.service-card h3 { margin-bottom: 14px; }
.subtitle { color: var(--navy); font-weight: 700; margin: 0 0 16px; }
.service-card p:not(.subtitle) { color: var(--muted); margin: 0 0 24px; }
.callout, .cta-band { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-band h2 { max-width: 780px; }
.cta-band.dark h2 { color: #fff; }
.about-layout, .contact-grid, .detail-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: start; }
.about-layout { grid-template-columns: 1.18fr .82fr; }
.about-side { display: grid; gap: 24px; }
.profile-card { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid rgba(223,228,236,.9); background: #fff; }
.profile-card img { width: 100%; height: auto; display: block; }

.content p { margin: 0 0 18px; color: var(--muted); font-size: 1.08rem; }
.content.large p { font-size: 1.2rem; color: var(--ink); }
.about-panel, .contact-form, .benefit-box { border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-soft); padding: 34px; border: 1px solid rgba(223,228,236,.9); }
.about-panel h2 { font-size: 1.72rem; margin-bottom: 22px; }
.detail-intro { position: sticky; top: 138px; }
.detail-content h3 { margin: 36px 0 18px; }
.check-list { padding: 0; margin: 0; list-style: none; }
.check-list.columns { columns: 2; column-gap: 30px; }
.check-list li { break-inside: avoid; position: relative; padding: 0 0 14px 26px; color: var(--muted); }
.check-list li::before { content: ""; width: 8px; height: 8px; border-radius: 999px; background: var(--accent); position: absolute; left: 0; top: 10px; }
.benefit-box { margin-top: 28px; background: linear-gradient(135deg, #fff, #f8f6f0); }
.benefit-box h3 { margin-top: 0; }
.contact-intro p { color: var(--muted); font-size: 1.08rem; }
.notice { padding: 18px 20px; border-left: 4px solid var(--accent); background: #fff; border-radius: 0 18px 18px 0; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row.full, .form-note { grid-column: 1 / -1; }
label { font-weight: 700; color: var(--navy); }
input, textarea { width: 100%; border: 1px solid var(--line); border-radius: 16px; padding: 13px 14px; font: inherit; background: #fff; color: var(--ink); }
input:focus, textarea:focus { outline: 3px solid rgba(184,160,106,.28); border-color: var(--accent); }
.form-note { margin: 0; color: var(--muted); font-size: .94rem; }
.form-note a, .legal-content a { color: var(--navy); font-weight: 700; text-decoration: underline; text-decoration-color: rgba(184,160,106,.65); text-underline-offset: 3px; }
.legal-section { padding-top: 78px; }
.legal-content { max-width: 900px; background: #fff; border: 1px solid rgba(223,228,236,.9); border-radius: var(--radius-lg); padding: 42px; box-shadow: var(--shadow-soft); }
.legal-content h2 { font-size: 1.42rem; margin-top: 34px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--muted); }
.protected-contact a { color: var(--navy); font-weight: 700; text-decoration: underline; text-decoration-color: rgba(184,160,106,.65); text-underline-offset: 3px; }
.site-footer { padding: 36px 0; background: #fff; border-top: 1px solid var(--line); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-grid p { margin: 4px 0 0; color: var(--muted); }
.footer-links { display: flex; gap: 22px; color: var(--navy); font-weight: 700; }
@media (max-width: 960px) {
  .nav { min-height: 94px; }
  .brand-logo { width: 255px; }
  .nav-toggle { display: inline-flex; }
  .nav-menu { position: absolute; top: 94px; left: 20px; right: 20px; display: none; flex-direction: column; align-items: flex-start; gap: 16px; background: #fff; border: 1px solid var(--line); border-radius: 22px; padding: 22px; box-shadow: var(--shadow-soft); }
  .nav-menu.is-open { display: flex; }
  .hero-grid, .service-grid, .about-layout, .contact-grid, .detail-grid { grid-template-columns: 1fr; }
  .detail-intro { position: static; }
  .check-list.columns { columns: 1; }
  .callout, .cta-band, .footer-grid { align-items: flex-start; flex-direction: column; }
}
@media (max-width: 640px) {
  .container, .nav { width: min(100% - 28px, 1120px); }
  .brand-logo { width: 225px; }
  .section { padding: 70px 0; }
  .hero, .page-hero { padding: 70px 0; }
  h1 { font-size: clamp(2rem, 12vw, 3.05rem); }
  .hero-card, .about-panel, .contact-form, .benefit-box, .legal-content { padding: 26px; border-radius: 24px; }
  .contact-form { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; }
}
