/* DASHILED INTERIORS — Luxury landing page */

:root{
  --bg: #fbf7ef;
  --charcoal: #141214;
  --cream: #f6f1e6;
  --cream-2: #efe7d8;
  --gold: #b5873a;
  --gold-2: #d2b06a;
  --ink: #141214;
  --muted: rgba(20,18,20,.72);
  --glass: rgba(255,255,255,.62);
  --glass-2: rgba(255,255,255,.78);
  --border: rgba(20,18,20,.12);
  --shadow: 0 20px 60px rgba(20,18,20,.18);
  --accent: var(--gold);
  --radius: 18px;

  --font-display: "Cormorant Garamond", ui-serif, Georgia, "Times New Roman", serif;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", sans-serif;
}

/* Subtle luxe mesh */
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(900px 520px at 10% 15%, rgba(181,135,58,.12), rgba(255,255,255,0) 60%),
    radial-gradient(900px 520px at 90% 10%, rgba(210,176,106,.10), rgba(255,255,255,0) 62%),
    radial-gradient(900px 600px at 70% 95%, rgba(20,18,20,.05), rgba(255,255,255,0) 66%);
  mix-blend-mode:multiply;
  opacity:.75;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:
    radial-gradient(1100px 700px at 16% 10%, rgba(181,135,58,.14), rgba(255,255,255,0) 65%),
    radial-gradient(900px 560px at 82% 18%, rgba(210,176,106,.10), rgba(255,255,255,0) 60%),
    radial-gradient(900px 700px at 55% 98%, rgba(20,18,20,.05), rgba(255,255,255,0) 65%),
    linear-gradient(180deg, #ffffff, var(--bg) 55%, #ffffff);
  overflow-x:hidden;
}

/* Keep hero + loader luxurious on dark */
.hero{color: var(--cream)}

body.is-loading{overflow:hidden}

img{max-width:100%; display:block}
video{max-width:100%; display:block}

a{color:inherit; text-decoration:none}

.container{
  width:min(1120px, calc(100% - 40px));
  margin-inline:auto;
}

.section{padding:84px 0; position:relative}
.section--alt{background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0))}
.section__head{display:flex; gap:14px; flex-direction:column; margin-bottom:26px}
.section__title{font-family:var(--font-display); letter-spacing:.02em; font-size: clamp(26px, 3.4vw, 44px); margin:0}
.section__lead{color:var(--muted); margin:0; max-width:62ch; line-height:1.6}

.center{display:flex; justify-content:center; margin-top:22px}

