:root{
  /* Backgrounds */
  --bg: #f0f0f0;        
  --bg2: #dddddd;       

  /* Text */
  --text: #303030;      
  --muted: #8b8b8b;     
  --lightYellow: #e9ebcd;    

  /* Surfaces */
  --card: #eef0eb;      
  --border: rgba(47,53,45,.12);

  /* Effects */
  --shadow: 0 12px 20px rgba(47,53,45,.18);

  /* Accents */
  --accent: #8f9f6a;    
  --accent2: #5f6b46;   
    
    
}



*{ 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;
  background: radial-gradient(1200px 800px at 20% 0%, rgba(215,196,162,.08), transparent 60%),
              radial-gradient(1200px 800px at 80% 20%, rgba(255,255,255,.06), transparent 60%),
              var(--bg);
  color: var(--text);
}

a{ color:inherit; text-decoration:none; }
.muted{ color: var(--muted); }

.site-header{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgb(236, 236, 236);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap{
  max-width: 1180px;
  margin:0 auto;
  padding: 14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.brand-mark{ font-size: 18px; letter-spacing:.5px; font-weight:700; color: var(--muted);}
.brand-sub{ font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: var(--muted); }

.nav{
  display:flex;
  gap: 18px;
  align-items:center;
}
.nav-link{
  font-size: 17px;
  color: rgb(68, 68, 68);
  padding: 10px 10px;
  border-radius: 10px;
  transition: background .15s ease, color .15s ease;
}
.nav-link:hover{ background: rgba(255,255,255,.06); }
.nav-cta{
  border: 1px solid rgba(215,196,162,.35);
  background: rgba(215,196,162,.08);
}
.nav-cta:hover{ background: rgba(215,196,162,.14); }

.nav-toggle{
  display:none;
  width:44px; height:44px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width:18px; height:2px;
  background: rgba(255,255,255,.85);
  margin: 5px auto;
  border-radius: 2px;
}

/* Hero */
.hero{
  position:relative;
  min-height: 78vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  border-bottom: 1px solid var(--border);
}
.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  filter: contrast(1.05) saturate(1.05);
  transform: scale(1.02);
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,.55), rgba(0,0,0,.72)),
    radial-gradient(900px 400px at 20% 20%, rgba(215,196,162,.18), transparent 60%);
}
.hero-content{
  position:relative;
  z-index:2;
  max-width: 980px;
  padding: 84px 18px;
  text-align:left;
}
.hero-kicker{
  color: rgba(215,196,162,.95);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 14px;
}
.hero-title{
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.03;
  margin: 0 0 16px;
  letter-spacing: .3px;
  color: rgba(255, 255, 255, 0.856);
}
.hero-subtitle{
  max-width: 640px;
  font-size: 16px;
  line-height: 1.6;
  color: rgb(242, 243, 242);
  margin: 0 0 26px;
}
.hero-actions{ display:flex; gap: 12px; flex-wrap:wrap; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  letter-spacing:.2px;
  cursor:pointer;
}
.btn-primary{
  background: rgba(215, 195, 162, 0.795);
}

.btn-primary:hover{ 
  background: rgba(215, 195, 162, 0.568); 
}

.btn-secondary{
  background: rgba(255,255,255,.05);
}
.btn-secondary:hover{ 
  background: rgba(185, 190, 182, 0.651); 
}

.btn-ghost{
  background: rgba(215, 195, 162, 0.795);
}

.btn-ghost:hover{ 
  background: rgba(215, 195, 162, 0.568);
}

/* Sections */
.section{
  padding: 70px 18px;
}
.section-alt{
  background: linear-gradient(to bottom, rgba(255,255,255,.02), rgba(255,255,255,.00));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-inner{
  max-width: 1180px;
  margin: 0 auto;
}
.section-head h2{
  margin:0 0 10px;
  font-size: 28px;
  letter-spacing:.2px;
}
.section-head p{
  margin:0 0 24px;
  color: rgb(94, 93, 82);
  max-width: 820px;
  line-height: 1.6;
}

/* Portfolio */
.portfolio-controls{
  display:flex;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap:wrap;
}
.portfolio-controls input,
.portfolio-controls select{
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 14px;
  padding: 12px 12px;
  outline:none;
}
.portfolio-controls input{ min-width: 240px; flex: 1; }
.portfolio-controls select{ min-width: 200px; }

.portfolio-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.portfolio-card{
  background: rgb(235, 235, 235);
  
  border-radius: 8px;
  overflow:hidden;
  box-shadow: var(--shadow);
}
.portfolio-meta{
  padding: 12px 12px 14px;
}
.portfolio-title{ font-weight:700; margin-bottom: 4px; }
.portfolio-sub{ font-size: 13px; }

.ratio-16x9{
  position:relative;
  width:100%;
  padding-top: 56.25%;
  background: rgba(255, 255, 255, 0);
}
.ratio-16x9 iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}

.portfolio-skeleton,
.portfolio-empty{
  padding: 22px;
  border: 1px dashed rgba(255,255,255,.18);
  border-radius: 18px;
  color: rgba(243,243,244,.75);
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.card{
  background: rgba(255,255,255,.03);
  border-radius: 8px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.card h3{ margin: 0 0 8px; }
.card ul{
  margin: 14px 0 18px;
  padding-left: 18px;
  color: rgb(87, 87, 87);
}


.badge{
  display:inline-block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(215,196,162,.95);
  border: 1px solid rgba(215,196,162,.35);
  padding: 6px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

/* Team */
.team-grid{
  display:grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 16px;
}
.team-card{
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.avatar{
  width: 250px; 
  height: 220px;
  border-radius: 14px;
  background-size:cover;
  background-position:center;
  border: 1px solid rgba(255,255,255,.12);
  margin-bottom: 12px;
}

/* Contact */
.contact-form{
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  max-width: 900px;
}
.contact-form label{
  display:block;
  font-size: 13px;
  color: rgba(243,243,244,.85);
  margin-bottom: 12px;
}
.contact-form input,
.contact-form textarea{
  width:100%;
  margin-top: 8px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text);
  border-radius: 14px;
  padding: 12px 12px;
  outline:none;
}
.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-note{ margin-top: 10px; font-size: 12px; }

/* Footer */
.site-footer{
  border-top: 1px solid var(--border);
  padding: 34px 18px;
}
.footer-inner{
  max-width: 1180px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  gap: 18px;
  flex-wrap:wrap;
}
.footer-brand{ font-weight: 800; margin-bottom: 6px; }
.footer-right{ display:flex; gap: 16px; flex-wrap:wrap; color: rgba(243,243,244,.86); }
.footer-bottom{
  max-width: 1180px;
  margin: 18px auto 0;
  color: rgba(243,243,244,.65);
  font-size: 12px;
}

/* Responsive */
@media (max-width: 980px){
  .portfolio-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards{ grid-template-columns: 1fr; }
  .team-grid{ grid-template-columns: 1fr; }
  .hero-content{ padding: 68px 18px; }
}
@media (max-width: 760px){
  .nav-toggle{ display:block; }
  .nav{
    position:absolute;
    right: 18px;
    top: 66px;
    width: min(320px, calc(100vw - 36px));
    background: rgba(10,10,12,.92);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 10px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap: 6px;
    box-shadow: var(--shadow);
  }
  .nav.open{ display:flex; }
  .nav-link{ padding: 12px 12px; }
  .form-row{ grid-template-columns: 1fr; }
  .portfolio-grid{ grid-template-columns: 1fr; }
}
