:root{
  --bg:#0f0f10;
  --paper:#ffffff;
  --paper-2:#f6f6f7;
  --ink:#101114;
  --muted:#6b6f76;
  --line:rgba(16,17,20,.12);
  --warm-light:#F8EFE6;
  --radius:18px;
}
html{scroll-behavior:smooth;}
body{
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color: var(--ink);
  background: var(--paper);
}
a{ text-decoration:none; }
.container-xl{ max-width:1120px; }

/* Header */
.site-header{ position:sticky; top:0; z-index:1030; background:var(--bg); }
.site-header .navbar{ padding:14px 0; }
.brandmark{ display:flex; align-items:center; gap:10px; color:var(--warm-light); letter-spacing:.12em; font-weight:700;}
.brandmark img{ width:auto; height:50px; }
.nav-link{ color:rgba(248,239,230,.78)!important; font-size:14px; }
.nav-link:hover{ color:var(--warm-light)!important; }
.nav-link.active{ color:var(--warm-light)!important; }

.btn-pill{ border-radius:999px!important; padding:10px 14px!important; font-weight:600; font-size:14px; }
.btn-light{
  background:var(--warm-light)!important;
  border-color:var(--warm-light)!important;
  color:var(--ink)!important;
}
.btn-light:hover,
.btn-light:focus,
.btn-light:active{
  background:#efe2d5!important;
  border-color:#efe2d5!important;
  color:var(--ink)!important;
}
.btn-ghost{ border:1px solid rgba(255,255,255,.25)!important; color:var(--warm-light)!important; background:transparent!important; }
.btn-ghost:hover{ border-color:rgba(255,255,255,.4)!important; }

/* Sections */
.section{ padding:86px 0; }
.section--alt{ background:var(--paper-2); }
.section-label{
  display:inline-flex; align-items:center; gap:8px;
  font-size:13px; color:var(--muted);
  letter-spacing:.06em; text-transform:uppercase;
}
.pill{
  display:inline-flex; align-items:center;
  padding:6px 10px; border-radius:999px;
  background:#1a1b1e; color:#d7d7da; font-size:13px;
  border:1px solid rgba(255,255,255,.12);
}

/* Jet-like spaced headline */
.hero-title{
  font-size:46px;
  line-height:1.15;
  margin-bottom: 1.5rem;
  /*! letter-spacing:.06em; */
  /*! word-spacing:.25em; */
}
@media (max-width:991px){ .hero-title{ font-size:38px; } }
.lead-muted{ color:var(--muted); max-width:50ch; }

/* Media */
.hero-media img{ width:100%; height:auto; border-radius:calc(var(--radius) + 6px); }
.strip img{
  width:100%; height:150px; object-fit:cover;
  border-radius:calc(var(--radius) + 6px);
}
@media (max-width:991px){ .strip img{ height:120px; } }

/* Stats */
.stat{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  padding:16px;
  height:100%;
}
.stat .num{ font-size:28px; font-weight:750; letter-spacing:.02em; }
.stat .lbl{ color:var(--muted); font-size:14px; }

/* Services tabs */
.service-card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  background:#fff;
}
.service-card img{ width:100%; height:240px; object-fit:cover; }
.service-card .body{ padding:16px; }
.service-card .body h3{ margin:0 0 6px; font-size:16px; }
.service-card .body p{ margin:0; color:var(--muted); line-height:1.6; font-size:14px; }

.service-nav .nav-link{
  color:var(--ink)!important;
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px!important;
  padding:10px 12px!important;
  font-weight:650;
  font-size:14px;
  margin-bottom:10px;
}
.service-nav .nav-link.active{
  background:var(--bg)!important;
  color:var(--warm-light)!important;
  border-color:rgba(255,255,255,.12)!important;
}

/* Work cards */
.work-card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  background:#fff;
  height:100%;
}
.work-card img{ width:100%; height:210px; object-fit:cover; }
.work-card .card-body{ padding:14px; }
.work-card h3{ font-size:16px; margin:0 0 6px; }
.work-card p{ color:var(--muted); margin:0; font-size:14px; line-height:1.5; }

