/* ----- RESET & VARIABLES ----- */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #ffffff;
  --text: #111111;
  --text-light: #555555;
  --accent: #e6b800;
  --accent-hover: #cca300;
  --border: #eaeaea;
  --card-bg: rgba(248, 248, 248, 0.9);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* ========== IMAGE VARIABLES ========== */
  --img-hero: url('mountain close up.png');
  --img-story: url('1.jpg');
  --img-bodo: url('kasi.jpg');
  --img-look-1: url('cotton.jpg');
  --img-look-2: url('back.png');
  --img-look-3: url('safari.jpg');
  --img-look-4: url('4.jpg');
  --img-look-5: url('2.JPG');
}

/* ----- ANIMATED BACKGROUND (replaces white from second page) ----- */
body {
  background: #faf9f5;  /* fallback */
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}

/* Animated gradient behind everything except hero */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: linear-gradient(125deg, #fff8e7 0%, #fff1d6 30%, #fceeb8 60%, #fff8e7 100%);
  background-size: 200% 200%;
  animation: softShift 18s ease infinite;
  pointer-events: none;
}

@keyframes softShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Subtle moving dot pattern texture */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: radial-gradient(rgba(230,184,0,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  animation: subtleDrift 60s linear infinite;
}

@keyframes subtleDrift {
  0% { background-position: 0 0; }
  100% { background-position: 100px 100px; }
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* custom icon images */
.icon-img {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

/* ----- BUBBLE EFFECT (only for nav links & logo) ----- */
.nav-logo, .nav-links a {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.nav-logo::before, .nav-links a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.8em;
  height: 1.8em;
  background: radial-gradient(circle, rgba(230,184,0,0.4) 0%, rgba(230,184,0,0.1) 80%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 1;
  transition: opacity 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  pointer-events: none;
}
.nav-logo::before {
  width: 2.2em;
  height: 2.2em;
  background: radial-gradient(circle, rgba(230,184,0,0.5) 0%, rgba(230,184,0,0.15) 80%);
}
body.hide-bubbles .nav-logo::before,
body.hide-bubbles .nav-links a::before {
  opacity: 0;
}

/* ----- LOADER ----- */
#loader {
  position: fixed; inset: 0; background: #fff; z-index: 10000;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 24px; transition: opacity 0.6s ease, visibility 0.6s;
}
#loader.gone { opacity: 0; visibility: hidden; pointer-events: none; }
.ld-logo { font-size: 72px; font-weight: 800; letter-spacing: -2px; color: #111; }
.ld-bar-wrap { width: 200px; height: 2px; background: #eee; overflow: hidden; }
.ld-bar { height: 100%; width: 0; background: var(--accent); animation: lb 2s ease forwards; }
@keyframes lb { to { width: 100%; } }
.ld-sub { font-size: 12px; color: #aaa; text-transform: uppercase; letter-spacing: 2px; }

/* ----- NAVIGATION (with glass pill effect) ----- */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 24px 48px; display: flex; justify-content: space-between; align-items: center;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
nav.sc {
  background: rgba(255,255,255,0.95); backdrop-filter: blur(8px);
  padding: 16px 48px; box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.nav-logo { 
  font-size: 28px; font-weight: 800; letter-spacing: -0.5px; color: var(--accent);
  position: relative;
  display: inline-block;
  z-index: 1;
}
.nav-links { display: flex; gap: 48px; list-style: none; }
.nav-links a { 
  font-size: 14px; font-weight: 500; color: var(--text); transition: color 0.2s;
  position: relative;
  display: inline-block;
  z-index: 1;
}
.nav-links a:hover { color: var(--accent); }
.nav-logo::before,
.nav-links a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% + 24px);
  height: calc(100% + 12px);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  pointer-events: none;
  z-index: -1;
  opacity: 1;
}
.nav-logo::before {
  width: calc(100% + 32px);
  height: calc(100% + 16px);
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}
nav.sc .nav-logo::before,
nav.sc .nav-links a::before {
  background: transparent;
  border-color: transparent;
  backdrop-filter: none;
}
body.hide-bubbles .nav-logo::before,
body.hide-bubbles .nav-links a::before {
  opacity: 0;
}
.nav-cta {
  background: var(--accent); color: #fff !important; padding: 10px 24px;
  font-size: 13px; font-weight: 600; border-radius: 4px; transition: background 0.2s;
  position: relative;
  z-index: 1;
}
.nav-cta:hover { background: var(--accent-hover); }

/* ----- HERO (unchanged, stays on top of animation) ----- */
.hero {
  height: 90vh; position: relative; display: flex; align-items: center;
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), var(--img-hero) center/cover;
  color: #fff; margin-top: 0;
}
.hero .h-content { max-width: 600px; margin-left: 8%; z-index: 2; }
.hero .h-badge { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.hero .bdot { width: 10px; height: 10px; background: var(--accent); border-radius: 50%; }
.hero .btxt { font-size: 14px; letter-spacing: 1px; text-transform: uppercase; }
.hero .h-hl { font-size: clamp(48px, 8vw, 90px); font-weight: 800; line-height: 1.1; margin-bottom: 24px; }
.hero .h-hl span { display: block; }
.hero .h-sub { display: flex; gap: 24px; align-items: flex-start; margin-bottom: 40px; }
.hero .h-subline { width: 60px; height: 2px; background: var(--accent); margin-top: 12px; }
.hero .h-subtext { font-size: 18px; max-width: 500px; opacity: 0.9; }
.hero .h-acts { display: flex; gap: 24px; align-items: center; }
.btn-y {
  background: var(--accent); color: #fff; padding: 14px 36px; border-radius: 4px;
  font-weight: 600; letter-spacing: 1px; transition: background 0.2s;
}
.btn-y:hover { background: var(--accent-hover); }
.btn-g { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 2px; font-weight: 500; }
.btn-g:hover { border-color: #fff; }
.h-scroll { position: absolute; bottom: 40px; left: 8%; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.h-scroll .scl { width: 1px; height: 60px; background: #fff; animation: sca 2s infinite; }
@keyframes sca { 0%,100% { opacity: 1; transform: scaleY(1); } 50% { opacity: 0.5; transform: scaleY(0.5); } }
.h-scroll .sclt { font-size: 12px; writing-mode: vertical-lr; text-transform: uppercase; letter-spacing: 2px; }
.h-stats { position: absolute; bottom: 40px; right: 8%; display: flex; gap: 40px; }
.hs { text-align: right; }
.hs-n { font-size: 32px; font-weight: 800; line-height: 1; }
.hs-l { font-size: 12px; text-transform: uppercase; opacity: 0.7; }

/* ----- MARQUEE & ALL SECTIONS (semi-transparent to show animation) ----- */
.mq-div {
  background: rgba(250, 250, 250, 0.9);
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.mq-track { display: flex; white-space: nowrap; animation: tk 25s linear infinite; }
.mq-item { font-size: 16px; font-weight: 500; color: var(--text-light); padding: 0 32px; display: flex; align-items: center; gap: 32px; }
.mq-item::after { content: '✦'; color: var(--accent); }
@keyframes tk { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ----- STORY ----- */
.story {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(2px);
}
.story-in { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.st-left { padding-right: 40px; }
.st-kick { font-size: 14px; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); margin-bottom: 16px; display: flex; align-items: center; gap: 16px; }
.st-kick::before { content: ''; width: 30px; height: 2px; background: var(--accent); }
.st-h { font-size: clamp(42px, 5vw, 70px); font-weight: 800; line-height: 1.1; margin-bottom: 24px; }
.st-h em { font-style: normal; color: var(--accent); }
.st-p { font-size: 16px; color: var(--text-light); margin-bottom: 20px; max-width: 500px; }
.st-quote { border-left: 3px solid var(--accent); padding-left: 24px; margin-top: 32px; }
.st-quote p { font-size: 18px; font-weight: 500; margin-bottom: 8px; }
.st-quote cite { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: #777; }
.st-right {
  background: #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
  min-height: 500px;
  background-image: var(--img-story);
  background-size: cover;
  background-position: center;
}

/* ----- STATS BAND ----- */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(250, 250, 250, 0.9);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sb { padding: 48px 24px; text-align: center; border-right: 1px solid var(--border); }
.sb:last-child { border-right: none; }
.sb-n { font-size: 48px; font-weight: 800; color: var(--accent); display: block; line-height: 1; }
.sb-l { font-size: 14px; color: #777; text-transform: uppercase; letter-spacing: 1px; }

/* ----- COLLECTIONS ----- */
.colls {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.85);
}
.sec-top { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; padding: 0 24px; max-width: 1280px; margin-left: auto; margin-right: auto; }
.sec-kick { font-size: 14px; text-transform: uppercase; letter-spacing: 2px; color: var(--accent); margin-bottom: 8px; display: flex; align-items: center; gap: 14px; }
.sec-kick::before { content: ''; width: 24px; height: 2px; background: var(--accent); }
.sec-title { font-size: clamp(36px, 5vw, 60px); font-weight: 800; line-height: 1; }
.sec-link { font-size: 14px; font-weight: 500; color: var(--text); border-bottom: 1px solid transparent; transition: border 0.2s; }
.sec-link:hover { border-bottom-color: var(--accent); color: var(--accent); }
.lookbook { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.look { position: relative; overflow: hidden; border-radius: 8px; background: rgba(248, 248, 248, 0.95); aspect-ratio: 3 / 4; cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,0.03); transition: transform 0.3s ease; }
.look:hover { transform: translateY(-4px); }
.look-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.5s ease; }
.look:hover .look-bg { transform: scale(1.05); }
.look-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5), transparent); }
.look-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; color: #fff; }
.look-num { font-size: 12px; text-transform: uppercase; letter-spacing: 2px; opacity: 0.8; margin-bottom: 4px; }
.look-name { font-size: 24px; font-weight: 700; line-height: 1.2; }
.look-arr { position: absolute; top: 20px; right: 20px; background: rgba(255,255,255,0.2); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px; opacity: 0; transition: opacity 0.3s; }
.look:hover .look-arr { opacity: 1; }
.look:nth-child(1) .look-bg { background-image: var(--img-look-1); }
.look:nth-child(2) .look-bg { background-image: var(--img-look-2); }
.look:nth-child(3) .look-bg { background-image: var(--img-look-3); }
.look:nth-child(4) .look-bg { background-image: var(--img-look-4); }
.look:nth-child(5) .look-bg { background-image: var(--img-look-5); }

/* ----- BODO ----- */
.bodo {
  background: rgba(250, 250, 250, 0.9);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.bodo-in { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1280px; margin: 0 auto; padding: 0 24px; align-items: center; }
.bodo-impact { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.bi {
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.95);
}
.bi-n { font-size: 36px; font-weight: 800; color: var(--accent); }
.bi-l { font-size: 13px; color: #777; text-transform: uppercase; letter-spacing: 1px; }
.bodo-right {
  background: var(--img-bodo) center/cover;
  border-radius: 8px;
  min-height: 400px;
}
.don-strip {
  max-width: 1280px;
  margin: 60px auto 0;
  padding: 32px 24px;
  background: var(--accent);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
}
.ds-t { font-size: 22px; font-weight: 600; }
.ds-t em { font-style: normal; opacity: 0.7; }
.ds-n { font-size: 48px; font-weight: 800; line-height: 1; }
.ds-l { font-size: 14px; opacity: 0.8; text-align: right; }

/* ----- CUSTOM (REWORKED + VERSUS CONCEPTS) ----- */
.custom {
  padding: 100px 0;
  background: rgba(255, 255, 255, 0.85);
}
.custom-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1280px; margin: 0 auto 60px; padding: 0 24px; }
.ch { font-size: clamp(36px, 5vw, 64px); font-weight: 800; line-height: 1.1; }
.ch .y { color: var(--accent); }
.cb { font-size: 16px; color: var(--text-light); margin-bottom: 16px; }
.cd { font-size: 14px; color: #777; line-height: 1.8; }

/* custom-studio (Design lab) */
.custom-studio {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1280px;
  margin: 80px auto;
  padding: 0 24px;
  background: rgba(250, 250, 250, 0.9);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(2px);
}
.studio-mockup {
  background: rgba(255, 255, 255, 0.95);
  padding: 48px 32px;
  border-radius: 20px;
  box-shadow: 0 20px 35px -10px rgba(0,0,0,0.05);
}
.mockup-badge { display: inline-block; background: var(--accent); color: #000; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 40px; margin-bottom: 24px; letter-spacing: 1px; }
.sock-visual { background: #f0f0f0; border-radius: 60px; padding: 40px 20px; margin-bottom: 24px; }
.sock-shape { background: #2c3e66; width: 80%; margin: 0 auto; border-radius: 50px; height: 160px; position: relative; overflow: hidden; box-shadow: 0 8px 20px rgba(0,0,0,0.1); }
.sock-stripe { background: var(--accent); height: 12px; width: 100%; margin: 8px 0; }
.sock-logo-placeholder { position: absolute; bottom: 20px; left: 0; right: 0; text-align: center; color: white; font-size: 12px; font-weight: 700; letter-spacing: 1px; background: rgba(0,0,0,0.5); padding: 4px; }
.mockup-actions { display: flex; gap: 12px; align-items: center; margin-bottom: 24px; flex-wrap: wrap; }
.color-swatch { width: 32px; height: 32px; border-radius: 50%; background: #e6b800; border: 2px solid #fff; box-shadow: 0 2px 6px rgba(0,0,0,0.1); }
.studio-cta { display: inline-block; background: var(--accent); color: #000; font-weight: 700; padding: 12px 28px; border-radius: 40px; margin-top: 12px; transition: 0.2s; }
.studio-cta:hover { background: var(--accent-hover); }
.studio-features { padding: 48px 32px; }
.studio-features h3 { font-size: 28px; margin-bottom: 24px; }
.studio-features ul { list-style: none; margin-bottom: 32px; }
.studio-features li { margin-bottom: 16px; display: flex; align-items: center; gap: 12px; font-size: 16px; }
.studio-quote { border-left: 3px solid var(--accent); padding-left: 20px; font-style: italic; color: #555; margin-top: 32px; }

/* custom showcase */
.custom-showcase { max-width: 1280px; margin: 60px auto; padding: 0 24px; }
.showcase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 32px; }
.show-item { background-size: cover; background-position: center; aspect-ratio: 1 / 1; border-radius: 12px; position: relative; overflow: hidden; cursor: pointer; }
.show-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); display: flex; align-items: flex-end; padding: 16px; color: white; font-weight: 600; transition: 0.2s; }
.show-item:hover .show-overlay { background: rgba(0,0,0,0.6); }

/* service grid */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  border: 1px solid var(--border);
}
.svc {
  background: rgba(255, 255, 255, 0.95);
  padding: 36px 24px;
  transition: background 0.2s;
}
.svc:hover { background: rgba(250, 250, 250, 0.98); }
.svc-n { font-size: 48px; font-weight: 800; color: rgba(230,184,0,0.1); margin-bottom: 16px; line-height: 1; }
.svc-ico img { width: 36px; height: 36px; margin-bottom: 12px; }
.svc-title { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.svc-body { font-size: 14px; color: #777; }

/* ----- PROCESS ----- */
.proc {
  background: rgba(250, 250, 250, 0.9);
  padding: 80px 24px;
  border-top: 1px solid var(--border);
}
.proc-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; max-width: 1280px; margin: 0 auto 48px; }
.proc-desc { font-size: 16px; color: #777; }
.proc-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1280px; margin: 0 auto; }
.pstep {
  background: rgba(255, 255, 255, 0.95);
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.ps-n { font-size: 48px; font-weight: 800; color: rgba(230,184,0,0.1); display: block; margin-bottom: 12px; }
.ps-title { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
.ps-body { font-size: 14px; color: #777; }

/* ----- PARTNERS ----- */
.partners {
  padding: 80px 24px;
  background: rgba(255, 255, 255, 0.85);
}
.prt-kick { font-size: 14px; text-transform: uppercase; letter-spacing: 2px; color: #aaa; text-align: center; margin-bottom: 48px; display: flex; align-items: center; gap: 24px; }
.prt-kick::before, .prt-kick::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.prt-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 24px; max-width: 1280px; margin: 0 auto; }
.prt { font-size: 14px; font-weight: 500; color: #777; text-align: center; padding: 16px; background: rgba(250, 250, 250, 0.9); border-radius: 4px; transition: color 0.2s; }
.prt:hover { color: var(--accent); }

/* ----- PRESS ----- */
.press {
  padding: 80px 24px;
  background: rgba(250, 250, 250, 0.9);
  border-top: 1px solid var(--border);
}
.press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1280px; margin: 48px auto 0; }
.pc {
  background: rgba(255, 255, 255, 0.95);
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.pc-ico img { width: 40px; height: 40px; margin-bottom: 16px; opacity: 0.6; }
.pc-tag { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.pc-tag::before { content: ''; width: 20px; height: 2px; background: var(--accent); }
.pc-q { font-size: 16px; font-weight: 500; margin-bottom: 16px; }
.pc-src { font-size: 13px; color: #aaa; }

/* ----- CTA ----- */
.cta-sec {
  background: var(--accent);
  color: #fff;
  padding: 100px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 8px;
}
.cta-h { font-size: clamp(40px, 6vw, 70px); font-weight: 800; line-height: 1.1; }
.cta-p { font-size: 18px; opacity: 0.9; max-width: 500px; margin: 20px 0; }
.cta-meta { display: flex; flex-direction: column; gap: 4px; font-size: 14px; opacity: 0.8; }
.cta-meta a { text-decoration: underline; text-underline-offset: 2px; }
.btn-dk { background: #fff; color: var(--accent); padding: 16px 40px; border-radius: 4px; font-weight: 600; font-size: 15px; transition: background 0.2s; }
.btn-dk:hover { background: #f0f0f0; }
.btn-ol { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 2px; font-size: 14px; }
.btn-ol:hover { border-color: #fff; }

/* ----- FOOTER (stays dark with slight transparency) ----- */
footer {
  background: rgba(17, 17, 17, 0.92);
  color: #fff;
  padding: 60px 24px 30px;
}
.ft-main { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; max-width: 1280px; margin: 0 auto; }
.ft-logo { font-size: 48px; font-weight: 800; color: #fff; display: block; margin-bottom: 20px; }
.ft-tag { font-size: 14px; color: #aaa; margin-bottom: 24px; max-width: 300px; }
.ft-social { display: flex; gap: 12px; }
.ft-social a { width: 40px; height: 40px; border: 1px solid #333; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.ft-social a img { width: 20px; height: 20px; filter: brightness(0) invert(1); }
.ft-social a:hover { background: var(--accent); border-color: var(--accent); }
.ft-col-t { font-size: 16px; font-weight: 600; margin-bottom: 24px; color: #fff; }
.ft-col ul { list-style: none; }
.ft-col li { margin-bottom: 12px; }
.ft-col a { font-size: 14px; color: #aaa; transition: color 0.2s; }
.ft-col a:hover { color: #fff; }
.ft-bot { max-width: 1280px; margin: 40px auto 0; padding-top: 30px; border-top: 1px solid #222; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: #666; }
.ft-made { display: flex; align-items: center; gap: 10px; }

/* ----- REVEAL ANIMATIONS ----- */
.rv { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.rv.up { opacity: 1; transform: translateY(0); }

/* ----- RESPONSIVE ----- */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hero .h-content { margin-left: 5%; }
  .story-in { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .lookbook { grid-template-columns: repeat(2, 1fr); }
  .bodo-in { grid-template-columns: 1fr; }
  .custom-hero { grid-template-columns: 1fr; }
  .custom-studio { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-steps { grid-template-columns: repeat(2, 1fr); }
  .prt-grid { grid-template-columns: repeat(3, 1fr); }
  .press-grid { grid-template-columns: 1fr; }
  .cta-sec { grid-template-columns: 1fr; }
  .ft-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .hero .h-stats { display: none; }
  .stats-band { grid-template-columns: 1fr; }
  .lookbook { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .proc-steps { grid-template-columns: 1fr; }
  .prt-grid { grid-template-columns: repeat(2, 1fr); }
}