/* Loader */
.loader{
  position:fixed; inset:0; z-index:9999;
  display:grid; place-items:center;
  background:
    radial-gradient(900px 540px at 50% 40%, rgba(181,135,58,.18), rgba(255,255,255,.82) 68%),
    linear-gradient(180deg, #ffffff, var(--bg));
}
.loader__stage{position:relative; width:min(520px, 86vw); padding:36px 22px; text-align:center}
.loader__logo{
  width:min(210px, 50vw);
  margin-inline:auto;
  filter: drop-shadow(0 25px 40px rgba(0,0,0,.55));
  transform-origin:center;
  animation: loaderPath 2800ms cubic-bezier(.2,.9,.2,1) forwards;
}
/* Orbit + hint removed by request */

@keyframes loaderPath{
  0%   {transform: translateY(-120px) scale(.5); opacity:0}
  20%  {transform: translateY(0) scale(.7); opacity:1}
  55%  {transform: translateX(110px) rotate(12deg) scale(.62)}
  70%  {transform: translateX(-110px) rotate(-12deg) scale(.62)}
  88%  {transform: translateY(0) scale(1.18)}
  100% {transform: translateY(0) scale(1)}
}
/* orbitSpin no longer used */

.loader.is-hidden{animation: loaderOut 500ms ease forwards}
@keyframes loaderOut{
  to{opacity:0; visibility:hidden}
}

/* Header */
.header{
  position:fixed; top:0; left:0; right:0;
  z-index:100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(251,247,239,.78);
  border-bottom: 1px solid rgba(20,18,20,.10);
}
.header__inner{display:flex; align-items:center; justify-content:space-between; padding:14px 0}
.brand img{height:64px; width:auto; filter: drop-shadow(0 12px 22px rgba(20,18,20,.18))}
.header__right{display:flex; gap:10px; align-items:center}

.icon-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  height:46px;
  padding:0 14px;
  border-radius:999px;
  background: linear-gradient(135deg, rgba(181,135,58,.22), rgba(255,255,255,.70));
  border: 1px solid rgba(20,18,20,.12);
  box-shadow: 0 18px 50px rgba(20,18,20,.10);
  font-weight:700;
}
.icon-pill i{color: color-mix(in oklab, var(--gold) 80%, #000 20%)}

.icon-btn{
  height:46px; width:46px;
  border-radius:14px;
  border: 1px solid rgba(20,18,20,.14);
  background: rgba(255,255,255,.78);
  color: var(--ink);
  cursor:pointer;
  display:grid; place-items:center;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.icon-btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.92); border-color: rgba(20,18,20,.20)}

.hamburger{width:18px; display:grid; gap:4px}
.hamburger span{height:2px; border-radius:2px; background: rgba(20,18,20,.86)}
.hamburger span:nth-child(2){width:14px}
.hamburger span:nth-child(3){width:16px}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  height:46px;
  padding:0 16px;
  border-radius:14px;
  border:1px solid rgba(20,18,20,.14);
  background: rgba(255,255,255,.78);
  color: var(--ink);
  font-weight:600;
  letter-spacing:.02em;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
  box-shadow: 0 10px 26px rgba(20,18,20,.12);
}
.btn i{margin-right:10px}
.btn:hover{transform: translateY(-1px)}

.btn--primary{
  background: linear-gradient(135deg, rgba(181,135,58,.95), rgba(210,176,106,.92));
  border-color: rgba(255,255,255,.2);
  color: #17120a;
  box-shadow: 0 22px 50px rgba(181,135,58,.25);
}
.btn--primary:hover{box-shadow: 0 26px 70px rgba(181,135,58,.32)}

.btn--ghost{
  background: rgba(255,255,255,.78);
  border-color: rgba(20,18,20,.16);
}

/* Black realistic DM button */
.btn--dm{
  background: linear-gradient(180deg, rgba(20,20,22,.95), rgba(7,7,8,.95));
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 18px 45px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.08);
  position:relative;
  overflow:hidden;
}
.btn--dm::after{
  content:"";
  position:absolute;
  inset:-40px;
  background: radial-gradient(200px 120px at 20% 20%, rgba(255,255,255,.14), rgba(255,255,255,0) 60%);
  transform: rotate(10deg);
  opacity:.8;
}

.btn--small{height:40px; border-radius:12px; padding:0 14px}