/* Quotes */
.quote{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  padding:18px;
}
.quote blockquote{ margin:0 0 10px; font-size:15px; line-height:1.6; color:#2a2c31; }
.quote figcaption{ color:var(--muted); font-size:14px; }

/* Accordions */
.accordion.portery-acc{
  --bs-accordion-border-color: var(--line);
  --bs-accordion-border-radius: var(--radius);
  --bs-accordion-btn-padding-x: 16px;
  --bs-accordion-btn-padding-y: 16px;
  --bs-accordion-body-padding-x: 16px;
  --bs-accordion-body-padding-y: 16px;
  --bs-accordion-active-bg: #fff;
  --bs-accordion-btn-bg: #fff;
  --bs-accordion-btn-color: var(--ink);
  --bs-accordion-btn-focus-box-shadow: none;
}
.accordion.portery-acc .accordion-button{ font-weight:650; }
.accordion.portery-acc .accordion-body{ color:var(--muted); line-height:1.6; }

/* Form */
.form-card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:#fff;
  padding:18px;
}
.form-text{ color:var(--muted)!important; }
.contact-hp{
  position:absolute!important;
  left:-9999px!important;
  width:1px!important;
  height:1px!important;
  overflow:hidden!important;
}
.form-feedback{
  border-radius:12px;
  padding:12px 14px;
  font-size:14px;
  line-height:1.5;
}
.form-feedback--success{
  background:rgba(45, 125, 76, .10);
  border:1px solid rgba(45, 125, 76, .24);
  color:#245c39;
}
.form-feedback--error{
  background:rgba(160, 34, 34, .08);
  border:1px solid rgba(160, 34, 34, .18);
  color:#8f1f1f;
}

/* Footer */
.site-footer{ background:var(--bg); color:var(--warm-light); padding:22px 0; }
.site-footer a{ color:rgba(248,239,230,.85); }
.site-footer a:hover{ color:var(--warm-light); }

.rounded-xl{ border-radius:var(--radius)!important; }

/* === HERO v2 + MARQUEE + FADE-IN (injected) === */
:root{
  --header-h: 72px; /* updated by JS */
}

.site-header{
  position: fixed;
  left:0; right:0;
  background: rgba(0,0,0,.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* keep content visible under fixed header */
body{
  padding-top: var(--header-h);
}

/* HERO: full viewport like the screenshot */
.hero{
  position: relative;
  height: 100vh;
  background: var(--bg);
  color:var(--warm-light);
  overflow:hidden;
}
.hero .container-xl{ height:100%; }
.hero__row{ height:100%; }

.hero__content{
  position: relative;
  z-index: 2;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding: 40px 0;
}
.hero__content .lead-muted{ color: rgba(248,239,230,.72); }

/* Right-half visual sits behind header and fills the screen height */
.hero__visual{
  position:absolute;
  top:0; right:0; bottom:0;
  width:50%;
  z-index:1;
}
.hero__visual img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:0;
}
.hero__visual::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(90deg,
    rgba(15,15,16,1) 0%,
    rgba(15,15,16,.65) 28%,
    rgba(15,15,16,.20) 60%,
    rgba(15,15,16,.05) 100%);
}

/* Desktop: text on left half */
@media (min-width: 1400px){
  .hero__row.row {margin-left: calc(-4 * var(--bs-gutter-x)); }
}

@media (min-width: 992px){
  .hero__content{ width:50%; padding-right:28px; }
}

/* Mobile: image becomes background for whole hero, darker for readability */
@media (max-width: 991px){
  .hero{
    height:auto;
    min-height:100svh;
    overflow:visible;
  }
  .hero .container-xl,
  .hero__row{
    height:auto;
    min-height:100%;
  }
  .hero__visual{
    left:0;
    width:100%;
    overflow:hidden;
  }
  .hero__visual img{
    filter: brightness(1);
    transform: scale(1.02);
  }
  .hero__visual::after{
    background: linear-gradient(180deg,
      rgba(15,15,16,.40) 0%,
      rgba(15,15,16,.70) 45%,
      rgba(15,15,16,.62) 100%);
  }
  .hero__content{
    width:100%;
    padding: 48px 10px 56px;
    justify-content:flex-start;
  }
  .hero-title{
    font-size:clamp(30px, 8vw, 38px);
    line-height:1.08;
    word-spacing:.14em;
  }
}


