:root{
  --bg:#ffffff;
  --text:#0b0b0c;
  --muted:#60636b;
  --line:rgba(12,12,14,.10);
  --soft:#f6f6f7;
  --gold:#b08d57;
  --black:#0b0b0c;
  --shadow: 0 18px 50px rgba(10,10,12,.10);
  --shadow2: 0 10px 28px rgba(10,10,12,.08);
  --radius:18px;
  --radius2:26px;
  --max:1160px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  letter-spacing:.1px;
}
a{color:inherit;text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 22px}

.nav{
  position:sticky; top:0; z-index:60;
  background:rgba(255,255,255,.78);
  backdrop-filter:saturate(190%) blur(18px);
  border-bottom:1px solid var(--line);
}
.nav-inner{display:flex; align-items:center; justify-content:space-between; gap:18px; padding:14px 0}

.brand{display:flex; align-items:center; gap:12px; font-weight:900; letter-spacing:.3px}
.mark{
  width:36px;height:36px;border-radius:12px;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,.35), transparent 44%),
              linear-gradient(145deg, var(--black), #1a1a1e);
  position:relative; box-shadow: var(--shadow2);
}
.mark:after{
  content:""; position:absolute; inset:10px;
  border-radius:10px;
  border:1.5px solid rgba(176,141,87,.85);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.35);
}
.brand small{display:block; font-weight:750; color:var(--muted); letter-spacing:.4px}

