/* ==========================================================================
   MISTER CREATIVO — Design tokens
   ========================================================================== */
:root{
  --bg:            #131313;
  --bg-alt:        #1a1a1a;
  --surface:       #202020;
  --surface-2:     #252525;
  --border:        #383838;
  --text:          #ffffff;
  --text-muted:    #b9b9b9;
  --text-faint:    #808080;
  --accent:        #ffa100;
  --accent-dim:    #cc8100;
  --font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container:     1340px;
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     28px;
  --ease:          cubic-bezier(.22,.9,.32,1);
}

/* ==========================================================================
   Reset
   ========================================================================== */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--font);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
h1,h2,h3,h4,h5{ margin:0; font-weight:600; line-height:1.15; }
p{ margin:0; }
button{ font-family:inherit; cursor:pointer; }
hr{ border:none; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
}

:focus-visible{ outline:2px solid var(--accent); outline-offset:3px; }

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

.divider{ height:1px; background:var(--border); margin:22px 0; width:100%; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 28px;
  border-radius:100px;
  font-weight:600;
  font-size:14px;
  letter-spacing:.02em;
  white-space:nowrap;
  transition:transform .35s var(--ease), background .3s ease, color .3s ease, border-color .3s ease;
  border:1px solid transparent;
}
.btn i{ font-size:13px; transition:transform .3s ease; }
.btn:hover i{ transform:translateX(3px); }
.btn:hover{ transform:translateY(-2px); }

.btn-accent{ background:var(--accent); color:#1a1300; }
.btn-accent:hover{ background:#ffb733; }

.btn-outline{ background:transparent; color:var(--text); border-color:var(--border); }
.btn-outline:hover{ border-color:var(--accent); color:var(--accent); }

.btn-small{ padding:10px 20px; font-size:13px; }
.btn-large{ padding:19px 38px; font-size:15px; }

/* ==========================================================================
   Section head helpers
   ========================================================================== */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--accent);
  font-weight:600;
  font-size:13px;
  letter-spacing:.14em;
  margin-bottom:18px;
}
.eyebrow img{ width:20px; height:20px; object-fit:contain; }

.section-head{ margin-bottom:56px; }
.section-head-row{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:40px;
  flex-wrap:wrap;
  margin-bottom:56px;
}
.section-head-row h2{
  font-size:clamp(1.8rem, 3.2vw, 2.6rem);
  max-width:600px;
}
.section-head-row p{ color:var(--text-muted); max-width:420px; }
.accent{ color:var(--accent); }

/* ==========================================================================
   Scroll reveal
   ========================================================================== */
[data-reveal]{
  opacity:0;
  transition:opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay:var(--reveal-delay, 0ms);
}
[data-reveal="up"]{ transform:translateY(36px); }
[data-reveal="left"]{ transform:translateX(-36px); }
[data-reveal="right"]{ transform:translateX(36px); }
[data-reveal].in-view{ opacity:1; transform:translate(0,0); }

/* ==========================================================================
   Header
   ========================================================================== */
.page-progress{
  position:fixed; top:0; left:0; height:3px; width:0%;
  background:var(--accent); z-index:1000; transition:width .1s linear;
}

.site-header{
  position:fixed; top:0; left:0; right:0; z-index:900;
  padding:22px 0;
  transition:background .35s ease, padding .35s ease, box-shadow .35s ease;
}
.site-header.scrolled{
  background:rgba(19,19,19,.9);
  backdrop-filter:blur(10px);
  padding:14px 0;
  box-shadow:0 8px 30px rgba(0,0,0,.35);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; }

.logo{ font-size:19px; font-weight:800; letter-spacing:.02em; white-space:nowrap; }
.logo span{ color:var(--accent); }
.logo sup{ font-size:10px; color:var(--text-muted); }

.main-nav ul{ display:flex; gap:34px; }
.nav-link{ font-size:14px; font-weight:500; color:var(--text-muted); position:relative; padding:4px 0; transition:color .25s ease; }
.nav-link::after{
  content:''; position:absolute; left:0; bottom:-2px; width:0; height:2px; background:var(--accent);
  transition:width .3s var(--ease);
}
.nav-link:hover, .nav-link.active{ color:var(--text); }
.nav-link:hover::after, .nav-link.active::after{ width:100%; }

.header-cta{ flex-shrink:0; }