.hero__content .pill{ align-self:flex-start; }
/* Fade-in on load */
.fade-in{
  opacity:0;
  transform: translateY(10px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-in--slow{ transition-duration:1.1s; }
.fade-in--delay1{ transition-delay:.15s; }
.fade-in--delay2{ transition-delay:.30s; }
.fade-in--delay3{ transition-delay:.45s; }
body.is-loaded .fade-in{ opacity:1; transform: translateY(0); }

/* About marquee (left-to-right) full width */
.marquee{
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 8px 0;
}
.marquee::before, .marquee::after{
  content:"";
  position:absolute; top:0; bottom:0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before{
  left: 0;
  background: linear-gradient(90deg, var(--paper) 0%, rgba(255,255,255,0) 100%);
}
.marquee::after{
  right: 0;
  background: linear-gradient(270deg, var(--paper) 0%, rgba(255,255,255,0) 100%);
}
.marquee__track{
  display:flex;
  gap: 18px;
  width: max-content;
  height: 400px;
  animation: marquee-right 34s linear infinite;
}
.marquee:hover .marquee__track{ animation-play-state: paused; }

@keyframes marquee-right{
  0%   { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}
  100% { transform: translateX(0%); }
}
.marquee__img{
  width: 320px;
  height: 220px;
  object-fit: cover;
  border-radius: calc(var(--radius) + 6px);
}
@media (max-width: 991px){
  .marquee__track{ height:auto; }
  .marquee__img{ width: 240px; height: 170px; }
  .marquee::before, .marquee::after{ width: 44px; }
}

/* === TESTIMONIALS marquee (injected) === */
.testimonials-wrap{ position:relative; overflow:hidden; width:100%; padding: 6px 0 2px; }
.testimonials-wrap::before, .testimonials-wrap::after{
  content:""; position:absolute; top:0; bottom:0; width: 90px; z-index:3; pointer-events:none;
}
.testimonials-wrap::before{ left:0; background: linear-gradient(90deg, var(--paper-2) 0%, rgba(246,246,247,0) 100%); }
.testimonials-wrap::after{ right:0; background: linear-gradient(270deg, var(--paper-2) 0%, rgba(246,246,247,0) 100%); }

.testimonials-row{ display:flex; gap:16px; width:max-content; padding: 10px 0; }
.testimonials-row--top{ animation: tmarquee-left 42s linear infinite; }
.testimonials-row--bot{ animation: tmarquee-right 46s linear infinite; }

.testimonials-wrap:hover .testimonials-row{ animation-play-state: paused; }

@keyframes tmarquee-left{
  0%   { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}
@keyframes tmarquee-right{
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0%); }
}

.tcard{
  width: 320px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 16px;
}
.tcard--tint{ background: #e9ecf1; }
.tstars{ letter-spacing:2px; font-size:12px; color: #111; opacity:.9; margin-bottom:10px; }
.ttext{ color: rgba(16,17,20,.72); font-size:14px; line-height:1.6; margin: 0 0 14px; }
.twho{ display:flex; align-items:center; gap:10px; color: rgba(16,17,20,.75); font-size:14px; }
.tavatar{ width:26px; height:26px; border-radius:999px; background:#111; display:inline-block; opacity:.85; }
.tname{ font-weight:650; color: rgba(16,17,20,.9); }

@media (max-width: 991px){
  .tcard{ width: 270px; }
  .testimonials-wrap::before, .testimonials-wrap::after{ width: 44px; }
}

/* === MARQUEE full-bleed override (injected) === */
/* Make the About image tape span the entire viewport width, not the text container */
.marquee {
  width: 100vw;
  max-height: 400px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
/* Always move (do not pause on hover) */
.marquee:hover .marquee__track {
  animation-play-state: running;
}
/* Optional: reduce edge fade so images look "full bleed" */
.marquee::before, .marquee::after {
  width: 60px;
}
@media (max-width: 991px){
  .marquee::before, .marquee::after{ width: 36px; }
}

/* === TESTIMONIALS full-bleed override (injected) === */
.testimonials-wrap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
/* Always move (do not pause on hover) */
.testimonials-wrap:hover .testimonials-row {
  animation-play-state: running;
}
