:root {
  --lime: #A8D93E;
  --green: #4FAE72;
  --teal: #1FA3A0;
  --cyan: #0EA5C4;
  --grad-1: linear-gradient(120deg, var(--lime), var(--green));
  --grad-2: linear-gradient(120deg, var(--green), var(--teal));
  --grad-3: linear-gradient(120deg, var(--teal), var(--cyan));
  --grad-full: linear-gradient(100deg, var(--lime) 0%, var(--green) 38%, var(--teal) 68%, var(--cyan) 100%);
  --ink: #111317;
  --text-dim: #5B5F66;
  --bg: #FFFFFF;
  --panel: #F5F4EF;
  --border: #E7E5DD;
  --radius: 20px;
  --max-width: 1240px;
  --zone: var(--teal);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

@media (max-width: 900px), (hover: none) {
  body { cursor: auto; }
}

h1, h2, h3 {
  font-family: 'Sora', sans-serif;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  color: var(--teal);
  font-weight: 700;
  margin: 0 0 0.9em;
}

.grad-text {
  background: var(--grad-full);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

#field {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  width: 100vw;
  height: 100vh;
}

/* Custom cursor */
.cursor { position: fixed; top: 0; left: 0; z-index: 999; pointer-events: none; opacity: 0; transition: opacity 0.3s ease; }
body.cursor-ready .cursor { opacity: 1; }
.cursor-dot {
  position: fixed; top: 0; left: 0; width: 8px; height: 8px; margin: -4px 0 0 -4px;
  border-radius: 50%; background: var(--teal); box-shadow: 0 0 10px 2px rgba(31,163,160,0.4);
}
.cursor-ring {
  position: fixed; top: 0; left: 0; width: 36px; height: 36px; margin: -18px 0 0 -18px;
  border-radius: 50%; border: 1.5px solid var(--teal); opacity: 0.5;
  transition: width 0.25s ease, height 0.25s ease, margin 0.25s ease, opacity 0.25s ease;
}
.cursor.is-active .cursor-ring { width: 56px; height: 56px; margin: -28px 0 0 -28px; opacity: 0.9; }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.site-header.is-solid { background: rgba(255,255,255,0.92); border-bottom: 1px solid var(--border); box-shadow: 0 4px 24px -12px rgba(0,0,0,0.1); }

.header-inner { max-width: var(--max-width); margin: 0 auto; padding: 16px 24px; display: flex; align-items: center; gap: 28px; }
.logo img { height: 32px; width: auto; display: block; }

.main-nav { display: flex; align-items: center; gap: 18px; flex: 1; font-size: 0.85rem; font-weight: 600; margin-left: 12px; }
.main-nav > a { color: var(--text-dim); transition: color .2s; white-space: nowrap; }
.main-nav > a:hover { color: var(--ink); }

.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > a { color: var(--text-dim); transition: color .2s; white-space: nowrap; }
.nav-item:hover > a, .nav-item.is-open > a { color: var(--ink); }

.nav-drop-toggle {
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: 1px; width: 16px; height: 16px;
  display: flex; align-items: center; justify-content: center;
}
.nav-drop-toggle::after {
  content: ''; width: 6px; height: 6px; border-right: 1.5px solid var(--text-dim); border-bottom: 1.5px solid var(--text-dim);
  transform: rotate(45deg); margin-top: -3px; transition: transform 0.25s ease, border-color 0.25s ease;
}
.nav-item.is-open .nav-drop-toggle::after { transform: rotate(-135deg); margin-top: 3px; border-color: var(--teal); }

.nav-drop {
  position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%) translateY(6px);
  background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 10px;
  min-width: 210px; box-shadow: 0 24px 44px -20px rgba(17,19,23,0.3);
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 40;
}
.nav-item.is-open .nav-drop { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.nav-drop a { padding: 9px 12px; border-radius: 9px; font-weight: 600; color: var(--text-dim); font-size: 0.86rem; white-space: nowrap; transition: background 0.15s ease, color 0.15s ease; }
.nav-drop a:hover { background: var(--panel); color: var(--teal); }

.header-phone { font-weight: 700; font-size: 0.92rem; color: var(--ink); white-space: nowrap; }

.btn {
  display: inline-block; padding: 12px 26px; border-radius: 999px; font-weight: 700; font-size: 0.9rem;
  cursor: pointer; border: none; transition: transform .2s, box-shadow .3s, filter .2s; position: relative;
}
.btn-primary { background: var(--grad-full); color: #0b0c0e; box-shadow: 0 10px 28px -10px rgba(31,163,160,0.55); }
.btn-primary:hover { filter: brightness(1.08); }
.btn-ghost { background: transparent; border: 1.5px solid var(--border); color: var(--ink); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn-large { padding: 16px 32px; font-size: 0.95rem; }

.nav-toggle { display: none; background: none; border: none; z-index: 60; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; transition: transform .3s ease, opacity .3s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { display: none; flex-direction: column; gap: 2px; padding: 10px 24px 28px; background: rgba(255,255,255,0.98); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); max-height: calc(100vh - 66px); overflow-y: auto; }
.mobile-nav > a { padding: 14px 0; font-family: 'Sora', sans-serif; font-weight: 600; border-bottom: 1px solid var(--border); color: var(--text-dim); }
.mobile-nav .btn { margin-top: 16px; text-align: center; }

.mnav-item { border-bottom: 1px solid var(--border); }
.mnav-row { display: flex; align-items: center; justify-content: space-between; }
.mnav-row a { padding: 14px 0; font-family: 'Sora', sans-serif; font-weight: 600; color: var(--text-dim); border-bottom: none; flex: 1; }
.mnav-toggle { background: none; border: none; width: 36px; height: 36px; cursor: pointer; position: relative; flex-shrink: 0; }
.mnav-toggle::before, .mnav-toggle::after { content: ''; position: absolute; top: 50%; left: 50%; background: var(--text-dim); transition: transform 0.25s ease; }
.mnav-toggle::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.mnav-toggle::after { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }
.mnav-item.is-open .mnav-toggle::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.mnav-drop { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease; }
.mnav-item.is-open .mnav-drop { grid-template-rows: 1fr; }
.mnav-drop-inner { overflow: hidden; min-height: 0; display: flex; flex-direction: column; }
.mnav-drop a { display: block; padding: 10px 0 10px 16px; font-size: 0.9rem; color: var(--text-dim); }
.mnav-drop a:last-child { padding-bottom: 16px; }
.mobile-nav.is-open { display: flex; }

/* Hero */
.hero { position: relative; padding: 150px 24px 100px; overflow: hidden; }

.hero-blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.35; pointer-events: none; }
.hero-blob-1 { width: 480px; height: 480px; background: var(--grad-1); top: -140px; left: -160px; }
.hero-blob-2 { width: 420px; height: 420px; background: var(--grad-3); bottom: -160px; right: -140px; }

.hero-grid { position: relative; z-index: 2; max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }

.hero-content h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); }
.hero-sub { color: var(--text-dim); font-size: 1.08rem; max-width: 52ch; margin: 20px 0 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 30px; }