.nav-toggle{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:40px; height:40px; background:none; border:none; padding:0;
}
.nav-toggle span{ display:block; height:2px; width:100%; background:var(--text); border-radius:2px; transition:transform .3s ease, opacity .3s ease; }
.nav-toggle.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity:0; }
.nav-toggle.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position:relative;
  padding:170px 0 90px;
  background-size:cover;
  background-position:center;
  background-attachment:fixed;
  overflow:hidden;
}
.hero-overlay{
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,.75) 55%, var(--bg) 100%);
}
.hero-grid{
  position:relative; z-index:1;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:50px;
  align-items:center;
}

.hero-badge{
  display:flex; align-items:center; gap:16px;
  margin-bottom:34px;
}
.hero-badge-img{ width:60px; height:auto; }
.hero-badge-divider{ width:1px; height:34px; background:var(--border); }
.hero-badge p{ max-width:190px; font-size:13px; font-weight:600; letter-spacing:.03em; color:var(--text-muted); }

.hero-title{
  font-size:clamp(3rem, 7.2vw, 6rem);
  font-weight:800;
  letter-spacing:-.02em;
  margin-bottom:44px;
}

.hero-stats{ display:flex; align-items:center; gap:26px; flex-wrap:wrap; }
.stat{ display:flex; flex-direction:column; }
.stat-number, .stat-plus{ font-size:44px; font-weight:700; color:var(--text); line-height:1; }
.stat-plus{ color:var(--accent); }
.stat p{ margin-top:8px; font-size:12px; font-weight:600; letter-spacing:.1em; color:var(--text-muted); }
.stat-divider{ width:1px; height:44px; background:var(--border); }

.hero-right{ position:relative; }
.hero-image-wrap{
  border-radius:var(--radius-lg);
  overflow:hidden;
  aspect-ratio:4/5;
  background:var(--surface);
}
.hero-image{ width:100%; height:100%; object-fit:cover; }

.hero-copy{
  margin-top:26px;
  display:flex; flex-direction:column; gap:22px;
}
.hero-copy p{ color:var(--text-muted); max-width:360px; }
.hero-copy-actions{ display:flex; align-items:center; gap:26px; flex-wrap:wrap; }

.video-play{
  display:flex; align-items:center; gap:14px;
  background:none; border:none; color:var(--text); font-weight:600; font-size:14px;
}
.video-play-icon{
  width:52px; height:52px; border-radius:50%;
  background:var(--accent); color:#1a1300;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 0 0 0 rgba(255,161,0,.5);
  animation:pulse 2.4s infinite;
  transition:transform .3s ease;
}
.video-play:hover .video-play-icon{ transform:scale(1.08); }
@keyframes pulse{
  0%{ box-shadow:0 0 0 0 rgba(255,161,0,.45); }
  70%{ box-shadow:0 0 0 16px rgba(255,161,0,0); }
  100%{ box-shadow:0 0 0 0 rgba(255,161,0,0); }
}

/* ==========================================================================
   Marquee
   ========================================================================== */
.marquee-section{
  background:var(--accent);
  color:#1a1300;
  overflow:hidden;
  padding:18px 0;
  transform:rotate(-1.2deg) scale(1.02);
  margin:-8px 0;
}
.marquee-track{ display:flex; width:max-content; }
.marquee-content{
  display:flex; align-items:center; gap:28px; white-space:nowrap;
  padding-right:28px;
  animation:marquee 28s linear infinite;
  font-size:20px; font-weight:700; letter-spacing:.03em;
}
.marquee-content i{ font-size:12px; opacity:.7; }
@keyframes marquee{
  from{ transform:translateX(0); }
  to{ transform:translateX(-100%); }
}
.marquee-section:hover .marquee-content{ animation-play-state:paused; }

/* ==========================================================================
   Offer section
   ========================================================================== */
.offer-section{ padding:130px 0; }

