/* assets/style.css (SHARP / CLEAN / COLD) */

/* HARD RESET: no rounding anywhere */
*, *::before, *::after { border-radius: 0 !important; }

:root{
  --bg:#0b0c0f;
  --text:#f5f7fb;
  --muted:#9aa3af;

  --line:rgba(255,255,255,.14);
  --line2:rgba(255,255,255,.08);

  --accent:#ff3b1f;
  --accent2:#ff6a00;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at 18% 10%, rgba(255,59,31,.07), transparent 45%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.020) 0 1px, transparent 1px 92px),
    #0b0c0f;
  color: var(--text);
  letter-spacing: .1px;
}

a{ color:inherit; text-decoration:none; }
img{
  height: auto;
  max-width: 100%;
  display: block;
}

/* Topbar */
.topbar{
  position:sticky; top:0; z-index:50;
  display:flex; align-items:center; justify-content:space-between;

  height:72px;
  min-height:72px;
  overflow:hidden;

  padding:14px 18px;
  background: rgba(11,12,15,.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line2);
}

.brand{
  display:flex;
  align-items:center;
  height:100%;
}

.brand-logo-wrap{
  width: 180px;   /* clamp width (adjust to taste) */
  height: 58px;   /* clamp height */
  display:flex;
  align-items:center;
}

.brand-logo{
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain;
}

.brand{ display:flex; align-items:center; gap:10px; }
.brand-mark{ filter: drop-shadow(0 10px 18px rgba(255,59,31,.18)); }
.brand-name{
  font-weight:900;
  letter-spacing:1.2px;
  text-transform:uppercase;
  font-size:13px;
}

.nav{ display:flex; gap:34px; align-items:center; }
.nav a{
  color: rgba(245,247,251,.82);
  font-weight:800;
  font-size:12px;
  letter-spacing:2.2px;
  text-transform:uppercase;
  padding:8px 0;
  position:relative;
  transition: color 200ms ease;
}
.nav a:hover{ color:#fff; }
.nav a:after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:100%;
  height:2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin:left;
  transition: transform 250ms ease;
}
.nav a:hover:after{ transform: scaleX(1);}

.nav a.active{
  color:#fff;
}

.nav a.active::after{
  transform: scaleX(1);
}

.nav-cta{
  padding:14px 30px;
  min-width: 150px;
  letter-spacing: 2px;
  text-align:center;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color:#0b0c0f !important;
  font-weight:950 !important;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 50px rgba(255,59,31,.18);
}

/* Mobile menu button */
.nav-toggle{
  display:none;
  width:44px; height:44px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  cursor:pointer;
  padding:0;
}
.nav-toggle span{
  display:block;
  height:2px;
  margin:7px 10px;
  background: rgba(255,255,255,.85);
}

/* Hero */
.hero{
  position:relative;
  min-height:92vh;
  display:flex;
  align-items:flex-end;
}
.hero-media{ position:absolute; inset:0; overflow:hidden; }
.hero-slider{ position:absolute; inset:0; }

.hero-slide{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 1600ms ease;
  filter: saturate(1.02) contrast(1.08);
}
.hero-slide.active{
  opacity:1;
  transform: scale(1.00);
}

.hero-vignette{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(11,12,15,.10) 0%, rgba(11,12,15,.86) 62%, rgba(11,12,15,.98) 100%),
    radial-gradient(1200px 700px at 18% 72%, rgba(255,59,31,.22), transparent 58%);
}

.hero-content{
  position:relative;
  width:min(1120px, 100%);
  margin:0 auto;
  padding: 92px 18px 46px;
}

.kicker{
  display:inline-flex;
  padding:8px 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  color: rgba(245,247,251,.86);
  font-weight:900;
  font-size:12px;
  letter-spacing:1.6px;
  text-transform:uppercase;
}

h1{
  margin:16px 0 10px;
  font-size: clamp(34px, 5.5vw, 62px);
  line-height: 1.02;
  letter-spacing: 1.2px;
  text-transform:uppercase;
}