.hero-chips { display: flex; flex-direction: column; gap: 10px; }
.chip { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-dim); font-weight: 600; }
.chip-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad-full); flex-shrink: 0; }

.hero-visual { position: relative; }
.hero-photo { border-radius: 28px; overflow: hidden; box-shadow: 0 40px 70px -30px rgba(17,19,23,0.35); transform: rotate(2deg); transition: transform 0.4s ease; aspect-ratio: 4/5; }
.hero-photo:hover { transform: rotate(0deg) scale(1.01); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.hero-float {
  position: absolute; background: #fff; border: 1px solid var(--border); border-radius: 999px;
  padding: 10px 18px; font-weight: 700; font-size: 0.85rem; box-shadow: 0 14px 30px -14px rgba(17,19,23,0.25);
  animation: float-bob 5s ease-in-out infinite;
}
.hero-float-1 { top: 6%; left: -8%; animation-delay: 0s; }
.hero-float-2 { top: 46%; right: -10%; animation-delay: 1.2s; }
.hero-float-3 { bottom: 4%; left: -4%; animation-delay: 2.4s; }

@keyframes float-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

@media (max-width: 720px) { .hero-float { display: none; } }

.scroll-cue { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--text-dim); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; z-index: 2; }
.scroll-cue-line { width: 1px; height: 34px; background: linear-gradient(var(--border), transparent); overflow: hidden; position: relative; }
.scroll-cue-line::after { content: ''; position: absolute; top: -34px; left: 0; width: 100%; height: 34px; background: linear-gradient(var(--teal), transparent); animation: drip 1.8s ease-in-out infinite; }
@keyframes drip { 0% { top: -34px; } 100% { top: 34px; } }

