:root {
  --ink: #17151b;
  --paper: #f5f1eb;
  --pearl: #fffdf9;
  --plum: #5d284e;
  --acid: #d8f35a;
  --mist: #d9d3db;
  --line: rgba(23, 21, 27, .16);
  --radius: 1.4rem;
  --shadow: 0 20px 60px rgba(28, 16, 27, .12);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, "Segoe UI", Arial, sans-serif; line-height: 1.55; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button, input { font: inherit; }
:focus-visible { outline: 3px solid var(--plum); outline-offset: 3px; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; padding: .7rem 1rem; background: var(--acid); border-radius: 999px; }
.skip-link:focus { top: 1rem; }
.container { width: min(calc(100% - 2.5rem), var(--max)); margin-inline: auto; }
.eyebrow { margin: 0 0 .8rem; font-size: .76rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.display { font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.055em; line-height: .93; }
.lede { max-width: 45rem; color: #4d4750; font-size: clamp(1rem, 2vw, 1.2rem); }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2rem; }
.section-head h2 { margin: 0; max-width: 760px; font-size: clamp(2.2rem, 5vw, 4.7rem); }
.muted { color: #635c65; }
.note { padding: 1rem 1.15rem; border: 1px solid var(--line); border-radius: 1rem; background: rgba(255,255,255,.45); }

.site-header { position: sticky; top: 0; z-index: 30; border-bottom: 1px solid rgba(23,21,27,.09); background: rgba(245,241,235,.9); backdrop-filter: blur(16px); }
.nav { min-height: 74px; display: flex; align-items: center; gap: 1.2rem; }
.brand { margin-right: auto; text-decoration: none; font-weight: 900; letter-spacing: -.045em; font-size: 1.25rem; }
.brand span { color: var(--plum); }
.nav-links { display: flex; align-items: center; gap: .35rem; }
.nav-links a { padding: .62rem .85rem; border-radius: 999px; text-decoration: none; font-size: .92rem; }
.nav-links a:hover, .nav-links a[aria-current="page"] { background: var(--ink); color: white; }
.nav-cta, .btn { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; min-height: 48px; padding: .75rem 1.15rem; border: 1px solid var(--ink); border-radius: 999px; background: var(--ink); color: white; text-decoration: none; font-weight: 750; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover, .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(23,21,27,.18); }
.btn-acid { color: var(--ink); background: var(--acid); border-color: var(--acid); }
.btn-ghost { color: var(--ink); background: transparent; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; border: 1px solid var(--line); border-radius: 50%; background: transparent; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 19px; height: 2px; margin: 4px auto; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.hero { position: relative; overflow: hidden; padding: clamp(3.2rem, 8vw, 7rem) 0 3rem; }
.hero::before { content: ""; position: absolute; width: 28rem; height: 28rem; right: -8rem; top: 2rem; border: 1px solid rgba(93,40,78,.2); border-radius: 50%; }
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(2rem, 6vw, 6rem); }
.hero h1 { margin: 0 0 1.3rem; font-size: clamp(4rem, 9.5vw, 8.7rem); }
.hero h1 em { display: block; color: var(--plum); font-weight: 400; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.hero-stats { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 2rem; }
.stat { padding: .65rem .9rem; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.45); font-size: .88rem; }
.stat strong { font-size: 1rem; }
.hero-visual { position: relative; min-height: 590px; }
.hero-visual img { position: absolute; inset: 0 0 0 auto; width: 86%; height: 100%; object-fit: cover; border-radius: 12rem 12rem 1.5rem 1.5rem; box-shadow: var(--shadow); }
.hero-ticket { position: absolute; left: 0; bottom: 2rem; width: min(270px, 60%); padding: 1.2rem; border-radius: 1.2rem; background: var(--acid); transform: rotate(-3deg); box-shadow: var(--shadow); }
.hero-ticket strong { display: block; font-size: 1.25rem; }
.ticker { border-block: 1px solid var(--line); overflow: hidden; background: var(--pearl); }
.ticker-track { display: flex; width: max-content; gap: 3rem; padding: .8rem 0; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; animation: ticker 24s linear infinite; }
@keyframes ticker { to { transform: translateX(-50%); } }

.direction-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; }
.direction-card { min-height: 245px; padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--pearl); display: flex; flex-direction: column; justify-content: space-between; }
.direction-card:nth-child(1) { grid-column: span 5; background: var(--plum); color: white; }
.direction-card:nth-child(2) { grid-column: span 3; }
.direction-card:nth-child(3) { grid-column: span 4; background: var(--acid); }
.direction-card:nth-child(4) { grid-column: span 4; }
.direction-card:nth-child(5) { grid-column: span 5; background: #26232a; color: white; }
.direction-card:nth-child(6) { grid-column: span 3; }
.direction-card h3 { margin: 0; font-size: clamp(1.4rem, 3vw, 2.2rem); line-height: 1.05; }
.direction-card p { margin: 1rem 0 0; }
.direction-card .number { opacity: .65; font-family: Georgia, serif; font-size: 2rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.split img { width: 100%; height: 640px; object-fit: cover; border-radius: var(--radius); }
.facts { display: grid; gap: 1px; margin-top: 2rem; background: var(--line); border: 1px solid var(--line); border-radius: 1rem; overflow: hidden; }
.fact { display: grid; grid-template-columns: 9rem 1fr; gap: 1rem; padding: 1rem; background: var(--paper); }

.review-band { background: var(--ink); color: white; }
.review-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3rem; align-items: start; }
.rating-big { color: var(--acid); font-family: Georgia, serif; font-size: clamp(6rem, 12vw, 11rem); line-height: .8; }
.review-cards { display: grid; gap: 1rem; }
.review-card { padding: 1.35rem; border: 1px solid rgba(255,255,255,.17); border-radius: 1rem; color: #eee8ef; }
.review-card p { margin: 0; }
.review-card small { display: block; margin-top: .8rem; color: #bfb7c0; }

.page-hero { padding: clamp(4rem, 9vw, 7rem) 0 3rem; }
.page-hero h1 { margin: 0; max-width: 1000px; font-size: clamp(3.8rem, 9vw, 8rem); }
.page-hero .lede { margin-top: 1.5rem; }
.filters { display: flex; flex-wrap: wrap; gap: .55rem; margin: 1.5rem 0 2rem; }
.filter { padding: .65rem .9rem; border: 1px solid var(--line); border-radius: 999px; background: transparent; cursor: pointer; }
.filter.active { background: var(--ink); color: white; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.service-card { display: flex; min-height: 225px; padding: 1.3rem; border: 1px solid var(--line); border-radius: 1.2rem; background: var(--pearl); flex-direction: column; }
.service-card[hidden] { display: none; }
.service-card h2 { margin: 0 0 .75rem; font-size: 1.35rem; line-height: 1.15; }
.service-card p { margin: 0; color: #5c555e; }
.service-meta { display: flex; justify-content: space-between; gap: 1rem; margin-top: auto; padding-top: 1.5rem; border-top: 1px solid var(--line); font-weight: 800; }
.service-meta span:first-child { color: var(--plum); }
.safety { margin-top: 2rem; padding: 1.2rem; border-radius: 1rem; background: #fff0c6; border: 1px solid #e3c372; }

.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 260px; gap: .9rem; }
.gallery-item { position: relative; grid-column: span 4; overflow: hidden; padding: 0; border: 0; border-radius: 1.2rem; cursor: zoom-in; background: #ddd; }
.gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 8; }
.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-item span { position: absolute; left: .8rem; bottom: .8rem; max-width: calc(100% - 1.6rem); padding: .45rem .65rem; border-radius: .65rem; background: rgba(23,21,27,.76); color: white; font-size: .76rem; text-align: left; }
.lightbox { position: fixed; inset: 0; z-index: 60; display: none; padding: 2rem; background: rgba(12,10,14,.9); place-items: center; }
.lightbox.open { display: grid; }
.lightbox img { max-width: min(100%, 1100px); max-height: 78vh; border-radius: 1rem; }
.lightbox-close { position: absolute; right: 1.2rem; top: 1.2rem; width: 48px; height: 48px; border: 0; border-radius: 50%; background: white; cursor: pointer; font-size: 1.5rem; }
.lightbox-caption { max-width: 800px; color: white; text-align: center; }

.credential-card { display: grid; grid-template-columns: 260px 1fr; gap: 1.5rem; padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--pearl); }
.credential-card img { width: 100%; height: 330px; object-fit: cover; border-radius: 1rem; }
.credential-card h2 { margin-top: 0; font-size: 2rem; }
.license-alert { padding: 1.4rem; border-left: 6px solid #b46700; background: #fff1d5; border-radius: 0 1rem 1rem 0; }
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 1rem; }
.contact-card { padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--pearl); }
.contact-card h2 { margin-top: 0; }
.contact-links { display: grid; gap: .65rem; }
.contact-links a { display: flex; justify-content: space-between; align-items: center; padding: 1rem; border: 1px solid var(--line); border-radius: .9rem; text-decoration: none; }
.contact-links a:hover { background: var(--acid); }
.hours { width: 100%; border-collapse: collapse; }
.hours td { padding: .65rem 0; border-bottom: 1px solid var(--line); }
.hours td:last-child { text-align: right; font-weight: 800; }

.cta-section { background: var(--plum); color: white; }
.cta-box { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: end; }
.cta-box h2 { margin: 0; max-width: 850px; font-size: clamp(3rem, 7vw, 6.8rem); }
.site-footer { padding: 3rem 0 6rem; background: var(--ink); color: #eee8ef; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
.footer-grid a { color: #eee8ef; }
.footer-fine { margin-top: 2rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,.14); color: #bfb7c0; font-size: .82rem; }
.mobile-bar { display: none; }

@media (max-width: 900px) {
  .nav-cta { display: none; }
  .menu-toggle { display: block; }
  .nav-links { position: fixed; inset: 74px 0 auto; display: none; padding: 1.2rem; background: var(--paper); border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 1rem; }
  .hero-grid, .split, .review-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 520px; }
  .hero-visual img { width: 90%; }
  .direction-card:nth-child(n) { grid-column: span 6; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item, .gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 6; }
  .credential-card { grid-template-columns: 200px 1fr; }
}

@media (max-width: 600px) {
  .container { width: min(calc(100% - 1.35rem), var(--max)); }
  .section { padding: 3.8rem 0; }
  .section-head { display: block; }
  .hero { padding-top: 2.5rem; }
  .hero h1 { font-size: clamp(3.5rem, 19vw, 5.3rem); }
  .hero-visual { min-height: 430px; }
  .hero-visual img { width: 94%; border-radius: 7rem 7rem 1.2rem 1.2rem; }
  .hero-ticket { left: .2rem; bottom: 1rem; width: 70%; }
  .direction-card:nth-child(n) { grid-column: span 12; min-height: 200px; }
  .split img { height: 450px; }
  .fact { grid-template-columns: 1fr; gap: .2rem; }
  .service-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 230px; }
  .gallery-item, .gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-column: span 12; grid-row: span 1; }
  .credential-card { grid-template-columns: 1fr; }
  .credential-card img { height: 420px; }
  .cta-box { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer { padding-bottom: 7.5rem; }
  .mobile-bar { position: fixed; z-index: 40; left: .6rem; right: .6rem; bottom: .6rem; display: grid; grid-template-columns: repeat(3,1fr); gap: .4rem; padding: .45rem; border-radius: 1rem; background: rgba(23,21,27,.94); box-shadow: var(--shadow); }
  .mobile-bar a { padding: .7rem .25rem; border-radius: .75rem; color: white; text-align: center; text-decoration: none; font-size: .74rem; font-weight: 800; }
  .mobile-bar a:last-child { background: var(--acid); color: var(--ink); }
}

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