:root{
  --bg:#050505;
  --panel:#0b0b0b;
  --text:#f5f5f5;
  --muted:#bdbdbd;
  --line:rgba(245,245,245,.12);
  --accent:#ffffff;
  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius:18px;
  --max:1180px;
  --topbar-h:150px;
  --lux:#d8c08a;
}


*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1000px 500px at 15% -10%, rgba(255,255,255,.08), transparent 60%),
              radial-gradient(900px 700px at 85% 0%, rgba(255,255,255,.06), transparent 55%),
              var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{color:var(--text); text-decoration:none}
a:hover{opacity:.9}

.container{max-width:var(--max); margin:0 auto; padding:0 22px}

.topbar{
  position:fixed; inset:0 0 auto 0;
  background:rgba(5,5,5,.55);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
  z-index:1000;
  transition: transform .35s ease, background .35s ease;
}
.topbar--hidden{transform: translateY(-110%)}
.topbar--solid{background:rgba(5,5,5,.78)}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  height:var(--topbar-h);
}
.brand{
  display:flex; align-items:center; gap:12px;
}
.brand img{height:130px; width:auto; border-radius:14px; transition:height .25s ease, filter .25s ease; filter: drop-shadow(0 0 10px rgba(255,255,255,.12));}

.topbar.topbar--solid .brand img{height:104px;}
.brand .name{font-weight:650; letter-spacing:.6px; text-transform:uppercase; font-size:14px; opacity:.95}
.navlinks{
  display:flex; gap:18px; align-items:center;
}
.navlinks a{
  font-size:13px; letter-spacing:.18em; text-transform:uppercase;
  color:rgba(245,245,245,.88);
  padding:10px 12px; border-radius:999px;
  font-weight:750;
}
.navlinks a:hover{background:rgba(255,255,255,.06); color:var(--text)}
.navcta{
  display:flex; align-items:center; gap:10px;
}
.pill{
  display:inline-flex; align-items:center; gap:10px;
  border:1px solid var(--line);
  padding:8px 10px; border-radius:999px;
  color:var(--muted);
  font-size:12px;
}
.langbtn{
  border:none; cursor:pointer;
  background:rgba(255,255,255,.06);
  color:var(--text);
  padding:10px 12px;
  border-radius:999px;
  font-weight:600;
  letter-spacing:.4px;
}
.langbtn:hover{background:rgba(255,255,255,.10)}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.08);
  color:var(--text);
  font-weight:650;
  letter-spacing:.2px;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}
.btn:hover{background:rgba(255,255,255,.12)}
.btn.primary{
  background:rgba(255,255,255,.95);
  color:#050505;
  border-color:rgba(255,255,255,.85);
}
.btn.primary:hover{background:#ffffff}
.btn.ghost{
  background:transparent;
  border-color:rgba(255,255,255,.18);
  color:var(--text);
  box-shadow:none;
}
.btn.small{padding:10px 14px; font-size:13px}

.hero{
  padding:0;
  position:relative;
}

.hero-media{
  width:100vw;
  margin-left:calc(50% - 50vw);
  height:calc(100vh - var(--topbar-h));
  margin-top:var(--topbar-h);
  overflow:hidden;
  background:#000;
  position:relative;
}
.hero-media::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.70) 70%, rgba(0,0,0,.92));
  pointer-events:none;
}
.hero-media img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  filter: contrast(1.08) saturate(1.05);
}
.hero-grid{
  display:grid; grid-template-columns: 1.15fr .85fr;
  gap:34px;
  align-items:center;
}
.hero-card{
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border:1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:30px;
}
.hero-card--overlay{
  position:absolute;
  left:50%;
  transform: translateX(-50%);
  top: calc(var(--topbar-h) + 8vh);
  width:min(var(--max), calc(100% - 44px));
  backdrop-filter: blur(10px);
}

.kicker{
  display:inline-flex; align-items:center; gap:10px;
  color:var(--muted);
  font-size:12px; letter-spacing:.32em; text-transform:uppercase;
}
.kicker .dot{width:7px;height:7px;border-radius:50%;background:var(--lux)}
h1{
  margin:14px 0 10px;
  font-size:42px;
  line-height:1.08;
  letter-spacing:-.02em;
}
.sub{
  margin:0;
  color:var(--muted);
  font-size:16px;
  max-width:56ch;
}
.actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:20px}

.hero-side{
  display:flex; flex-direction:column; gap:14px;
}
.logo-panel{
  background: #000;
  border:1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:22px;
  display:flex; align-items:center; justify-content:center;
  min-height:240px;
}
.logo-panel img{max-width:100%; height:auto; border-radius:14px}
.statrow{
  display:grid; grid-template-columns:1fr 1fr;
  gap:14px;
}
.stat{
  background:rgba(255,255,255,.05);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
}
.stat .n{font-size:22px; font-weight:750}
.stat .l{color:var(--muted); font-size:12px; margin-top:4px}