.lead{
  margin:0;
  font-size: clamp(16px, 2.3vw, 20px);
  color: rgba(245,247,251,.82);
  max-width: 62ch;
  line-height: 1.55;
}

.hero-actions{
  display:flex; gap:12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 24px;
  border: 1px solid var(--line);
  font-weight: 950;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-size: 12px;
  cursor:pointer;
  background: rgba(255,255,255,.04);
  color: rgba(245,247,251,.9);
}
.btn.primary{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-color: transparent;
  color:#0b0c0f;
  box-shadow: 0 18px 50px rgba(255,59,31,.18);
}
.btn.ghost{ background: rgba(255,255,255,.03); }
.btn.full{ width:100%; }

.trust-row{
  margin-top: 22px;
  display:flex; gap:10px; flex-wrap:wrap;
}
.trust-pill{
  padding: 10px 12px;
  background: rgba(255,255,255,.03);
  border:1px solid var(--line);
  color: rgba(245,247,251,.80);
  font-weight:900;
  font-size:12px;
  letter-spacing:1.4px;
  text-transform:uppercase;
}

/* Sections */
.section{ padding: 82px 18px; }
.section.alt{
  background: rgba(255,255,255,.02);
  border-top: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2);
}
.section-inner{ width: min(1120px, 100%); margin: 0 auto; }
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between;
  gap:20px; flex-wrap:wrap;
}
h2{
  margin:0 0 10px;
  font-size: clamp(26px, 3.4vw, 40px);
  letter-spacing: 1px;
  text-transform:uppercase;
}
.muted{ color: rgba(245,247,251,.62); }
.tiny{ font-size:12px; }

.split{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items:start;
}

/* Lists */
.ticks{ list-style:none; padding:0; margin:18px 0 0; }
.ticks li{
  padding-left: 28px;
  margin: 12px 0;
  position:relative;
  color: rgba(245,247,251,.82);
  line-height:1.55;
}
.ticks li:before{
  content:"✓";
  position:absolute;
  left:0; top:1px;
  width:18px; height:18px;
  display:grid; place-items:center;
  background: rgba(255,59,31,.10);
  border: 1px solid rgba(255,59,31,.35);
  color: #ff8a7a;
  font-weight:900;
  font-size:12px;
}

/* Cards / Panels */
.card{
  background: rgba(255,255,255,.035);
  border: 1px solid var(--line);
  box-shadow: none;
  overflow:hidden;
}
.card.dark{ background: rgba(0,0,0,.22); }
.card-title{
  padding: 18px 18px 10px;
  font-weight:950;
  letter-spacing: 1.6px;
  text-transform:uppercase;
  font-size: 12px;
  color: rgba(245,247,251,.88);
}
.card-body{ padding: 0 18px 18px; }

.mini-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.mini{
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  padding: 12px;
}
.mini-top{ font-size:18px; }
.mini-title{
  font-weight:950;
  margin-top:6px;
  letter-spacing: 1.2px;
  text-transform:uppercase;
  font-size: 12px;
}
.mini-sub{ color: rgba(245,247,251,.58); font-size:12px; margin-top:3px; }

/* Services */
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 18px;
}
.service{
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  padding: 18px;
}
.service-icon{ font-size:22px; }
.service h3{
  margin:12px 0 8px;
  font-weight:950;
  letter-spacing: 1.4px;
  text-transform:uppercase;
  font-size: 13px;
}
.service p{
  margin:0;
  color: rgba(245,247,251,.70);
  line-height:1.55;
}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 10px;
  margin-top: 16px;
}
.gi{
  grid-column: span 4;
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  position:relative;
  aspect-ratio: 4/3;
}
.gi img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.02);
  transition: transform 450ms ease, filter 450ms ease;
  filter: saturate(1.02) contrast(1.06);
}
.gi:hover img{
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.10);
}
.gi:after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.26));
}

