/* ======================================================================
   FOOTPRINTS MEDIA · LUXURY ORGANIZATION REDESIGN
   Visual layer only. Existing HTML/JS functionality remains intact.
   ====================================================================== */
:root {
  --lux-ink: #10100f;
  --lux-ink-2: #181715;
  --lux-paper: #f4f1eb;
  --lux-paper-2: #ebe6dc;
  --lux-white: #fffdf9;
  --lux-orange: #f58a0b;
  --lux-orange-deep: #cf6100;
  --lux-muted: #76736d;
  --lux-line: rgba(16,16,15,.12);
  --lux-line-dark: rgba(255,255,255,.14);
  --lux-radius: 28px;
  --lux-radius-sm: 18px;
  --lux-shadow: 0 24px 70px rgba(16,16,15,.09);
  --lux-shadow-hover: 0 34px 90px rgba(16,16,15,.14);
}

html { background: var(--lux-paper); }
body {
  background: var(--lux-paper);
  color: var(--lux-ink);
  font-family: 'Brand', Inter, sans-serif;
  cursor: auto;
}
body::before { opacity: .35; }
::selection { background: var(--lux-orange); color: #111; }

.container { width: min(1320px, calc(100% - 56px)); max-width: 1320px; }
.section-padding { padding-block: clamp(90px, 10vw, 150px); }
.bg-background { background: var(--lux-paper) !important; }
.bg-white { background: var(--lux-white) !important; }
.bg-dark { background: var(--lux-ink) !important; }
.text-primary { color: var(--lux-orange) !important; }

/* Header -------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  width: min(1320px, calc(100% - 40px));
  transform: translateX(-50%);
  background: rgba(255,253,249,.91);
  border: 1px solid rgba(16,16,15,.10);
  border-radius: 20px;
  box-shadow: 0 14px 45px rgba(16,16,15,.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 1000;
  transition: .35s cubic-bezier(.16,1,.3,1);
}
.site-header.scrolled { top: 10px; box-shadow: 0 18px 55px rgba(16,16,15,.12); }
.header-container { min-height: 76px; }
.brand-logo { width: 158px; display:flex; align-items:center; }
.brand-logo img { width: 100%; height:auto; display:block; }
.nav-links { gap: 30px; }
.nav-link {
  position: relative;
  font-size: .83rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #242320;
  font-weight: 700;
}
.nav-link::after {
  content:''; position:absolute; left:0; bottom:-8px; width:100%; height:1px;
  background: var(--lux-orange); transform:scaleX(0); transform-origin:right;
  transition: transform .35s cubic-bezier(.16,1,.3,1);
}
.nav-link:hover::after, .nav-link.active::after { transform:scaleX(1); transform-origin:left; }
.header-actions { gap: 12px; }
.btn {
  border-radius: 999px;
  min-height: 48px;
  padding-inline: 24px;
  font-weight: 800;
  letter-spacing: .01em;
  border: 1px solid transparent;
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease, background .25s ease;
}
.btn-primary { background: var(--lux-orange) !important; color: #111 !important; box-shadow: 0 10px 26px rgba(245,138,11,.20); }
.btn-primary:hover { box-shadow: 0 16px 38px rgba(245,138,11,.30); }
.btn-outline { border-color: rgba(16,16,15,.25); color: var(--lux-ink) !important; background: transparent; }
.btn-outline:hover { background: var(--lux-ink); color:#fff !important; border-color:var(--lux-ink); }
.mobile-menu-toggle { border:1px solid var(--lux-line); background:var(--lux-white); border-radius:50%; width:48px; height:48px; }
.hamburger-line { background:var(--lux-ink); }

/* Loader -------------------------------------------------------------- */
.loader-wrapper { background: var(--lux-ink); }
.loader-brand { color: var(--lux-white) !important; letter-spacing:.12em; }
.loader-bar { background:rgba(255,255,255,.12); }
.loader-progress { background:var(--lux-orange) !important; }
.loader-percentage { color:rgba(255,255,255,.6); }

/* Hero ---------------------------------------------------------------- */
.hero-section,
.about-hero-section,
.services-hero-section,
.team-hero-section,
.contact-hero-section,
.blog-hero {
  position:relative;
  overflow:hidden;
  background:var(--lux-ink) !important;
  color:#fff;
}
.hero-section { min-height: 100svh; display:flex; align-items:center; padding-top:120px; }
.hero-section::before,
.about-hero-section::before,
.services-hero-section::before,
.team-hero-section::before,
.contact-hero-section::before,
.blog-hero::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(circle at 82% 20%, rgba(245,138,11,.18), transparent 28%),
    linear-gradient(120deg, transparent 45%, rgba(255,255,255,.035) 45.1%, transparent 45.3%),
    linear-gradient(0deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size:auto, auto, 100% 90px;
}
.hero-section::after {
  content:'FOOTPRINTS MEDIA'; position:absolute; right:-3vw; bottom:5vh;
  font-size:clamp(4rem,12vw,12rem); font-weight:900; letter-spacing:-.07em;
  color:rgba(255,255,255,.025); white-space:nowrap; pointer-events:none;
}
.canvas-container { opacity:.42; mix-blend-mode:screen; }
.hero-container { position:relative; z-index:5; }
.hero-content { max-width: 800px; }
.hero-subtitle, .section-label, .section-eyebrow {
  display:inline-flex; align-items:center; gap:10px;
  color:var(--lux-orange) !important;
  font-size:.72rem; font-weight:900; text-transform:uppercase; letter-spacing:.16em;
}
.hero-subtitle::before, .section-label::before, .section-eyebrow::before {
  content:''; width:28px; height:1px; background:currentColor;
}
.hero-title {
  color:#fff !important;
  font-size:clamp(3.7rem,7.5vw,8.6rem) !important;
  line-height:.91 !important;
  letter-spacing:-.065em !important;
  margin:22px 0 30px !important;
  max-width:1000px;
}
.hero-description { color:rgba(255,255,255,.70) !important; max-width:650px; font-size:1.06rem; line-height:1.75; }
.hero-cta-group { margin-top:34px; }
.hero-floating-cards { z-index:6; }
.glass-card {
  background:rgba(255,253,249,.09) !important;
  border:1px solid rgba(255,255,255,.16) !important;
  box-shadow:0 25px 60px rgba(0,0,0,.22) !important;
  backdrop-filter:blur(16px);
  color:#fff;
}
.glass-card .card-info h4 { color:#fff; }
.glass-card .card-info p { color:rgba(255,255,255,.58); }
.scroll-indicator { color:rgba(255,255,255,.55); }
.scroll-line { background:rgba(255,255,255,.28); }

/* Interior heroes ----------------------------------------------------- */
.about-hero-section, .services-hero-section, .team-hero-section, .contact-hero-section { padding-top:210px !important; padding-bottom:120px; min-height:68vh; display:flex; align-items:flex-end; }
.about-hero-section .hero-title, .services-hero-section .hero-title, .team-hero-section .hero-title, .contact-hero-section .hero-title { max-width:1050px; }
.about-hero-section .hero-description, .services-hero-section .hero-description, .team-hero-section .hero-description, .contact-hero-section .hero-description { max-width:720px; }

/* General sections ---------------------------------------------------- */
.section-header { margin-bottom:clamp(42px,6vw,74px) !important; }
.section-title {
  font-size:clamp(2.6rem,5vw,5.4rem) !important;
  line-height:.96 !important;
  letter-spacing:-.055em !important;
  color:var(--lux-ink) !important;
}
.section-text { color:var(--lux-muted); font-size:1rem; line-height:1.75; }
.max-w-md { max-width:850px; }
.text-center .section-label { justify-content:center; }

/* Comparison / philosophy ------------------------------------------- */
.comparison-section { background:var(--lux-paper) !important; }
.comparison-section .grid-2-cols { gap:20px; }
.comparison-section .service-card {
  min-height:430px; border-radius:var(--lux-radius); padding:clamp(30px,4vw,54px) !important;
  display:flex; flex-direction:column; justify-content:flex-end;
  position:relative; overflow:hidden; box-shadow:none !important;
}
.comparison-section .service-card:first-child { background:#e7e1d8 !important; }
.comparison-section .service-card:last-child { background:var(--lux-ink) !important; border-color:transparent !important; color:#fff; }
.comparison-section .service-card:last-child .service-title { color:#fff; }
.comparison-section .service-card:last-child .feature-item { color:rgba(255,255,255,.82); }
.service-icon-wrapper {
  width:54px !important; height:54px !important; border-radius:16px !important;
  display:grid; place-items:center; background:rgba(245,138,11,.12) !important;
  border:1px solid rgba(245,138,11,.2);
}
.service-icon-wrapper svg { stroke:var(--lux-orange) !important; }
.service-title { font-size:clamp(1.35rem,2vw,2rem) !important; line-height:1.05; letter-spacing:-.035em; color:var(--lux-ink); }
.feature-list { gap:14px; }
.feature-item { color:#4e4b45; }

/* Services ------------------------------------------------------------ */
.services-section { background:var(--lux-white) !important; }
.grid-3-cols { gap:18px; }
.service-card {
  border:1px solid var(--lux-line) !important;
  border-radius:var(--lux-radius) !important;
  background:rgba(255,253,249,.75) !important;
  box-shadow:none !important;
  padding:clamp(28px,3vw,42px) !important;
  min-height:320px;
  position:relative;
  overflow:hidden;
  transition:transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s ease, border-color .3s ease;
}
.service-card::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(135deg, rgba(245,138,11,.10), transparent 38%);
  opacity:0; transition:opacity .4s ease;
}
.service-card:hover { transform:translateY(-8px); box-shadow:var(--lux-shadow-hover) !important; border-color:rgba(245,138,11,.35) !important; }
.service-card:hover::before { opacity:1; }
.service-description { color:var(--lux-muted); }
.service-link { color:var(--lux-orange) !important; font-weight:800; }
.service-link:hover { gap:14px; }

/* Stats ---------------------------------------------------------------- */
.stats-section { position:relative; overflow:hidden; padding-block:72px; }
.stats-section::before { content:'IMPACT'; position:absolute; right:-20px; top:-55px; font-size:clamp(6rem,17vw,18rem); font-weight:900; color:rgba(255,255,255,.035); letter-spacing:-.08em; }
.stats-grid { position:relative; z-index:2; grid-template-columns:repeat(4,1fr); }
.stat-item { padding:28px 24px; border-left:1px solid var(--lux-line-dark); }
.stat-item:first-child { border-left:0; }
.stat-number { font-size:clamp(3.3rem,6vw,6.4rem) !important; letter-spacing:-.06em; color:#fff; line-height:.9; }
.stat-label { color:rgba(255,255,255,.5); text-transform:uppercase; letter-spacing:.12em; font-size:.72rem; margin-top:14px; }

/* Process ------------------------------------------------------------- */
.process-section { background:var(--lux-white) !important; }
.process-timeline { display:grid; grid-template-columns:repeat(4,1fr); gap:0; border-top:1px solid var(--lux-line); }
.process-step { min-height:260px; padding:30px 24px 20px 0; border-right:1px solid var(--lux-line); position:relative; }
.process-step:not(:first-child) { padding-left:24px; }
.process-step:last-child { border-right:0; }
.step-number { color:var(--lux-orange) !important; font-weight:900; font-size:.82rem; letter-spacing:.12em; }
.step-title { font-size:clamp(1.6rem,2.5vw,2.5rem); letter-spacing:-.04em; margin:50px 0 12px; }
.step-text { color:var(--lux-muted); max-width:230px; }

/* Detailed services -------------------------------------------------- */
.detailed-services { background:var(--lux-paper) !important; }
.detailed-services > .container > .grid-2-cols { align-items:stretch; }
.detailed-services .service-visual { border-radius:var(--lux-radius); overflow:hidden; background:#ded8cd; }
.detailed-services .service-visual img { transition:transform .7s cubic-bezier(.16,1,.3,1); }
.detailed-services .service-visual:hover img { transform:scale(1.04); }

/* Team ---------------------------------------------------------------- */
.team-grid-section { background:var(--lux-white) !important; }
.project-card {
  background:var(--lux-paper) !important; border:1px solid var(--lux-line); border-radius:var(--lux-radius) !important;
  box-shadow:none !important; overflow:hidden; transition:transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s ease;
}
.project-card:hover { transform:translateY(-10px); box-shadow:var(--lux-shadow) !important; }
.project-image { background:#d8d1c7; overflow:hidden; }
.project-image img { width:100%; height:100%; object-fit:cover; transition:transform .8s cubic-bezier(.16,1,.3,1); }
.project-card:hover .project-image img { transform:scale(1.035); }
.project-meta { padding:24px !important; }
.project-meta .tag { color:var(--lux-orange); font-size:.68rem; font-weight:900; letter-spacing:.13em; text-transform:uppercase; }
.project-title { font-size:clamp(1.5rem,2.5vw,2.2rem) !important; letter-spacing:-.04em; }

/* About values -------------------------------------------------------- */
.values-section .service-card { min-height:290px; }
.story-section { background:var(--lux-white) !important; }
.story-content { max-width:760px; }

/* Blog ---------------------------------------------------------------- */
.blog-hero { min-height:72vh; padding-top:190px !important; display:flex; align-items:flex-end; padding-bottom:100px; }
.blog-hero h1 { color:#fff !important; font-size:clamp(4rem,8vw,8.5rem) !important; line-height:.9 !important; letter-spacing:-.07em; }
.blog-hero p { color:rgba(255,255,255,.68) !important; max-width:650px; }
.blog-section { background:var(--lux-paper) !important; padding-block:110px; }
.blog-section-header h2 { font-size:clamp(2.5rem,4vw,4.5rem); letter-spacing:-.05em; }
.blog-grid { gap:18px; }
.blog-card {
  background:var(--lux-white) !important; border:1px solid var(--lux-line) !important; border-radius:var(--lux-radius) !important;
  overflow:hidden; box-shadow:none !important; transition:transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s ease;
}
.blog-card:hover { transform:translateY(-8px); box-shadow:var(--lux-shadow) !important; }
.blog-card-image img { transition:transform .7s cubic-bezier(.16,1,.3,1); }
.blog-card:hover .blog-card-image img { transform:scale(1.04); }
.blog-card-content { padding:28px !important; }
.blog-card h3 { letter-spacing:-.035em; }

/* Contact ------------------------------------------------------------- */
.contact-main-section { background:var(--lux-white) !important; }
.contact-info-wrapper { padding-right:30px; }
.contact-form-container { background:var(--lux-paper) !important; border:1px solid var(--lux-line) !important; border-radius:var(--lux-radius) !important; box-shadow:none !important; }
.contact-form-container input,
.contact-form-container textarea,
.contact-form-container select {
  border:1px solid rgba(16,16,15,.14) !important; background:rgba(255,253,249,.8) !important; border-radius:14px !important;
  padding:14px 16px !important; color:var(--lux-ink); transition:border .25s ease, box-shadow .25s ease;
}
.contact-form-container input:focus,
.contact-form-container textarea:focus,
.contact-form-container select:focus { border-color:var(--lux-orange) !important; box-shadow:0 0 0 4px rgba(245,138,11,.10); }
.map-section { filter:saturate(.75); }

/* CTA ----------------------------------------------------------------- */
.cta-section {
  position:relative; overflow:hidden;
  background:var(--lux-orange) !important; color:var(--lux-ink) !important;
  padding-block:clamp(90px,11vw,160px) !important;
}
.cta-section::before { content:'LET’S BUILD'; position:absolute; left:-3vw; bottom:-5vw; font-size:clamp(5rem,15vw,17rem); font-weight:900; color:rgba(16,16,15,.07); letter-spacing:-.09em; line-height:.7; white-space:nowrap; }
.cta-title { position:relative; z-index:2; color:var(--lux-ink) !important; font-size:clamp(2.8rem,6vw,6.6rem) !important; line-height:.92 !important; letter-spacing:-.065em; }
.cta-text { position:relative; z-index:2; color:rgba(16,16,15,.68) !important; max-width:620px; margin:18px auto 0; }
.cta-section .btn-white { position:relative; z-index:2; background:var(--lux-ink) !important; color:#fff !important; border:0; }
.cta-section .btn-white .text-primary { color:#fff !important; }
.cta-shapes { opacity:.4; }

/* Footer -------------------------------------------------------------- */
.site-footer { background:var(--lux-ink) !important; border-top:1px solid rgba(255,255,255,.08); }
.footer-top { padding-block:90px 70px; }
.footer-logo { color:#fff !important; font-size:clamp(2rem,4vw,3.5rem); letter-spacing:-.06em; }
.footer-desc { color:rgba(255,255,255,.48) !important; max-width:340px; }
.footer-heading { color:#fff; text-transform:uppercase; letter-spacing:.14em; font-size:.68rem; }
.footer-links a, .footer-contact-info a { color:rgba(255,255,255,.62); transition:color .25s ease; }
.footer-links a:hover, .footer-contact-info a:hover { color:var(--lux-orange); }
.footer-contact-info .address { color:rgba(255,255,255,.35) !important; }
.footer-bottom { border-top-color:rgba(255,255,255,.10) !important; padding-bottom:30px; }
.copyright { color:rgba(255,255,255,.34); font-size:.78rem; }

/* Cursor -------------------------------------------------------------- */
.cursor-dot { background:var(--lux-orange) !important; }
.cursor-outline { border-color:rgba(245,138,11,.65) !important; }

/* Reveal timing fix --------------------------------------------------- */
[data-gsap="fade-up"], .service-card, .project-card, .process-step { will-change:transform,opacity; }

/* Tablet -------------------------------------------------------------- */
@media (max-width: 980px) {
  .site-header { top:10px; width:calc(100% - 24px); }
  .desktop-nav { display:none !important; }
  .header-actions .btn { display:none; }
  .mobile-menu-toggle { display:grid !important; place-items:center; }
  .header-container { min-height:68px; }
  .brand-logo { width:145px; }
  .hero-title { font-size:clamp(3.4rem,9vw,6.3rem) !important; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .stat-item:nth-child(3) { border-left:0; }
  .process-timeline { grid-template-columns:repeat(2,1fr); }
  .process-step:nth-child(2) { border-right:0; }
  .process-step:nth-child(3), .process-step:nth-child(4) { border-top:1px solid var(--lux-line); }
  .process-step:nth-child(4) { border-right:0; }
}

@media (max-width: 760px) {
  body { cursor:auto; }
  .container { width:min(100% - 32px, 680px); }
  .site-header { border-radius:16px; }
  .hero-section { min-height:92svh; padding-top:110px; }
  .hero-title { font-size:clamp(3rem,14vw,5.3rem) !important; }
  .hero-description { font-size:.98rem; }
  .hero-cta-group { flex-direction:column; align-items:stretch; }
  .hero-cta-group .btn { width:100%; justify-content:center; }
  .hero-floating-cards { display:none; }
  .about-hero-section, .services-hero-section, .team-hero-section, .contact-hero-section { min-height:70svh; padding-top:150px !important; padding-bottom:80px; }
  .section-title { font-size:clamp(2.5rem,11vw,4rem) !important; }
  .comparison-section .service-card { min-height:340px; }
  .grid-2-cols, .grid-3-cols, .grid-4-cols { grid-template-columns:1fr !important; }
  .stats-grid { grid-template-columns:1fr 1fr; }
  .stat-item { border-left:0; border-bottom:1px solid var(--lux-line-dark); }
  .stat-item:nth-last-child(-n+2) { border-bottom:0; }
  .stat-number { font-size:3.4rem !important; }
  .process-timeline { grid-template-columns:1fr; }
  .process-step, .process-step:not(:first-child) { padding:28px 0; border-right:0; border-bottom:1px solid var(--lux-line); min-height:auto; }
  .process-step:last-child { border-bottom:0; }
  .step-title { margin-top:28px; }
  .blog-hero { min-height:68svh; padding-top:150px !important; padding-bottom:80px; }
  .blog-hero h1 { font-size:clamp(3.5rem,15vw,5.5rem) !important; }
  .footer-top { padding-block:70px 40px; }
}

@media (max-width: 430px) {
  .container { width:calc(100% - 24px); }
  .brand-logo { width:132px; }
  .header-container { min-height:62px; }
  .mobile-menu-toggle { width:42px; height:42px; }
  .hero-title { font-size:clamp(2.75rem,15vw,4.2rem) !important; }
  .hero-section { padding-top:95px; }
  .about-hero-section, .services-hero-section, .team-hero-section, .contact-hero-section { padding-top:125px !important; }
  .stats-grid { grid-template-columns:1fr; }
  .stat-item, .stat-item:nth-last-child(-n+2) { border-bottom:1px solid var(--lux-line-dark); }
  .stat-item:last-child { border-bottom:0; }
  .cta-title { font-size:clamp(2.7rem,14vw,4rem) !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration:.01ms !important; transition-duration:.01ms !important; scroll-behavior:auto !important; }
}
