/* =============== Base ================= */
:root{
  --bg:#000; --bg2:#111; --ink:#fff; --muted:#d7d7d7; --gold:goldenrod;
  --radius:12px; --shadow:0 10px 28px rgba(0,0,0,.35);
  --maxw:1200px;
  --h1:clamp(1.9rem,2.8vw,2.7rem);
  --h2:clamp(1.6rem,2.2vw,2.1rem);
  --h3:clamp(1.2rem,1.6vw,1.4rem);
  --lead:clamp(1rem,1.2vw,1.1rem);
}

/* --- Responsive gutters that never disappear --- */
:root{
  /* you can tweak these numbers later */
  --maxw: 1200px;                       /* content max width */
  --gutter: clamp(16px, 4vw, 32px);     /* min 16px → grows to 32px on big screens */
}

/* container always leaves left/right space, even on tiny screens */
.container{
  width: min(var(--maxw), calc(100% - (var(--gutter) * 2.9)));
  margin-inline: auto;
  /* fallback if the min()/calc() isn’t supported somewhere ancient */
  padding-inline: max(16px, 4vw);
}


*{box-sizing:border-box}
html{font-family:Inter,system-ui,Arial,sans-serif;-webkit-text-size-adjust:100%}
body{margin:0;background:var(--bg);color:var(--ink);line-height:1.6;overflow-x:hidden}
img,video,iframe{max-width:100%;height:auto;display:block}
.container{max-width:var(--maxw);margin:0 auto;padding:0 20px}
.section{padding:64px 0}
.center{text-align:center}
h1{font-size:var(--h1);line-height:1.2;margin:.2rem 0 .6rem}
h2{font-size:var(--h2);line-height:1.25;margin:0 0 .5rem}
h3{font-size:var(--h3);line-height:1.3;margin:0 0 .4rem}
.lead{font-size:var(--lead);color:var(--muted)}
a{text-decoration:none;color:inherit}