.offer-row{
  display:grid; grid-template-columns:1fr 1fr; gap:60px;
  align-items:center;
  padding:50px 0;
  border-bottom:1px solid var(--border);
}
.offer-row:first-of-type{ border-top:1px solid var(--border); }
.offer-text{ position:relative; padding-right:60px; }
.offer-text h3{ font-size:clamp(1.5rem,2.6vw,2.1rem); max-width:420px; }
.offer-text p{ color:var(--text-muted); max-width:420px; }
.offer-arrow{
  position:absolute; top:0; right:0;
  width:52px; height:52px; border-radius:50%;
  border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  color:var(--text); transition:all .3s ease;
}
.offer-arrow:hover{ background:var(--accent); color:#1a1300; border-color:var(--accent); transform:rotate(45deg); }
.offer-image{ border-radius:var(--radius-md); overflow:hidden; aspect-ratio:5/4; }
.offer-image img{ width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.offer-image:hover img{ transform:scale(1.05); }

/* ==========================================================================
   About / Who we are
   ========================================================================== */
.about-section{
  padding:130px 0;
  background-size:cover;
  background-position:center;
  position:relative;
}
.about-section::before{ content:''; position:absolute; inset:0; background:rgba(10,10,10,.72); }
.about-section .container{ position:relative; }
.about-grid{ display:grid; grid-template-columns:1fr .8fr 1fr; gap:48px; align-items:start; }

.about-text h2{ font-size:clamp(1.7rem,2.8vw,2.3rem); margin:18px 0 16px; }
.about-text p{ color:var(--text-muted); margin-bottom:34px; max-width:380px; }

.feature-list .feature-item{ display:flex; align-items:center; gap:16px; }
.feature-item img{ width:38px; height:38px; object-fit:contain; }
.feature-item h4{ font-size:14px; letter-spacing:.03em; max-width:220px; }

.about-portrait img{ border-radius:var(--radius-lg); width:100%; }

.about-progress-image{ border-radius:var(--radius-md); overflow:hidden; aspect-ratio:4/3; margin-bottom:30px; }
.about-progress-image img{ width:100%; height:100%; object-fit:cover; }

.progress-list{ display:flex; flex-direction:column; gap:20px; margin-bottom:26px; }
.progress-item-head{ display:flex; justify-content:space-between; font-size:12px; font-weight:600; letter-spacing:.05em; color:var(--text-muted); margin-bottom:8px; }
.progress-value{ color:var(--accent); }
.progress-track{ height:8px; border-radius:20px; background:var(--surface-2); overflow:hidden; }
.progress-fill{ height:100%; width:0%; border-radius:20px; background:linear-gradient(90deg, var(--accent-dim), var(--accent)); transition:width 1.4s var(--ease); }

.about-progress p{ color:var(--text-muted); margin-bottom:24px; }

/* ==========================================================================
   Clients marquee
   ========================================================================== */
.clients-section{
  padding:46px 0;
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  background-size:cover;
  overflow:hidden;
}
.clients-track{ display:flex; width:max-content; }
.clients-content{ display:flex; align-items:center; gap:70px; padding-right:70px; animation:marquee 24s linear infinite; }
.clients-content img{ height:34px; width:auto; object-fit:contain; opacity:.55; filter:grayscale(1) brightness(2); transition:opacity .3s ease; }
.clients-content img:hover{ opacity:1; }
.clients-section:hover .clients-content{ animation-play-state:paused; }

/* ==========================================================================
   Vision quote
   ========================================================================== */
.vision-section{ padding:150px 0; text-align:center; }
.vision-quote{
  font-size:clamp(1.6rem, 3.4vw, 2.6rem);
  line-height:1.5;
  font-weight:500;
  max-width:980px;
  margin:0 auto;
}
.quote-img{
  display:inline-block; width:64px; height:64px; border-radius:50%;
  overflow:hidden; vertical-align:middle; margin:0 6px; transform:translateY(-6px);
  border:2px solid var(--accent);
}
.quote-img img{ width:100%; height:100%; object-fit:cover; }
.vision-attribution{
  display:flex; align-items:center; justify-content:center; gap:12px;
  margin-top:40px; font-weight:700; letter-spacing:.1em; color:var(--accent); font-size:14px;
}
.vision-attribution img{ width:22px; height:22px; }

/* ==========================================================================
   Work
   ========================================================================== */
.work-section{ padding:130px 0; background-size:cover; position:relative; }
.work-section::before{ content:''; position:absolute; inset:0; background:rgba(10,10,10,.8); }
.work-section .container{ position:relative; }
.work-section h2{ font-size:clamp(1.8rem,3vw,2.4rem); max-width:560px; }
.work-intro{ max-width:340px; display:flex; flex-direction:column; gap:20px; align-items:flex-start; }
.work-intro p{ color:var(--text-muted); }

.work-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.work-card{
  position:relative; border-radius:var(--radius-md); overflow:hidden;
  aspect-ratio:4/5; display:block;
}
.work-card img{ width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.work-card:hover img{ transform:scale(1.08); }
.work-card-label{
  position:absolute; left:20px; right:20px; bottom:20px;
  font-weight:600; font-size:15px;
  padding:10px 16px;
  background:rgba(19,19,19,.75);
  backdrop-filter:blur(6px);
  border-radius:100px;
  width:fit-content;
}

.work-info-card{
  border-radius:var(--radius-md); background:var(--surface);
  padding:36px; display:flex; flex-direction:column; justify-content:space-between;
  border:1px solid var(--border);
}
.work-info-card h3{ font-size:1.3rem; margin-bottom:12px; }
.work-info-card p{ color:var(--text-muted); margin-bottom:28px; }
.work-info-bottom{ display:flex; flex-direction:column; gap:20px; }
.icon-box{ display:flex; align-items:center; gap:14px; }
.icon-box i{ width:44px; height:44px; border-radius:50%; background:var(--surface-2); display:flex; align-items:center; justify-content:center; color:var(--accent); }
.icon-box span{ display:block; font-size:11px; letter-spacing:.08em; color:var(--text-faint); }
.icon-box a{ font-weight:600; }

/* ==========================================================================
   Awards
   ========================================================================== */
.awards-section{ padding:130px 0; }
.awards-grid{ display:grid; grid-template-columns:.9fr 1.1fr; gap:60px; }
.awards-intro h2{ font-size:clamp(1.9rem,3.4vw,2.8rem); margin:18px 0; }
.awards-intro p{ color:var(--text-muted); max-width:420px; }

.award-row{ display:flex; justify-content:space-between; align-items:center; padding:8px 0; gap:20px; flex-wrap:wrap; }
.award-titles h4{ font-size:1.15rem; margin-bottom:6px; }
.award-titles p{ font-size:12px; letter-spacing:.08em; color:var(--text-faint); }

/* ==========================================================================
   Team
   ========================================================================== */
.team-section{ padding:130px 0; background-size:cover; position:relative; }
.team-section::before{ content:''; position:absolute; inset:0; background:rgba(10,10,10,.8); }
.team-section .container{ position:relative; }
.team-section .section-head-row p{ max-width:460px; margin-top:16px; }

.funfacts{ display:flex; gap:40px; }
.funfact{ text-align:center; }
.funfact-number{ font-size:44px; font-weight:700; }
.funfact sup{ color:var(--accent); font-size:22px; font-weight:700; }
.funfact p{ margin-top:6px; font-size:11px; letter-spacing:.08em; color:var(--text-muted); max-width:120px; }

.accordion{ display:flex; gap:12px; height:480px; }
.accordion-item{
  position:relative;
  flex:1;
  border-radius:var(--radius-md);
  background-size:cover;
  background-position:center;
  overflow:hidden;
  transition:flex .6s var(--ease);
  cursor:pointer;
}
.accordion-item::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.1) 55%, transparent 100%);
}
.accordion-item.active, .accordion-item:hover{ flex:2.6; }
.accordion-content{
  position:absolute; left:24px; right:24px; bottom:24px; z-index:1;
  opacity:0; transform:translateY(10px);
  transition:opacity .4s ease .1s, transform .4s ease .1s;
}
.accordion-item.active .accordion-content, .accordion-item:hover .accordion-content{ opacity:1; transform:translateY(0); }
.accordion-content h4{ font-size:1.1rem; white-space:nowrap; }
.accordion-content p{ color:var(--accent); font-size:12px; letter-spacing:.06em; margin-top:4px; white-space:nowrap; }