.menu{display:flex; gap:10px; align-items:center; flex-wrap:wrap; justify-content:flex-end}
.menu a{padding:9px 11px; border-radius:999px; color:rgba(11,11,12,.72); font-weight:750; font-size:14px}
.menu a.active{color:var(--text); background:rgba(176,141,87,.10); border:1px solid rgba(176,141,87,.22)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:11px 14px; border-radius:999px;
  border:1px solid var(--line); background:#fff;
  font-weight:900; letter-spacing:.2px;
}
.btn.primary{
  color:#fff; border-color:transparent;
  background: linear-gradient(135deg, var(--black), #1a1a1e);
  position:relative;
}
.btn.primary:before{
  content:""; position:absolute; inset:-1px;
  border-radius:999px;
  background: linear-gradient(135deg, rgba(176,141,87,.95), rgba(176,141,87,.25));
  z-index:-1;
}
.btn.ghost{background:transparent; border-color:rgba(176,141,87,.30)}

.hamburger{
  display:none;
  width:44px;height:40px;border-radius:999px;
  border:1px solid var(--line); background:#fff;
  align-items:center; justify-content:center;
}
.hamburger span{width:18px;height:2px;background:var(--black); position:relative; display:block}
.hamburger span:before,.hamburger span:after{content:""; position:absolute; left:0; width:18px;height:2px;background:var(--black)}
.hamburger span:before{top:-6px}
.hamburger span:after{top:6px}

.mobile{display:none; padding:0 0 14px}
.mobile a{display:block; padding:10px 12px; border-radius:14px; color:rgba(11,11,12,.78); font-weight:800}
.mobile a.active{background:rgba(176,141,87,.10); border:1px solid rgba(176,141,87,.22)}

.hero{
  padding:64px 0 22px;
  background:
    radial-gradient(1200px 520px at 30% 0%, rgba(176,141,87,.18), transparent 58%),
    radial-gradient(900px 520px at 95% 10%, rgba(11,11,12,.10), transparent 55%);
  border-bottom:1px solid var(--line);
}
.hero-grid{display:grid; grid-template-columns: 1.25fr .75fr; gap:26px; align-items:start}
.kicker{display:inline-flex; align-items:center; gap:10px; font-size:12px; text-transform:uppercase; letter-spacing:1.2px; font-weight:950; color:rgba(11,11,12,.78)}
.kicker:before{content:""; width:28px; height:1px; background:linear-gradient(90deg, rgba(176,141,87,.95), rgba(176,141,87,.25))}
h1{font-size:48px; line-height:1.08; margin:14px 0 14px; letter-spacing:-.4px}
.lead{font-size:18px; color:var(--muted); margin:0 0 18px; max-width:62ch}

.badges{display:flex; flex-wrap:wrap; gap:10px; margin:16px 0 22px}
.badge{padding:8px 12px; border-radius:999px; background:rgba(11,11,12,.04); border:1px solid rgba(11,11,12,.06); color:rgba(11,11,12,.72); font-weight:850; font-size:13px}

.hero-media{
  border-radius: var(--radius2);
  border:1px solid rgba(11,11,12,.10);
  box-shadow: var(--shadow);
  overflow:hidden;
  background:
    radial-gradient(circle at 28% 26%, rgba(255,255,255,.55), transparent 46%),
    radial-gradient(circle at 72% 70%, rgba(255,255,255,.35), transparent 52%),
    linear-gradient(135deg, rgba(11,11,12,.10), rgba(176,141,87,.12));
  aspect-ratio: 4/5;
  position:relative;
}
.hero-media:after{
  content:"";
  position:absolute; left:18px; bottom:18px;
  font-weight:950; font-size:13px;
  color:rgba(11,11,12,.70);
  background:rgba(255,255,255,.78);
  border:1px solid rgba(11,11,12,.08);
  padding:8px 12px;
  border-radius:999px;
}
.hero-card{
  margin-top:14px;
  border-radius: var(--radius);
  border:1px solid rgba(11,11,12,.10);
  background:#fff;
  box-shadow: var(--shadow2);
  padding:18px;
}
.hero-card h3{margin:0 0 10px; font-size:16px}
.hero-card p{margin:0; color:var(--muted)}

.kpi{
  display:flex; align-items:baseline; gap:12px;
  padding:10px 12px; border-radius:14px;
  background:rgba(11,11,12,.03);
  border:1px solid rgba(11,11,12,.06);
}
.kpi .n{font-size:28px; font-weight:1000}
.kpi .t{color:rgba(11,11,12,.72); font-weight:850}

.section{padding:42px 0}
.section h2{font-size:30px; margin:0 0 10px; letter-spacing:-.2px}
.section .sub{color:var(--muted); margin:0 0 18px; max-width:76ch}

.grid{display:grid; gap:16px}
.grid.cols-3{grid-template-columns: repeat(3, 1fr)}
.grid.cols-2{grid-template-columns: repeat(2, 1fr)}
.card{
  border-radius: var(--radius);
  border:1px solid rgba(11,11,12,.10);
  background:#fff;
  padding:18px;
  box-shadow: 0 8px 22px rgba(10,10,12,.06);
}
.card h3{margin:0 0 8px}
.card p{margin:0; color:var(--muted)}

.band{
  background:
    radial-gradient(1200px 520px at 20% 20%, rgba(176,141,87,.16), transparent 60%),
    linear-gradient(#fbfbfb, #ffffff);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.gallery{display:grid; grid-template-columns: repeat(12, 1fr); gap:12px}
.tile{
  border-radius: var(--radius2);
  border:1px solid rgba(11,11,12,.10);
  box-shadow: var(--shadow2);
  overflow:hidden;
  background:
    radial-gradient(circle at 28% 26%, rgba(255,255,255,.55), transparent 46%),
    radial-gradient(circle at 72% 70%, rgba(255,255,255,.35), transparent 52%),
    linear-gradient(135deg, rgba(11,11,12,.10), rgba(176,141,87,.12));
  position:relative;
  min-height: 210px;
}
.tile span{
  position:absolute; left:16px; bottom:14px;
  font-weight:950; font-size:13px;
  color:rgba(11,11,12,.70);
  background:rgba(255,255,255,.78);
  border:1px solid rgba(11,11,12,.08);
  padding:8px 12px; border-radius:999px;
}
.tile.big{grid-column: span 7}
.tile.mid{grid-column: span 5}
.tile.small{grid-column: span 4}

.list{margin:0; padding-left:18px; color:var(--muted)}
.list li{margin:6px 0}
hr.sep{border:none;border-top:1px solid var(--line); margin:18px 0}

.table{
  width:100%; border-collapse:collapse;
  overflow:hidden;
  border-radius: var(--radius);
  border:1px solid rgba(11,11,12,.10);
  background:#fff;
  box-shadow: 0 8px 22px rgba(10,10,12,.06);
}
.table th, .table td{padding:12px 12px; border-bottom:1px solid var(--line); text-align:left}
.table th{background:rgba(11,11,12,.03); font-size:12px; letter-spacing:.9px; text-transform:uppercase; color:rgba(11,11,12,.65)}
.table tr:last-child td{border-bottom:none}

.form{display:grid; gap:12px}
input, textarea, select{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(11,11,12,.12);
  font:inherit;
  outline:none;
  background:#fff;
}
textarea{min-height:120px; resize:vertical}
input:focus, textarea:focus, select:focus{border-color:rgba(176,141,87,.55); box-shadow:0 0 0 5px rgba(176,141,87,.12)}
.note{font-size:13px; color:var(--muted)}

.footer{background:linear-gradient(#fff, #fbfbfb); border-top:1px solid var(--line); padding:26px 0 42px}
.pill{
  display:inline-flex; gap:8px; align-items:center;
  padding:9px 12px; border-radius:999px;
  background:rgba(11,11,12,.03);
  border:1px solid rgba(11,11,12,.06);
  color:rgba(11,11,12,.70);
  font-weight:850; font-size:13px;
}

@media (max-width: 980px){
  h1{font-size:38px}
  .hero-grid{grid-template-columns:1fr}
  .grid.cols-3{grid-template-columns:1fr}
  .grid.cols-2{grid-template-columns:1fr}
  .tile.big,.tile.mid,.tile.small{grid-column: span 12}
  .menu{display:none}
  .hamburger{display:flex}
  .mobile{display:block}
}


/* Image support */
.hero-media img{width:100%;height:100%;object-fit:cover;display:block}
.tile img{width:100%;height:100%;object-fit:cover;display:block;transform:scale(1.02)}
.tile:before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.35));
  pointer-events:none;
}
.tile span{z-index:2}


.brand img{height:40px;width:auto;display:block}
@media (max-width: 980px){.brand img{height:36px}}



/* --- Mobile polish (v2) --- */
html, body{max-width:100%; overflow-x:hidden;}
img{max-width:100%; height:auto;}

.nav-inner{flex-wrap:wrap}
.cta{display:flex; align-items:center; gap:10px}
.cta .btn{white-space:nowrap}

@media (max-width: 980px){
  .nav-inner{gap:10px; padding:12px 0}
  .brand{flex:1 1 auto}
  .cta{flex:0 0 auto}
  .cta .btn.ghost{display:none}
  .btn{padding:12px 14px}
  h1{font-size:34px}
  .lead{font-size:16px}
  .hero{padding:42px 0 18px}
  .hero-grid{gap:18px}
  .hero-card{padding:16px}
  .section{padding:34px 0}
  .container{padding:0 18px}
  .kpi{gap:10px}
  .kpi .n{font-size:24px}
  .gallery{gap:10px}
  .tile{min-height:180px}
  .table{display:block; overflow-x:auto; -webkit-overflow-scrolling:touch}
  .grid[style*="grid-template-columns: 1fr 1fr"]{grid-template-columns:1fr !important;}
  .grid[style*="grid-template-columns:1fr 1fr"]{grid-template-columns:1fr !important;}
}

@media (max-width: 420px){
  h1{font-size:30px}
  .badge{font-size:12px}
  .tile span{font-size:12px}
  .btn{width:100%}
  .cta{width:100%}
  .cta .btn.primary{flex:1}
}

.hero-media{max-height:520px}
@media (max-width:980px){.hero-media{max-height:420px}}

.site-logo{height:40px;width:auto;display:block}
@media (max-width:980px){.site-logo{height:34px}}
@media (max-width:420px){.site-logo{height:30px}}



/* --- Tablet & aspect-ratio polish (v3) --- */
@media (max-width: 1200px){
  :root{ --max: 1060px; }
  h1{font-size:44px}
}

@media (max-width: 1100px){
  /* Switch to hamburger a bit earlier for tablets */
  .menu{display:none}
  .hamburger{display:flex}
  .mobile{display:block}
}

@media (max-width: 1024px){
  h1{font-size:36px}
  .hero-grid{grid-template-columns: 1.1fr .9fr}
  .hero-media{aspect-ratio: 16/15}
  .tile{min-height:190px}
}

@media (max-width: 900px){
  .hero-grid{grid-template-columns: 1fr}
  .hero-media{aspect-ratio: 16/13}
}

@media (min-width: 1360px){
  /* Improve use of space on wide screens */
  .hero{padding:78px 0 26px}
  .section{padding:54px 0}
  .hero-media{aspect-ratio: 4/5}
}

/* Handle very wide / short viewports (e.g., iPad split view landscape) */
@media (max-height: 620px) and (max-width: 1024px){
  .hero{padding:28px 0 12px}
  .hero-media{max-height:320px}
}

/* Prevent long buttons / pills from overflowing */
.pill{max-width:100%; flex-wrap:wrap}



/* --- WhatsApp floating button --- */
.wa-float{
  position:fixed; right:18px; bottom:18px; z-index:9999;
  width:56px; height:56px; border-radius:999px;
  display:flex; align-items:center; justify-content:center;
  background:#25D366; color:#fff; text-decoration:none;
  box-shadow:0 10px 25px rgba(0,0,0,.22);
}
.wa-float:hover{ filter:brightness(0.95); }
.wa-float svg{ width:26px; height:26px; display:block; }
@media (max-width:420px){
  .wa-float{ right:14px; bottom:14px; width:54px; height:54px; }
}

/* --- Home hero actions --- */
.actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}
.lead{max-width:58ch}



/* --- Elite spacing & alignment polish (Step 5) --- */
.section-head{display:flex; flex-direction:column; gap:8px; margin-bottom:18px}
.section .sub{max-width:72ch}

/* Hero alignment: avoid tall right column creating blank left space */
.hero-grid{align-items:start}
.hero-media{max-height:520px; overflow:hidden}
@media (min-width: 1100px){
  .hero-media{aspect-ratio: 4/5}
}
@media (max-width: 1100px){
  .hero-media{max-height:none}
}

/* Cards: consistent paddings and links */
.card{padding:18px}
.card p{margin-top:8px}
.link{display:inline-block; margin-top:10px; font-weight:600; text-decoration:none}
.link:hover{text-decoration:underline}

/* Tables responsive: horizontal scroll on small screens */
.table-wrap{overflow:auto; -webkit-overflow-scrolling:touch; border-radius:16px}
table.table{min-width:720px}

/* Improve section spacing on tablets */
@media (max-width: 1024px){
  .section{padding:44px 0}
}

/* Avoid accidental huge gaps */
.grid{row-gap:16px}


/* Mini gallery on Home to prevent empty visual gaps on wide screens */
.mini-gallery{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.mini-tile{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow-soft);
  display: block;
  min-height: 160px;
}
.mini-tile img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mini-tile span{
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  font-weight: 650;
  font-size: 14px;
  color: var(--ink);
}
@media (max-width: 900px){
  .mini-gallery{grid-template-columns: 1fr; gap: 12px;}
  .mini-tile{min-height: 190px;}
}