section{
  padding:64px 0;
}
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:22px;
  margin-bottom:22px;
}
.section-head h2{
  margin:0;
  font-size:24px;
  letter-spacing:-.01em;
}
.section-head p{margin:0; color:var(--muted); max-width:65ch}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.card{
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:20px;
}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:var(--muted); font-size:14px}
.badge{
  display:inline-flex; align-items:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  color:var(--muted);
  font-size:12px;
  margin-bottom:10px;
}
.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}
.list{
  margin:12px 0 0;
  padding:0;
  list-style:none;
}
.list li{
  display:flex; gap:10px;
  padding:10px 0;
  border-bottom:1px solid var(--line);
  color:var(--muted);
}
.list li:last-child{border-bottom:none}
.tick{
  width:18px; height:18px; border-radius:6px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  display:inline-flex; align-items:center; justify-content:center;
  color:var(--text);
  flex:0 0 auto;
  margin-top:2px;
}

.gallery{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
}
.gallery .big{
  min-height:320px;
  background: linear-gradient(135deg, rgba(255,255,255,.10), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:22px;
  position:relative;
  overflow:hidden;
}
.gallery .big:before{
  content:"";
  position:absolute; inset:-40px -40px auto auto;
  width:220px; height:220px;
  background: radial-gradient(circle at center, rgba(255,255,255,.18), transparent 65%);
  transform: rotate(20deg);
}
.gallery .big h3{position:relative; margin:0 0 6px}
.gallery .big p{position:relative; margin:0; color:var(--muted)}
.gallery .side{
  display:grid; gap:14px;
}
.embed{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  background:rgba(0,0,0,.35);
  min-height:320px;
}
.embed .embed-inner{
  padding:22px;
}
.embed a.btn{margin-top:12px}

.contact{
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.contact-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:16px;
  align-items:start;
}
.form{
  display:grid; gap:12px;
}
.input, textarea{
  width:100%;
  padding:12px 14px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.35);
  color:var(--text);
  outline:none;
}
textarea{min-height:140px; resize:vertical}
.input:focus, textarea:focus{border-color: rgba(255,255,255,.32)}
.smallmuted{color:var(--muted); font-size:12px}

.footer{
  padding:26px 0 40px;
  color:var(--muted);
  font-size:12px;
}
.footer .row{
  display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
  border-top:1px solid var(--line);
  padding-top:18px;
}
.footer a{color:var(--muted)}
.footer a:hover{color:var(--text)}

.mobile-toggle{
  display:none;
}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr; }
  .gallery{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
}
@media (max-width: 760px){
  :root{--topbar-h:102px}
  .brand img{height:82px}
  .topbar.topbar--solid .brand img{height:70px;}

  h1{font-size:34px}
  .navlinks{display:none}
  .mobile-toggle{display:inline-flex}
  .statrow{grid-template-columns:1fr 1fr}
  .grid3{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
}

/* Instagram strip (scroll) */
.ig-strip{
  display:flex;
  gap:12px;
  overflow:auto;
  padding:14px 2px 6px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling: touch;
}
.ig-strip::-webkit-scrollbar{height:8px}
.ig-strip::-webkit-scrollbar-thumb{background:rgba(255,255,255,.14); border-radius:999px}
.ig-tile{
  flex:0 0 auto;
  width:138px;
  height:138px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.16);
  background:
    radial-gradient(120px 120px at 20% 20%, rgba(216,192,138,.20), transparent 60%),
    radial-gradient(140px 140px at 80% 30%, rgba(255,255,255,.12), transparent 62%),
    rgba(255,255,255,.04);
  scroll-snap-align:start;
  position:relative;
  overflow:hidden;
}
.ig-tile:after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(255,255,255,.05), transparent 55%);
}
.ig-tile:hover{background:rgba(255,255,255,.06)}


/* ===== Truffle World - requested refinements (Jan 2026) ===== */

/* HERO overlay card: more compact + centered */
.hero-card--overlay{
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 760px;
  padding: 22px 24px;
}
.hero-card--overlay .kicker,
.hero-card--overlay h1,
.hero-card--overlay .sub,
.hero-card--overlay .actions{
  text-align: center;
  justify-content: center;
}
.hero-card--overlay h1{ margin-left:auto; margin-right:auto; }
.hero-card--overlay .actions{ gap:12px; flex-wrap:wrap; }

/* On small screens keep the card higher for better composition */
@media (max-width: 768px){
  .hero-card--overlay{
    top: calc(var(--topbar-h) + 14vh);
    transform: translateX(-50%);
    max-width: 92vw;
    padding: 18px 18px;
  }
}

/* Centered section heads */
.section-head--center{
  text-align:center;
  justify-content:center;
}
.section-head--center > div{
  margin: 0 auto;
}

/* About section centered */
#about .about-text{
  margin: 14px auto 0;
  max-width: 860px;
}
.title-with-flag{
  display:inline-flex;
  align-items:center;
  gap:10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  justify-content:center;
}
.flag-it{
  width: 22px;
  height: 14px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.18);
}

/* Contact: only form centered */
.contact-grid--single{
  grid-template-columns: 1fr !important;
}
#contact .contact-grid--single .card{
  max-width: 640px;
  margin: 0 auto;
}
#contact .card form{
  width:100%;
}

/* CONTENT section layout */
.content-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}
.content-media{
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  box-shadow: var(--shadow);
  min-height: 420px;
}
.content-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
@media (max-width: 900px){
  .content-grid{
    grid-template-columns: 1fr;
  }
  .content-media{
    min-height: 340px;
  }
}