/* Marquee strip */
.strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--panel); overflow: hidden; padding: 16px 0; position: relative; z-index: 2; }
.strip-track { display: flex; gap: 20px; white-space: nowrap; width: max-content; animation: marquee 28s linear infinite; font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 0.06em; color: var(--text-dim); }
.strip-track span:nth-child(4n+2) { color: var(--teal); }
.strip-track span:nth-child(4n+4) { color: var(--green); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Reveal */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s cubic-bezier(.16,.84,.44,1), transform 0.8s cubic-bezier(.16,.84,.44,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Intro */
.intro { max-width: var(--max-width); margin: 40px auto; padding: 100px 24px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.intro-text p { color: var(--text-dim); max-width: 56ch; }
.intro-text h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }

.fact-list { list-style: none; padding: 0; margin: 26px 0 0; display: flex; flex-direction: column; gap: 12px; }
.fact-list li { display: flex; align-items: flex-start; gap: 12px; color: var(--text-dim); font-size: 0.95rem; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad-full); flex-shrink: 0; margin-top: 7px; }
.fact-list strong { color: var(--ink); }

.intro-visual { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 30px 60px -30px rgba(17,19,23,0.3); }
.intro-visual img { width: 100%; height: 100%; object-fit: cover; }
.intro-badge { position: absolute; left: 20px; bottom: 20px; background: rgba(255,255,255,0.92); backdrop-filter: blur(8px); border-radius: 16px; padding: 14px 18px; display: flex; flex-direction: column; box-shadow: 0 14px 30px -14px rgba(17,19,23,0.3); }
.intro-badge strong { font-family: 'Sora', sans-serif; font-size: 0.95rem; }
.intro-badge span { font-size: 0.78rem; color: var(--text-dim); }

/* Products */
.products { max-width: var(--max-width); margin: 40px auto; padding: 80px 24px; }
.products-heading { max-width: 66ch; margin-bottom: 48px; }
.products-heading p:not(.eyebrow) { color: var(--text-dim); }
.products-heading h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }

.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.prod-card {
  position: relative; aspect-ratio: 4/3.4; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border);
  background: none; padding: 0; cursor: pointer; text-align: left; transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.prod-card:hover { box-shadow: 0 30px 50px -24px rgba(17,19,23,0.35); }
.prod-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(.16,.84,.44,1); }
.prod-card:hover .prod-photo img, .prod-photo:hover img { transform: scale(1.08); }
.prod-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,12,0.02) 40%, rgba(10,10,12,0.82) 100%); }

.prod-icon { background: var(--tile-grad, var(--grad-1)); display: flex; flex-direction: column; justify-content: space-between; }
.prod-icon-glyph { font-size: 2.6rem; padding: 22px 22px 0; }