/* Nav drawer */
.nav-drawer{position:fixed; inset:0; z-index:200; pointer-events:none}
.nav-drawer.is-open{pointer-events:auto}
.nav-drawer__backdrop{
  position:absolute;
  inset:0;
  border:0;
  z-index:0;
  opacity:0;
  transition: opacity .22s ease;
  background:
    radial-gradient(900px 520px at 20% 15%, rgba(181,135,58,.14), rgba(255,255,255,0) 62%),
    radial-gradient(900px 520px at 90% 10%, rgba(210,176,106,.12), rgba(255,255,255,0) 62%),
    rgba(251,247,239,.38);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.nav-drawer.is-open .nav-drawer__backdrop{opacity:1}

.nav-drawer__panel{
  position:absolute; top:12px; right:12px;
  z-index:1;
  width:min(360px, calc(100% - 24px));
  background: rgba(251,247,239,.92);
  border:1px solid rgba(20,18,20,.12);
  border-radius: 18px;
  box-shadow: 0 40px 120px rgba(20,18,20,.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transform: translateY(-12px) scale(.98);
  opacity:0;
  transition: transform .22s ease, opacity .22s ease;
  padding:16px;
}
.nav-drawer.is-open .nav-drawer__panel{transform: translateY(0) scale(1); opacity:1}

.nav-drawer__close{position:absolute; top:12px; right:12px}
.nav-drawer__close span{font-size:22px; line-height:1}

.nav-drawer__brand{display:flex; justify-content:center; padding:12px 0 8px}
.nav-drawer__brand img{height:54px}

.nav-drawer__nav{display:grid; gap:10px; padding:14px 0}
.nav-link{
  display:flex;
  align-items:center;
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(20,18,20,.14);
  color: rgba(20,18,20,.88);
  transition: transform .18s ease, background .18s ease;
}
.nav-link i{width:18px; text-align:center; color: rgba(20,18,20,.72)}
.nav-link:hover{transform: translateX(2px); background: rgba(255,255,255,.96)}

.nav-group{margin:0; padding:0; border:0}
.nav-group > summary{list-style:none; cursor:pointer}
.nav-group > summary::-webkit-details-marker{display:none}
.nav-link--summary{position:relative}
.nav-link--summary::after{
  content:"\f107";
  font-family:"Font Awesome 6 Free";
  font-weight:900;
  position:absolute;
  right:12px;
  top:50%;
  transform: translateY(-50%);
  color: rgba(20,18,20,.58);
}
.nav-group[open] > summary::after{transform: translateY(-50%) rotate(180deg)}
.nav-sub{display:grid; gap:10px; padding-top:10px; padding-left:10px}
.nav-sub .nav-link{background: rgba(255,255,255,.78)}

.nav-drawer__cta{display:grid; gap:10px; padding-top:10px}

/* Hero */
.hero{
  position:relative;
  min-height: 92vh;
  display:grid;
  align-items:end;
  padding-top:84px;
}
.hero__video{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  filter: contrast(1.05) saturate(1.1);
}
.hero__overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 600px at 20% 30%, rgba(181,135,58,.38), rgba(0,0,0,0) 60%),
    radial-gradient(900px 600px at 70% 20%, rgba(255,255,255,.08), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.78));
}
.hero__content{position:relative; padding: 44px 0 62px}

.pill{
  display:inline-flex; align-items:center;
  padding:7px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size:12px;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.pill--soft{background: rgba(181,135,58,.14); border-color: rgba(181,135,58,.25)}
.hero__kicker{display:flex; gap:10px; flex-wrap:wrap}

.hero__title{
  margin:16px 0 10px;
  font-family:var(--font-display);
  font-size: clamp(42px, 6.2vw, 84px);
  line-height: .95;
  letter-spacing: .04em;
}
.hero__accent{color: var(--cream); text-shadow: 0 20px 70px rgba(181,135,58,.25)}
.hero__subtitle{margin:0; max-width:58ch; color: rgba(246,241,230,.88); line-height:1.7; font-size: 16px}

.hero__actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}

.hero__badges{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
  margin-top:26px;
}
.badge{
  display:flex; gap:12px; align-items:center;
  padding:14px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
  transform: translateZ(0);
}
.badge__icon{
  width:38px; height:38px;
  display:grid; place-items:center;
  border-radius:14px;
  background: rgba(181,135,58,.16);
  border: 1px solid rgba(181,135,58,.25);
  color: rgba(246,241,230,.95);
}
.badge__icon i{font-size:16px}
.badge__title{font-weight:700}
.badge__sub{color: rgba(246,241,230,.72); font-size:13px; margin-top:2px}

