  :root {
    --navy: #0b1e35;
    --navy-mid: #132a47;
    --navy-light: #1c3d61;
    --teal: #167d78;
    --teal-light: #22b0a9;
    --gold: #c8a84b;
    --gold-light: #e0c06a;
    --sand: #f0e6d3;
    --white: #ffffff;
    --text: #1a2535;
    --text-muted: #5a6a7e;
    --border: #dde4ec;
    --card-shadow: 0 2px 12px rgba(11,30,53,0.08);
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --radius: 8px;
    --radius-sm: 8px;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: var(--font-body); color: var(--text); background: var(--white); }

  /* ── SKIP LINK ── */
  .skip-link {
    position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
    background: var(--teal); color: var(--white); padding: 0.75rem 1.5rem;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    font-weight: 600; font-size: 0.9rem; text-decoration: none; z-index: 200;
    transition: top 0.2s;
  }
  .skip-link:focus { top: 0; }

  /* ── FOCUS ── */
  :focus-visible {
    outline: 2px solid var(--teal);
    outline-offset: 2px;
  }

  /* ── NAV ── */
  .nav {
    position: sticky; top: 0; z-index: 100;
    background: var(--navy);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 2rem; height: 64px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.3);
    border-bottom: 2px solid #c0392b;
  }
  .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }

  .nav-logo-text { font-family: var(--font-display); color: var(--white); font-size: 1.1rem; font-weight: 600; line-height: 1.2; }
  .nav-logo-sub { font-family: var(--font-body); color: var(--gold); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }
  .nav-links { display: flex; gap: 0.25rem; }
  .nav-links a {
    color: rgba(255,255,255,0.75); font-size: 1rem; font-weight: 500;
    text-decoration: none; padding: 0.4rem 0.9rem; border-radius: var(--radius-sm);
    transition: color 0.2s, background 0.2s;
  }
  .nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }
  .nav-links a.active {
    color: var(--white); border-bottom: 3px solid #c0392b; border-radius: 0;
    padding-bottom: calc(0.4rem - 3px);
    align-self: stretch; display: flex; align-items: center;
  }
  .nav-cta {
    background: var(--gold); color: var(--navy); font-size: 0.875rem; font-weight: 600;
    padding: 0.45rem 1.1rem; border-radius: var(--radius-sm); text-decoration: none;
    transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--gold-light); }

  /* ── HAMBURGER ── */
  .nav-hamburger {
    display: none; background: none; border: none; cursor: pointer;
    width: 44px; height: 44px; padding: 10px;
    flex-direction: column; justify-content: center; gap: 5px;
  }
  .nav-hamburger span {
    display: block; width: 22px; height: 2px; background: var(--white);
    border-radius: 1px; transition: transform 0.3s, opacity 0.3s;
  }
  .nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── HERO ── */
  .hero {
    background: var(--navy);
    background-image:
      radial-gradient(ellipse 80% 60% at 20% 40%, rgba(26,138,133,0.18) 0%, transparent 60%),
      radial-gradient(ellipse 60% 50% at 80% 70%, rgba(200,168,75,0.12) 0%, transparent 55%);
    padding: 5rem 2rem 4rem;
    text-align: center;
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.018'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1; pointer-events: none;
  }
  .hero-eyebrow {
    display: inline-block; margin-bottom: 1rem;
    background: transparent; border-top: 2px solid #c0392b; border-bottom: 2px solid #c0392b; border-left: none; border-right: none;
    color: var(--gold); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; padding: 0.3rem 1rem; border-radius: var(--radius);
  }
  .hero h1 {
    font-family: var(--font-display); color: var(--white);
    font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 600; line-height: 1.15;
    margin-bottom: 1.25rem; max-width: 800px; margin-left: auto; margin-right: auto;
  }
  .hero h1 span { color: var(--teal-light); }
  .hero-sub {
    color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 560px;
    margin: 0 auto 0; line-height: 1.65;
  }
  .hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .btn-primary {
    background: var(--teal); color: var(--white); font-weight: 600; font-size: 0.95rem;
    padding: 0.75rem 2rem; border-radius: var(--radius-sm); text-decoration: none;
    transition: background 0.2s; border: none; cursor: pointer;
  }
  .btn-primary:hover { background: var(--teal-light); }
  .btn-outline {
    background: transparent; color: var(--white); font-weight: 600; font-size: 0.95rem;
    padding: 0.75rem 2rem; border-radius: var(--radius-sm); text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.3); transition: border-color 0.2s, background 0.2s;
    cursor: pointer;
  }
  .btn-outline:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); }
  .hero-cta {
    display: inline-block; margin-top: 1rem;
    background: #c0392b; color: var(--white); font-weight: 600; font-size: 0.9rem;
    padding: 0.55rem 1.5rem; border-radius: var(--radius-sm); text-decoration: none;
    transition: background 0.18s;
  }
  .hero-cta:hover { background: #e74c3c; }
  /* ── CATEGORY FILTER ── */
  .filter-bar {
    background: var(--sand); border-bottom: 1px solid var(--border);
    position: sticky; top: 64px; z-index: 90;
    scroll-margin-top: 64px;
  }
  .filter-inner {
    display: flex; gap: 0.5rem; padding: 1rem 2rem; max-width: 1200px; margin: 0 auto;
    flex-wrap: wrap; justify-content: center;
  }
  .filter-btn {
    background: var(--sand); border: 1.5px solid var(--border); color: var(--text);
    font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
    padding: 0.6rem 1.3rem; min-height: 44px; border-radius: 8px; cursor: pointer;
    transition: all 0.18s; white-space: nowrap;
    box-shadow: 0 1px 3px rgba(11,30,53,0.06);
  }
  .filter-btn:hover { border-color: var(--teal); color: var(--teal); background: var(--white); }
  .filter-btn.active {
    background: var(--navy); border-color: var(--navy); color: var(--white);
    box-shadow: 0 2px 8px rgba(11,30,53,0.2);
  }
  .filter-select {
    display: none; width: 100%; padding: 0.75rem 1rem;
    font-family: var(--font-body); font-size: 1rem; font-weight: 500;
    color: var(--text); background: var(--white);
    border: 1.5px solid var(--border); border-radius: var(--radius-sm);
    min-height: 48px; cursor: pointer;
    appearance: none; -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6a7e' stroke-width='2' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 1rem center;
  }

  /* ── BREADCRUMBS ── */
  .breadcrumbs {
    max-width: 1200px; margin: 0 auto; padding: 0.75rem 2rem 0;
    font-size: 0.8rem; color: var(--text-muted);
  }
  .breadcrumbs a {
    color: var(--teal); text-decoration: none; font-weight: 500;
  }
  .breadcrumbs a:hover { text-decoration: underline; }
  .breadcrumbs span { margin: 0 0.35rem; }

  /* ── LOADING STATE ── */
  .cards-grid:empty {
    min-height: 300px; display: flex; align-items: center; justify-content: center;
  }
  .cards-grid:empty::after {
    content: 'Loading...'; color: var(--text-muted); font-size: 1rem;
  }

  /* ── MAIN CONTENT ── */
  .content { max-width: 1200px; margin: 0 auto; padding: 3rem 2rem; scroll-margin-top: 120px; }
  .section-header { margin-bottom: 2rem; }
  .section-header h2 {
    font-family: var(--font-display); font-size: 1.75rem; font-weight: 600;
    color: var(--text); margin-bottom: 0.35rem;
  }
  .section-header p { color: var(--text-muted); font-size: 1rem; }

  /* ── CARDS ── */
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.25rem;
  }
  .card {
    background: var(--white); border: 1.5px solid #b8c4d3;
    border-radius: var(--radius); overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex; flex-direction: column;
    box-shadow: 0 1px 4px rgba(11,30,53,0.1);
  }
  .card:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(11,30,53,0.13); }
  .card-img-link { display: block; cursor: pointer; text-decoration: none; }
  .card-img-wrap { position: relative; height: 200px; overflow: hidden; background: var(--navy-mid); }
  .card-img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s;
  }
  .card:hover .card-img { transform: scale(1.04); }
  .card-img-placeholder {
    width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
    color: rgba(255,255,255,0.3); font-size: 2.5rem;
  }
  .card-badge {
    position: absolute; top: 10px; left: 10px;
    background: var(--navy); color: var(--white);
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
    padding: 0.25rem 0.6rem; border-radius: var(--radius-sm);
  }
  .card-badge.featured { background: var(--gold); color: var(--navy); }
  .card-body { padding: 1.1rem 1.25rem; flex: 1; display: flex; flex-direction: column; }
  .card-category {
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--teal); margin-bottom: 0.4rem;
  }
  .card-name {
    font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
    color: var(--text); line-height: 1.3; margin-bottom: 0.5rem;
  }
  .card-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: auto; }
  .card-tag {
    background: #e2e2e2; color: #444;
    font-size: 0.75rem; padding: 0.2rem 0.55rem; border-radius: var(--radius-sm);
  }
  .card-footer {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 1rem; padding-top: 0.85rem; border-top: 1px solid var(--border);
  }
  .card-avail { font-size: 0.8rem; color: var(--text-muted); }
  .card-avail strong { color: var(--text); }
  .card-book {
    background: #c0392b; color: var(--white);
    font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
    padding: 0.45rem 1.1rem; border-radius: var(--radius-sm); text-decoration: none;
    transition: background 0.18s; white-space: nowrap;
  }
  .card-book:hover { background: #e74c3c; }

  /* ── NO RESULTS ── */
  .no-results {
    grid-column: 1/-1; text-align: center; padding: 4rem 2rem;
    color: var(--text-muted);
  }
  .no-results h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--text); }

  /* ── SERVICES ── */
  .services-section {
    background: var(--navy);
    background-image:
      radial-gradient(ellipse 70% 50% at 80% 30%, rgba(26,138,133,0.15) 0%, transparent 60%),
      radial-gradient(ellipse 50% 60% at 20% 80%, rgba(200,168,75,0.1) 0%, transparent 55%);
    padding: 4rem 0; position: relative;
  }
  .services-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
  .services-header { text-align: center; margin-bottom: 2.5rem; }
  .services-header h2 { font-family: var(--font-display); font-size: 1.75rem; font-weight: 600; color: var(--white); margin-bottom: 0.5rem; display: inline-block; border-top: 2px solid #c0392b; border-bottom: 2px solid #c0392b; padding: 0.5rem 0; }
  .services-header p { color: rgba(255,255,255,0.6); font-size: 1rem; max-width: 600px; margin: 0 auto; line-height: 1.6; }
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
    margin-bottom: 1.5rem;
  }
  .service-card {
    background: rgba(255,255,255,0.06); border-radius: var(--radius); padding: 1.75rem;
    border: 1px solid rgba(255,255,255,0.1); text-align: center;
    transition: background 0.2s, transform 0.2s;
  }
  .service-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
  .service-card h3 {
    font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
    color: var(--white); margin-bottom: 0.25rem;
  }
  .service-card .service-sub {
    color: var(--gold); font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.75rem;
  }
  .service-card p { color: rgba(255,255,255,0.55); font-size: 1rem; line-height: 1.65; }
  .services-highlights {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  }
  .highlight-card {
    text-align: center; padding: 1.25rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.08);
  }
  .highlight-card h4 {
    font-family: var(--font-display); font-size: 1rem; font-weight: 600;
    color: var(--gold); margin-bottom: 0.35rem;
  }
  .highlight-card p { color: rgba(255,255,255,0.5); font-size: 1rem; line-height: 1.5; }

  /* ── SUPPLEMENTAL ── */
  .more-section { background: var(--sand); padding: 3rem 0; }
  .more-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
  .more-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 1.75rem; }
  .more-header h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; }
  .more-header p { color: var(--text-muted); font-size: 1rem; max-width: 480px; margin-top: 0.3rem; }
  .supp-category { margin-bottom: 2.25rem; }
  .supp-cat-title {
    font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 0.85rem; display: flex; align-items: center; gap: 0.6rem;
  }
  .supp-cat-title::after { content: ''; flex: 1; height: 1px; background: var(--border); }
  .supp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 0.85rem;
  }
  .supp-card {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; display: flex; align-items: center; gap: 0.85rem; padding: 0.7rem;
    text-decoration: none; color: inherit; transition: box-shadow 0.18s, transform 0.18s;
  }
  .supp-card:hover { box-shadow: var(--card-shadow); transform: translateY(-1px); }
  .supp-thumb { width: 64px; height: 52px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; background: var(--navy-mid); }
  .supp-thumb img { width: 100%; height: 100%; object-fit: cover; }
  .supp-info { min-width: 0; flex: 1; }
  .supp-name { font-size: 1rem; font-weight: 500; color: var(--text); line-height: 1.3; margin-bottom: 0.2rem; }
  .supp-book { font-size: 0.75rem; color: var(--teal); font-weight: 600; }

  /* ── FOOTER ── */
  .site-footer {
    background: var(--navy); padding: 3rem 2rem 1.5rem;
  }
  .footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem;
  }
  .footer-brand h3 {
    font-family: var(--font-display); color: var(--white); font-size: 1.15rem;
    font-weight: 600; margin-bottom: 0.25rem;
  }
  .footer-brand .footer-tagline {
    color: var(--gold); font-size: 0.8rem; letter-spacing: 0.08em;
    text-transform: uppercase; margin-bottom: 1rem;
  }
  .footer-brand p {
    color: rgba(255,255,255,0.55); font-size: 1rem; line-height: 1.6;
  }
  .footer-col h4 {
    color: var(--gold); font-size: 0.8rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.75rem;
  }
  .footer-col a {
    display: block; color: rgba(255,255,255,0.7); font-size: 1rem;
    text-decoration: none; padding: 0.3rem 0; transition: color 0.18s;
  }
  .footer-col a:hover { color: var(--white); }
  .footer-bottom {
    max-width: 1200px; margin: 2rem auto 0;
    padding-top: 1.25rem; border-top: 2px solid #c0392b;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
  }
  .footer-bottom p {
    color: rgba(255,255,255,0.35); font-size: 0.8rem;
  }
  .footer-bottom a {
    color: rgba(255,255,255,0.35); font-size: 0.8rem; text-decoration: none;
  }
  .footer-bottom a:hover { color: rgba(255,255,255,0.6); }

  /* ── RESPONSIVE ── */
  @media (max-width: 700px) {
    .nav-links {
      display: none; position: absolute; top: 64px; left: 0; right: 0;
      background: var(--sand); flex-direction: column; padding: 0.5rem 1rem 1rem;
      box-shadow: 0 8px 16px rgba(11,30,53,0.1); gap: 0;
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 0.75rem 0.9rem; min-height: 44px; display: flex; align-items: center; color: var(--navy); font-weight: 600; }
    .nav-links a:hover { color: var(--teal); background: rgba(11,30,53,0.05); }
    .nav-links a.active { color: #c0392b; border-bottom: none; border-left: 3px solid #c0392b; padding-left: calc(0.9rem - 3px); }
    .nav-hamburger { display: flex; }
    .nav { padding: 0 1rem; }
    .breadcrumbs { padding: 0.75rem 1rem 0; }
    .hero { padding: 3.5rem 1rem 2.5rem; }
    .content { padding: 2rem 1rem; }
    .filter-inner { padding: 0.75rem 1rem; }
    .filter-btn { display: none; }
    .filter-select { display: block; }
    .cards-grid { grid-template-columns: 1fr; }
    .more-inner { padding: 0 1rem; }
    .more-header { flex-direction: column; gap: 0.5rem; }
    .supp-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .services-highlights { grid-template-columns: 1fr; }
    .services-inner { padding: 0 1rem; }
    .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
  }

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