.prod-label { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 18px; display: flex; flex-direction: column; gap: 3px; }
.prod-icon .prod-label { position: relative; }
.prod-label strong { font-family: 'Sora', sans-serif; font-size: 1rem; color: #fff; }
.prod-photo .prod-label span { color: rgba(255,255,255,0.78); font-size: 0.82rem; }
.prod-icon .prod-label strong { color: #0b0c0e; }
.prod-icon .prod-label span { color: rgba(11,12,14,0.72); font-size: 0.82rem; }

/* Events */
.events { max-width: var(--max-width); margin: 40px auto; padding: 80px 24px; }
.events-heading { max-width: 60ch; margin-bottom: 44px; }
.events-heading h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.event-card { position: relative; aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); display: block; transition: transform 0.4s ease, box-shadow 0.4s ease; }
.event-card:hover { box-shadow: 0 30px 55px -24px rgba(17,19,23,0.35); }
.event-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(.16,.84,.44,1); }
.event-card:hover img { transform: scale(1.08); }
.event-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,12,0.05) 30%, rgba(10,10,12,0.88) 100%); }
.event-text { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px 22px; color: #fff; }
.event-tag { display: inline-block; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.68rem; font-weight: 700; color: var(--lime); margin-bottom: 8px; }
.event-text h3 { color: #fff; font-size: 1.3rem; margin-bottom: 8px; }
.event-text p { color: rgba(255,255,255,0.82); font-size: 0.88rem; margin-bottom: 6px; }
.event-link { font-size: 0.82rem; font-weight: 700; color: var(--lime); }

/* Horizontal cinematic gallery */
.hgallery { position: relative; padding-top: 20px; }
.hgallery-heading { max-width: var(--max-width); margin: 0 auto; padding: 0 24px 40px; text-align: center; }
.hgallery-heading h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
.hgallery-pin { height: 100vh; position: relative; overflow: hidden; }
.hgallery-track { height: 100%; display: flex; align-items: center; gap: 22px; padding: 0 8vw; will-change: transform; }
.hg-item { flex: 0 0 auto; width: min(58vw, 520px); height: 58vh; margin: 0; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); cursor: pointer; transition: box-shadow 0.4s ease, transform 0.4s ease; }
.hg-item.hg-tall { height: 76vh; }
.hg-item:hover { box-shadow: 0 30px 60px -20px rgba(17,19,23,0.4); transform: translateY(-6px); }
.hg-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.hg-item:hover img { transform: scale(1.06); }

.gallery-grid { max-width: var(--max-width); margin: 40px auto 0; padding: 0 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.g-item { margin: 0; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); cursor: pointer; aspect-ratio: 1; transition: box-shadow 0.4s ease; }
.g-item:hover { box-shadow: 0 20px 40px -18px rgba(17,19,23,0.35); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.g-item:hover img { transform: scale(1.08); }

/* Testimonials */
.testimonials { max-width: var(--max-width); margin: 60px auto; padding: 80px 24px; }
.testimonials-heading { text-align: center; margin-bottom: 44px; }
.testi-track { display: flex; overflow: hidden; gap: 24px; scroll-snap-type: x mandatory; }
.testi-card { flex: 0 0 100%; background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius); padding: 40px; scroll-snap-align: start; }
.testi-card p { font-family: 'Sora', sans-serif; font-size: 1.15rem; font-weight: 600; line-height: 1.5; color: var(--ink); max-width: 70ch; }
.testi-card footer { display: flex; flex-direction: column; margin-top: 20px; }
.testi-card footer strong { font-size: 0.95rem; }
.testi-card footer span { color: var(--text-dim); font-size: 0.85rem; }

.testi-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 28px; }
.testi-arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--border); background: #fff; cursor: pointer; font-size: 1.4rem; display: flex; align-items: center; justify-content: center; transition: border-color 0.2s, color 0.2s; }
.testi-arrow:hover { border-color: var(--teal); color: var(--teal); }
.testi-dots { display: flex; gap: 8px; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: background 0.3s, transform 0.3s; }
.testi-dot.is-active { background: var(--grad-full); transform: scale(1.3); }

@media (max-width: 900px) {
  .testi-card { flex-basis: 100%; }
}

/* Team */
.team { max-width: var(--max-width); margin: 40px auto; padding: 80px 24px; }
.team-heading { text-align: center; max-width: 60ch; margin: 0 auto 48px; }
.team-heading h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.team-card { text-align: center; }
.team-photo { border-radius: 50%; overflow: hidden; aspect-ratio: 1; margin-bottom: 16px; border: 1px solid var(--border); transition: transform 0.4s ease, box-shadow 0.4s ease; }
.team-card:hover .team-photo { transform: translateY(-6px); box-shadow: 0 20px 34px -18px rgba(17,19,23,0.35); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.02rem; margin-bottom: 2px; }
.team-role { display: block; font-size: 0.78rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.team-card p { font-size: 0.85rem; color: var(--text-dim); }

/* FAQ */
.faq { max-width: 880px; margin: 40px auto; padding: 80px 24px; }
.faq-heading { text-align: center; margin-bottom: 44px; }
.faq-heading h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; text-align: left; background: none; border: none; color: var(--ink); font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1rem; padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; }
.faq-icon { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--teal); transition: transform 0.3s ease; }
.faq-icon::before { top: 7px; left: 0; width: 16px; height: 2px; }
.faq-icon::after { top: 0; left: 7px; width: 2px; height: 16px; }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: rotate(90deg); }
.faq-q[aria-expanded="true"] { color: var(--teal); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.4s ease; }
.faq-a > p { overflow: hidden; grid-row: 1; grid-column: 1; color: var(--text-dim); font-size: 0.95rem; max-width: 68ch; margin: 0; min-height: 0; }
.faq-item.is-open .faq-a { grid-template-rows: 1fr; }
.faq-item.is-open .faq-a > p { padding-bottom: 22px; }

