:root {
  --paper: #f7f3ea;
  --paper-soft: #fbf8f1;
  --surface: #ffffff;
  --ink: #16201c;
  --muted: #616e68;
  --navy: #123c35;
  --navy-dark: #0c2c27;
  --navy-soft: #e6efec;
  --gold: #c89b5b;
  --gold-soft: #f0e2c8;
  --line: #ddd4c6;
  --line-soft: #ede6d7;
  --green: #2e7d5b;
  --orange: #b76e2d;
  --red: #9b3a2b;
  --shadow: 0 18px 50px rgba(18, 60, 53, .09);
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--navy-dark); }
button, input, select, textarea { font: inherit; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - 48px)); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 100; padding: 10px 14px; background: var(--navy); color: #fff; border-radius: 8px; }
.skip-link:focus { top: 12px; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

h1, h2, h3, h4 {
  margin: 0;
  color: var(--ink);
  font-family: "Outfit", "Inter", sans-serif;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); line-height: 1.02; font-weight: 650; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.08; font-weight: 650; }
h3 { font-size: 1.25rem; line-height: 1.3; font-weight: 650; }
h4 { font-size: 1rem; line-height: 1.4; font-weight: 650; }
p { margin: 0; }
.lead { font-size: clamp(1.08rem, 1.8vw, 1.3rem); color: #34413c; line-height: 1.72; }
.muted { color: var(--muted); }
.caption { font-size: .82rem; color: var(--muted); line-height: 1.6; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 6px 13px;
  color: var(--navy);
  background: var(--navy-soft);
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 243, 234, .91);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(16px) saturate(170%);
}
.nav { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: flex; align-items: center; gap: 14px; min-width: max-content; }
.brand img { width: auto; height: 38px; }
.brand-note { padding-left: 14px; border-left: 1px solid var(--line); color: var(--muted); font-size: .78rem; }
.nav-links { display: flex; align-items: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.nav-links a { display: inline-flex; min-height: 42px; align-items: center; padding: 8px 12px; border-radius: 9px; color: var(--muted); font-size: .87rem; font-weight: 600; }
.nav-links a:hover { color: var(--navy); background: var(--navy-soft); }
.nav-links .language { border: 1px solid var(--line); color: var(--navy); }
.nav-links .contact { padding-inline: 18px; color: #fff; background: var(--navy); border-radius: 999px; }
.nav-links .contact:hover { color: #fff; background: var(--navy-dark); }

.hero {
  padding: clamp(72px, 10vw, 126px) 0 72px;
  background:
    radial-gradient(900px 520px at 96% 0, rgba(200, 155, 91, .16), transparent 64%),
    radial-gradient(780px 520px at 0 0, rgba(18, 60, 53, .09), transparent 62%);
}
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: clamp(36px, 6vw, 84px); }
.hero-copy { max-width: 720px; }
.hero-copy .lead { margin-top: 26px; }
.hero-copy .micro { margin-top: 18px; color: var(--navy); font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-visual { padding: 10px; background: rgba(255,255,255,.55); border: 1px solid rgba(221,212,198,.85); border-radius: 28px; box-shadow: var(--shadow); }
.hero-visual img { border-radius: 20px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 22px; color: var(--muted); font-size: .84rem; }
.hero-meta span::before { content: "✓"; margin-right: 7px; color: var(--green); font-weight: 800; }
.hero.center .hero-copy { margin-inline: auto; text-align: center; }
.hero.center .hero-actions, .hero.center .hero-meta { justify-content: center; }
.hero.center h1 { max-width: 980px; margin-inline: auto; }
.hero.center .lead { max-width: 760px; margin-inline: auto; }

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { color: #fff; background: var(--navy); }
.btn-primary:hover { color: #fff; background: var(--navy-dark); }
.btn-secondary { color: var(--navy); background: #fff; border-color: var(--line); }
.btn-secondary:hover { border-color: var(--navy); background: var(--navy-soft); }
.btn-small { min-height: 44px; padding-inline: 18px; font-size: .9rem; }

.breadcrumb { padding: 20px 0 0; color: var(--muted); font-size: .82rem; }
.breadcrumb a { color: var(--muted); }
.breadcrumb span { margin-inline: 8px; color: #9ea9a4; }
section { padding: clamp(72px, 9vw, 112px) 0; }
section.alt { background: var(--paper-soft); border-block: 1px solid var(--line-soft); }
.section-head { max-width: 780px; margin: 0 auto 46px; text-align: center; }
.section-head h2 + p { margin-top: 18px; }
.section-head p { color: var(--muted); font-size: 1.06rem; }

.grid { display: grid; gap: 20px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  position: relative;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 1px 2px rgba(18,32,28,.04);
}
.card h3 + p, .card h4 + p { margin-top: 9px; }
.card p { color: var(--muted); font-size: .94rem; }
.card .tag { display: inline-flex; margin-bottom: 18px; padding: 5px 10px; border-radius: 999px; color: var(--navy); background: var(--navy-soft); font-size: .72rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.card .tag.future { color: #6e5d46; background: #f3eadb; }
.card .card-link { display: inline-flex; margin-top: 18px; font-size: .9rem; font-weight: 750; }
.card.active { border-color: #8db4a8; box-shadow: inset 0 4px 0 var(--green); }
.service-code { display: block; margin-bottom: 12px; color: var(--gold); font: 700 .8rem/1 "Outfit", sans-serif; letter-spacing: .12em; }

.visual-frame { padding: 12px; background: #fff; border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow); }
.visual-frame img { width: 100%; border-radius: 18px; }
.visual-caption { display: flex; justify-content: space-between; gap: 18px; margin-top: 14px; color: var(--muted); font-size: .82rem; }
.visual-label { color: var(--green); font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.visual-scroll-note { display: none; }

.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(32px, 6vw, 78px); }
.split-copy h2 + p { margin-top: 20px; }
.split-copy p + p { margin-top: 14px; }
.check-list { display: grid; gap: 12px; margin: 24px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; color: #34413c; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 800; }
.plain-list { margin: 18px 0 0; padding-left: 1.2em; color: #34413c; }
.plain-list li + li { margin-top: 7px; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: step; }
.step { padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: 18px; counter-increment: step; }
.step::before { content: counter(step, decimal-leading-zero); display: block; margin-bottom: 22px; color: var(--gold); font: 700 1rem/1 "Outfit", sans-serif; letter-spacing: .08em; }
.step p { margin-top: 8px; color: var(--muted); font-size: .9rem; }

.notice { padding: 22px 24px; background: #fdf6ec; border: 1px solid #ead7b6; border-radius: 16px; color: #4d4336; }
.notice strong { color: var(--orange); }
.notice.green { background: #edf6f2; border-color: #cce0d8; color: var(--navy); }
.notice + .notice { margin-top: 14px; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: 22px; }
.price-card.featured { border: 2px solid var(--navy); box-shadow: var(--shadow); }
.price-card .kicker { color: var(--green); font-size: .76rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.price-card .price { margin-top: 10px; color: var(--navy); font: 650 clamp(1.8rem, 4vw, 2.7rem)/1.1 "Outfit", sans-serif; }
.price-card .price small { font: 500 .8rem/1.3 "Inter", sans-serif; color: var(--muted); }
.price-card > p { margin-top: 12px; color: var(--muted); font-size: .9rem; }
.price-card ul { margin: 20px 0 24px; padding-left: 1.1em; color: #34413c; font-size: .9rem; }
.price-card .btn { margin-top: auto; }

.table-scroll { overflow-x: auto; background: #fff; border: 1px solid var(--line); border-radius: 20px; }
table { width: 100%; border-collapse: collapse; min-width: 680px; }
th, td { padding: 16px 18px; border-bottom: 1px solid var(--line-soft); text-align: left; vertical-align: top; }
th { color: var(--navy); background: var(--paper-soft); font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; }
td { color: #34413c; font-size: .91rem; }
tr:last-child td { border-bottom: 0; }

.faq { display: grid; gap: 12px; max-width: 860px; margin-inline: auto; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.faq summary { padding: 20px 52px 20px 22px; cursor: pointer; color: var(--navy); font-weight: 750; list-style: none; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 22px; top: 17px; font-size: 1.35rem; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { padding: 0 22px 22px; color: var(--muted); }

.cta-panel { padding: clamp(34px, 6vw, 64px); color: #fff; background: var(--navy); border-radius: 30px; text-align: center; }
.cta-panel h2, .cta-panel p { color: #fff; }
.cta-panel p { max-width: 680px; margin: 16px auto 0; color: rgba(255,255,255,.78); }
.cta-panel .hero-actions { justify-content: center; }
.cta-panel .btn-primary { color: var(--navy); background: #fff; }
.cta-panel .btn-secondary { color: #fff; background: transparent; border-color: rgba(255,255,255,.4); }

.legal-page { padding-top: 64px; }
.legal-page .legal-copy { padding: clamp(26px, 5vw, 54px); background: #fff; border: 1px solid var(--line); border-radius: 24px; }
.legal-copy h2 { margin-top: 42px; font-size: 1.65rem; }
.legal-copy h3 { margin-top: 26px; font-size: 1.12rem; }
.legal-copy p, .legal-copy ul, .legal-copy ol { margin-top: 13px; color: #34413c; }
.legal-copy li + li { margin-top: 7px; }
.legal-copy a { text-decoration: underline; }
.legal-copy table { min-width: 760px; }

.booking-wrap { padding: 62px 0 96px; }
.booking-form { max-width: 860px; margin: 0 auto; padding: clamp(24px, 5vw, 46px); background: #fff; border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow); }
.booking-form fieldset { margin: 0; padding: 0; border: 0; }
.booking-form fieldset + fieldset { margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--line-soft); }
.booking-form legend { margin-bottom: 18px; color: var(--navy); font: 650 1.35rem/1.2 "Outfit", sans-serif; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--navy); font-size: .86rem; font-weight: 750; }
.required { color: var(--red); }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: 11px 13px; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 10px; }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid rgba(200,155,91,.3); border-color: var(--navy); }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.choice { display: flex; gap: 9px; align-items: flex-start; padding: 12px; border: 1px solid var(--line); border-radius: 10px; font-size: .9rem; }
.choice input { margin-top: 4px; accent-color: var(--navy); }
.form-status { display: none; margin-top: 20px; padding: 18px; border-radius: 12px; }
.form-status.visible { display: block; }
.form-status.success { color: var(--navy); background: #edf6f2; border: 1px solid #cce0d8; }
.form-status.error { color: #6c2d23; background: #fbefed; border: 1px solid #e6c8c2; }
.booking-form .privacy-consent { margin-top: 18px; color: var(--muted); font-size: .8rem; }
.booking-form .privacy-consent a { text-decoration: underline; }

footer.site { padding: 64px 0 28px; border-top: 1px solid var(--line); background: var(--paper-soft); }
.footer-grid { display: grid; grid-template-columns: 1.25fr repeat(3, 1fr); gap: 38px; }
.footer-brand img { width: 138px; }
.footer-brand p { margin-top: 14px; color: var(--muted); font-size: .86rem; }
.footer-col strong { display: block; margin-bottom: 12px; color: var(--navy); font-size: .76rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-col a { display: block; padding: 4px 0; color: var(--muted); font-size: .86rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; }

.rise { opacity: 0; transform: translateY(14px); animation: rise .65s cubic-bezier(.22,.61,.36,1) forwards; }
.d2 { animation-delay: .08s; }
.d3 { animation-delay: .16s; }
@keyframes rise { to { opacity: 1; transform: none; } }

@media (max-width: 960px) {
  .brand-note { display: none; }
  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero-copy { max-width: 820px; }
  .grid.four { grid-template-columns: repeat(2, 1fr); }
  .grid.three, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .container, .narrow { width: min(100% - 32px, var(--container)); }
  .nav { min-height: 64px; }
  .brand img { height: 32px; }
  .nav-links li:not(.language-item):not(.contact-item) { display: none; }
  .nav-links a { padding: 7px 10px; font-size: .8rem; }
  .nav-links .contact { padding-inline: 14px; }
  .hero { padding-top: 58px; }
  .hero-actions .btn { width: 100%; }
  .hero-visual { border-radius: 18px; padding: 7px; }
  .hero-visual img { border-radius: 12px; }
  .grid.two, .grid.three, .grid.four, .pricing-grid, .steps { grid-template-columns: 1fr; }
  .card, .step, .price-card { padding: 22px; }
  .visual-scroll { overflow-x: auto; padding-bottom: 8px; overscroll-behavior-inline: contain; }
  .visual-scroll .visual-frame { width: 780px; max-width: none; }
  .visual-scroll-note { display: block; margin: 10px 0 0; color: var(--muted); font-size: .76rem; text-align: center; }
  .visual-caption { display: block; }
  .visual-caption span { display: block; margin-top: 5px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 8px; }
  .form-grid, .choice-grid { grid-template-columns: 1fr; }
}

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