/* Poem */
.poem{
  border-radius: var(--radius);
  padding: 18px 18px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(20,18,20,.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 24px 80px rgba(20,18,20,.12);
}
.poem--short{max-width: 78ch}
.poem p{margin:0; color: rgba(20,18,20,.90); line-height:1.9; font-family: var(--font-display); font-size: clamp(18px, 1.75vw, 22px)}
.poem p + p{margin-top:14px; color: rgba(20,18,20,.78)}

.split{display:grid; grid-template-columns: 1.1fr .9fr; gap:16px; margin-top:18px}
.glass-card{
  border-radius: var(--radius);
  background:
    radial-gradient(520px 260px at 20% 10%, rgba(181,135,58,.12), rgba(255,255,255,0) 60%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  border: 1px solid rgba(20,18,20,.12);
  padding: 18px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 26px 70px rgba(20,18,20,.12);
  transform-style: preserve-3d;
  transition: transform .25s ease, box-shadow .25s ease;
}
.glass-card:hover{transform: perspective(900px) rotateX(1deg) rotateY(-1deg) translateY(-2px); box-shadow: 0 36px 90px rgba(20,18,20,.16)}
.glass-card h3{margin:0 0 10px; font-family: var(--font-display); letter-spacing:.02em}
.glass-card p{margin:0; color: rgba(20,18,20,.72); line-height:1.7}

/* Reasons (Why clients choose us) */
.reasons{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
  margin-top:12px;
}
.reason{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:14px;
  border-radius: 18px;
  border: 1px solid rgba(20,18,20,.10);
  background:
    radial-gradient(380px 190px at 20% 10%, rgba(181,135,58,.10), rgba(255,255,255,0) 60%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  box-shadow: 0 18px 55px rgba(20,18,20,.10);
  transform-style: preserve-3d;
  transition: transform .25s ease, box-shadow .25s ease;
}
.reason:hover{
  transform: perspective(900px) rotateX(1deg) rotateY(-1deg) translateY(-2px);
  box-shadow: 0 26px 75px rgba(20,18,20,.14);
}
.reason__shape{
  width:46px;
  height:46px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(181,135,58,.22), rgba(255,255,255,.86));
  border: 1px solid rgba(20,18,20,.10);
  box-shadow: 0 16px 40px rgba(20,18,20,.10);
  flex: 0 0 auto;
}
.reason__shape i{color: rgba(20,18,20,.78)}
.reason__title{font-weight:900; letter-spacing:.02em}
.reason__text{color: rgba(20,18,20,.66); margin-top:2px; line-height:1.55}

.mini-stats{display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap:12px; margin-top:14px}
.stat{padding:12px; border-radius:16px; background: rgba(0,0,0,.25); border: 1px solid rgba(255,255,255,.12)}
.stat{background: rgba(255,255,255,.88); border: 1px solid rgba(20,18,20,.10)}
.stat__num{font-weight:800; letter-spacing:.02em}
.stat__label{color: rgba(20,18,20,.62); font-size:12px; margin-top:2px}

/* Services */
.cards{display:grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap:12px}
.service-card{
  border-radius: var(--radius);
  background:
    radial-gradient(520px 260px at 18% 12%, rgba(181,135,58,.12), rgba(255,255,255,0) 62%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  border: 1px solid rgba(20,18,20,.12);
  padding: 18px;
  box-shadow: 0 24px 70px rgba(20,18,20,.12);
  position:relative;
  overflow:hidden;
  transform-style: preserve-3d;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover{transform: perspective(900px) rotateX(1deg) rotateY(1deg) translateY(-3px); box-shadow: 0 36px 90px rgba(20,18,20,.16)}
.service-card__icon{
  width:46px;
  height:46px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(181,135,58,.24), rgba(255,255,255,.85));
  border: 1px solid rgba(20,18,20,.10);
  box-shadow: 0 16px 40px rgba(20,18,20,.10);
  margin-bottom:12px;
}
.service-card__icon i{color: rgba(20,18,20,.78)}
.service-card::before{
  content:"";
  position:absolute;
  inset:-1px;
  background: radial-gradient(420px 220px at 25% 10%, rgba(181,135,58,.20), rgba(255,255,255,0) 60%);
  pointer-events:none;
}
.service-card h3{margin:0 0 8px; font-family: var(--font-display)}
.service-card p{margin:0; color: rgba(20,18,20,.70); line-height:1.7}

.cta-bar{
  margin-top:18px;
  padding:18px;
  border-radius: var(--radius);
  border: 1px solid rgba(181,135,58,.22);
  background: linear-gradient(135deg, rgba(181,135,58,.16), rgba(255,255,255,.03));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display:flex; align-items:center; justify-content:space-between; gap:14px;
}
.cta-bar__title{font-weight:800}
.cta-bar__sub{color: rgba(20,18,20,.68); margin-top:4px}
.cta-bar__actions{display:flex; gap:10px; flex-wrap:wrap}

/* Carousel */
.carousel{
  border-radius: var(--radius);
  border:1px solid rgba(20,18,20,.12);
  background:
    radial-gradient(900px 500px at 30% 20%, color-mix(in oklab, var(--accent) 40%, transparent), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.68));
  box-shadow: 0 26px 80px rgba(20,18,20,.12);
  overflow:hidden;
}
.carousel__track{
  display:flex;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  scrollbar-width:none;
}
.carousel__track::-webkit-scrollbar{display:none}

.carousel__slide{
  min-width: 100%;
  scroll-snap-align:center;
  padding: 16px 16px 14px;
  display:grid;
  gap:10px;
}
.carousel__slide img{
  width:100%;
  height: min(520px, 58vh);
  object-fit:cover;
  border-radius: 18px;
  border: 1px solid rgba(20,18,20,.10);
  filter: contrast(1.03) saturate(1.05);
}
.carousel__slide figcaption{color: rgba(20,18,20,.70); line-height:1.6}

.carousel__controls{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding: 12px 12px;
  border-top: 1px solid rgba(20,18,20,.10);
  background: rgba(255,255,255,.76);
}

.dots{display:flex; gap:8px; justify-content:center; align-items:center}
.dot{
  width:9px; height:9px;
  border-radius:999px;
  border: 1px solid rgba(20,18,20,.20);
  background: rgba(255,255,255,.70);
  cursor:pointer;
}
.dot.is-active{background: linear-gradient(135deg, var(--accent), rgba(255,255,255,.25)); border-color: rgba(255,255,255,.38)}

/* Video split */
.video-split{display:grid; grid-template-columns: 1.02fr .98fr; gap:16px; align-items:center}
.video-frame{
  border-radius: 22px;
  overflow:hidden;
  border: 1px solid rgba(20,18,20,.12);
  background: rgba(255,255,255,.70);
  box-shadow: 0 30px 90px rgba(20,18,20,.14);
  position:relative;
}
.video-frame::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(500px 220px at 20% 10%, rgba(181,135,58,.28), rgba(0,0,0,0) 60%);
  pointer-events:none;
}
.video-frame video{width:100%; height: min(520px, 56vh); object-fit:cover}

.bullet-row{display:flex; gap:10px; flex-wrap:wrap; margin: 14px 0 18px}
.bullet{padding:10px 12px; border-radius:999px; border:1px solid rgba(20,18,20,.12); background: rgba(255,255,255,.86); color: rgba(20,18,20,.72)}
.bullet i{margin-right:8px; color: rgba(20,18,20,.72)}

/* Founder */
.founder{display:grid; grid-template-columns: .92fr 1.08fr; gap:18px; align-items:center}
.portrait{
  border-radius: 26px;
  overflow:hidden;
  border: 1px solid rgba(20,18,20,.12);
  background: rgba(255,255,255,.70);
  box-shadow: 0 28px 90px rgba(20,18,20,.14);
  position:relative;
}
.portrait::after{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(500px 260px at 20% 20%, rgba(181,135,58,.25), rgba(0,0,0,0) 60%);
  pointer-events:none;
}
.portrait img{width:100%; height: min(520px, 62vh); object-fit:cover}

.founder__text p{color: rgba(20,18,20,.72); line-height:1.75}
.founder__highlights{display:flex; flex-wrap:wrap; gap:10px; margin: 14px 0 16px}
.founder__actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:12px;
}
.gallery img{
  border-radius: 18px;
  border: 1px solid rgba(20,18,20,.10);
  box-shadow: 0 18px 70px rgba(20,18,20,.10);
  height: 240px;
  width: 100%;
  object-fit:cover;
  transition: transform .25s ease, filter .25s ease;
}
.gallery img:hover{transform: translateY(-2px) scale(1.01); filter: saturate(1.08)}
.gallery img:nth-child(1){grid-column: span 7}
.gallery img:nth-child(2){grid-column: span 5}
.gallery img:nth-child(3){grid-column: span 5}
.gallery img:nth-child(4){grid-column: span 7}

