  :root {
    --ink: #05264E; --ink-2: #0a1c3a; --ink-soft: #3a4660; --mute: #6d7ea0;
    --hairline: #e3eaf7; --line: #d7dfef; --paper: #ffffff;
    --bg-1: #f8faff; --bg-2: #f3f6fc;
    --accent: #3C65F5; --accent-soft: #e3f0ff; --accent-hover: #2a4fd6;
    --violet: #7B61FF; --violet-soft: #ece6ff;
    --success: #09AD95; --success-soft: #d4f5ec;
    --warn: #ff9a3c; --warn-soft: #ffe7d1; --coral: #ff6b6b; --coral-soft: #ffd9d9;
    --shadow-card: 0 18px 40px rgba(5, 38, 78, 0.08), 0 1px 3px rgba(5, 38, 78, 0.04);
    --shadow-soft: 0 8px 24px rgba(5, 38, 78, 0.06);
    --shadow-deep: 0 32px 80px rgba(5, 38, 78, 0.16), 0 4px 12px rgba(5, 38, 78, 0.06);
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    background: linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%);
    color: var(--ink); font-size: 16px; line-height: 1.55;
    -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
    overflow-x: hidden; min-height: 100vh;
  }
  ::selection { background: var(--accent); color: #fff; }
  a { color: inherit; text-decoration: none; }
  img { max-width: 100%; height: auto; }
  .container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
  .page-default { padding: 72px 0; }
  .page-default > .container { max-width: 860px; }
  .page-default > .container > * + * { margin-top: 18px; }
  [data-atto-embed] { display: block; }
  [data-atto-embed], .website-cols { margin: 18px 0; }
  .page-default h2 { font-size: 30px; letter-spacing: -0.02em; line-height: 1.2; }
  .page-default h3 { font-size: 20px; margin-top: 32px; }
  .page-default p { color: var(--mute); max-width: 72ch; }
  .page-default .website-cols { margin-top: 32px; }
  .page-default:has(> .container > section) { padding: 0; }
  .page-default > .container:has(> section) { max-width: none; padding: 0; }
  .mono { font-family: 'JetBrains Mono', monospace; letter-spacing: 0; }
  .eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.18em; color: var(--accent);
    margin-bottom: 16px; display: inline-block; }
  .nav { position: sticky; top: 0; z-index: 40; background: rgba(248, 250, 255, 0.85);
    backdrop-filter: blur(14px) saturate(160%); -webkit-backdrop-filter: blur(14px) saturate(160%);
    border-bottom: 1px solid transparent; transition: border-color .2s; }
  .nav.scrolled { border-bottom-color: var(--hairline); }
  .nav-row { display: flex; align-items: center; justify-content: space-between;
    padding-top: 18px; padding-bottom: 18px; gap: 12px 28px; flex-wrap: wrap; }
  .logo { flex: 0 1 auto; min-width: 0; }
  .logo { display: inline-flex; align-items: baseline; gap: 4px; font-weight: 800; font-size: 22px;
    letter-spacing: -0.02em; color: var(--ink); }
  .nav-links { display: flex; flex-wrap: wrap; justify-content: flex-end; min-width: 0;
    gap: 10px 28px; list-style: none; font-size: 14px; font-weight: 500; color: var(--mute); }
  .nav-links > li { position: relative; }
  .nav-links a:hover { color: var(--ink); }
  .nav-links .has-sub > a { display: inline-flex; align-items: center; gap: 5px; cursor: pointer; }
  .nav-lang-link { font-size: 13px; font-weight: 600; color: var(--mute); text-transform: uppercase;
    letter-spacing: 0.04em; padding: 3px 7px; border-radius: 8px; transition: color .15s, background .15s; }
  .nav-lang-link:hover { color: var(--ink); }
  .nav-lang-link.is-active { color: var(--accent); background: color-mix(in srgb, var(--accent) 12%, transparent); }
  .sub-caret { font-size: 10px; opacity: .55; transition: transform .18s; }
  .has-sub:hover .sub-caret, .has-sub:focus-within .sub-caret { transform: rotate(180deg); }
  .has-sub::after { content: ""; position: absolute; top: 100%; left: 0; right: -8px; height: 14px; }
  .subnav { position: absolute; top: calc(100% + 10px); left: -8px; min-width: 232px; padding: 8px; margin: 0;
    list-style: none; background: #fff; border: 1px solid var(--hairline);
    border-radius: 14px; box-shadow: 0 18px 44px rgba(20,30,60,0.16);
    display: flex; flex-direction: column; gap: 2px;
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s; }
  .has-sub:hover .subnav, .has-sub:focus-within .subnav { opacity: 1; visibility: visible; transform: translateY(0); }
  .subnav.subnav-cols { display: grid; grid-auto-flow: column;
    grid-template-rows: repeat(var(--sub-rows, 10), auto);
    column-gap: 4px; max-width: min(88vw, 760px); }
  .nav-links > li.has-sub .subnav-cols { left: auto; right: -8px; }
  .subnav li { width: 100%; }
  .subnav a { display: block; padding: 9px 12px; border-radius: 9px; font-size: 14px; font-weight: 500;
    white-space: nowrap; color: var(--ink); }
  .subnav a:hover { background: rgba(60,101,245,0.08); color: var(--accent); }
  .nav-dark .subnav { background: #11161f; border-color: rgba(255,255,255,0.10); }
  .nav-dark .subnav a { color: #e6ebf5; }
  .nav-dark .subnav a:hover { background: rgba(255,255,255,0.06); color: var(--accent-soft); }
  .nav-toggle { position: absolute; opacity: 0; pointer-events: none; width: 0; height: 0; }
  .nav-burger { display: none; }
  @media (max-width: 900px) {
    .nav-row { flex-wrap: wrap; row-gap: 0; }
    .nav-burger {
      display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
      width: 42px; height: 38px; padding: 8px 9px; margin-left: auto; cursor: pointer;
      border: 1px solid var(--hairline); border-radius: 10px; background: transparent;
    }
    .nav-burger > span { display: block; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .2s, opacity .2s; }
    .nav-toggle:focus-visible + .nav-burger,
    .nav-burger:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
    .nav-toggle:checked + .nav-burger > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle:checked + .nav-burger > span:nth-child(2) { opacity: 0; }
    .nav-toggle:checked + .nav-burger > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .nav-links {
      flex-basis: 100%; flex-direction: column; gap: 0; font-size: 16px;
      max-height: 0; overflow: hidden; transition: max-height .25s ease;
    }
    .nav-toggle:checked ~ .nav-links { max-height: 80vh; overflow-y: auto; }
    .nav-links > li { border-top: 1px solid var(--hairline); }
    .nav-links a { display: block; padding: 13px 2px; color: var(--ink); }
    .nav-links .subnav, .nav-links .subnav-cols {
      position: static; opacity: 1; visibility: visible; transform: none;
      display: block; max-width: none; min-width: 0; padding: 0 0 6px 14px;
      background: transparent; border: 0; box-shadow: none;
    }
    .nav-links .subnav a { padding: 9px 2px; white-space: normal; }
    .sub-caret { display: none; }
    .has-sub::after { content: none; }
  }
  .foot-powered { margin: 8px 0 0; }
  .foot-powered a { color: inherit; text-decoration: underline; opacity: .85; }
  .foot-powered a:hover { opacity: 1; color: var(--accent); }
  .hero { padding: 64px 0 96px; position: relative; }
  .hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 56px; align-items: center; }
  @media (max-width: 1024px) { .hero-grid { grid-template-columns: 1fr; gap: 64px; } }
  .hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px 6px 8px;
    background: #fff; border: 1px solid var(--hairline); border-radius: 999px; font-size: 12px; font-weight: 600;
    color: var(--ink); box-shadow: var(--shadow-soft); margin-bottom: 28px; }
  .hero-eyebrow .pill { background: var(--success-soft); color: var(--success); font-size: 10px; font-weight: 700;
    padding: 2px 8px; border-radius: 999px; letter-spacing: 0.06em; text-transform: uppercase; }
  .hero h1 { font-size: clamp(48px, 7vw, 84px); font-weight: 800; line-height: 0.98; letter-spacing: -0.035em;
    color: var(--ink); margin-bottom: 24px; }
  .hero h1 .blue { color: var(--accent); }
  .hero h1 .under { text-decoration: underline; text-decoration-color: var(--accent); text-decoration-thickness: 5px; text-underline-offset: 8px; }
  .hero-sub { font-size: 19px; color: var(--mute); max-width: 540px; margin-bottom: 36px; line-height: 1.5; }
  .hero-sub strong { color: var(--ink); font-weight: 700; }
  .hero-cta { display: flex; gap: 14px; align-items: center; margin-bottom: 28px; flex-wrap: wrap; }
  .btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 24px; border-radius: 12px;
    font-size: 15px; font-weight: 600; transition: all .2s; cursor: pointer; border: 1px solid transparent; }
  .btn-primary { background: var(--accent, #dc2626); color: #fff; box-shadow: 0 12px 24px rgba(60,101,245,0.25); }
  .btn-primary:hover { background: var(--accent-hover, #b91c1c); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(60,101,245,0.35); }
  .btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
  .btn-ghost:hover { background: #fff; border-color: var(--accent); }
  .btn .arrow { transition: transform .2s; }
  .btn:hover .arrow { transform: translateX(3px); }
  .hero-meta { display: flex; gap: 28px; font-size: 13px; color: var(--mute); flex-wrap: wrap; }
  .hero-meta-item { display: inline-flex; align-items: center; gap: 6px; }
  .hero-meta-item::before { content: '✓'; color: var(--success); font-weight: 700; }
  .hero-mock { position: relative; }
  .mock-card { background: #fff; border-radius: 18px; border: 1px solid var(--hairline); box-shadow: var(--shadow-deep);
    overflow: hidden; transform: perspective(2000px) rotateY(-3deg) rotateX(2deg); transform-origin: center; }
  .mock-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px;
    border-bottom: 1px solid var(--hairline); background: linear-gradient(180deg, #fff 0%, var(--bg-1) 100%); }
  .mock-head-left { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; font-size: 14px; color: var(--ink); }
  .mock-head-left .ic { width: 28px; height: 28px; border-radius: 8px; background: var(--accent-soft); color: var(--accent);
    display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; }
  .mock-head-right { font-size: 11px; color: var(--mute); font-weight: 600; display: inline-flex; align-items: center; gap: 14px; }
  .mock-pill { padding: 4px 10px; background: var(--success-soft); color: var(--success); border-radius: 6px;
    font-size: 10px; font-weight: 700; letter-spacing: 0.04em; }
  .mock-body { padding: 8px; }
  .mock-row { display: grid; grid-template-columns: 44px 1fr auto auto; align-items: center; gap: 14px;
    padding: 14px 14px; border-radius: 10px; transition: background .15s; }
  .mock-row:hover { background: var(--bg-1); }
  .mock-row + .mock-row { border-top: 1px dashed var(--hairline); }
  .avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--violet));
    color: #fff; font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; }
  .avatar.coral { background: linear-gradient(135deg, #ff9777, #ff7a59); }
  .avatar.green { background: linear-gradient(135deg, #1dd1a1, var(--success)); }
  .name { font-weight: 700; font-size: 14px; color: var(--ink); }
  .role { font-size: 12px; color: var(--mute); margin-top: 2px; }
  .score { font-weight: 800; font-size: 16px; padding: 6px 12px; border-radius: 8px; background: var(--success-soft);
    color: var(--success); min-width: 50px; text-align: center; }
  .score.mid { background: #fff4d6; color: #b07b00; }
  .score.low { background: #ffe2dc; color: #d54a26; }
  .bar { width: 60px; height: 6px; background: var(--hairline); border-radius: 999px; overflow: hidden; }
  .bar > span { display: block; height: 100%; background: var(--accent); border-radius: inherit; }
  .floater { position: absolute; z-index: 5; background: #fff; border-radius: 14px; padding: 14px 18px;
    box-shadow: var(--shadow-deep); border: 1px solid var(--hairline); display: flex; align-items: center; gap: 12px; font-size: 13px; }
  .floater-1 { top: -22px; left: -28px; animation: float-1 6s ease-in-out infinite; }
  .floater-2 { bottom: -24px; right: -32px; animation: float-2 7s ease-in-out infinite; }
  @keyframes float-1 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
  @keyframes float-2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
  .floater .ic { width: 36px; height: 36px; border-radius: 10px; background: var(--accent-soft); color: var(--accent);
    display: flex; align-items: center; justify-content: center; font-size: 16px; }
  .floater.success .ic { background: var(--success-soft); color: var(--success); }
  .floater strong { display: block; font-weight: 700; color: var(--ink); font-size: 13px; }
  .floater .sub { font-size: 11px; color: var(--mute); font-weight: 500; margin-top: 2px; }
  .ping { width: 8px; height: 8px; border-radius: 50%; background: var(--success); position: relative; }
  .ping::after { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid var(--success);
    opacity: .5; animation: ping 1.5s ease-out infinite; }
  @keyframes ping { 0% { transform: scale(.4); opacity: .8; } 100% { transform: scale(1.8); opacity: 0; } }
  .trust { border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
    background: rgba(255,255,255,0.5); padding: 32px 0; }
  .trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: center; }
  @media (max-width: 768px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
  .stat { text-align: center; padding: 0 12px; }
  .stat .num { font-size: 38px; font-weight: 800; color: var(--ink); letter-spacing: -0.04em; line-height: 1; }
  .stat .num .b { color: var(--accent); }
  .stat .label { font-size: 12px; color: var(--mute); margin-top: 8px; font-weight: 600; letter-spacing: 0.02em; }
  .modules { padding: 96px 0; }
  .section-head { max-width: 720px; margin-bottom: 56px; }
  .section-head h2 { font-size: clamp(36px, 5vw, 56px); font-weight: 800; line-height: 1.05;
    letter-spacing: -0.03em; color: var(--ink); margin-bottom: 16px; }
  .section-head h2 .blue { color: var(--accent); }
  .section-head p { font-size: 17px; color: var(--mute); line-height: 1.5; }
  .modules-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
  @media (max-width: 1024px) { .modules-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 640px) { .modules-grid { grid-template-columns: 1fr; } }
  .module { background: #fff; border: 1px solid var(--hairline); border-radius: 18px; padding: 28px 26px;
    transition: all .25s; position: relative; overflow: hidden; }
  .module:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: var(--accent-soft); }
  .module .icon-wrap { width: 44px; height: 44px; border-radius: 12px; display: inline-flex; align-items: center;
    justify-content: center; background: var(--accent-soft); color: var(--accent); font-size: 20px; margin-bottom: 18px; }
  .module .icon-wrap.violet { background: var(--violet-soft); color: var(--violet); }
  .module .icon-wrap.success { background: var(--success-soft); color: var(--success); }
  .module .icon-wrap.warn { background: var(--warn-soft); color: var(--warn); }
  .module .icon-wrap.coral { background: var(--coral-soft); color: var(--coral); }
  .module h3 { font-size: 19px; font-weight: 700; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.01em; }
  .module p { font-size: 14px; color: var(--mute); margin-bottom: 16px; }
  .module ul { list-style: none; font-size: 13px; color: var(--ink-soft); }
  .module li { position: relative; padding: 5px 0 5px 14px; line-height: 1.5; }
  .module li::before { content: ''; position: absolute; left: 0; top: .62em;
    width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }
  .deepdive { padding: 96px 0; position: relative; }
  .deepdive.alt { background: var(--bg-2); }
  .dd-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 64px; align-items: center; }
  .deepdive.alt .dd-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); }
  .deepdive.alt .dd-text { order: 2; }
  @media (max-width: 1024px) {
    .dd-grid, .deepdive.alt .dd-grid { grid-template-columns: 1fr; gap: 40px; }
    .deepdive.alt .dd-text { order: initial; }
  }
  .dd-text h2 { font-size: clamp(34px, 4.5vw, 50px); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em;
    color: var(--ink); margin-bottom: 18px; }
  .dd-text h2 .blue { color: var(--accent); }
  .dd-text > p { font-size: 16px; color: var(--mute); line-height: 1.55; margin-bottom: 24px; max-width: 480px; }
  .dd-text ul { list-style: none; margin-bottom: 28px; }
  .dd-text li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: 14px;
    color: var(--ink-soft); line-height: 1.5; }
  .dd-text li i { color: var(--success); font-weight: 800; font-style: normal; font-size: 13px;
    background: var(--success-soft); width: 22px; height: 22px; border-radius: 50%; display: inline-flex;
    align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
  .arrow-link { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); font-weight: 700;
    font-size: 15px; border-bottom: 2px solid var(--accent-soft); padding-bottom: 4px; transition: all .2s; }
  .arrow-link:hover { border-bottom-color: var(--accent); gap: 12px; }
  .vis-scoring { background: #fff; border: 1px solid var(--hairline); border-radius: 18px; padding: 20px; box-shadow: var(--shadow-card); }
  .vs-row { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 16px; padding: 12px 14px;
    border-radius: 10px; transition: background .15s; }
  .vs-row + .vs-row { border-top: 1px dashed var(--hairline); }
  .vs-row:hover { background: var(--bg-1); }
  .vs-name { font-weight: 700; font-size: 14px; color: var(--ink); }
  .vs-skills { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--mute); margin-top: 2px; letter-spacing: 0; }
  .vs-bar { width: 110px; height: 8px; background: var(--hairline); border-radius: 999px; overflow: hidden; }
  .vs-bar > span { display: block; height: 100%; background: var(--accent); border-radius: inherit; }
  .vs-num { font-weight: 800; font-size: 18px; min-width: 32px; text-align: right; color: var(--ink); }
  .vis-booking { background: #fff; border: 1px solid var(--hairline); border-radius: 18px; box-shadow: var(--shadow-card); overflow: hidden; }
  .vb-head { display: flex; align-items: center; gap: 14px; padding: 20px 24px; border-bottom: 1px solid var(--hairline);
    background: linear-gradient(180deg, #fff 0%, var(--bg-1) 100%); }
  .vb-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--violet));
    color: #fff; font-weight: 800; font-size: 16px; display: flex; align-items: center; justify-content: center; }
  .vb-head .name { font-weight: 700; font-size: 15px; }
  .vb-head .ev { font-size: 12px; color: var(--mute); margin-top: 2px; font-family: 'JetBrains Mono', monospace; letter-spacing: 0; }
  .vb-body { padding: 24px; }
  .vb-day { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--mute); margin-bottom: 12px;
    text-transform: uppercase; letter-spacing: 0.1em; }
  .vb-slots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 20px; }
  .vb-slot { padding: 10px 12px; border-radius: 8px; border: 1px solid var(--hairline); background: #fff; font-size: 13px;
    font-weight: 600; text-align: center; color: var(--ink); transition: all .15s; cursor: pointer; }
  .vb-slot:hover { border-color: var(--accent); transform: translateY(-1px); }
  .vb-slot.active { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 6px 14px rgba(60,101,245,0.3); }
  .vb-confirm { width: 100%; padding: 14px; background: var(--ink); color: #fff; border: none; border-radius: 10px;
    font-family: inherit; font-size: 14px; font-weight: 700; cursor: pointer; transition: all .2s;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
  .vb-confirm:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 12px 24px rgba(60,101,245,0.3); }
  .vb-meet-chip { display: flex; align-items: center; gap: 8px; margin-top: 14px; padding: 10px 14px;
    background: var(--success-soft); color: var(--success); border-radius: 8px; font-size: 12px; font-weight: 600; justify-content: center; }
  .how { padding: 96px 0; background: var(--bg-1); }
  .how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; position: relative; }
  @media (max-width: 900px) { .how-steps { grid-template-columns: 1fr; } }
  .step { background: #fff; border: 1px solid var(--hairline); border-radius: 18px; padding: 32px 28px; transition: all .25s; position: relative; }
  .step:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
  .step-num { width: 40px; height: 40px; border-radius: 10px; background: var(--ink); color: #fff;
    font-family: 'JetBrains Mono', monospace; font-weight: 600; font-size: 16px; display: flex; align-items: center;
    justify-content: center; margin-bottom: 18px; }
  .step h4 { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.01em; }
  .step p { font-size: 14px; color: var(--mute); line-height: 1.55; }
  .cta-banner { padding: 96px 0; background: linear-gradient(135deg, var(--ink) 0%, #0f3a7a 100%); color: #fff; position: relative; overflow: hidden; }
  .cta-banner::before { content: ''; position: absolute; top: -50%; right: -10%; width: 600px; height: 600px;
    background: radial-gradient(circle, var(--accent) 0%, transparent 65%); opacity: .35; filter: blur(60px); }
  .cta-banner::after { content: ''; position: absolute; bottom: -30%; left: -10%; width: 500px; height: 500px;
    background: radial-gradient(circle, var(--violet) 0%, transparent 65%); opacity: .25; filter: blur(60px); }
  .cta-card { text-align: center; position: relative; max-width: 760px; margin: 0 auto; }
  .cta-card h2 { font-size: clamp(32px, 4.5vw, 56px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 18px; }
  .cta-card h2 .blue { color: #8aaaf7; }
  .cta-card > p { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 32px; }
  .cta-row-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .cta-row-btns .btn-primary { background: #fff; color: var(--ink); box-shadow: 0 16px 40px rgba(0,0,0,0.25); }
  .cta-row-btns .btn-primary:hover { background: var(--accent-soft); color: var(--ink); }
  .cta-row-btns .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.3); }
  .cta-row-btns .btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
  .legal { padding: 64px 0 96px; }
  .legal .container { max-width: 880px; }
  .legal-back { display: inline-flex; align-items: center; gap: 8px; color: var(--mute); font-size: 14px; margin-bottom: 18px; }
  .legal-back:hover { color: var(--accent); }
  .legal-card { background: #fff; border: 1px solid var(--hairline); border-radius: 18px; padding: 48px 56px; box-shadow: var(--shadow-card); }
  .legal-card h1, .legal-card h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; color: var(--ink); line-height: 1.15; }
  .legal-card h3 { margin-top: 32px; font-size: 20px; font-weight: 700; color: var(--ink); }
  .legal-card h4 { margin-top: 22px; font-size: 16px; font-weight: 700; color: var(--ink-2); }
  .legal-card p, .legal-card li { font-size: 15px; color: var(--ink-soft); margin-bottom: 10px; line-height: 1.6; }
  .legal-card ul { padding-left: 20px; margin-bottom: 12px; }
  .legal-card a { color: var(--accent); }
  @media (max-width: 640px) { .legal-card { padding: 28px 22px; } }
  .website-contact-form { display: flex; flex-direction: column; gap: 18px; margin-top: 26px; }
  .website-contact-form label { display: flex; flex-direction: column; gap: 7px;
    font-size: 13px; font-weight: 600; color: var(--ink-2); letter-spacing: 0.01em; }
  .website-contact-form input, .website-contact-form textarea {
    font: inherit; font-weight: 400; color: var(--ink); background: var(--bg-1);
    border: 1px solid var(--hairline); border-radius: 12px; padding: 13px 15px; width: 100%;
    transition: border-color .15s, box-shadow .15s; }
  .website-contact-form input::placeholder, .website-contact-form textarea::placeholder { color: var(--mute); }
  .website-contact-form input:focus, .website-contact-form textarea:focus {
    outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 18%, transparent); }
  .website-contact-form textarea { resize: vertical; min-height: 130px; line-height: 1.55; }
  .website-contact-form .btn { align-self: flex-start; margin-top: 4px; }
  .website-form-thanks { margin-top: 24px; padding: 16px 18px; border-radius: 12px;
    background: color-mix(in srgb, var(--accent) 10%, var(--bg-1));
    border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--hairline));
    color: var(--ink); font-size: 15px; font-weight: 500; }
  .legal-card .ws-blog-list { list-style: none; padding: 0; margin: 28px 0 0;
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px; }
  .ws-blog-item { display: flex; flex-direction: column; background: #fff;
    border: 1px solid var(--hairline); border-radius: 16px; overflow: hidden;
    box-shadow: var(--shadow-soft); transition: box-shadow .2s, transform .2s; }
  .ws-blog-item:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
  .ws-blog-thumb { display: block; aspect-ratio: 16 / 10; background: var(--bg-2); overflow: hidden; }
  .ws-blog-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .ws-blog-item h2 { font-size: 17px; font-weight: 700; line-height: 1.35;
    margin: 16px 18px 0; color: var(--ink); letter-spacing: -0.01em; transition: color .15s; }
  .ws-blog-item > a { color: inherit; }
  .ws-blog-item:hover h2 { color: var(--accent); }
  .ws-blog-meta { margin: 10px 18px 0; font-size: 12px; color: var(--mute);
    display: flex; align-items: center; gap: 10px; font-family: 'JetBrains Mono', monospace; }
  .ws-blog-cat { background: var(--accent-soft); color: var(--accent-hover);
    border-radius: 999px; padding: 2px 10px; font-size: 11px; font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif; }
  .ws-blog-item > p:not(.ws-blog-meta) { font-size: 14px; color: var(--ink-soft);
    margin: 12px 18px 18px; line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; overflow: hidden; }
  .ws-pager { display: flex; gap: 14px; justify-content: center; margin: 40px 0 8px; }
  .ws-pager a { font-size: 18px; line-height: 1; padding: 10px 16px; border-radius: 10px;
    border: 1px solid var(--hairline); color: var(--accent); background: #fff; transition: background .15s; }
  .ws-pager a:hover { background: var(--accent-soft); }
  @media (max-width: 640px) { .legal-card .ws-blog-list { grid-template-columns: 1fr; gap: 20px; } }
  footer { background: var(--bg-2); border-top: 1px solid var(--hairline); padding: 56px 0 28px; }
  .foot-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 48px; margin-bottom: 40px; }
  @media (max-width: 768px) { .foot-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
  .foot-brand p { font-size: 13px; color: var(--mute); line-height: 1.55; margin-top: 12px; max-width: 320px; }
  .foot-col h5 { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.16em; color: var(--ink); margin-bottom: 14px; }
  .foot-col ul { list-style: none; }
  .foot-col li { padding: 4px 0; }
  .foot-col a { font-size: 14px; color: var(--mute); transition: color .15s; }
  .foot-col a:hover { color: var(--accent); }
  .foot-bottom { border-top: 1px solid var(--hairline); padding-top: 20px; display: flex; justify-content: space-between;
    align-items: center; font-size: 12px; color: var(--mute); flex-wrap: wrap; gap: 12px; }
  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s, transform .6s; }
  .reveal.in { opacity: 1; transform: translateY(0); }
  .nav-static { position: static; }
  .nav-dark { background: rgba(5,38,78,0.92); }
  .nav-dark .logo, .nav-dark .nav-links a { color: #fff; }
  .nav-dark .nav-links a:hover { color: var(--accent-soft); }
  .logo-img { height: 32px; width: auto; display: block; }
  .website-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
  .website-cols .col { min-width: 0; }
  .website-cols:has(> .col:nth-child(4)) { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
  .website-cols:has(> .col:nth-child(5)) { grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); }
  .website-cols .col > :first-child { margin-top: 0; }
  .article-cover { margin-bottom: 24px; }
  .article-cover img { width: 100%; border-radius: 14px; }
  .sophro-hero, .sophro-band, .sophro-cta {
    --s-sage: #6f9173; --s-sage-deep: #4f7a5b; --s-cream: #f7f4ee;
    --s-ink: #33352f; --s-mute: #6b6f64; --s-line: #e7e1d6; --s-paper: #fffdf9;
  }
  .sophro-hero { padding: 96px 0 88px; text-align: center;
    background: linear-gradient(180deg, var(--s-cream) 0%, #fffdf9 100%); color: var(--s-ink); }
  .sophro-hero h1 { font-size: clamp(38px, 5.5vw, 62px); font-weight: 700; line-height: 1.08;
    letter-spacing: -0.02em; color: var(--s-ink); max-width: 16ch; margin: 0 auto 22px; }
  .sophro-hero p { font-size: 19px; color: var(--s-mute); max-width: 60ch; margin: 0 auto 32px; line-height: 1.6; }
  .sophro-hero .btn-primary, .sophro-band .btn-primary, .sophro-cta .btn-primary {
    background: var(--s-sage-deep); border-color: var(--s-sage-deep); color: #fff; border-radius: 999px; }
  .sophro-hero .btn-primary:hover, .sophro-band .btn-primary:hover, .sophro-cta .btn-primary:hover {
    background: var(--s-sage); border-color: var(--s-sage); }
  .sophro-hero .btn-ghost, .sophro-band .btn-ghost { color: var(--s-sage-deep); border-color: var(--s-sage); border-radius: 999px; }
  .sophro-hero .btn-ghost:hover, .sophro-band .btn-ghost:hover { background: var(--s-cream); }
  .sophro-hero img { border-radius: 20px; margin-top: 40px; box-shadow: 0 24px 60px rgba(79, 122, 91, 0.16); }
  .sophro-band { padding: 80px 0; color: var(--s-ink); }
  .sophro-band h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 700; letter-spacing: -0.015em;
    color: var(--s-ink); margin-bottom: 18px; text-align: center; }
  .sophro-band > .container > p { font-size: 17px; color: var(--s-mute); line-height: 1.7; max-width: 70ch; margin: 0 auto 14px; }
  .sophro-band h3 { font-size: 19px; font-weight: 700; color: var(--s-sage-deep); margin-bottom: 8px; }
  .sophro-about { background: #fffdf9; }
  .sophro-about, .sophro-cta { text-align: center; }
  .sophro-steps { background: var(--s-cream); }
  .sophro-steps ol { list-style: none; counter-reset: s; max-width: 760px; margin: 36px auto 0;
    display: grid; gap: 16px; padding: 0; }
  .sophro-steps ol li { counter-increment: s; position: relative; background: var(--s-paper);
    border: 1px solid var(--s-line); border-radius: 16px; padding: 22px 24px 22px 76px; color: var(--s-mute); line-height: 1.6; }
  .sophro-steps ol li::before { content: counter(s); position: absolute; left: 22px; top: 20px;
    width: 38px; height: 38px; border-radius: 50%; background: var(--s-sage); color: #fff;
    font-weight: 700; display: flex; align-items: center; justify-content: center; }
  .sophro-services .website-cols { margin-top: 40px; gap: 22px; }
  .sophro-services .col { background: var(--s-paper); border: 1px solid var(--s-line); border-radius: 18px;
    padding: 30px 26px; box-shadow: 0 10px 30px rgba(79, 122, 91, 0.06); text-align: center;
    transition: transform .2s, box-shadow .2s; }
  .sophro-services .col:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(79, 122, 91, 0.12); }
  .sophro-approaches { background: var(--s-cream); }
  .sophro-cta { padding: 88px 0; }
  .sophro-cta-card { background: linear-gradient(135deg, var(--s-sage-deep) 0%, var(--s-sage) 100%);
    color: #fff; border-radius: 24px; text-align: center; max-width: 820px; margin: 0 auto; padding: 56px 40px; }
  .sophro-cta-card h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); font-weight: 700; margin-bottom: 16px; }
  .sophro-cta-card p { color: rgba(255,255,255,0.88); font-size: 17px; margin-bottom: 28px; }
  .sophro-cta-card .btn-primary { background: #fff; color: var(--s-sage-deep); border-color: #fff; }
  .sophro-cta-card .btn-primary:hover { background: var(--s-cream); color: var(--s-sage-deep); }
  .sophro-faq { background: #fffdf9; }
  .sophro-faq details { max-width: 760px; margin: 0 auto; background: var(--s-paper);
    border: 1px solid var(--s-line); border-radius: 14px; padding: 4px 22px; margin-bottom: 12px; }
  .sophro-faq summary { cursor: pointer; font-weight: 700; color: var(--s-ink); padding: 16px 0; list-style: none; position: relative; }
  .sophro-faq summary::-webkit-details-marker { display: none; }
  .sophro-faq summary::after { content: '+'; position: absolute; right: 0; color: var(--s-sage); font-size: 22px; line-height: 1; }
  .sophro-faq details[open] summary::after { content: '\2212'; }
  .sophro-faq details > *:not(summary) { color: var(--s-mute); line-height: 1.6; padding-bottom: 16px; }
  @media (max-width: 640px) { .sophro-hero, .sophro-band, .sophro-cta { padding: 56px 0; } }
  .pricing-hero, .pricing-plans, .pricing-faq, .pricing-cta {
    --p-ink: #0f1b34; --p-mute: #5c6a86; --p-line: #e6ecf7; --p-paper: #ffffff;
    --p-accent: var(--accent); --p-accent-deep: var(--accent-hover); --p-tint: var(--accent-soft);
  }
  .pricing-hero { padding: 88px 0 56px; text-align: center;
    background: linear-gradient(180deg, var(--p-tint) 0%, #ffffff 100%); color: var(--p-ink); }
  .pricing-hero h1 { font-size: clamp(36px, 5vw, 58px); font-weight: 800; line-height: 1.06;
    letter-spacing: -0.025em; color: var(--p-ink); max-width: 18ch; margin: 0 auto 18px; }
  .pricing-hero p { font-size: 19px; color: var(--p-mute); max-width: 62ch; margin: 0 auto 28px; line-height: 1.6; }
  .pricing-plans { padding: 64px 0 80px; color: var(--p-ink); }
  .pricing-plans h2 { font-size: clamp(26px, 3.2vw, 38px); font-weight: 800; letter-spacing: -0.015em;
    color: var(--p-ink); margin-bottom: 12px; text-align: center; }
  .pricing-plans > .container > p { font-size: 17px; color: var(--p-mute); line-height: 1.7; max-width: 66ch; margin: 0 auto 8px; text-align: center; }
  .pricing-plans .website-cols { margin-top: 40px; gap: 24px; align-items: stretch; }
  .pricing-plans .col { display: flex; flex-direction: column; background: var(--p-paper);
    border: 1px solid var(--p-line); border-radius: 20px; padding: 34px 30px;
    box-shadow: var(--shadow-soft); transition: transform .2s, box-shadow .2s; }
  .pricing-plans .col:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
  .pricing-plans .col h3 { font-size: 18px; font-weight: 700; color: var(--p-ink); margin-bottom: 6px; }
  .pricing-plans .col .price { font-size: 40px; font-weight: 800; color: var(--p-ink); letter-spacing: -0.02em; margin: 10px 0 4px; }
  .pricing-plans .col .price span { font-size: 15px; font-weight: 600; color: var(--p-mute); }
  .pricing-plans .col ul { list-style: none; margin: 18px 0 24px; padding: 0; display: grid; gap: 10px; }
  .pricing-plans .col ul li { color: var(--p-mute); font-size: 15px; line-height: 1.5; padding-left: 26px; position: relative; }
  .pricing-plans .col ul li::before { content: '\2713'; position: absolute; left: 0; top: 0;
    color: var(--p-accent); font-weight: 800; }
  .pricing-plans .col .btn { margin-top: auto; align-self: stretch; text-align: center; }
  .pricing-plans .website-cols .col:nth-child(2) { border-color: var(--p-accent);
    box-shadow: 0 24px 60px rgba(60, 101, 245, 0.18); position: relative; }
  .pricing-plans .website-cols .col:nth-child(2)::before { content: 'Recommandé';
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--p-accent); color: #fff; font-size: 12px; font-weight: 700;
    padding: 5px 14px; border-radius: 999px; letter-spacing: 0.02em; }
  .pricing-faq { padding: 72px 0; background: var(--bg-2); color: var(--p-ink); }
  .pricing-faq h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; text-align: center;
    color: var(--p-ink); margin-bottom: 28px; letter-spacing: -0.015em; }
  .pricing-faq details { max-width: 760px; margin: 0 auto 12px; background: var(--p-paper);
    border: 1px solid var(--p-line); border-radius: 14px; padding: 4px 22px; }
  .pricing-faq summary { cursor: pointer; font-weight: 700; color: var(--p-ink); padding: 16px 0; list-style: none; position: relative; }
  .pricing-faq summary::-webkit-details-marker { display: none; }
  .pricing-faq summary::after { content: '+'; position: absolute; right: 0; color: var(--p-accent); font-size: 22px; line-height: 1; }
  .pricing-faq details[open] summary::after { content: '\2212'; }
  .pricing-faq details > *:not(summary) { color: var(--p-mute); line-height: 1.6; padding-bottom: 16px; }
  .pricing-cta { padding: 88px 0; }
  .pricing-cta-card { background: linear-gradient(135deg, var(--p-accent-deep) 0%, var(--p-accent) 100%);
    color: #fff; border-radius: 24px; text-align: center; max-width: 820px; margin: 0 auto; padding: 56px 40px; }
  .pricing-cta-card h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 16px; }
  .pricing-cta-card p { color: rgba(255,255,255,0.9); font-size: 17px; margin-bottom: 28px; }
  .pricing-cta-card .btn-primary { background: #fff; color: var(--p-accent-deep); border-color: #fff; }
  .pricing-cta-card .btn-primary:hover { background: var(--p-tint); color: var(--p-accent-deep); }
  @media (max-width: 640px) { .pricing-hero, .pricing-plans, .pricing-faq, .pricing-cta { padding: 52px 0; } }
  .maison-hero, .maison-band, .maison-cta {
    --m-terra: var(--accent-hover); --m-terra-deep: var(--accent); --m-olive: var(--violet);
    --m-linen: var(--bg-2); --m-ink: var(--ink); --m-mute: var(--mute);
    --m-line: var(--hairline); --m-paper: var(--bg-1);
  }
  .maison-hero { padding: 100px 0 88px; text-align: center;
    background: linear-gradient(180deg, var(--m-linen) 0%, var(--m-paper) 100%); color: var(--m-ink); }
  .maison-hero h1 { font-size: clamp(38px, 5.5vw, 62px); font-weight: 700; line-height: 1.08;
    letter-spacing: -0.02em; color: var(--m-ink); max-width: 17ch; margin: 0 auto 22px; }
  .maison-hero p { font-size: 19px; color: var(--m-mute); max-width: 60ch; margin: 0 auto 32px; line-height: 1.6; }
  .maison-hero .btn-primary, .maison-band .btn-primary, .maison-cta .btn-primary {
    background: var(--m-terra-deep); border-color: var(--m-terra-deep); color: #fff; border-radius: 999px; }
  .maison-hero .btn-primary:hover, .maison-band .btn-primary:hover, .maison-cta .btn-primary:hover {
    background: var(--m-terra); border-color: var(--m-terra); }
  .maison-hero .btn-ghost, .maison-band .btn-ghost { color: var(--m-terra-deep); border-color: var(--m-terra); border-radius: 999px; }
  .maison-hero .btn-ghost:hover, .maison-band .btn-ghost:hover { background: var(--m-linen); }
  .maison-hero img { border-radius: 20px; margin-top: 40px; box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14); }
  .maison-band { padding: 84px 0; color: var(--m-ink); }
  .maison-band h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 700; letter-spacing: -0.015em;
    color: var(--m-ink); margin-bottom: 18px; text-align: center; }
  .maison-band > .container > p { font-size: 17px; color: var(--m-mute); line-height: 1.7; max-width: 70ch; margin: 0 auto 14px; }
  .maison-band h3 { font-size: 19px; font-weight: 700; color: var(--m-terra-deep); margin-bottom: 8px; }
  .maison-about { background: var(--m-paper); }
  .maison-about, .maison-cta { text-align: center; }
  .maison-rooms { background: var(--m-linen); }
  .maison-surroundings { background: var(--m-linen); }
  .maison-rooms .website-cols, .maison-services .website-cols { margin-top: 40px; gap: 22px; align-items: stretch; }
  .maison-rooms .col, .maison-services .col { background: var(--m-paper); border: 1px solid var(--m-line);
    border-radius: 18px; padding: 26px 24px; box-shadow: 0 8px 26px rgba(56, 50, 43, 0.06);
    transition: transform .2s, box-shadow .2s; overflow: hidden; }
  .maison-rooms .col:hover, .maison-services .col:hover { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12); }
  .maison-rooms .col img, .maison-services .col img { border-radius: 12px; margin-bottom: 14px; width: 100%; }
  .maison-cta { padding: 92px 0; }
  .maison-cta-card { background: linear-gradient(135deg, var(--m-terra-deep) 0%, var(--m-terra) 100%);
    color: #fff; border-radius: 24px; text-align: center; max-width: 820px; margin: 0 auto; padding: 56px 40px; }
  .maison-cta-card h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); font-weight: 700; margin-bottom: 16px; }
  .maison-cta-card p { color: rgba(255,255,255,0.9); font-size: 17px; margin-bottom: 28px; }
  .maison-cta-card .btn-primary { background: #fff; color: var(--m-terra-deep); border-color: #fff; }
  .maison-cta-card .btn-primary:hover { background: var(--m-linen); color: var(--m-terra-deep); }
  .maison-faq { background: var(--m-paper); }
  .maison-faq details { max-width: 760px; margin: 0 auto 12px; background: var(--m-paper);
    border: 1px solid var(--m-line); border-radius: 14px; padding: 4px 22px; }
  .maison-faq summary { cursor: pointer; font-weight: 700; color: var(--m-ink); padding: 16px 0; list-style: none; position: relative; }
  .maison-faq summary::-webkit-details-marker { display: none; }
  .maison-faq summary::after { content: '+'; position: absolute; right: 0; color: var(--m-terra); font-size: 22px; line-height: 1; }
  .maison-faq details[open] summary::after { content: '\2212'; }
  .maison-faq details > *:not(summary) { color: var(--m-mute); line-height: 1.6; padding-bottom: 16px; }
  @media (max-width: 640px) { .maison-hero, .maison-band, .maison-cta { padding: 56px 0; } }
  .camping-hero, .camping-band, .camping-cta {
    --c-accent: var(--accent); --c-accent-hover: var(--accent-hover); --c-olive: var(--violet);
    --c-bg2: var(--bg-2); --c-ink: var(--ink); --c-mute: var(--mute);
    --c-line: var(--hairline); --c-paper: var(--bg-1);
  }
  .camping-hero { padding: 104px 0 90px; text-align: center;
    background: linear-gradient(180deg, var(--c-bg2) 0%, var(--c-paper) 100%); color: var(--c-ink); }
  .camping-hero h1 { font-size: clamp(38px, 5.6vw, 64px); font-weight: 800; line-height: 1.06;
    letter-spacing: -0.02em; color: var(--c-ink); max-width: 18ch; margin: 0 auto 22px; }
  .camping-hero p { font-size: 19px; color: var(--c-mute); max-width: 60ch; margin: 0 auto 32px; line-height: 1.6; }
  .camping-hero .btn-primary, .camping-band .btn-primary, .camping-cta .btn-primary {
    background: var(--c-accent); border-color: var(--c-accent); color: #fff; border-radius: 999px; }
  .camping-hero .btn-primary:hover, .camping-band .btn-primary:hover, .camping-cta .btn-primary:hover {
    background: var(--c-accent-hover); border-color: var(--c-accent-hover); }
  .camping-hero .btn-ghost, .camping-band .btn-ghost { color: var(--c-accent); border-color: var(--c-accent); border-radius: 999px; }
  .camping-hero .btn-ghost:hover, .camping-band .btn-ghost:hover { background: var(--c-bg2); }
  .camping-hero img { border-radius: 20px; margin-top: 40px; box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16); }
  .camping-band { padding: 84px 0; color: var(--c-ink); }
  .camping-band h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; letter-spacing: -0.015em;
    color: var(--c-ink); margin-bottom: 18px; text-align: center; }
  .camping-band > .container > p { font-size: 17px; color: var(--c-mute); line-height: 1.7; max-width: 70ch; margin: 0 auto 14px; }
  .camping-band h3 { font-size: 19px; font-weight: 700; color: var(--c-accent); margin-bottom: 8px; }
  .camping-about { background: var(--c-paper); text-align: center; }
  .camping-pitches, .camping-surroundings { background: var(--c-bg2); }
  .camping-services, .camping-activities { background: var(--c-paper); }
  .camping-pitches .website-cols, .camping-services .website-cols, .camping-activities .website-cols {
    margin-top: 40px; gap: 22px; align-items: stretch; }
  .camping-pitches .col, .camping-services .col, .camping-activities .col {
    background: var(--c-paper); border: 1px solid var(--c-line); border-radius: 18px; padding: 26px 24px;
    box-shadow: 0 8px 26px rgba(20, 40, 25, 0.06); transition: transform .2s, box-shadow .2s; overflow: hidden; }
  .camping-pitches .col:hover, .camping-services .col:hover, .camping-activities .col:hover {
    transform: translateY(-4px); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12); }
  .camping-pitches .col img, .camping-services .col img, .camping-activities .col img {
    border-radius: 12px; margin-bottom: 14px; width: 100%; }
  .camping-cta { padding: 92px 0; }
  .camping-cta-card { background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-hover) 100%);
    color: #fff; border-radius: 24px; text-align: center; max-width: 820px; margin: 0 auto; padding: 56px 40px; }
  .camping-cta-card h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); font-weight: 800; margin-bottom: 16px; }
  .camping-cta-card p { color: rgba(255, 255, 255, 0.9); font-size: 17px; margin-bottom: 28px; }
  .camping-cta-card .btn-primary { background: #fff; color: var(--c-accent); border-color: #fff; }
  .camping-cta-card .btn-primary:hover { background: var(--c-bg2); color: var(--c-accent); }
  .camping-faq { background: var(--c-paper); }
  .camping-faq details { max-width: 760px; margin: 0 auto 12px; background: var(--c-paper);
    border: 1px solid var(--c-line); border-radius: 14px; padding: 4px 22px; }
  .camping-faq summary { cursor: pointer; font-weight: 700; color: var(--c-ink); padding: 16px 0; list-style: none; position: relative; }
  .camping-faq summary::-webkit-details-marker { display: none; }
  .camping-faq summary::after { content: '+'; position: absolute; right: 0; color: var(--c-accent); font-size: 22px; line-height: 1; }
  .camping-faq details[open] summary::after { content: '\2212'; }
  .camping-faq details > *:not(summary) { color: var(--c-mute); line-height: 1.6; padding-bottom: 16px; }
  @media (max-width: 640px) { .camping-hero, .camping-band, .camping-cta { padding: 56px 0; } }
  .hotel-hero, .hotel-band, .hotel-cta {
    --h-accent: var(--accent); --h-accent-hover: var(--accent-hover); --h-gold: var(--violet);
    --h-bg2: var(--bg-2); --h-ink: var(--ink); --h-mute: var(--mute);
    --h-line: var(--hairline); --h-paper: var(--bg-1);
  }
  .hotel-hero { padding: 108px 0 92px; text-align: center;
    background: linear-gradient(180deg, var(--h-bg2) 0%, var(--h-paper) 100%); color: var(--h-ink); }
  .hotel-hero h1 { font-size: clamp(40px, 5.8vw, 66px); font-weight: 700; line-height: 1.05;
    letter-spacing: -0.02em; color: var(--h-ink); max-width: 18ch; margin: 0 auto 22px; }
  .hotel-hero p { font-size: 19px; color: var(--h-mute); max-width: 60ch; margin: 0 auto 32px; line-height: 1.6; }
  .hotel-hero .btn-primary, .hotel-band .btn-primary, .hotel-cta .btn-primary {
    background: var(--h-accent); border-color: var(--h-accent); color: #fff; border-radius: 4px; }
  .hotel-hero .btn-primary:hover, .hotel-band .btn-primary:hover, .hotel-cta .btn-primary:hover {
    background: var(--h-accent-hover); border-color: var(--h-accent-hover); }
  .hotel-hero .btn-ghost, .hotel-band .btn-ghost { color: var(--h-accent); border-color: var(--h-accent); border-radius: 4px; }
  .hotel-hero .btn-ghost:hover, .hotel-band .btn-ghost:hover { background: var(--h-bg2); }
  .hotel-hero img { border-radius: 8px; margin-top: 40px; box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18); }
  .hotel-band { padding: 88px 0; color: var(--h-ink); }
  .hotel-band h2 { font-size: clamp(28px, 3.4vw, 42px); font-weight: 700; letter-spacing: -0.015em;
    color: var(--h-ink); margin-bottom: 18px; text-align: center; }
  .hotel-band > .container > p { font-size: 17px; color: var(--h-mute); line-height: 1.7; max-width: 70ch; margin: 0 auto 14px; }
  .hotel-band h3 { font-size: 19px; font-weight: 700; color: var(--h-accent); margin-bottom: 8px; }
  .hotel-about { background: var(--h-paper); text-align: center; }
  .hotel-rooms, .hotel-offers { background: var(--h-bg2); }
  .hotel-services, .hotel-dining { background: var(--h-paper); }
  .hotel-rooms .website-cols, .hotel-services .website-cols, .hotel-offers .website-cols {
    margin-top: 40px; gap: 22px; align-items: stretch; }
  .hotel-rooms .col, .hotel-services .col, .hotel-offers .col {
    background: var(--h-paper); border: 1px solid var(--h-line); border-radius: 8px; padding: 26px 24px;
    box-shadow: 0 8px 26px rgba(20, 20, 30, 0.06); transition: transform .2s, box-shadow .2s; overflow: hidden; }
  .hotel-rooms .col:hover, .hotel-services .col:hover, .hotel-offers .col:hover {
    transform: translateY(-4px); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.14); }
  .hotel-rooms .col img, .hotel-services .col img, .hotel-offers .col img {
    border-radius: 6px; margin-bottom: 14px; width: 100%; }
  .hotel-cta { padding: 96px 0; }
  .hotel-cta-card { background: linear-gradient(135deg, var(--h-accent) 0%, var(--h-accent-hover) 100%);
    color: #fff; border-radius: 10px; text-align: center; max-width: 820px; margin: 0 auto; padding: 56px 40px; }
  .hotel-cta-card h2 { color: #fff; font-size: clamp(28px, 4vw, 44px); font-weight: 700; margin-bottom: 16px; }
  .hotel-cta-card p { color: rgba(255, 255, 255, 0.9); font-size: 17px; margin-bottom: 28px; }
  .hotel-cta-card .btn-primary { background: #fff; color: var(--h-accent); border-color: #fff; }
  .hotel-cta-card .btn-primary:hover { background: var(--h-bg2); color: var(--h-accent); }
  .hotel-faq { background: var(--h-paper); }
  .hotel-faq details { max-width: 760px; margin: 0 auto 12px; background: var(--h-paper);
    border: 1px solid var(--h-line); border-radius: 8px; padding: 4px 22px; }
  .hotel-faq summary { cursor: pointer; font-weight: 700; color: var(--h-ink); padding: 16px 0; list-style: none; position: relative; }
  .hotel-faq summary::-webkit-details-marker { display: none; }
  .hotel-faq summary::after { content: '+'; position: absolute; right: 0; color: var(--h-accent); font-size: 22px; line-height: 1; }
  .hotel-faq details[open] summary::after { content: '\2212'; }
  .hotel-faq details > *:not(summary) { color: var(--h-mute); line-height: 1.6; padding-bottom: 16px; }
  @media (max-width: 640px) { .hotel-hero, .hotel-band, .hotel-cta { padding: 58px 0; } }
  .restaurant-hero, .restaurant-band, .restaurant-cta,
  .tablehote-hero, .tablehote-band, .tablehote-cta {
    --r-accent: var(--accent); --r-accent-hover: var(--accent-hover);
    --r-bg2: var(--bg-2); --r-ink: var(--ink); --r-mute: var(--mute);
    --r-line: var(--hairline); --r-paper: var(--bg-1);
  }
  .restaurant-hero, .tablehote-hero { padding: 104px 0 90px; text-align: center;
    background: linear-gradient(180deg, var(--r-bg2) 0%, var(--r-paper) 100%); }
  .restaurant-hero h1, .tablehote-hero h1 { font-size: clamp(38px, 5.6vw, 64px); font-weight: 700;
    line-height: 1.06; letter-spacing: -0.02em; color: var(--r-ink); margin-bottom: 18px; }
  .restaurant-hero p, .tablehote-hero p { font-size: 19px; color: var(--r-mute); max-width: 60ch;
    margin: 0 auto 32px; line-height: 1.6; }
  .restaurant-hero .btn-primary, .restaurant-band .btn-primary, .restaurant-cta .btn-primary,
  .tablehote-hero .btn-primary, .tablehote-band .btn-primary, .tablehote-cta .btn-primary {
    background: var(--r-accent); border-color: var(--r-accent); border-radius: 6px; }
  .restaurant-hero .btn-ghost, .restaurant-band .btn-ghost,
  .tablehote-hero .btn-ghost, .tablehote-band .btn-ghost {
    color: var(--r-accent); border-color: var(--r-accent); border-radius: 6px; }
  .restaurant-hero img, .tablehote-hero img { border-radius: 12px; margin-top: 40px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16); }
  .restaurant-band, .tablehote-band { padding: 84px 0; color: var(--r-ink); }
  .restaurant-band h2, .tablehote-band h2 { font-size: clamp(28px, 3.4vw, 42px); font-weight: 700;
    letter-spacing: -0.015em; text-align: center; margin-bottom: 14px; color: var(--r-ink); }
  .restaurant-band > .container > p, .tablehote-band > .container > p {
    font-size: 17px; color: var(--r-mute); line-height: 1.7; max-width: 70ch; margin: 0 auto 14px; }
  .restaurant-band h3, .tablehote-band h3 { font-size: 19px; font-weight: 700; color: var(--r-accent); margin-bottom: 8px; }
  .restaurant-about, .restaurant-team, .tablehote-about, .tablehote-table { background: var(--r-paper); text-align: center; }
  .restaurant-menu, .restaurant-gallery, .tablehote-menu, .tablehote-gallery { background: var(--r-bg2); }
  .restaurant-formulas { background: var(--r-paper); }
  .restaurant-menu .website-cols, .restaurant-formulas .website-cols, .restaurant-team .website-cols,
  .restaurant-gallery .website-cols, .tablehote-menu .website-cols, .tablehote-table .website-cols,
  .tablehote-gallery .website-cols { gap: 22px; margin-top: 26px; }
  .restaurant-menu .col, .restaurant-formulas .col, .restaurant-team .col, .restaurant-gallery .col,
  .tablehote-menu .col, .tablehote-table .col, .tablehote-gallery .col {
    background: var(--r-paper); border: 1px solid var(--r-line); border-radius: 10px; padding: 22px;
    text-align: left; transition: transform .15s, box-shadow .15s; }
  .restaurant-menu .col:hover, .restaurant-formulas .col:hover, .restaurant-team .col:hover,
  .tablehote-menu .col:hover, .tablehote-table .col:hover {
    transform: translateY(-2px); box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10); }
  .restaurant-menu .col img, .restaurant-formulas .col img, .restaurant-team .col img,
  .restaurant-gallery .col img, .tablehote-menu .col img, .tablehote-table .col img,
  .tablehote-gallery .col img { border-radius: 8px; margin-bottom: 14px; width: 100%; }
  .restaurant-cta, .tablehote-cta { padding: 92px 0; }
  .restaurant-cta-card, .tablehote-cta-card {
    background: linear-gradient(135deg, var(--r-accent) 0%, var(--r-accent-hover) 100%);
    color: #fff; border-radius: 12px; text-align: center; max-width: 820px; margin: 0 auto; padding: 56px 40px; }
  .restaurant-cta-card h2, .tablehote-cta-card h2 { color: #fff; font-size: clamp(28px, 4vw, 44px);
    font-weight: 700; margin-bottom: 16px; }
  .restaurant-cta-card p, .tablehote-cta-card p { color: rgba(255, 255, 255, 0.9); font-size: 17px; margin-bottom: 28px; }
  .restaurant-cta-card .btn-primary, .tablehote-cta-card .btn-primary {
    background: #fff; color: var(--r-accent); border-color: #fff; }
  .restaurant-practical, .tablehote-practical { background: var(--r-paper); }
  .restaurant-practical details, .tablehote-practical details { max-width: 760px; margin: 0 auto 12px;
    background: var(--r-paper); border: 1px solid var(--r-line); border-radius: 8px; padding: 4px 22px; }
  .restaurant-practical summary, .tablehote-practical summary { cursor: pointer; font-weight: 700;
    color: var(--r-ink); padding: 16px 0; list-style: none; position: relative; }
  .restaurant-practical summary::-webkit-details-marker,
  .tablehote-practical summary::-webkit-details-marker { display: none; }
  .restaurant-practical summary::after, .tablehote-practical summary::after {
    content: '+'; position: absolute; right: 0; color: var(--r-accent); font-size: 22px; line-height: 1; }
  .restaurant-practical details[open] summary::after,
  .tablehote-practical details[open] summary::after { content: '\2212'; }
  .restaurant-practical details > *:not(summary), .tablehote-practical details > *:not(summary) {
    color: var(--r-mute); line-height: 1.6; padding-bottom: 16px; }
  @media (max-width: 640px) {
    .restaurant-hero, .restaurant-band, .restaurant-cta,
    .tablehote-hero, .tablehote-band, .tablehote-cta { padding: 56px 0; }
  }
  .notaire-hero, .notaire-band, .notaire-cta {
    --n-accent: var(--accent); --n-accent-hover: var(--accent-hover);
    --n-bg2: var(--bg-2); --n-ink: var(--ink); --n-mute: var(--mute);
    --n-line: var(--hairline); --n-paper: var(--bg-1);
  }
  .notaire-hero { padding: 96px 0 84px; background: var(--n-bg2); color: var(--n-ink);
    border-bottom: 1px solid var(--n-line); }
  .notaire-hero h1 { font-size: clamp(34px, 4.8vw, 56px); font-weight: 700; line-height: 1.1;
    letter-spacing: -0.015em; color: var(--n-ink); max-width: 22ch; margin-bottom: 20px; }
  .notaire-hero p { font-size: 18px; color: var(--n-mute); max-width: 66ch; margin-bottom: 28px; line-height: 1.65; }
  .notaire-hero .btn-primary, .notaire-band .btn-primary, .notaire-cta .btn-primary {
    background: var(--n-accent); border-color: var(--n-accent); color: #fff; border-radius: 2px; }
  .notaire-hero .btn-primary:hover, .notaire-band .btn-primary:hover, .notaire-cta .btn-primary:hover {
    background: var(--n-accent-hover); border-color: var(--n-accent-hover); }
  .notaire-hero .btn-ghost, .notaire-band .btn-ghost {
    color: var(--n-accent); border-color: var(--n-line); border-radius: 2px; }
  .notaire-hero .btn-ghost:hover, .notaire-band .btn-ghost:hover { background: var(--n-paper); }
  .notaire-hero img { border-radius: 2px; margin-top: 36px; }
  .notaire-band { padding: 80px 0; color: var(--n-ink); }
  .notaire-band h2 { font-size: clamp(26px, 3.1vw, 38px); font-weight: 700; letter-spacing: -0.01em;
    color: var(--n-ink); margin-bottom: 16px; }
  .notaire-band > .container > p { font-size: 17px; color: var(--n-mute); line-height: 1.75; max-width: 72ch; margin-bottom: 14px; }
  .notaire-band h3 { font-size: 18px; font-weight: 700; color: var(--n-ink); margin-bottom: 8px; }
  .notaire-about { background: var(--n-paper); }
  .notaire-expertise, .notaire-estate { background: var(--n-bg2); }
  .notaire-team, .notaire-fees { background: var(--n-paper); }
  .notaire-expertise .website-cols, .notaire-team .website-cols,
  .notaire-estate .website-cols, .notaire-fees .website-cols { gap: 20px; margin-top: 32px; align-items: stretch; }
  .notaire-expertise .col, .notaire-team .col, .notaire-estate .col, .notaire-fees .col {
    background: var(--n-paper); border: 1px solid var(--n-line); border-radius: 3px;
    padding: 24px 22px; text-align: left; border-top: 3px solid var(--n-accent); }
  .notaire-estate .col, .notaire-team .col { border-top-width: 1px; border-top-color: var(--n-line); }
  .notaire-expertise .col img, .notaire-team .col img, .notaire-estate .col img,
  .notaire-fees .col img { border-radius: 2px; margin-bottom: 14px; width: 100%; }
  .notaire-fees .col ul, .notaire-expertise .col ul { color: var(--n-mute); line-height: 1.7; padding-left: 18px; }
  .notaire-cta { padding: 84px 0; background: var(--n-paper); }
  .notaire-cta-card { background: var(--n-ink); color: #fff; border-radius: 3px;
    max-width: 860px; margin: 0 auto; padding: 48px 40px; }
  .notaire-cta-card h2 { color: #fff; font-size: clamp(26px, 3.4vw, 38px); font-weight: 700; margin-bottom: 14px; }
  .notaire-cta-card p { color: rgba(255, 255, 255, 0.86); font-size: 17px; margin-bottom: 26px; line-height: 1.7; }
  .notaire-cta-card .btn-primary { background: #fff; color: var(--n-ink); border-color: #fff; }
  .notaire-cta-card .btn-primary:hover { background: var(--n-bg2); color: var(--n-ink); }
  .notaire-infos { background: var(--n-bg2); }
  .notaire-infos details { max-width: 780px; margin: 0 auto 10px; background: var(--n-paper);
    border: 1px solid var(--n-line); border-radius: 3px; padding: 4px 20px; }
  .notaire-infos summary { cursor: pointer; font-weight: 700; color: var(--n-ink); padding: 15px 0;
    list-style: none; position: relative; }
  .notaire-infos summary::-webkit-details-marker { display: none; }
  .notaire-infos summary::after { content: '+'; position: absolute; right: 0; color: var(--n-accent);
    font-size: 21px; line-height: 1; }
  .notaire-infos details[open] summary::after { content: '\2212'; }
  .notaire-infos details > *:not(summary) { color: var(--n-mute); line-height: 1.7; padding-bottom: 15px; }
  @media (max-width: 640px) { .notaire-hero, .notaire-band, .notaire-cta { padding: 54px 0; } }
.ws-blockfull.ws-blockfull.ws-blockfull,
.ws-blockfull.ws-blockfull.ws-blockfull > * { max-width: none; }
.ws-blockfull.ws-blockfull.ws-blockfull :is(p, h1, h2, h3, h4, h5, h6, ul, ol, blockquote) { max-width: none; }
.ws-blockbg { padding: 32px; border-radius: 14px; margin: 18px 0; }
.ws-blockbg > *:first-child { margin-top: 0; }
.ws-blockbg > *:last-child { margin-bottom: 0; }
.ws-blockbg > .ws-textimg { margin: 0; }
@media (max-width: 640px) { .ws-blockbg { padding: 22px 18px; } }
section:has(> .container > .ws-textimg:first-child),
section:has(> .container > .ws-blockbg:first-child > .ws-textimg:first-child),
section:has(> .container > .ws-blockfull:first-child > .ws-textimg:first-child) { padding-top: 0; }
.container > .ws-textimg:first-child,
.container > :is(.ws-blockbg, .ws-blockfull):first-child > .ws-textimg:first-child { margin-top: 0; }
.ws-textimg { display: grid; margin: 18px 0; border-radius: 14px; overflow: hidden;
  background: #0b0f16; }
.ws-textimg > * { grid-area: 1 / 1; }
.ws-textimg__img { display: block; width: 100%; height: auto; min-height: 100%; object-fit: cover; }
.ws-textimg.ws-textimg .ws-textimg__img { margin: 0; border-radius: 0; box-shadow: none; max-width: none; }
.ws-textimg__veil { background: #000; pointer-events: none; }
.ws-textimg__body {
  position: relative; z-index: 1;
  align-self: center; justify-self: center;
  width: 100%; max-width: none; padding: 40px 32px; text-align: center; color: #fff;
}
.ws-textimg.ws-textimg .ws-textimg__body h1, .ws-textimg.ws-textimg .ws-textimg__body h2,
.ws-textimg.ws-textimg .ws-textimg__body h3, .ws-textimg.ws-textimg .ws-textimg__body h4,
.ws-textimg.ws-textimg .ws-textimg__body h5, .ws-textimg.ws-textimg .ws-textimg__body h6,
.ws-textimg.ws-textimg .ws-textimg__body p,  .ws-textimg.ws-textimg .ws-textimg__body li,
.ws-textimg.ws-textimg .ws-textimg__body ul, .ws-textimg.ws-textimg .ws-textimg__body ol,
.ws-textimg.ws-textimg .ws-textimg__body strong, .ws-textimg.ws-textimg .ws-textimg__body em,
.ws-textimg.ws-textimg .ws-textimg__body blockquote { color: inherit; }
.ws-textimg.ws-textimg .ws-textimg__body a:not(.btn) { color: inherit; text-decoration: underline; }
.ws-textimg.ws-textimg .ws-textimg__body :is(ul, ol, li) {
  background: none; border: 0; box-shadow: none; padding-left: 0; list-style-position: inside;
}
.ws-textimg.ws-textimg .ws-textimg__body :is(ul, ol, li)::before { content: none; }
.ws-textimg.ws-textimg .ws-textimg__body :is(p, h1, h2, h3, h4, h5, h6, ul, ol, blockquote) {
  max-width: none; margin-left: auto; margin-right: auto;
}
.ws-textimg--fill { min-height: 320px; }
.ws-textimg--fill .ws-textimg__img { height: 100%; object-fit: cover; }
.ws-textimg--bleed { margin: 0 calc(50% - 50vw); border-radius: 0; }
section:has(> .container > .ws-textimg--bleed:first-child) { padding-top: 0; }
.ws-textimg--bleed .ws-textimg__body { padding: 72px 32px; }
.ws-textimg--plain { display: block; border-radius: 0; }
.ws-textimg--plain .ws-textimg__body {
  max-width: none; padding: 0; text-align: inherit; color: inherit;
}
@media (max-width: 640px) { .ws-textimg__body { padding: 28px 20px; } }
.ws-carousel { position: relative; margin: 18px 0; }
.ws-carousel__track {
  display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: thin; border-radius: 14px;
  padding-bottom: 6px;
}
.ws-carousel__slide {
  flex: 0 0 82%; max-width: 82%; scroll-snap-align: center;
}
.ws-carousel__slide img {
  display: block; width: 100%; height: auto; max-height: 460px; object-fit: cover;
  border-radius: 14px;
}
@media (min-width: 720px) { .ws-carousel__slide { flex-basis: 60%; max-width: 60%; } }
.ws-carousel__btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 42px; height: 42px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255,255,255,0.92); color: #1a1a1a; font-size: 16px; line-height: 1;
  box-shadow: 0 2px 10px rgba(0,0,0,0.18); display: flex; align-items: center; justify-content: center;
}
.ws-carousel__btn:hover { background: #fff; }
.ws-carousel__btn--prev { left: 10px; }
.ws-carousel__btn--next { right: 10px; }
.ws-carousel__dots { display: flex; justify-content: center; gap: 8px; margin-top: 10px; }
.ws-carousel__dot {
  width: 9px; height: 9px; border-radius: 50%; border: none; cursor: pointer; padding: 0;
  background: rgba(0,0,0,0.22); transition: transform .15s, background .15s;
}
.ws-carousel__dot.is-on { background: var(--accent, #3C65F5); transform: scale(1.25); }
.ws-map { margin: 18px 0; }
.ws-map__frame {
  display: block; width: 100%; height: var(--ws-map-h, 380px); border: 0;
  border-radius: 14px; background: rgba(0,0,0,0.04);
}
.ws-map__addr { margin-top: 8px; font-size: 0.95rem; }
.ws-map__addr a { color: inherit; }
@media (max-width: 640px) { .ws-map__frame { height: min(var(--ws-map-h, 380px), 60vh); } }
  .op-hero, .op-band {
    --op-ink: var(--ink); --op-mute: var(--mute); --op-line: var(--hairline);
    --op-paper: var(--bg-1); --op-tint: var(--bg-2);
    --op-accent: var(--accent); --op-accent-hover: var(--accent-hover);
    --op-radius: 14px;
    scroll-margin-top: 88px;
  }
  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
  .op-hero { padding: 104px 0 88px; text-align: center; color: var(--op-ink);
    background: linear-gradient(180deg, var(--op-tint) 0%, var(--op-paper) 100%); }
  .op-hero h1 { font-size: clamp(38px, 5.5vw, 62px); font-weight: 700; line-height: 1.08;
    letter-spacing: -0.02em; max-width: 18ch; margin: 0 auto 22px; }
  .op-hero p { font-size: 19px; color: var(--op-mute); max-width: 62ch; margin: 0 auto 30px; line-height: 1.6; }
  .op-hero img { border-radius: var(--op-radius); margin-top: 36px; }
  .op-band { padding: 76px 0; color: var(--op-ink); background: var(--op-paper); }
  .op-band:nth-of-type(even) { background: var(--op-tint); }
  .op-band h2 { font-size: clamp(26px, 3.2vw, 38px); font-weight: 700; letter-spacing: -0.015em;
    margin-bottom: 16px; text-align: center; }
  .op-band > .container > p { font-size: 17px; color: var(--op-mute); line-height: 1.7;
    max-width: 70ch; margin: 0 auto 14px; }
  .op-band h3 { font-size: 19px; font-weight: 700; color: var(--op-accent); margin-bottom: 8px; }
  .op-band .btn-primary, .op-hero .btn-primary {
    background: var(--op-accent); border-color: var(--op-accent); color: #fff; border-radius: 999px; }
  .op-band .btn-primary:hover, .op-hero .btn-primary:hover {
    background: var(--op-accent-hover); border-color: var(--op-accent-hover); }
  .op-band details { border-bottom: 1px solid var(--op-line); padding: 14px 0; }
  .op-band summary { cursor: pointer; font-weight: 600; }
  .op-contact .website-contact-form { max-width: 640px; margin: 0 auto; }
  .op-fab { position: fixed; right: 20px; bottom: 20px; z-index: 40;
    display: inline-block; padding: 13px 22px; border-radius: 999px;
    background: var(--accent); color: #fff; font-weight: 600; text-decoration: none;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22); }
  .op-fab:hover { background: var(--accent-hover); color: #fff; }
  @media print { .op-fab { display: none; } }
  .mh-hero, .mh-band { --op-radius: 20px; }
  .hop-hero, .hop-band { --op-radius: 8px; }
  .camp-hero, .camp-band { --op-radius: 18px; --op-accent: var(--violet); }
  .prat-hero, .prat-band { --op-radius: 18px; }
  .not-hero, .not-band { --op-radius: 3px; }
  .not-band h2, .not-hero h1 { letter-spacing: -0.005em; }
  .resto-hero, .resto-band { --op-radius: 10px; }
  .th-hero, .th-band { --op-radius: 16px; }
  .ws-gal { margin: 18px 0; }
  .ws-gal__cells { display: grid; gap: 8px; }
  .ws-gal--grid .ws-gal__cells { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
  .ws-gal--mosaic .ws-gal__cells { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 140px; }
  .ws-gal--mosaic .ws-gal__cell:first-child { grid-column: span 2; grid-row: span 2; }
  .ws-gal__cell { position: relative; display: block; overflow: hidden; border-radius: 10px; }
  .ws-gal__cell img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .ws-gal__cell:hover img { filter: brightness(0.92); }
  .ws-gal__more { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(0, 0, 0, 0.45); color: #fff; font-size: 22px; font-weight: 700; }
  @media (max-width: 700px) {
    .ws-gal--mosaic .ws-gal__cells { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 120px; }
  }
  .ws-gal__view { display: none; }
  .ws-gal__view:target { display: flex; position: fixed; inset: 0; z-index: 60;
    align-items: center; justify-content: center; background: rgba(0, 0, 0, 0.9); }
  .ws-gal__view img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: 6px; }
  .ws-gal__close, .ws-gal__nav { position: absolute; color: #fff; text-decoration: none;
    font-size: 34px; line-height: 1; padding: 12px 18px; opacity: 0.85; }
  .ws-gal__close:hover, .ws-gal__nav:hover { opacity: 1; color: #fff; }
  .ws-gal__close { top: 8px; right: 12px; font-size: 26px; }
  .ws-gal__prev { left: 4px; top: 50%; transform: translateY(-50%); }
  .ws-gal__next { right: 4px; top: 50%; transform: translateY(-50%); }
  .ws-facts { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
    list-style: none; padding: 0; margin: 18px 0; }
  .ws-facts__item { display: flex; flex-direction: column; align-items: center; gap: 2px;
    min-width: 132px; padding: 18px 14px; border: 1px solid var(--hairline);
    border-radius: 12px; background: var(--bg-1); }
  .ws-facts .ws-ico { color: var(--accent); margin-bottom: 4px; }
  .ws-facts__value { font-size: 24px; font-weight: 700; line-height: 1.1; }
  .ws-facts__label { font-size: 14px; color: var(--mute); text-align: center; }
  .ws-amen { display: grid; gap: 26px; margin: 18px 0;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
  .ws-amen__group h3 { margin-bottom: 10px; }
  .ws-amen__group ul { list-style: none; padding: 0; margin: 0; }
  .ws-amen__group li { display: flex; align-items: center; gap: 9px; padding: 6px 0;
    font-size: 16px; }
  .ws-amen__group li.is-on .ws-ico { color: var(--accent); }
  .ws-amen__group li.is-off { color: var(--mute); text-decoration: line-through; }
  .ws-amen__group li.is-off .ws-ico { color: var(--mute); text-decoration: none; }
  .ws-ico { flex: none; vertical-align: middle; }
  .ws-specs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 40px; margin: 18px 0; max-width: 860px; }
  .ws-specs__row { display: flex; align-items: baseline; justify-content: space-between;
    gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--hairline); }
  .ws-specs dt { color: var(--mute); font-size: 15px; }
  .ws-specs dd { margin: 0; font-weight: 600; font-size: 15px; text-align: right; }
  @media (max-width: 700px) { .ws-specs { grid-template-columns: 1fr; gap: 0; } }
  .nav-lang { display: inline-flex; gap: .5rem; align-items: center; margin: 0 .25rem; }
  .nav-lang .nav-lang-link { text-decoration: none; line-height: 1; font-size: 1.15rem; opacity: .45; filter: grayscale(40%); }
  .nav-lang .nav-lang-link.is-active { opacity: 1; filter: none; }
  .nav-lang-flag { display: block; border-radius: 1px; box-shadow: 0 0 0 1px rgba(0,0,0,.15); }
  .ws-hp { position: absolute; left: -9999px; }
  .atto-offline-ribbon { position: fixed; left: 0; right: 0; bottom: 0; z-index: 2147483647;
    background: #7a2e0e; color: #fff; font: 600 14px/1.5 system-ui, sans-serif;
    padding: 10px 16px; text-align: center; box-shadow: 0 -2px 8px rgba(0,0,0,.25); }
#atto-cookie-consent{display:none}
#atto-cookie-consent.acc-open{display:block}
#atto-cookie-consent{position:fixed;left:0;right:0;bottom:0;z-index:2147482000;background:#05264E;color:#fff;padding:16px 20px;box-shadow:0 -6px 24px rgba(0,0,0,.18);font-family:system-ui,-apple-system,Segoe UI,Roboto,sans-serif;font-size:14px;line-height:1.5}#atto-cookie-consent .acc-in{max-width:1080px;margin:0 auto;display:flex;gap:16px;align-items:center;justify-content:space-between;flex-wrap:wrap}#atto-cookie-consent p{margin:0;flex:1 1 320px;color:#dbe4f5}#atto-cookie-consent .acc-btns{display:flex;gap:10px;flex:0 0 auto}#atto-cookie-consent button{cursor:pointer;border:0;border-radius:8px;padding:10px 18px;font-weight:700;font-size:14px;font-family:inherit}#atto-cookie-consent .acc-y{background:#3C65F5;color:#fff}#atto-cookie-consent .acc-n{background:transparent;color:#fff;border:1px solid rgba(255,255,255,.4)}@media(max-width:560px){#atto-cookie-consent .acc-btns{flex:1 1 100%}#atto-cookie-consent button{flex:1}}