:root {
  --ink: #142229;
  --muted: #54656d;
  --paper: #ffffff;
  --mist: #f3f7f8;
  --sky: #0d9fd7;
  --sky-dark: #0879a5;
  --red: #e30629;
  --red-dark: #b90320;
  --line: #dce6e9;
  --night: #0b2733;
  --success: #196b42;
  --shadow: 0 18px 50px rgba(11, 39, 51, .12);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--sky-dark); text-underline-offset: .18em; }
a:hover { color: var(--red); }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-150%);
  padding: .7rem 1rem;
  color: #fff;
  background: var(--night);
  border-radius: 10px;
}
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid #ffb400; outline-offset: 3px; }

.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 2rem), 820px); margin-inline: auto; }
.section { padding: clamp(4rem, 7vw, 7rem) 0; }
.section--mist { background: var(--mist); }
.section--night { color: #fff; background: var(--night); }
.section--tight { padding: 3rem 0; }
.spacer { height: 1.5rem; }
.top-gap { margin-top: 1.5rem; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 .75rem;
  color: var(--red);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.eyebrow::before { width: 24px; height: 3px; content: ""; background: currentColor; border-radius: 99px; }
.section--night .eyebrow { color: #7edaff; }
h1, h2, h3 { margin: 0 0 .75em; line-height: 1.1; letter-spacing: -.035em; }
h1 { font-size: clamp(2.75rem, 7vw, 5.7rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
p { margin: 0 0 1.25rem; }
.lead { max-width: 760px; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.3rem); }
.section--night .lead { color: #c7d9df; }
.kicker { color: var(--sky-dark); font-weight: 800; }

.topbar { color: #d8ebf1; background: var(--night); font-size: .87rem; }
.topbar__inner { min-height: 42px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.topbar__links { display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; }
.topbar a { color: inherit; text-decoration: none; }
.topbar a:hover { color: #fff; }
.site-header { position: sticky; z-index: 100; top: 0; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); }
.nav-shell { min-height: 86px; display: flex; align-items: center; gap: 2rem; }
.brand { flex: 0 0 auto; }
.brand img { width: 176px; height: auto; }
.nav-toggle { display: none; margin-left: auto; padding: .65rem; color: var(--ink); background: transparent; border: 1px solid var(--line); border-radius: 12px; }
.nav-toggle span { display: block; width: 26px; height: 2px; margin: 5px 0; background: currentColor; }
.nav-panel { display: flex; flex: 1; align-items: center; justify-content: flex-end; gap: 1.4rem; }
.nav-list { display: flex; align-items: center; gap: 1.25rem; margin: 0; padding: 0; list-style: none; }
.nav-list a { position: relative; color: var(--ink); font-size: .93rem; font-weight: 750; text-decoration: none; }
.nav-list a[aria-current="page"], .nav-list a:hover { color: var(--red); }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .75rem 1.15rem;
  color: #fff;
  background: var(--red);
  border: 2px solid var(--red);
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { color: #fff; background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); }
.button--sky { background: var(--sky); border-color: var(--sky); }
.button--sky:hover { background: var(--sky-dark); border-color: var(--sky-dark); }
.button--ghost { color: var(--ink); background: transparent; border-color: #aebfc5; }
.button--ghost:hover { color: var(--night); background: #fff; border-color: var(--night); }
.section--night .button--ghost { color: #fff; border-color: #6f8a94; }
.actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.8rem; }

.hero { position: relative; overflow: hidden; color: #fff; background: var(--night); }
.hero::before { position: absolute; inset: 0; content: ""; background: radial-gradient(circle at 84% 20%, rgba(13,159,215,.42), transparent 38%), linear-gradient(110deg, rgba(11,39,51,.98) 0 47%, rgba(11,39,51,.62) 70%, rgba(11,39,51,.82)); }
.hero__inner { position: relative; min-height: min(760px, calc(100vh - 128px)); display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr); align-items: center; gap: clamp(2rem, 6vw, 6rem); padding: clamp(4rem, 8vw, 7.5rem) 0; }
.hero h1 { max-width: 760px; }
.hero .lead { color: #d6e7ec; }
.hero__visual { position: relative; }
.hero__visual::before { position: absolute; inset: -18px 20% 18px -18px; content: ""; background: var(--red); border-radius: var(--radius); transform: rotate(-3deg); }
.hero__visual img { position: relative; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.hero__badge { position: absolute; right: -12px; bottom: 24px; max-width: 210px; padding: 1rem 1.15rem; color: var(--ink); background: #fff; border-radius: 16px; box-shadow: var(--shadow); font-weight: 800; }

.page-hero { overflow: hidden; color: #fff; background: linear-gradient(125deg, var(--night), #0f536c); }
.page-hero__inner { padding: clamp(4rem, 8vw, 7rem) 0; }
.page-hero h1 { max-width: 970px; font-size: clamp(2.6rem, 6vw, 5rem); }
.breadcrumbs { margin-bottom: 1.5rem; color: #b8d1da; font-size: .9rem; }
.breadcrumbs a { color: #fff; }

.grid { display: grid; gap: 1.4rem; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr); align-items: center; gap: clamp(2.5rem, 7vw, 6rem); }
.split--reverse > :first-child { order: 2; }
.media-frame { overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.media-frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.card { height: 100%; padding: 1.55rem; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: 0 10px 34px rgba(11,39,51,.07); }
.card--dark { color: #fff; background: #103746; border-color: #2b5463; }
.card--dark p { color: #c6d9df; }
.card__icon { width: 45px; height: 45px; display: grid; place-items: center; margin-bottom: 1rem; color: #fff; background: var(--sky); border-radius: 13px; font-size: 1.35rem; font-weight: 900; }
.card__image { overflow: hidden; margin: -1.55rem -1.55rem 1.25rem; border-radius: 18px 18px 0 0; }
.card__image img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.check-list, .plain-list { margin: 1.25rem 0; padding: 0; list-style: none; }
.check-list li { position: relative; margin: .65rem 0; padding-left: 1.7rem; }
.check-list li::before { position: absolute; left: 0; color: var(--success); content: "✓"; font-weight: 900; }
.section--night .check-list li::before { color: #7edaff; }
.plain-list li { margin: .55rem 0; padding-bottom: .55rem; border-bottom: 1px solid var(--line); }

.rate-card { position: relative; overflow: hidden; }
.rate-card::after { position: absolute; top: 0; right: 0; width: 68px; height: 6px; content: ""; background: var(--red); }
.rate-card__price { color: var(--red); font-size: 1.95rem; font-weight: 900; letter-spacing: -.03em; }
.rate-table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.rate-table th, .rate-table td { padding: .65rem .25rem; border-bottom: 1px solid var(--line); text-align: left; }
.rate-table td:last-child { text-align: right; font-weight: 800; }
.notice { padding: 1rem 1.15rem; background: #fff8df; border: 1px solid #f0d67a; border-radius: 14px; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; overflow: hidden; background: #32525e; border-radius: 18px; }
.stat { padding: 1.5rem; background: var(--night); }
.stat strong { display: block; color: #7edaff; font-size: 1.5rem; }
.stat span { color: #d4e4e9; font-size: .9rem; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.gallery-grid figure { overflow: hidden; margin: 0; background: var(--mist); border-radius: 16px; }
.gallery-grid img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .3s ease; }
.gallery-grid figure:hover img { transform: scale(1.025); }
.gallery-grid figcaption { padding: .75rem .9rem; color: var(--muted); font-size: .9rem; }

.form-card { padding: clamp(1.25rem, 4vw, 2.4rem); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.field { display: grid; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label, .field legend { color: var(--ink); font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; padding: .8rem .9rem; color: var(--ink); background: #fff; border: 1px solid #a8bbc2; border-radius: 10px; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--sky-dark); outline: 3px solid rgba(13,159,215,.2); }
.field--check { display: flex; align-items: flex-start; gap: .65rem; }
.field--check input { width: 1.15rem; height: 1.15rem; margin-top: .25rem; flex: 0 0 auto; }
.honeypot { position: absolute !important; width: 1px !important; height: 1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; }
.form-status { min-height: 1.5em; margin-top: .8rem; color: var(--success); font-weight: 700; }

.article { font-size: 1.07rem; }
.article h2 { margin-top: 2.2rem; font-size: clamp(1.65rem, 3vw, 2.35rem); }
.article h3 { margin-top: 1.8rem; }
.article ul { padding-left: 1.4rem; }
.article-meta { display: flex; flex-wrap: wrap; gap: .5rem 1rem; margin-bottom: 2rem; color: var(--muted); font-size: .92rem; }
.post-list { display: grid; gap: 1rem; }
.post-link { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 1rem; padding: 1.2rem; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 16px; text-decoration: none; }
.post-link:hover { color: var(--red); border-color: #efa3af; }
.post-link time { color: var(--sky-dark); font-size: .82rem; font-weight: 850; text-transform: uppercase; }

.cta-band { color: #fff; background: linear-gradient(110deg, var(--red), #b9001e); }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 2.3rem 0; }
.cta-band h2 { margin: 0; font-size: clamp(1.75rem, 4vw, 3rem); }
.cta-band .button { color: var(--night); background: #fff; border-color: #fff; }
.cta-band .button:hover { color: #fff; background: var(--night); border-color: var(--night); }
.site-footer { color: #c7d9df; background: #071b23; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; padding: 4rem 0; }
.site-footer h2, .site-footer h3 { color: #fff; font-size: 1.05rem; letter-spacing: 0; }
.site-footer a { color: #d8edf4; }
.footer-brand { width: 188px; margin-bottom: 1rem; padding: .65rem; background: #fff; border-radius: 12px; }
.footer-list { margin: 0; padding: 0; list-style: none; }
.footer-list li { margin: .55rem 0; }
.footer-bottom { padding: 1.2rem 0; border-top: 1px solid #28404a; font-size: .86rem; }
.footer-bottom__inner { display: flex; justify-content: space-between; gap: 1rem; }

@media (max-width: 1100px) {
  .nav-list { gap: .85rem; }
  .nav-panel { gap: .9rem; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 959px) {
  .topbar__inner { justify-content: center; text-align: center; }
  .topbar__note { display: none; }
  .nav-shell { min-height: 76px; }
  .brand img { width: 154px; }
  .nav-toggle { display: block; }
  .nav-panel { position: absolute; top: 100%; right: 0; left: 0; display: none; align-items: stretch; padding: 1rem; background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .nav-panel[data-open="true"] { display: grid; }
  .nav-list { display: grid; gap: 0; }
  .nav-list a { display: block; padding: .8rem; border-bottom: 1px solid var(--line); }
  .nav-panel .button { width: 100%; }
  .hero__inner, .split { grid-template-columns: 1fr; }
  .hero__inner { min-height: 0; }
  .hero__content { padding-top: 1rem; }
  .hero__visual { width: min(100%, 620px); }
  .hero__visual img { aspect-ratio: 16/10; }
  .split--reverse > :first-child { order: 0; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.2fr 1fr; }
  .footer-grid > :last-child { grid-column: 1 / -1; }
}

@media (max-width: 679px) {
  .container, .narrow { width: min(calc(100% - 1.25rem), var(--max)); }
  .topbar__links { justify-content: center; gap: .25rem .75rem; }
  .topbar__links span { display: none; }
  .hero__inner { padding: 3.5rem 0; }
  .hero__badge { right: 10px; bottom: 10px; max-width: 170px; font-size: .86rem; }
  .section { padding: 3.7rem 0; }
  .grid--2, .grid--3, .grid--4, .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .gallery-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .cta-band__inner { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid > :last-child { grid-column: auto; }
  .footer-bottom__inner { flex-direction: column; }
  .actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