/* ==========================================================================
   CTA (mid page)
   ========================================================================== */
.cta-section{
  position:relative; padding:150px 0; text-align:center;
  background-size:cover; background-position:center; background-attachment:fixed;
}
.cta-overlay{ position:absolute; inset:0; background:rgba(8,8,8,.72); }
.cta-content{ position:relative; display:flex; flex-direction:column; align-items:center; gap:34px; }
.cta-content h2{ font-size:clamp(2rem,4.6vw,3.4rem); max-width:820px; }

/* ==========================================================================
   Process
   ========================================================================== */
.process-section{ padding:130px 0; background-size:cover; position:relative; }
.process-section::before{ content:''; position:absolute; inset:0; background:rgba(10,10,10,.8); }
.process-section .container{ position:relative; }
.process-section .section-head-row p{ color:var(--text-muted); max-width:400px; }

.process-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.process-step{
  padding:32px 26px; border-radius:var(--radius-md);
  background:var(--surface); border:1px solid var(--border);
  transition:border-color .3s ease, transform .3s ease;
}
.process-step:hover{ border-color:var(--accent); transform:translateY(-6px); }
.process-step-head{ display:flex; align-items:baseline; gap:14px; margin-bottom:6px; }
.process-num{ font-size:14px; font-weight:700; color:var(--accent); }
.process-step h3{ font-size:1.2rem; }
.process-step p{ color:var(--text-muted); font-size:13px; letter-spacing:.03em; margin-top:16px; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-section{ padding:130px 0; }

.testimonial-slider{ position:relative; }
.testimonial-track{ display:flex; transition:transform .6s var(--ease); }
.testimonial-card{
  flex:0 0 100%;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius-lg);
  padding:56px;
  max-width:760px;
  margin:0 auto;
}
.testimonial-quote{ font-size:clamp(1.1rem,2vw,1.5rem); line-height:1.6; margin-bottom:34px; }
.testimonial-author{ display:flex; align-items:center; gap:16px; }
.testimonial-author img{ width:54px; height:54px; border-radius:50%; object-fit:cover; }
.testimonial-author h5{ font-size:14px; letter-spacing:.03em; }
.testimonial-author span{ color:var(--accent); font-size:12px; }

