  @font-face {
    font-family: 'Inter';
    src: url('fonts/inter-v20-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: optional;
  }
  @font-face {
    font-family: 'Inter';
    src: url('fonts/inter-v20-latin-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: optional;
  }
  @font-face {
    font-family: 'Playfair Display';
    src: url('fonts/playfair-display-v40-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: optional;
  }

  :root {
    --bg: #f3f3f7;
    --bg2: #ebebee;
    --bg3: #e4e4e4;
    --accent: #0066cc;
    --text: #191a1f;
    --muted: #66656a;
    --border: rgba(1,1,8,0.1);
    --border-accent: rgba(0,102,204,0.3);
    --mono: 'Inter', sans-serif;
    --sans: 'Playfair Display', serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--mono);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  .skip-link { position: fixed; top: 1rem; left: 1rem; z-index: 200; transform: translateY(-160%); padding: 0.65rem 1rem; background: var(--accent); color: #fff; font-size: 0.78rem; font-weight: 600; text-decoration: none; transition: transform 0.2s; }
  .skip-link:focus { transform: translateY(0); }

  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image:
      linear-gradient(rgba(0,102,204,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(0,102,204,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 3rem;
    background: rgba(248,248,250,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .nav-logo { font-family: var(--sans); font-weight: 800; font-size: 1.05rem; letter-spacing: 0.05em; color: var(--text); text-decoration: none; }
  .nav-logo span { color: var(--accent); }
  .nav-links { display: flex; gap: 1.8rem; list-style: none; }
  .nav-links a { color: var(--muted); text-decoration: none; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; transition: color 0.2s; }
  .nav-links a:hover,
  .nav-links a[aria-current="page"] { color: var(--accent); }
  a:focus-visible, button:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; border-radius: 8px; }
  .nav-cta { background: var(--accent) !important; color: #fff !important; padding: 0.5rem 1.1rem !important; border-radius: 4px; transition: opacity 0.2s, transform 0.15s !important; }
  .nav-cta:hover { opacity: 0.88 !important; transform: translateY(-1px); }

  /* PAGE */
  main {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 5rem;
  }

  .page-header {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 3rem 2rem;
    width: 100%;
  }

  .section-tag {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  .section-tag::before {
    content: '';
    display: block;
    width: 24px; height: 1px;
    background: var(--accent);
  }

  h1 {
    font-family: var(--sans);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text);
    margin-bottom: 0.6rem;
  }

  .page-desc {
    font-size: 0.85rem;
    color: var(--muted);
    max-width: 56ch;
    line-height: 1.8;
  }

  /* IFRAME */
  .booking-wrap {
    flex: 1;
    position: relative;
    z-index: 1;
    width: 100%;
    border-top: 1px solid var(--border);
    background: #fff;
  }

  .booking-wrap iframe {
    display: block;
    width: 100%;
    height: calc(100vh - 220px);
    min-height: 600px;
    border: none;
  }

  /* FOOTER */
  .divider { height: 1px; background: var(--border); max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
  footer {
    border-top: 1px solid var(--border);
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    font-size: 0.72rem;
    color: var(--muted);
    position: relative;
    z-index: 1;
  }
  footer a { color: var(--muted); text-decoration: none; }
  footer a:hover { color: var(--accent); }

  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: rgba(0,102,204,0.3); border-radius: 2px; }

  @media (max-width: 768px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .page-header { padding: 2rem 1.5rem 1.5rem; }
    .booking-wrap iframe { height: calc(100vh - 180px); min-height: 500px; }
    footer { padding: 2rem 1.5rem; flex-direction: column; gap: 0.5rem; text-align: center; }
  }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  }