/* Full Gallery Page (IG/TikTok feel) */
.page--gallery main{padding-top: 96px}

.gallery-hero{padding: 44px 0 22px}
.gallery-toolbar{display:flex; gap:10px; flex-wrap:wrap; align-items:center}

.filter-chip{
  appearance:none;
  border: 1px solid rgba(20,18,20,.12);
  background: rgba(255,255,255,.84);
  color: rgba(20,18,20,.72);
  height:40px;
  padding:0 14px;
  border-radius:999px;
  font-weight:800;
  cursor:pointer;
  box-shadow: 0 14px 42px rgba(20,18,20,.08);
}
.filter-chip i{margin-right:8px; color: rgba(20,18,20,.72)}
.filter-chip.is-active{
  border-color: rgba(181,135,58,.38);
  background: linear-gradient(180deg, rgba(181,135,58,.22), rgba(255,255,255,.86));
  color: rgba(20,18,20,.84);
}

.feed{display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap:14px}
.post{
  border-radius: 22px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(20,18,20,.12);
  box-shadow: 0 22px 80px rgba(20,18,20,.10);
  overflow:hidden;
  position:relative;
}
.post.is-hidden{display:none}

.post__head{display:flex; align-items:center; justify-content:space-between; padding:12px 12px 10px}
.post__brand{display:flex; align-items:center; gap:10px; min-width:0}
.post__brand img{height:26px; width:auto; filter: drop-shadow(0 10px 18px rgba(20,18,20,.12))}
.post__brand span{font-weight:900; letter-spacing:.06em; font-size:12px; color: rgba(20,18,20,.68)}
.post__badge{
  font-size:12px;
  font-weight:800;
  color: rgba(20,18,20,.62);
  padding:6px 10px;
  border-radius:999px;
  border: 1px solid rgba(20,18,20,.12);
  background: rgba(255,255,255,.86);
}