.testimonial-controls{ display:flex; align-items:center; justify-content:center; gap:24px; margin-top:40px; }
.testimonial-controls button{
  width:46px; height:46px; border-radius:50%; border:1px solid var(--border); background:none; color:var(--text);
  display:flex; align-items:center; justify-content:center; transition:all .3s ease;
}
.testimonial-controls button:hover{ background:var(--accent); border-color:var(--accent); color:#1a1300; }
.testimonial-dots{ display:flex; gap:8px; }
.testimonial-dots span{ width:8px; height:8px; border-radius:50%; background:var(--border); cursor:pointer; transition:background .3s ease, transform .3s ease; }
.testimonial-dots span.active{ background:var(--accent); transform:scale(1.3); }

/* ==========================================================================
   Blog
   ========================================================================== */
.blog-section{ padding:130px 0; background-size:cover; position:relative; }
.blog-section::before{ content:''; position:absolute; inset:0; background:rgba(10,10,10,.82); }
.blog-section .container{ position:relative; }

.blog-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.blog-card{ border-radius:var(--radius-md); overflow:hidden; background:var(--surface); border:1px solid var(--border); }
.blog-card-image{ position:relative; display:block; aspect-ratio:4/3; overflow:hidden; }
.blog-card-image img{ width:100%; height:100%; object-fit:cover; transition:transform .6s var(--ease); }
.blog-card:hover .blog-card-image img{ transform:scale(1.08); }
.blog-card-cat{
  position:absolute; top:16px; left:16px;
  background:var(--accent); color:#1a1300; font-size:11px; font-weight:700; letter-spacing:.06em;
  padding:6px 14px; border-radius:100px;
}
.blog-card-body{ padding:26px; }
.blog-card-date{ font-size:12px; color:var(--text-faint); display:flex; align-items:center; gap:8px; margin-bottom:14px; }
.blog-card-body h4{ font-size:1.1rem; line-height:1.4; margin-bottom:18px; }
.blog-card-body h4 a:hover{ color:var(--accent); }
.blog-card-link{ font-size:13px; font-weight:600; color:var(--accent); display:inline-flex; align-items:center; gap:8px; }

/* ==========================================================================
   Newsletter
   ========================================================================== */
.newsletter-section{ padding:110px 0; }
.newsletter-grid{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:70px; display:grid; grid-template-columns:1.1fr 1fr; gap:60px; align-items:center;
}
.newsletter-grid h2{ font-size:clamp(1.4rem,2.4vw,1.9rem); margin-bottom:16px; }
.newsletter-grid > div > p{ color:var(--text-muted); }

.newsletter-form{ display:flex; flex-direction:column; gap:16px; }
.form-row{ display:flex; gap:14px; flex-wrap:wrap; }
.form-row input{
  flex:1; min-width:180px; padding:15px 18px; border-radius:10px;
  border:1px solid var(--border); background:var(--bg); color:var(--text); font-family:inherit; font-size:14px;
}
.form-row input::placeholder{ color:var(--text-faint); }
.form-row input:focus{ border-color:var(--accent); outline:none; }
.newsletter-form .btn{ align-self:flex-start; }
.form-message{ font-size:13px; color:var(--accent); min-height:18px; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ padding-top:90px; border-top:1px solid var(--border); }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:50px; padding-bottom:70px; }
.footer-brand p{ color:var(--text-muted); margin:18px 0 24px; max-width:300px; }
.social-links{ display:flex; gap:12px; }
.social-links a{
  width:38px; height:38px; border-radius:50%; border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center; transition:all .3s ease;
}
.social-links a:hover{ background:var(--accent); border-color:var(--accent); color:#1a1300; }

.footer-col h5{ font-size:13px; letter-spacing:.1em; color:var(--text-faint); margin-bottom:22px; }
.footer-col ul{ display:flex; flex-direction:column; gap:14px; }
.footer-col a{ color:var(--text-muted); font-size:14px; transition:color .25s ease; }
.footer-col a:hover{ color:var(--accent); }
.footer-contact li{ display:flex; align-items:center; gap:10px; color:var(--text-muted); font-size:14px; }
.footer-contact i{ color:var(--accent); width:16px; }

.footer-bottom{ border-top:1px solid var(--border); padding:26px 0; }
.footer-bottom-inner{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px; }
.footer-bottom-inner p{ color:var(--text-faint); font-size:13px; }
.footer-legal{ display:flex; gap:22px; }
.footer-legal a{ color:var(--text-faint); font-size:13px; }
.footer-legal a:hover{ color:var(--accent); }

/* ==========================================================================
   Back to top
   ========================================================================== */
.back-to-top{
  position:fixed; right:26px; bottom:26px; z-index:500;
  width:48px; height:48px; border-radius:50%;
  background:var(--accent); color:#1a1300; border:none;
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transform:translateY(10px);
  transition:all .35s ease;
}
.back-to-top.visible{ opacity:1; pointer-events:auto; transform:translateY(0); }
.back-to-top:hover{ background:#ffb733; }

/* ==========================================================================
   Video modal
   ========================================================================== */
.video-modal{
  position:fixed; inset:0; z-index:1200; background:rgba(5,5,5,.9);
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transition:opacity .3s ease;
  padding:20px;
}
.video-modal.open{ opacity:1; pointer-events:auto; }
.video-modal-inner{ width:100%; max-width:960px; position:relative; }
.video-modal-frame{ position:relative; padding-top:56.25%; border-radius:var(--radius-md); overflow:hidden; background:#000; }
.video-modal-frame iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }
.video-modal-close{
  position:absolute; top:-46px; right:0; background:none; border:none; color:var(--text);
  font-size:32px; line-height:1;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width:1100px){
  .about-grid{ grid-template-columns:1fr 1fr; }
  .about-portrait{ order:3; grid-column:span 2; max-width:360px; margin:0 auto; }
  .work-grid{ grid-template-columns:repeat(2,1fr); }
  .process-grid{ grid-template-columns:repeat(2,1fr); }
  .blog-grid{ grid-template-columns:repeat(2,1fr); }
  .awards-grid{ grid-template-columns:1fr; }
  .newsletter-grid{ grid-template-columns:1fr; padding:50px; }
}

@media (max-width:900px){
  .main-nav{
    position:fixed; top:0; right:0; height:100vh; width:min(320px,80vw);
    background:var(--bg-alt); border-left:1px solid var(--border);
    transform:translateX(100%); transition:transform .4s var(--ease);
    padding:110px 34px 40px; z-index:850;
  }
  .main-nav.open{ transform:translateX(0); }
  .main-nav ul{ flex-direction:column; gap:26px; }
  .nav-toggle{ display:flex; }
  .header-cta{ display:none; }

  .hero-grid{ grid-template-columns:1fr; }
  .hero{ padding-top:130px; text-align:left; background-attachment:scroll; }
  .hero-right{ margin-top:20px; }

  .offer-row, .offer-row.reverse{ grid-template-columns:1fr; }
  .offer-row.reverse .offer-image{ order:-1; }
  .offer-text{ padding-right:0; }
  .offer-arrow{ position:static; margin:14px 0; }

  .about-grid{ grid-template-columns:1fr; }
  .about-portrait{ order:0; grid-column:auto; max-width:100%; }

  .section-head-row{ flex-direction:column; align-items:flex-start; }

  .accordion{ flex-direction:column; height:auto; }
  .accordion-item{ height:120px; }
  .accordion-item.active, .accordion-item:hover{ height:280px; flex:none; }

  .cta-section, .process-section, .team-section, .work-section, .blog-section, .about-section{ background-attachment:scroll; }
}

@media (max-width:640px){
  .container{ padding:0 20px; }
  .work-grid, .process-grid, .blog-grid{ grid-template-columns:1fr; }
  .hero-stats{ gap:16px; }
  .stat-number, .stat-plus{ font-size:32px; }
  .newsletter-grid{ padding:34px; }
  .testimonial-card{ padding:32px; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .quote-img{ width:44px; height:44px; }
}