/* CTA band */
.cta-band { position: relative; text-align: center; padding: 120px 24px; overflow: hidden; background: var(--panel); }
.cta-band-glow { position: absolute; inset: -20%; background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(31,163,160,0.14), transparent 70%); pointer-events: none; }
.cta-band h2 { font-size: clamp(2rem, 5vw, 3.2rem); position: relative; }
.cta-band p { color: var(--text-dim); margin-bottom: 32px; position: relative; max-width: 56ch; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); background: #fff; padding: 64px 24px 28px; }
.footer-inner { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.footer-logo { height: 28px; width: auto; margin-bottom: 14px; }
.footer-brand p { color: var(--text-dim); font-size: 0.88rem; margin-top: 4px; max-width: 34ch; }
.footer-address { font-size: 0.82rem !important; margin-top: 10px !important; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-family: 'Sora', sans-serif; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim); margin-bottom: 4px; }
.footer-col a { color: var(--ink); font-size: 0.92rem; transition: color 0.2s; font-weight: 500; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom { text-align: center; color: var(--text-dim); font-size: 0.78rem; margin: 52px 0 0; }

/* Product modal */
.modal { position: fixed; inset: 0; z-index: 200; background: rgba(17,19,23,0.55); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s ease; padding: 24px; }
.modal.is-open { opacity: 1; visibility: visible; }
.modal-panel { background: #fff; border-radius: 24px; max-width: 780px; width: 100%; max-height: 86vh; overflow-y: auto; position: relative; display: grid; grid-template-columns: 1fr 1fr; }
.modal-media { aspect-ratio: 4/3.4; overflow: hidden; border-radius: 24px 0 0 24px; }
.modal-media img { width: 100%; height: 100%; object-fit: cover; }
.modal-body { padding: 34px 34px 34px 30px; display: flex; flex-direction: column; justify-content: center; }
.modal-body h3 { font-size: 1.5rem; }
.modal-body p:not(.eyebrow) { color: var(--text-dim); }
.modal-close { position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 50%; border: none; background: #fff; box-shadow: 0 6px 18px -8px rgba(0,0,0,0.3); font-size: 1.4rem; cursor: pointer; z-index: 2; }

@media (max-width: 720px) {
  .modal-panel { grid-template-columns: 1fr; }
  .modal-media { border-radius: 24px 24px 0 0; aspect-ratio: 16/10; }
}

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 210; background: rgba(10,10,12,0.92); backdrop-filter: blur(10px); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s ease; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(88vw, 1100px); max-height: 84vh; border-radius: 12px; box-shadow: 0 0 80px rgba(0,0,0,0.5); }
.lb-close, .lb-nav { position: absolute; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lb-close:hover, .lb-nav:hover { border-color: var(--teal); color: var(--teal); }
.lb-close { top: 28px; right: 28px; width: 44px; height: 44px; font-size: 1.6rem; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 1.8rem; }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }

/* Category page template */
.cat-hero { position: relative; padding: 150px 24px 90px; overflow: hidden; }
.cat-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cat-hero-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,12,0.15) 0%, rgba(10,10,12,0.72) 100%); }
.cat-hero-content { position: relative; z-index: 2; max-width: var(--max-width); margin: 0 auto; }
.cat-hero-content .eyebrow { color: var(--lime); }
.cat-hero-content h1 { color: #fff; font-size: clamp(2.2rem, 4.6vw, 3.6rem); }
.cat-hero-content p { color: rgba(255,255,255,0.85); max-width: 56ch; font-size: 1.05rem; }
.cat-hero.cat-hero-flat { background: var(--panel); padding: 140px 24px 70px; }
.cat-hero.cat-hero-flat .cat-hero-content h1 { color: var(--ink); }
.cat-hero.cat-hero-flat .cat-hero-content p { color: var(--text-dim); }
.cat-hero.cat-hero-flat .eyebrow { color: var(--teal); }

.cat-breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 0.82rem; color: var(--text-dim); margin-bottom: 18px; }
.cat-breadcrumb a { color: var(--text-dim); font-weight: 600; }
.cat-breadcrumb a:hover { color: var(--teal); }