.post__media{
  position:relative;
  width:100%;
  aspect-ratio: 4 / 5;
  background: #090707;
}
.post[data-type="video"] .post__media{aspect-ratio: 9 / 16}

.post__media img,
.post__media video{
  width:100%;
  height:100%;
  object-fit:cover;
}

.post__overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(520px 260px at 20% 16%, rgba(181,135,58,.20), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, rgba(0,0,0,.00), rgba(0,0,0,.18));
  pointer-events:none;
}

.post__play{
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%, -50%);
  width:64px;
  height:64px;
  border-radius:999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.38);
  color: rgba(255,255,255,.95);
  display:grid;
  place-items:center;
  cursor:pointer;
  box-shadow: 0 22px 70px rgba(0,0,0,.35);
}
.post.is-playing .post__play{opacity:0; pointer-events:none}

.post__play i{transform: translateX(2px)}

.post__controls{
  position:absolute;
  right:10px;
  bottom:10px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.post__btn{
  width:44px;
  height:44px;
  border-radius:999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.40);
  color: rgba(255,255,255,.95);
  display:grid;
  place-items:center;
  cursor:pointer;
  transition: transform .18s ease;
}
.post__btn:hover{transform: translateY(-1px)}

.post__caption{padding:12px 12px 14px; margin:0; color: rgba(20,18,20,.74); line-height:1.6}
.post__caption strong{color: rgba(20,18,20,.92)}
.post__caption .cap{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-right:8px;
  padding:4px 10px;
  border-radius:999px;
  border: 1px solid rgba(181,135,58,.28);
  background: rgba(181,135,58,.12);
  font-weight:900;
  letter-spacing:.02em;
}