/* =============== NAV ================== */
/* =============== NAV (updated) ================== */
.site-nav{
  position:sticky; top:0; z-index:1000;
  background:rgba(10,10,10,.9);
  backdrop-filter:saturate(120%) blur(8px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.site-nav__bar{
  min-height:68px;
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; flex-wrap:nowrap;
}
.site-nav__brand{ display:flex; align-items:center; gap:10px; color:#fff; text-decoration:none; white-space:nowrap; }
.site-nav__brand img{ height:48px; width:auto; }
.site-nav__brand span{ font-weight:700; letter-spacing:.3px; }

.site-nav__menu{
  display:flex; align-items:center; gap:10px;
  list-style:none; margin:0; padding:0; flex-wrap:nowrap;
}
.site-nav__menu a, .site-nav__menu .sub-toggle{
  appearance:none; background:none; border:0; color:#fff;
  text-decoration:none; cursor:pointer;
  padding:10px 12px; border-radius:8px; font-weight:600; font-size:1rem;
}
.site-nav__menu a:hover, .site-nav__menu .sub-toggle:hover{ background:#1a1a1a; }

/* dropdown */
.has-sub{ position:relative; }
.site-nav__submenu{
  position:absolute; left:0; top:100%;
  min-width:240px; padding:8px;
  background:#111; border:1px solid rgba(255,255,255,.08);
  border-radius:12px; box-shadow:0 12px 32px rgba(0,0,0,.45);
  opacity:0; transform:translateY(8px); pointer-events:none; transition:.16s;
}
.has-sub::after{ content:""; position:absolute; left:0; right:0; top:100%; height:12px; } /* hover bridge */
.has-sub:hover .site-nav__submenu, .has-sub.open .site-nav__submenu{
  opacity:1; transform:translateY(0); pointer-events:auto;
}
.site-nav__submenu, .site-nav__submenu li{ list-style:none; margin:0; padding:0; }
.site-nav__submenu a{ display:block; padding:10px 12px; border-radius:8px; color:#cfd6e4; }
.site-nav__submenu a:hover{ background:#1c1c1c; color:#fff; }

/* WhatsApp pill */
.site-nav__wa{
  background:var(--gold); color:#000; font-weight:800;
  padding:10px 14px; border-radius:999px; text-decoration:none;
  white-space:nowrap;
}
.site-nav__wa:hover{ background:#fff; color:var(--gold); }

/* burger (hidden by default) */
.site-nav__burger{
  display:none; width:44px; height:44px;
  border:1px solid rgba(255,255,255,.12);
  background:none; color:var(--gold);
  border-radius:8px; align-items:center; justify-content:center;
}

/* ===== tighten spacing slightly on mid widths (pre-hamburger) */
@media (max-width: 1240px){
  .site-nav__menu{ gap:8px; }
  .site-nav__menu a, .site-nav__menu .sub-toggle{ padding:8px 10px; font-size:.96rem; }
  .site-nav__wa{ padding:9px 12px; }
}

/* ===== switch to hamburger earlier to avoid wrap (≤1100px) */
@media (max-width: 1100px){
  .site-nav__burger{ display:flex; }
  .site-nav__wa{ display:none; }                /* hide WA on mobile */
  .site-nav__menu{
    position:absolute; left:0; right:0; top:100%;
    background:#0f0f0f; border-bottom:1px solid rgba(255,255,255,.08);
    flex-direction:column; align-items:flex-start; gap:8px;
    padding:16px 20px; display:none;
  }
  .site-nav__menu.show{ display:flex; }

  /* mobile submenu renders inline (no hover) */
  .site-nav__submenu{
    position:static; opacity:1; transform:none; pointer-events:auto;
    background:transparent; border:0; box-shadow:none; padding:0; margin-left:8px;
  }
}



/* ===== HERO SECTION (full-screen with responsive shrink) ===== */
.hero-section{
  position:relative;
  height:100vh;                          /* desktop: full screen */
  width:100%;
  color:#fff;
  overflow:hidden;
  isolation:isolate;
}

/* Slides */
.hero-slider{ position:absolute; inset:0; }
.hero-slide{
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  opacity:0; transform:scale(1.08);
  transition:opacity 1s ease;
}
.hero-slide.active{
  opacity:1; animation:heroZoomOut 9s ease forwards;
}

/* Overlay: darker at bottom, lighter on top */
.hero-overlay{
  position:absolute; inset:0; z-index:1;
  background:linear-gradient(to top,
    rgba(0,0,0,.75) 0%,
    rgba(0,0,0,.45) 50%,
    rgba(0,0,0,.22) 100%);
}

/* Content */
.hero-content{
  position:relative; z-index:2;
  height:100%;
  display:flex; flex-direction:column;
  justify-content:center; align-items:center; text-align:center;
  padding: 0 clamp(16px,4vw,32px) calc(env(safe-area-inset-bottom,0px) + clamp(16px,5vw,40px));
}

/* Text */
.hero-heading{
  display:inline-block;
  color:goldenrod; font-weight:800; text-transform:uppercase; letter-spacing:.08em;
  font-size:clamp(.9rem,1.8vw,1.1rem);
  padding:.4rem 1rem; border:2px solid goldenrod; border-radius:999px;
  margin-bottom:1rem; background:rgba(0,0,0,.35);
}
.hero-title{
  font-weight:800; line-height:1.2;
  font-size:clamp(1.8rem,4vw,2.8rem);
  margin:0 0 1rem;
}
.hero-subtext{
  color:#eaeaea; font-size:clamp(1rem,2.2vw,1.2rem);
  margin:0 0 1.6rem; max-width:65ch;     /* comfy line length */
}

/* Buttons */
.hero-buttons{ display:flex; gap:1rem; flex-wrap:wrap; justify-content:center; }
.hero-button{
  background:goldenrod; color:#000; font-weight:800;
  padding:12px 24px; border-radius:8px; text-decoration:none;
  border:2px solid transparent; transition:.25s;
}
.hero-button:hover{ background:#fff; color:goldenrod; border-color:goldenrod; }

/* Zoom-out animation */
@keyframes heroZoomOut{ 0%{transform:scale(1.08)} 100%{transform:scale(1)} }

/* ===== Responsive height tweaks (better UX on small screens) ===== */
@media (max-width: 1024px){
  .hero-section{ height:85vh; }          /* tablet / small laptops */
}
@media (max-width: 520px){
  .hero-section{ height:72vh; }          /* phones: less tall */
  .hero-title br{ display:none; }        /* avoid forced break on tiny widths */
  .hero-heading{ font-size:.85rem; padding:.32rem .9rem; }
}

/* ===== FEATURES SECTION ===== */
.features-section {
  background: #111;
  color: #fff;
  padding: clamp(60px, 10vh, 100px) 0;
}

.features-heading {
  text-align: center;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 2.5rem;
}

.features-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.feature {
  background: #1a1a1a;
  padding: 1.8rem;
  border-radius: 12px;
  transition: transform .25s ease, background .25s ease;
}
.feature:hover {
  transform: translateY(-6px);
  background: #222;
}

.feature-number {
  color: goldenrod;
  font-weight: 700;
  margin-bottom: .5rem;
}

.feature-title {
  font-size: 1.4rem;
  margin-bottom: .75rem;
  color: #fff;
}

.feature-text {
  color: #ccc;
  line-height: 1.6;
  font-size: 1rem;
}
/* ===== Features: scroll reveal ===== */
.features-section .feature{
  opacity: 0;
  transform: translateY(24px);
  will-change: transform, opacity;
}

@media (prefers-reduced-motion: no-preference){
  .features-section .feature.is-visible{
    opacity: 1;
    transform: none;
    transition: opacity .6s ease, transform .6s ease;
    /* stagger via CSS var set from JS */
    transition-delay: calc(var(--stagger, 0) * 90ms);
  }
}

/* If user prefers reduced motion → show immediately (no animation) */
@media (prefers-reduced-motion: reduce){
  .features-section .feature{ opacity:1; transform:none; }
}

/* ===== STATS SECTION (layout + reveal) ===== */
.stats-section {
  background: #000;
  color: #fff;
  padding: clamp(60px, 12vh, 100px) 0;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.stat {
  /* reveal defaults */
  opacity: 0;
  transform: translateY(24px);
  will-change: opacity, transform;
}

.stat-number {
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 800;
  color: goldenrod;
  margin-bottom: .5rem;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #eee;
}

/* Reveal animation when visible */
@media (prefers-reduced-motion: no-preference){
  .stat.is-visible {
    opacity: 1;
    transform: none;
    transition: opacity .6s ease, transform .6s ease;
    transition-delay: calc(var(--stagger, 0) * 120ms);
  }
}

/* Accessibility: no motion */
@media (prefers-reduced-motion: reduce){
  .stat { opacity: 1; transform: none; }
}


/* ===== VIDEO SECTION ===== */
.video-section {
  background:#111;
  color:#fff;
  padding: clamp(60px, 12vh, 100px) 0;
  text-align:center;
}

.video-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight:800;
  margin-bottom:.75rem;
}

.video-subtext {
  font-size: 1.1rem;
  color:#ccc;
  margin-bottom: 2.5rem;
}

.video-frame-wrapper {
  position:relative;
  width:100%;
  max-width:900px;
  margin-inline:auto;
  border:6px solid goldenrod;
  border-radius:20px;
  overflow:hidden;
  aspect-ratio:16 / 9; /* keeps frame proportional */
}

.video-frame {
  width:100%; height:100%;
  display:block;
}

.video-button-wrapper { margin-top:2rem; }
.video-button {
  background:goldenrod; color:#000;
  padding:12px 26px; font-weight:700; border-radius:8px;
  text-decoration:none; transition:.25s;
}
.video-button:hover { background:#fff; color:goldenrod; border:2px solid goldenrod; }

/* ===== Reveal animation defaults ===== */
.video-section .video-frame-wrapper,
.video-section .video-button-wrapper {
  opacity:0; transform:scale(.95);
  will-change:opacity, transform;
}
@media (prefers-reduced-motion:no-preference){
  .video-section .is-visible {
    opacity:1; transform:none;
    transition:opacity .6s ease, transform .6s ease;
  }
}
@media (prefers-reduced-motion:reduce){
  .video-section .video-frame-wrapper,
  .video-section .video-button-wrapper {
    opacity:1; transform:none;
  }
}

/* ===== CIRCULAR GALLERY (scoped) ===== */
.circle-gallery-section{
  background:#111; color:#fff;
  padding: clamp(60px, 10vh, 100px) 0;
  text-align:center;
}

.cg-heading{
  font-weight:800;
  font-size:clamp(1.6rem,3.5vw,2.4rem);
  margin:0 0 .5rem;
}
.cg-sub{
  color:#cfcfcf;
  margin:0 0 1.8rem;
  font-size:clamp(1rem,2.2vw,1.1rem);
}

/* Wheel wrap ensures no overflow */
.cg-wheel-wrap{
  position:relative;
  width:min(680px, 88vw);
  aspect-ratio:1 / 1;            /* perfect square */
  margin: 0 auto;
  display:grid; place-items:center;
  overflow:hidden;                /* no horizontal scrollers */
}

/* Center badge */
.cg-center-badge{
  position:absolute; z-index:2;
  width: clamp(90px, 16vw, 140px);
  aspect-ratio:1/1;
  border-radius:50%;
  display:grid; place-items:center;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.65), rgba(0,0,0,.85));
  border:2px solid rgba(255,255,255,.12);
  box-shadow: 0 8px 28px rgba(0,0,0,.45), inset 0 0 12px rgba(255,215,0,.15);
}
.cg-center-badge span{
  font-weight:800; letter-spacing:.06em; color:goldenrod;
}

/* Wheel */
.cg-wheel{
  position:absolute; inset:0; margin:auto;
  width:100%; height:100%;
  border-radius:50%;
  animation: cg-rotate 28s linear infinite;   /* continuous spin */
  transform-origin:center center;
  will-change: transform;
}

/* Items */
.cg-wheel img{
  position:absolute;
  width: clamp(90px, 18vw, 140px);
  aspect-ratio:1 / 1;
  object-fit:cover;
  border-radius:10px;
  border:2px solid rgba(255,255,255,.1);
  box-shadow:0 8px 24px rgba(0,0,0,.45);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.cg-wheel img:hover{
  transform: scale(1.05);
  border-color: goldenrod;
  box-shadow:0 12px 28px rgba(218,165,32,.28);
}

/* subtle entrance */
.circle-gallery-section .cg-wheel-wrap{
  opacity:0; transform: translateY(18px);
  will-change:opacity, transform;
}
.circle-gallery-section .cg-wheel-wrap.is-visible{
  opacity:1; transform:none;
  transition: opacity .6s ease, transform .6s ease;
}

/* Button */
.cg-cta{ margin-top: 24px; }
.cg-btn{
  display:inline-block; background:goldenrod; color:#000;
  padding:12px 24px; border-radius:8px; font-weight:800;
  text-decoration:none; border:2px solid transparent; transition:.25s;
}
.cg-btn:hover{ background:#fff; color:goldenrod; border-color:goldenrod; }

/* Keyframes */
@keyframes cg-rotate{
  from { transform: rotate(0deg);   }
  to   { transform: rotate(360deg); }
}

/* Reduce motion support */
@media (prefers-reduced-motion: reduce){
  .cg-wheel{ animation: none; }
}

/* Responsive tuning (tight phones) */
@media (max-width: 420px){
  .cg-center-badge{ width: 90px; }
  .cg-wheel img{ width: 90px; }
}

/* ===== SIMPLE GALLERY ===== */
.simple-gallery {
  background:#111;
  color:#fff;
  padding: clamp(60px, 10vh, 100px) 0;
  text-align:center;
  overflow:hidden;
}

.sg-heading {
  font-weight:800;
  font-size: clamp(1.6rem,3.5vw,2.4rem);
  margin:0 0 .5rem;
}
.sg-sub {
  color:#cfcfcf;
  margin:0 0 2rem;
}

/* Carousel */
.sg-carousel {
  position:relative;
  width:100%;
  overflow:hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.sg-track {
  display:flex;
  gap:20px;
  animation: scrollGallery 30s linear infinite;
}
.sg-track img {
  flex:0 0 auto;
  width: clamp(240px, 25vw, 320px);
  height: clamp(180px, 18vw, 220px);
  object-fit:cover;
  border-radius:12px;
  box-shadow:0 6px 16px rgba(0,0,0,.4);
  transition: transform .3s ease;
}
.sg-track img:hover {
  transform: scale(1.05);
  border:2px solid goldenrod;
}

/* Animation */
@keyframes scrollGallery {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Button */
.sg-cta { margin-top:2rem; }
.sg-btn {
  display:inline-block;
  background:goldenrod;
  color:#000;
  padding:12px 24px;
  border-radius:8px;
  font-weight:800;
  text-decoration:none;
  transition:.25s;
}
.sg-btn:hover {
  background:#fff;
  color:goldenrod;
  border:2px solid goldenrod;
}

/* ===== Scroll reveal (default hidden) ===== */
.sg-reveal {
  opacity:0;
  transform: translateY(18px);
  will-change:opacity, transform;
}
.sg-reveal.is-visible {
  opacity:1;
  transform:none;
  transition:opacity .6s ease, transform .6s ease;
}
@media (prefers-reduced-motion: reduce){
  .sg-reveal { opacity:1; transform:none; }
}

/* ===== Services (v2, alternating, full-width) ===== */
.svc-section{
  background:#000; color:#fff;
}

/* Full-bleed row, split 50/50, min height for presence */
.svc-row{
  display:flex; align-items:stretch;
  min-height:72vh; /* adjust to taste */
}

/* Flip sides on alternating rows */
.svc-row.alt{ flex-direction: row-reverse; }

/* Content panel */
.svc-panel{
  flex:1 1 50%;
  background: linear-gradient(180deg,#0f0f0f 0%, #101010 100%);
  border-right: 1px solid rgba(255,255,255,.06);
  padding: clamp(24px, 5vw, 64px);
  display:flex; flex-direction:column; justify-content:center;
  position:relative;
  isolation:isolate;
}

/* subtle vertical divider on the inside edge (like the reference) */
.svc-row:not(.alt) .svc-panel::after,
.svc-row.alt .svc-panel::before{
  content:""; position:absolute; top:0; bottom:0; width:1px;
  background:linear-gradient(180deg,transparent,rgba(255,255,255,.08),transparent);
}
.svc-row:not(.alt) .svc-panel::after{ right:0; }
.svc-row.alt .svc-panel::before{ left:0; }

/* Optional watermark number (very light, large) */
.svc-panel::selection{ background:goldenrod; color:#000; }

.svc-kicker {
  display: inline-block;         /* shrink to text */
  width: fit-content;            /* force border to wrap text */
  max-width: max-content;        /* fallback for some browsers */

  color: goldenrod;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;

  border: 2px solid goldenrod;
  border-radius: 999px;
  padding: 0.35rem 1rem;
  margin-bottom: 20px;

  font-size: 0.85rem;
  line-height: 1;
  white-space: nowrap;           /* never break into two lines */

  transition: box-shadow .3s ease, background .3s ease, color .3s ease;
}

.svc-kicker:hover {
  background: goldenrod;
  color: #000;
  box-shadow: 0 0 15px rgba(218,165,32,0.6); /* golden glow */
}




.svc-title{
  font-weight:800;
  font-size: clamp(1.8rem,3.6vw,2.8rem);
  line-height:1.15;
  margin:0 0 12px;
}

.svc-text{
  color:#cfcfcf; line-height:1.65; margin:0 0 20px;
  max-width: 58ch;
}

.svc-btn{
  align-self:flex-start;
  background:goldenrod; color:#000; font-weight:800;
  padding:12px 22px; border-radius:8px;
  text-decoration:none; transition:.25s;
  border:2px solid transparent;
}
.svc-btn:hover{ background:#fff; color:goldenrod; border-color:goldenrod; }

/* Image side (full height, half width) */
.svc-media{
  flex:1 1 50%; margin:0; overflow:hidden; position:relative;
}
.svc-media img{
  width:100%; height:100%; object-fit:cover; display:block;
  transform:scale(1.03);
  transition: transform .6s ease;
}
.svc-media:hover img{ transform:scale(1.06); }

/* Mobile stacking: image on top, content below (per earlier preference) */
@media (max-width: 820px){
  .svc-row, .svc-row.alt{ flex-direction:column; min-height:unset; }
  .svc-media, .svc-panel{ flex:1 1 auto; }
  .svc-media{ order:-1; }            /* always show image first on mobile */
  .svc-panel{ border-right:0; }
}

/* ===== Scroll reveal for the row parts ===== */
/* Default: visible (in case JS fails or is disabled) */
/* Default: always visible */
/* Default: visible if JS is disabled */
.svc-reveal { 
  opacity: 1; 
  transform: none; 
}

/* When JS is active → start hidden until revealed */
.js .svc-reveal {
  opacity: 0;
  transform: translateY(22px);
  will-change: opacity, transform;
}

.js .svc-reveal.is-visible {
  opacity: 1;
  transform: none;
  transition: opacity .6s ease, transform .6s ease;
}

@media (prefers-reduced-motion: reduce){
  .js .svc-reveal { opacity:1; transform:none; }
}

/* ===== CONTACT SECTION (v2, scoped) ===== */
.contact-section{
  position: relative;
  color:#fff;
  padding: clamp(60px, 12vh, 100px) 20px;
  background: url('../images/op.png') center/cover no-repeat fixed; /* bg */
}
.contact-section::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.85), rgba(0,0,0,.55));
  z-index:0; /* dark overlay */
}

/* Layout */
.contact-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: nowrap;           /* ❌ change from wrap → nowrap */
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

/* left */
.contact-info {
  flex: 1 1 50%;
  min-width: 0;                /* ✅ allow shrinking instead of forcing wrap */
}

/* right */
.contact-form {
  flex: 1 1 50%;
  min-width: 0;                /* ✅ prevent breaking to new line */
  background: #111;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,.6);
}

.contact-section .c-heading{
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; margin: 0 0 16px;
}
.contact-section .c-caption{
  color:#ddd; line-height:1.65; margin:0 0 14px; font-size:1rem;
}

/* contact details list */
.c-extra{
  list-style:none; margin:18px 0 0; padding:0;
  display:grid; gap:10px;
}
.c-extra li{
  display:flex; gap:10px; align-items:center;
  color:#eee;
}
.c-extra a{ color:#fff; text-decoration:none; border-bottom:1px dotted rgba(255,255,255,.25); }
.c-extra a:hover{ color:goldenrod; border-bottom-color:goldenrod; }
.c-ico{ width:26px; display:inline-grid; place-items:center; color:goldenrod; }

/* RIGHT (form panel) */
.contact-form{
  flex:1 1 50%; min-width:320px;
  background:#111; padding:24px; border-radius:12px;
  box-shadow:0 10px 25px rgba(0,0,0,.6);
}
.contact-form form{ display:flex; flex-direction:column; gap:14px; }
.contact-form label{ font-size:.9rem; font-weight:700; color:#ccc; }
.contact-form input,
.contact-form textarea{
  background:#1a1a1a; border:1px solid rgba(255,255,255,.2);
  border-radius:6px; padding:10px 12px; font-size:1rem; color:#fff;
}
.contact-form input:focus,
.contact-form textarea:focus{
  outline:none; border-color:goldenrod;
  box-shadow:0 0 0 2px rgba(218,165,32,.3);
}
.contact-form .c-btn{
  background:goldenrod; color:#000; font-weight:800;
  padding:12px 18px; border-radius:8px; border:2px solid transparent;
  cursor:pointer; transition:.25s;
}
.contact-form .c-btn:hover{
  background:#fff; color:goldenrod; border-color:goldenrod;
}

/* Responsive */
@media(max-width: 900px){
  .contact-container{ flex-direction:column; }
}

/* --- Mobile/tablet fixes for the contact form card --- */
@media (max-width: 900px){
  .contact-container{
    flex-direction: column;
    align-items: center;          /* center children horizontally */
    gap: 24px;
  }

  /* left copy block spans nicely but stays readable */
  .contact-info{
    width: clamp(320px, 92vw, 800px);
    min-width: 0;                 /* allow shrinking */
  }

  /* form card centered and wider */
  .contact-form{
    flex: 0 1 auto;
    width: clamp(320px, 92vw, 640px); /* <-- set your preferred max */
    align-self: center;               /* center inside flex parent */
    margin: 0 auto;                   /* double-ensure centering */
    min-width: 0;                     /* prevents wrapping side-effects */
  }
}

/* make sure fields fill the card */
.contact-form,
.contact-form form,
.contact-form input,
.contact-form textarea{
  width: 100%;
  box-sizing: border-box;
}

/* default visible if no JS / script fails */
.c-reveal{ opacity:1; transform:none; }

/* hide only when the contact section JS marks it as ready */
.contact-section.ready .c-reveal{
  opacity:0; transform: translateY(18px);
  will-change: opacity, transform;
}
.contact-section.ready .c-reveal.is-visible{
  opacity:1; transform:none;
  transition: opacity .6s ease, transform .6s ease;
}
@media (prefers-reduced-motion: reduce){
  .contact-section.ready .c-reveal{ opacity:1; transform:none; }
}

/* ===== TESTIMONIALS (scoped) ===== */
.testimonials-section{
  background:#111; color:#fff;
  padding: clamp(60px, 12vh, 100px) 0;
}

.testimonials-section .ts-header{
  text-align:center;
  margin-bottom: clamp(24px, 4vw, 40px);
}
.testimonials-section .ts-heading{
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight:800; margin:0 0 .35rem;
}
.testimonials-section .ts-sub{
  color:#cfcfcf; font-size: clamp(1rem, 2.2vw, 1.1rem); margin:0;
}

/* Grid of cards */
.testimonials-section .ts-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-bottom: clamp(28px, 5vw, 48px);
}
@media (max-width: 1100px){ .testimonials-section .ts-grid{ grid-template-columns: repeat(3,1fr); } }
@media (max-width: 800px) { .testimonials-section .ts-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .testimonials-section .ts-grid{ grid-template-columns: 1fr; } }

.testimonials-section .ts-card{
  background:#1a1a1a;
  border: 2px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:16px;
  display:flex; flex-direction:column; gap:12px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.testimonials-section .ts-card:hover{
  transform: translateY(-6px);
  border-color: rgba(218,165,32,.45);
  box-shadow: 0 10px 26px rgba(0,0,0,.45);
}

.testimonials-section .ts-card-head{
  display:flex; align-items:center; gap:12px;
}
.testimonials-section .ts-card-head img{
  width:48px; height:48px; object-fit:cover; border-radius:50%;
  border:2px solid rgba(255,255,255,.12);
}
.testimonials-section .ts-name{ margin:0; font-size:1.05rem; font-weight:700; }
.testimonials-section .ts-role{ margin:2px 0 0; font-size:.9rem; color:#cfcfcf; }
.testimonials-section .ts-quote{ color:#e8e8e8; line-height:1.6; margin:6px 0 0; font-size:1rem; }

/* Video */
.testimonials-section .ts-video-wrap{ display:grid; place-items:center; }
.testimonials-section .ts-video-frame{
  width:min(980px, 100%); aspect-ratio:16/9;
  border:6px solid goldenrod; border-radius:22px; overflow:hidden;
  box-shadow: 0 14px 36px rgba(0,0,0,.45);
}
.testimonials-section .ts-video-frame iframe{ width:100%; height:100%; display:block; border:0; }

/* ===== Scroll reveal (scoped) ===== */
/* Visible by default if JS is off */
.ts-reveal{ opacity:1; transform:none; }

/* Hide until revealed when JS runs */
.js .testimonials-section .ts-reveal{
  opacity:0; transform: translateY(18px);
  will-change: opacity, transform;
}
.js .testimonials-section .ts-reveal.is-visible{
  opacity:1; transform:none;
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: calc(var(--st, 0) * 90ms); /* stagger via inline var */
}
@media (prefers-reduced-motion: reduce){
  .js .testimonials-section .ts-reveal{ opacity:1; transform:none; }
}

/* ===== CTA: VENUES (scoped) ===== */
.venues-cta{
  background:#000000; color:#fff;
  padding: clamp(40px, 8vw, 60px) 20px;
}
.venues-cta .v-wrap{
  max-width:1200px; margin:0 auto;
  display:flex; align-items:stretch; gap:28px;
  min-height:60vh;
}

/* media (left) */
.venues-cta .v-media{
  position:relative;
  flex:1 1 55%;
  overflow:hidden;
  border-radius:16px;
 border:2px solid goldenrod;
  /* ensure it has height even before slides render */
  min-height: 320px;
}

.venues-cta .v-slider{
  position:absolute; inset:0;
  width:100%; height:100%;              /* <— important */
}
.venues-cta .v-slide{
  position:absolute; inset:0;
  width:100%; height:100%;              /* <— important */
  background-size:cover; background-position:center;
  opacity:0; transform:scale(1.06);
  transition:opacity .8s ease, transform 6s ease;
}
.venues-cta .v-slide.is-active{ opacity:1; transform:scale(1.0); }

/* responsive */
@media (max-width: 900px){
  .venues-cta .v-wrap{ flex-direction:column; min-height:unset; }
  .venues-cta .v-media{
    order:1;
    height: 46vh;                       /* <— give a real height on mobile */
    min-height: 320px;                  /* fallback for very short viewports */
  }
  .venues-cta .v-content{ order:2; }
}

/* content (right) */
.venues-cta .v-content{
  flex:1 1 45%;   padding: clamp(22px, 4vw, 36px);
  display:flex; flex-direction:column; justify-content:center;
}
.venues-cta .v-heading{
  font-weight:800; font-size:clamp(1.6rem,3.2vw,2.2rem); margin:0 0 .6rem;
}
.venues-cta .v-sub{ color:#d8d8d8; line-height:1.65; margin:0 0 1.2rem; }
.venues-cta .v-btn{
  align-self:flex-start; text-decoration:none; font-weight:800;
  background:goldenrod; color:#000; padding:12px 20px; border-radius:10px;
  border:2px solid transparent; transition:.25s;
}
.venues-cta .v-btn:hover{ background:#fff; color:goldenrod; border-color:goldenrod; }

/* responsive */
@media (max-width: 900px){
  .venues-cta .v-wrap{ flex-direction:column; min-height:unset; }
  .venues-cta .v-content{ order:2; }
  .venues-cta .v-media{ order:1; height:38vh; }
}

/* ===== section-scoped reveal ===== */
/* visible by default if JS fails */
.venues-cta .v-reveal{ opacity:1; transform:none; }
/* hide until section JS marks .ready */
.venues-cta.ready .v-reveal{ opacity:0; transform:translateY(16px); will-change:opacity, transform; }
.venues-cta.ready .v-reveal.is-visible{ opacity:1; transform:none; transition:opacity .6s ease, transform .6s ease; }
@media (prefers-reduced-motion: reduce){
  .venues-cta.ready .v-reveal{ opacity:1; transform:none; }
}





/* =============== FOOTER =============== */
.site-footer{background:var(--bg2);color:var(--muted);padding:60px 0;margin-top:40px}
.footer-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:40px}
.site-footer h3{color:#fff;margin-bottom:12px}
.site-footer a{color:var(--muted)}
.site-footer a:hover{color:#fff}
.footer-socials { display:grid;  gap:12px; margin-top:12px; }
.footer-socials .soc svg {
  width: 32px;   /* adjust to your liking */
  height: 32px;
}

.footer-socials .soc { color: var(--gold); display:inline-flex; }
.footer-socials .soc:hover { color:#fff; }