.cat-body { max-width: var(--max-width); margin: 0 auto; padding: 80px 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.cat-copy p { color: var(--text-dim); max-width: 58ch; }
.cat-copy h2 { font-size: clamp(1.6rem, 2.8vw, 2.1rem); }
.cat-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cat-gallery .g-item:first-child:nth-last-child(3), .cat-gallery .g-item:first-child:nth-last-child(3) ~ .g-item { aspect-ratio: 1; }
.cat-gallery .g-item:only-child { grid-column: span 2; aspect-ratio: 16/10; }

.cat-related { max-width: var(--max-width); margin: 0 auto; padding: 20px 24px 90px; }
.cat-related h3 { font-size: 1.3rem; margin-bottom: 22px; }
.cat-related-grid { display: flex; gap: 14px; flex-wrap: wrap; }
.cat-related-grid a {
  padding: 12px 22px; border-radius: 999px; border: 1.5px solid var(--border); font-weight: 700; font-size: 0.88rem;
  color: var(--ink); transition: border-color 0.2s ease, background 0.2s ease;
}
.cat-related-grid a:hover { border-color: var(--teal); background: var(--panel); }

.cat-testimonial { max-width: 780px; margin: 0 auto 90px; padding: 0 24px; text-align: center; }
.cat-testimonial blockquote { font-family: 'Sora', sans-serif; font-size: 1.2rem; font-weight: 600; color: var(--ink); margin: 0 0 18px; line-height: 1.5; }
.cat-testimonial cite { font-style: normal; color: var(--text-dim); font-size: 0.88rem; }
.cat-testimonial cite strong { color: var(--ink); display: block; font-size: 0.95rem; margin-bottom: 2px; }

/* Booking block (Checkfront placeholder) */
.booking-block { max-width: var(--max-width); margin: 0 auto 20px; padding: 0 24px; }
.booking-inner {
  background: var(--grad-full); border-radius: 24px; padding: 3px; box-shadow: 0 30px 60px -28px rgba(31,163,160,0.5);
}
.booking-inner-content {
  background: #fff; border-radius: 21px; padding: 36px 40px; display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center;
}
.booking-text h3 { font-size: 1.3rem; margin-bottom: 10px; }
.booking-text p { color: var(--text-dim); margin: 0; font-size: 0.92rem; max-width: 46ch; }
.booking-widget { display: flex; flex-direction: column; gap: 10px; }
.booking-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.booking-field span { display: block; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-dim); margin-bottom: 6px; }
.booking-input {
  border: 1.5px solid var(--border); border-radius: 12px; padding: 12px 14px; font-size: 0.88rem; color: var(--text-dim);
  background: var(--panel); display: flex; align-items: center; justify-content: space-between; gap: 8px; cursor: not-allowed;
}
.booking-input::after { content: '📅'; font-size: 0.9rem; opacity: 0.6; }
.booking-btn { width: 100%; text-align: center; }

@media (max-width: 900px) {
  .cat-body { grid-template-columns: 1fr; gap: 36px; }
  .booking-inner-content { grid-template-columns: 1fr; text-align: center; }
  .booking-widget { max-width: 360px; margin: 0 auto; }
}

/* Responsive */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); gap: 28px 20px; }
}

@media (max-width: 1180px) {
  .main-nav { display: none; }
  .header-phone { display: none; }
  .nav-toggle { display: block; }
}

@media (max-width: 1000px) {
  .hero-grid, .intro { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; max-width: 420px; margin: 0 auto; }
  .intro-visual { order: -1; }
  .events-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band { padding: 90px 24px; }
}

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