@media (max-width: 980px){
  .feed{grid-template-columns: repeat(2, minmax(0, 1fr))}
}

@media (max-width: 640px){
  .page--gallery main{padding-top: 86px}
  .feed{grid-template-columns: 1fr}
  .post__media{aspect-ratio: 9 / 16}
}

/* Contact Page */
.page--contact main{padding-top: 96px}
.contact-hero{padding: 44px 0 18px}
.contact-actions{display:flex; gap:12px; flex-wrap:wrap}

.contact-page{display:grid; grid-template-columns: 1.02fr .98fr; gap:18px; align-items:start}
.contact-page__info h2{margin:0 0 8px; font-family: var(--font-display)}
.muted{color: rgba(20,18,20,.68); line-height:1.7}

.contact__form select{
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(20,18,20,.12);
  background: rgba(255,255,255,.86);
  padding: 0 12px;
  color: rgba(20,18,20,.84);
  font-family: var(--font-body);
}

.two{display:grid; grid-template-columns: 1fr 1fr; gap:12px}

.form-success{
  border-radius: 14px;
  border: 1px solid rgba(181,135,58,.28);
  background: linear-gradient(180deg, rgba(181,135,58,.16), rgba(255,255,255,.88));
  padding: 12px;
  color: rgba(20,18,20,.86);
  margin-bottom: 12px;
}
.form-error{
  border-radius: 14px;
  border: 1px solid rgba(190,60,60,.22);
  background: rgba(190,60,60,.08);
  padding: 12px;
  color: rgba(20,18,20,.86);
  margin-bottom: 12px;
}

@media (max-width: 980px){
  .contact-page{grid-template-columns: 1fr}
}

@media (max-width: 640px){
  .page--contact main{padding-top: 86px}
  .two{grid-template-columns: 1fr}
}

/* Quotes */
.quotes{display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap:12px}
.quote{
  margin:0;
  border-radius: var(--radius);
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(20,18,20,.12);
  padding: 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.quote blockquote{margin:0; font-family: var(--font-display); line-height:1.7; font-size: 18px}
.quote figcaption{margin-top:12px; color: rgba(20,18,20,.62)}

/* Contact */
.contact{display:grid; grid-template-columns: 1.1fr .9fr; gap:18px; align-items:start}
.contact .section__head{gap:10px}
.contact .section__title{font-size: clamp(24px, 2.8vw, 40px)}
.contact .section__lead{font-size: 15px; line-height:1.6}

.info-grid{display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap:12px; margin-top:16px}
.info{
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  border:  1px solid rgba(20,18,20,.12);
  padding: 14px;
  display:flex;
  flex-direction:column;
  gap:4px;
  min-height: 92px;
}
.info i{margin-right:10px}
.info__k{font-size:12px; letter-spacing:.12em; text-transform:uppercase; color: rgba(20,18,20,.58)}
.info__v{font-weight:700}

.contact__form{
  border-radius: var(--radius);
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(20,18,20,.12);
  padding: 18px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 30px 90px rgba(20,18,20,.12);
}
.contact__form h3{margin:0 0 14px; font-family: var(--font-display)}

label{display:grid; gap:8px; margin-bottom:12px}
label span{font-size:12px; letter-spacing:.12em; text-transform:uppercase; color: rgba(20,18,20,.58)}

input, textarea{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(20,18,20,.14);
  background: rgba(255,255,255,.92);
  color: var(--ink);
  padding: 12px 12px;
  outline:none;
  font-family: inherit;
}
input:focus, textarea:focus{border-color: rgba(181,135,58,.45); box-shadow: 0 0 0 4px rgba(181,135,58,.16)}

.form-note{margin:10px 0 0; color: rgba(20,18,20,.56); font-size:12px; line-height:1.6}

/* Footer */
.footer{
  padding: 56px 0 28px;
  border-top: 1px solid rgba(181,135,58,.24);
  background:
    radial-gradient(1200px 520px at 20% 0%, rgba(181,135,58,.12), rgba(255,255,255,0) 62%),
    radial-gradient(900px 420px at 90% 20%, rgba(210,176,106,.10), rgba(255,255,255,0) 60%),
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.70));
}