/* CTA */
.cta{ padding: 0 18px 90px; }
.cta-inner{
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 26px;
  background:
    radial-gradient(900px 520px at 14% 50%, rgba(255,59,31,.20), transparent 60%),
    rgba(255,255,255,.03);
  border: 1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.cta-kicker{
  color: rgba(245,247,251,.62);
  font-weight:950;
  letter-spacing: 1.6px;
  text-transform:uppercase;
  font-size: 12px;
}
.cta-title{
  font-size:22px;
  font-weight:950;
  margin-top:8px;
  letter-spacing: 1px;
  text-transform:uppercase;
}
.cta-sub{
  color: rgba(245,247,251,.66);
  margin-top:6px;
  line-height: 1.55;
}

/* Contact */
.contact h1{ margin-top:0; }

.info-cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.info-card{
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  padding: 12px;
}
.info-label{
  color: rgba(245,247,251,.58);
  font-size:12px;
  font-weight:950;
  letter-spacing: 1.6px;
  text-transform:uppercase;
}
.info-value{
  margin-top:8px;
  font-weight:950;
  letter-spacing: 1.2px;
  text-transform:uppercase;
  font-size: 12px;
}

.form-card{ padding-bottom:18px; }
.form{ padding: 0 18px 0; }
label{ display:block; margin: 10px 0; }
label span{
  display:block; margin-bottom:6px;
  color: rgba(245,247,251,.68);
  font-weight:950;
  font-size:12px;
  letter-spacing: 1.6px;
  text-transform:uppercase;
}

/* Force square form controls even on Safari/iOS */
button, input, select, textarea{
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0 !important;
}

input, select, textarea{
  width:100%;
  padding: 12px 12px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,.22);
  color: var(--text);
  outline:none;
  font-size: 14px;
}
input::placeholder, textarea::placeholder{ color: rgba(245,247,251,.45); }
input:focus, select:focus, textarea:focus{
  border-color: rgba(255,59,31,.65);
  box-shadow: 0 0 0 4px rgba(255,59,31,.14);
}

.notice{
  margin-top:16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  font-weight:950;
  letter-spacing: 1.6px;
  text-transform:uppercase;
  font-size: 12px;
}
.notice.success{
  border-color: rgba(90, 210, 120, .45);
  background: rgba(90, 210, 120, .10);
}
.notice.error{
  border-color: rgba(255, 70, 70, .50);
  background: rgba(255, 70, 70, .10);
}

/* Footer */
.footer{
  border-top: 1px solid var(--line2);
  padding: 34px 18px 18px;
  background: rgba(0,0,0,.22);
}
.footer-inner{
  width: min(1120px, 100%);
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 14px;
  align-items:start;
}
.footer-title{
  font-weight:950;
  letter-spacing: 1.6px;
  text-transform:uppercase;
  font-size: 12px;
}
.footer-sub{ color: rgba(245,247,251,.58); margin-top:6px; }
.footer-links{ display:flex; flex-direction:column; gap:10px; }
.footer-links a{
  color: rgba(245,247,251,.80);
  font-weight:950;
  letter-spacing: 1.4px;
  text-transform:uppercase;
  font-size: 12px;
}
.footer-meta{ color: rgba(245,247,251,.62); line-height: 1.7; }
.footer-meta a{ color: rgba(245,247,251,.82); font-weight:950; }
.footer-bottom{
  width: min(1120px, 100%);
  margin: 18px auto 0;
  color: rgba(245,247,251,.50);
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform:uppercase;
}

/* Responsive */
@media (max-width: 920px){
  .split{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .gi{ grid-column: span 6; }
  .info-cards{ grid-template-columns: 1fr; }
  .footer-inner{ grid-template-columns: 1fr; }

  .nav{ display:none; }
  .nav-toggle{ display:block; }

  .nav.open{
    display:flex;
    position:absolute;
    top:64px; right:18px;
    flex-direction:column;
    gap: 10px;
    padding: 14px;
    background: rgba(11,12,15,.96);
    border: 1px solid var(--line);
    min-width: 220px;
  }
}

@media (max-width: 560px){
  .hero-content{ padding-top: 74px; }
  .gi{ grid-column: span 12; }
}