.footer__inner{display:grid; gap:18px}
.footer__top{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap:22px;
  align-items:start;
  padding: 18px;
  border-radius: 22px;
  background:
    radial-gradient(560px 260px at 22% 10%, rgba(181,135,58,.10), rgba(255,255,255,0) 60%),
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
  border: 1px solid rgba(20,18,20,.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 28px 90px rgba(20,18,20,.12);
}

.footer__brand img{height:88px; width:auto; filter: drop-shadow(0 16px 24px rgba(20,18,20,.14))}
.footer__brand p{margin:10px 0 0; color: rgba(20,18,20,.62); max-width:52ch; line-height:1.7}

.footer__chips{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
.footer-chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  height:42px;
  padding:0 14px;
  border-radius:999px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(20,18,20,.12);
  box-shadow: 0 16px 44px rgba(20,18,20,.10);
  font-weight:800;
  color: rgba(20,18,20,.78);
}
.footer-chip i{color: rgba(20,18,20,.72)}
.footer-chip:hover{transform: translateY(-1px)}

.footer__cols{display:grid; grid-template-columns: 1fr 1fr; gap:16px}
.footer__title{font-weight:900; letter-spacing:.02em; margin-bottom:10px}
.footer__col a{display:block; padding:7px 0; color: rgba(20,18,20,.74)}
.footer__col a i{margin-right:10px; width:18px; text-align:center; color: rgba(20,18,20,.72)}
.footer__col a:hover{color: rgba(20,18,20,.92)}
.footer__muted{color: rgba(20,18,20,.60); line-height:1.6; margin-top:8px}

.footer__bottom{
  display:flex;
  justify-content:center;
  text-align:center;
  color: rgba(20,18,20,.56);
  font-size:13px;
  padding-top:12px;
}

/* WhatsApp float */
.wa-float{
  position:fixed;
  right:18px;
  bottom:18px;
  height:54px;
  width:54px;
  border-radius: 18px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(181,135,58,.95), rgba(210,176,106,.92));
  color: #17120a;
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 30px 90px rgba(0,0,0,.40);
  z-index:250;
}
.wa-float__ring{
  position:absolute;
  inset:-10px;
  border-radius: 22px;
  border: 1px solid rgba(181,135,58,.35);
  filter: blur(.2px);
  animation: ringPulse 1.8s ease-in-out infinite;
  opacity:.8;
}
@keyframes ringPulse{
  0%,100%{transform: scale(.92); opacity:.35}
  50%{transform: scale(1.06); opacity:.75}
}

/* Reveal animations */
.reveal{opacity:0; transform: translateY(10px); transition: opacity .7s ease, transform .7s ease}
.reveal.is-visible{opacity:1; transform: translateY(0)}

/* Responsive */
@media (max-width: 980px){
  .hero__badges{grid-template-columns: 1fr;}
  .cards{grid-template-columns: repeat(2, minmax(0, 1fr))}
  .split{grid-template-columns: 1fr}
  .video-split{grid-template-columns: 1fr}
  .founder{grid-template-columns: 1fr}
  .quotes{grid-template-columns: 1fr}
  .contact{grid-template-columns: 1fr}
  .info-grid{grid-template-columns: 1fr}
  .footer__top{grid-template-columns: 1fr}
  .footer__cols{grid-template-columns: 1fr}
  .gallery img{height: 210px}
}

@media (max-width: 520px){
  .header__inner{padding:12px 0}
  .brand img{height:56px}
  .btn{height:44px}
  .icon-btn{height:44px; width:44px}
  .section{padding:70px 0}
  .contact__form{padding:16px}
  .contact .section__title{font-size: 26px}
  .info{min-height:auto}
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .loader__logo, .loader__orbit{animation:none}
  .reveal{transition:none}
  .wa-float__ring{animation:none}
}
