:root {
  --bg: #050807;
  --bg-2: #08110e;
  --surface: rgba(12, 28, 23, 0.72);
  --surface-solid: #0b1713;
  --surface-2: #10231c;
  --line: rgba(124, 255, 204, 0.12);
  --line-strong: rgba(124, 255, 204, 0.28);
  --text: #f4fff9;
  --muted: #9eb0a7;
  --green: #00b77a;
  --green-2: #00e29a;
  --green-3: #76ffc5;
  --shadow: 0 32px 80px rgba(0,0,0,.42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 10%, rgba(0, 183, 122, .13), transparent 30%),
    radial-gradient(circle at 88% 22%, rgba(0, 226, 154, .08), transparent 26%),
    linear-gradient(180deg, #040706 0%, #07110d 48%, #040706 100%);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

.noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 999;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}
.cursor-glow {
  width: 360px; height: 360px; border-radius: 50%;
  position: fixed; left: 0; top: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(circle, rgba(0,226,154,.10), transparent 66%);
  transform: translate(-50%, -50%);
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.site-header {
  position: fixed;
  top: 18px; left: 50%; transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  height: 72px;
  padding: 0 16px 0 22px;
  display: flex; align-items: center; justify-content: space-between;
  border: 1px solid rgba(124,255,204,.12);
  border-radius: 22px;
  background: rgba(4, 10, 8, .72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0,0,0,.28);
  z-index: 100;
}
.brand { display: inline-flex; align-items: center; gap: 13px; font-weight: 800; }
.brand-text { letter-spacing: -.03em; }
.brand-text b { color: var(--green-2); }
.brand-mark {
  width: 36px; height: 36px; position: relative; display: inline-block;
  transform-style: preserve-3d; transform: rotateX(56deg) rotateZ(45deg);
}
.brand-mark i {
  position: absolute; width: 20px; height: 20px;
  border: 2px solid var(--green-2); border-radius: 4px;
}
.brand-mark i:nth-child(1) { left: 0; top: 0; }
.brand-mark i:nth-child(2) { left: 8px; top: 8px; opacity: .75; }
.brand-mark i:nth-child(3) { left: 16px; top: 16px; opacity: .45; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { color: #c8d6d0; font-size: .9rem; font-weight: 700; transition: .25s ease; }
.main-nav a:hover { color: var(--green-2); }
.main-nav .nav-cta {
  padding: 12px 17px; border-radius: 12px;
  color: #03130c; background: var(--green-2);
}
.menu-toggle { display: none; background: none; border: 0; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px; background: white; }

.section { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 110px 0; }
.hero {
  min-height: 100vh;
  padding-top: 160px;
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 40px;
  position: relative;
}
.eyebrow, .kicker {
  display: inline-flex; align-items: center; gap: 9px;
  color: var(--green-3); text-transform: uppercase; font-size: .73rem;
  letter-spacing: .17em; font-weight: 800;
}
.eyebrow::before, .kicker::before { content: ""; width: 24px; height: 1px; background: var(--green-2); }

.hero h1 {
  margin: 22px 0 24px; max-width: 780px;
  font-family: "Playfair Display", serif;
  font-size: clamp(3.2rem, 7.2vw, 6.4rem);
  line-height: .95; letter-spacing: -.055em;
}
.hero h1 span, .hero h1 strong { display: block; }
.hero h1 strong {
  color: transparent;
  background: linear-gradient(90deg, var(--green-2), #b3ffe0);
  -webkit-background-clip: text; background-clip: text;
}
.hero-copy > p { max-width: 640px; color: var(--muted); font-size: 1.08rem; line-height: 1.8; }
.hero-actions { display: flex; gap: 14px; margin: 34px 0 44px; }
.btn {
  min-height: 52px; padding: 0 22px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: 1px solid transparent; font-weight: 800; transition: .25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { color: #04130d; background: linear-gradient(135deg, var(--green-2), #7dffc8); box-shadow: 0 14px 30px rgba(0,226,154,.18); }
.btn-secondary { color: #d8e6df; border-color: var(--line-strong); background: rgba(255,255,255,.025); }

.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 650px; gap: 20px; }
.hero-stats div { padding-left: 16px; border-left: 1px solid var(--line-strong); }
.hero-stats strong { display: block; font-size: 1.75rem; color: white; }
.hero-stats span { color: var(--muted); font-size: .78rem; }

.hero-visual { min-height: 560px; display: grid; place-items: center; perspective: 1200px; }
.orbital {
  width: min(510px, 90vw); aspect-ratio: 1; position: relative;
  display: grid; place-items: center; transform-style: preserve-3d;
  animation: float 7s ease-in-out infinite;
}
.orbit {
  position: absolute; inset: 8%; border: 1px solid rgba(85,255,188,.17); border-radius: 50%;
  transform-style: preserve-3d;
}
.orbit-one { transform: rotateX(72deg) rotateZ(14deg); animation: spin 12s linear infinite; }
.orbit-two { inset: 17%; transform: rotateY(72deg) rotateZ(24deg); animation: spinReverse 16s linear infinite; }
.orbit-three { inset: 26%; transform: rotateX(54deg) rotateY(52deg); animation: spin 10s linear infinite; }

.fashion-core {
  width: 255px; height: 255px; position: relative;
  display: grid; place-items: center; border-radius: 34%;
  background:
    radial-gradient(circle at 35% 25%, rgba(150,255,213,.24), transparent 30%),
    linear-gradient(145deg, rgba(0,226,154,.2), rgba(4,18,13,.92));
  border: 1px solid rgba(124,255,204,.3);
  box-shadow:
    inset 0 0 45px rgba(0,226,154,.12),
    0 40px 80px rgba(0,0,0,.48),
    0 0 80px rgba(0,226,154,.12);
  transform: rotateX(8deg) rotateY(-12deg);
}
.fashion-core::before {
  content: ""; position: absolute; inset: 10px; border-radius: 31%;
  border: 1px solid rgba(255,255,255,.06);
}
.shirt { width: 150px; height: 150px; position: relative; filter: drop-shadow(0 22px 24px rgba(0,0,0,.35)); }
.shirt-body { position: absolute; width: 88px; height: 112px; left: 31px; top: 26px; border-radius: 12px 12px 24px 24px; background: linear-gradient(140deg,#97ffd5,#00b77a 58%,#006b47); }
.shirt-neck { position: absolute; width: 34px; height: 18px; left: 58px; top: 20px; z-index: 3; border-radius: 0 0 20px 20px; background: #092017; }
.shirt-left, .shirt-right { position: absolute; width: 47px; height: 58px; top: 29px; background: linear-gradient(140deg,#84ffcd,#009b67); }
.shirt-left { left: 7px; transform: rotate(28deg); border-radius: 12px 3px 16px 18px; }
.shirt-right { right: 7px; transform: rotate(-28deg); border-radius: 3px 12px 18px 16px; }
.shirt-line { position: absolute; left: 55px; z-index: 4; width: 40px; height: 2px; background: rgba(1,47,31,.45); }
.line-a { top: 82px; } .line-b { top: 96px; }
.floating-chip {
  position: absolute; padding: 10px 14px; border-radius: 10px;
  font-size: .67rem; font-weight: 800; letter-spacing: .12em;
  color: #cffff0; background: rgba(9, 30, 22, .82); border: 1px solid var(--line-strong);
  backdrop-filter: blur(10px); box-shadow: 0 15px 30px rgba(0,0,0,.32);
}
.chip-a { top: 13%; left: 4%; transform: rotate(-6deg); }
.chip-b { right: 0; top: 36%; transform: rotate(5deg); }
.chip-c { bottom: 9%; left: 17%; transform: rotate(3deg); }
.scroll-cue {
  position: absolute; bottom: 30px; left: 0;
  display: flex; align-items: center; gap: 12px; color: #829188; font-size: .75rem; font-weight: 700;
}
.scroll-cue i { width: 46px; height: 1px; background: linear-gradient(90deg,var(--green-2),transparent); }

.section-heading {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: end; margin-bottom: 52px;
}
.section-heading h2, .impact h2, .ceo-message h2, .contact h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.45rem, 4.8vw, 4.3rem);
  line-height: 1.05; letter-spacing: -.045em; margin: 16px 0 0;
}
.section-heading > p, .impact-copy > p, .contact-intro > p { color: var(--muted); line-height: 1.8; }

.about-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 18px; perspective: 1000px; }
.glass-card, .service-card, .person-card, .goal-card {
  position: relative; overflow: hidden; transform-style: preserve-3d;
  border: 1px solid var(--line); background: linear-gradient(145deg, rgba(18,42,33,.72), rgba(6,15,12,.84));
  box-shadow: var(--shadow);
}
.glass-card { min-height: 330px; padding: 32px; border-radius: 26px; }
.glass-card::after, .service-card::after, .person-card::after {
  content: ""; position: absolute; width: 160px; height: 160px; right: -70px; top: -70px;
  border-radius: 50%; background: radial-gradient(circle,rgba(0,226,154,.13),transparent 70%);
}
.card-index, .service-number { color: var(--green-2); font-size: .7rem; letter-spacing: .15em; font-weight: 800; }
.glass-card h3, .service-card h3 { margin: 55px 0 14px; font-size: 1.35rem; }
.glass-card p, .service-card p { color: var(--muted); line-height: 1.75; }
.story-card h3 { font-size: 1.7rem; }
.signature-line { margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--green-3); font-weight: 700; }
.clean-list { list-style: none; padding: 0; margin: 50px 0 0; }
.clean-list li { padding: 12px 0 12px 19px; border-bottom: 1px solid rgba(255,255,255,.05); color: var(--muted); position: relative; }
.clean-list li::before { content: ""; position: absolute; left: 0; top: 20px; width: 6px; height: 6px; border-radius: 50%; background: var(--green-2); }

.achievements { position: relative; }
.timeline { display: grid; grid-template-columns: repeat(4,1fr); gap: 26px; position: relative; padding-top: 42px; }
.timeline-track { position: absolute; left: 0; right: 0; top: 12px; height: 1px; background: linear-gradient(90deg,var(--green-2),rgba(0,226,154,.1)); }
.milestone { position: relative; }
.milestone::before { content:""; position:absolute; top:-36px; left:0; width:14px; height:14px; border-radius:50%; background:var(--green-2); box-shadow:0 0 0 7px rgba(0,226,154,.08),0 0 25px rgba(0,226,154,.38); }
.milestone span { color: var(--green-3); font-weight: 800; font-size: .76rem; }
.milestone h3 { margin: 14px 0 10px; font-size: 1.12rem; }
.milestone p { color: var(--muted); line-height: 1.7; font-size: .9rem; }

.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; perspective: 1000px; }
.service-card { min-height: 310px; padding: 27px; border-radius: 24px; }
.service-card h3 { margin-top: 28px; }
.service-icon { width: 72px; height: 72px; margin-top: 36px; position: relative; transform-style: preserve-3d; }
.cube-icon i { position:absolute; width:39px; height:39px; border:1px solid var(--green-2); background:rgba(0,226,154,.06); }
.cube-icon i:nth-child(1){left:10px;top:10px;transform:skewY(30deg)}
.cube-icon i:nth-child(2){left:29px;top:0;transform:skewY(-30deg)}
.cube-icon i:nth-child(3){left:29px;top:39px;transform:skewY(-30deg)}
.rings-icon i { position:absolute; border:1px solid var(--green-2); border-radius:50%; }
.rings-icon i:first-child { inset:8px; transform:rotateX(65deg); }
.rings-icon i:last-child { inset:18px 2px; transform:rotateY(68deg); }
.bars-icon i { position:absolute; bottom:10px; width:12px; border-radius:5px 5px 0 0; background:linear-gradient(var(--green-3),var(--green)); }
.bars-icon i:nth-child(1){height:27px;left:8px}.bars-icon i:nth-child(2){height:48px;left:28px}.bars-icon i:nth-child(3){height:36px;left:48px}
.shield-icon i { position:absolute; inset:8px 12px; background:linear-gradient(145deg,var(--green-2),#006d49); clip-path:polygon(50% 0,100% 17%,89% 72%,50% 100%,11% 72%,0 17%); }
.leaf-icon i { position:absolute; inset:8px; border-radius:58% 8% 58% 8%; background:linear-gradient(145deg,var(--green-3),var(--green)); transform:rotate(-32deg); }
.route-icon i { position:absolute; width:12px; height:12px; border-radius:50%; background:var(--green-2); box-shadow:0 0 18px rgba(0,226,154,.55); }
.route-icon i:nth-child(1){left:4px;top:45px}.route-icon i:nth-child(2){left:32px;top:20px}.route-icon i:nth-child(3){right:3px;top:47px}
.route-icon::after{content:"";position:absolute;left:10px;right:9px;top:33px;height:1px;background:var(--green-2);transform:rotate(-5deg)}

.product-stage { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; perspective: 1200px; }
.product-panel {
  min-height: 380px; border-radius: 28px; overflow: hidden; position: relative;
  border: 1px solid var(--line); background: #09130f; box-shadow: var(--shadow);
  display: grid; grid-template-columns: 1.1fr .9fr;
}
.product-art { position: relative; overflow: hidden; background: radial-gradient(circle at 48% 40%,rgba(0,226,154,.18),transparent 45%),linear-gradient(140deg,#0f2a20,#060b09); }
.product-art::before { content:""; position:absolute; inset:16%; border:1px solid rgba(124,255,204,.16); border-radius:30%; transform:rotate(16deg); }
.product-art span { position:absolute; left:50%; top:50%; transform:translate(-50%,-50%) rotate(-7deg); filter:drop-shadow(0 25px 22px rgba(0,0,0,.45)); }
.art-knit span { width:145px;height:175px;background:linear-gradient(145deg,#83ffd0,#008c5e);clip-path:polygon(24% 8%,39% 0,61% 0,76% 8%,100% 27%,84% 48%,72% 39%,75% 100%,25% 100%,28% 39%,16% 48%,0 27%); }
.art-woven span { width:128px;height:190px;background:linear-gradient(145deg,#e5fff4,#3cbb8c 62%,#006544);clip-path:polygon(35% 0,65% 0,72% 9%,100% 25%,82% 43%,72% 36%,76% 100%,24% 100%,28% 36%,18% 43%,0 25%,28% 9%); }
.art-denim span { width:132px;height:190px;background:linear-gradient(145deg,#3f9d7b,#00553a);clip-path:polygon(12% 0,88% 0,82% 46%,100% 100%,62% 100%,50% 54%,38% 100%,0 100%,18% 46%); }
.art-special span { width:155px;height:165px;border-radius:48% 48% 20% 20%;background:linear-gradient(145deg,#adffe0,#00a36d);clip-path:polygon(19% 0,81% 0,100% 34%,80% 51%,70% 37%,75% 100%,25% 100%,30% 37%,20% 51%,0 34%); }
.product-copy { padding: 34px 28px; display:flex; flex-direction:column; justify-content:flex-end; }
.product-copy > span { color:var(--green-2);font-weight:800;font-size:.74rem; }
.product-copy h3 { font-size:1.65rem;margin:12px 0; }
.product-copy p { color:var(--muted);line-height:1.7;font-size:.9rem; }

.impact-shell {
  border:1px solid var(--line); border-radius:34px; overflow:hidden;
  background:linear-gradient(140deg,#0b2118,#050a08 62%);
  display:grid;grid-template-columns:1fr 1fr;min-height:650px;box-shadow:var(--shadow);
}
.impact-copy { padding: 74px 62px; display:flex;flex-direction:column;justify-content:center; }
.impact-copy p { max-width:580px; }
.text-link { color:var(--green-3);font-weight:800;margin-top:20px; }
.impact-orbit { position:relative;min-height:600px;display:grid;place-items:center;overflow:hidden; }
.planet { width:275px;height:275px;border-radius:50%;position:relative;background:radial-gradient(circle at 34% 25%,#a5ffe0 0,#23c98b 18%,#08704b 48%,#04281b 72%);box-shadow:inset -28px -30px 50px rgba(0,0,0,.35),0 0 80px rgba(0,226,154,.18); }
.planet-ring { position:absolute;left:-80px;right:-80px;top:112px;height:58px;border:13px solid rgba(91,255,191,.32);border-left-color:rgba(91,255,191,.08);border-right-color:rgba(91,255,191,.52);border-radius:50%;transform:rotate(-13deg); }
.planet-glow { position:absolute;inset:-40px;border-radius:50%;border:1px solid rgba(124,255,204,.08);box-shadow:0 0 80px rgba(0,226,154,.12); }
.planet-leaf { position:absolute;width:72px;height:100px;background:linear-gradient(145deg,#d8ffef,#15c582);border-radius:80% 0 80% 0; }
.leaf-one{right:4px;top:-35px;transform:rotate(24deg)}.leaf-two{right:-40px;top:28px;transform:rotate(68deg) scale(.75)}
.impact-label { position:absolute;padding:14px 17px;border-radius:14px;background:rgba(5,16,12,.8);border:1px solid var(--line-strong);backdrop-filter:blur(12px);box-shadow:0 18px 35px rgba(0,0,0,.35); }
.impact-label strong,.impact-label span{display:block}.impact-label strong{font-size:.85rem}.impact-label span{color:var(--muted);font-size:.7rem;margin-top:3px}
.label-one{top:16%;left:8%}.label-two{top:35%;right:4%}.label-three{bottom:13%;left:14%}

.goal-grid { display:grid;grid-template-columns:repeat(3,1fr);gap:18px; }
.goal-card { padding:32px;border-radius:24px; }
.goal-year { color:var(--green-2);font-weight:800;letter-spacing:.1em; }
.goal-card h3 { font-size:1.3rem;margin:36px 0 12px; }
.goal-card p { color:var(--muted);line-height:1.7;min-height:110px; }
.progress { height:7px;border-radius:20px;background:rgba(255,255,255,.06);overflow:hidden;margin-top:24px; }
.progress i { display:block;height:100%;width:var(--progress);border-radius:20px;background:linear-gradient(90deg,var(--green),var(--green-3));box-shadow:0 0 18px rgba(0,226,154,.35); }

.management-grid { display:grid;grid-template-columns:repeat(2,1fr);gap:18px;perspective:1000px; }
.person-card { min-height:320px;padding:28px;border-radius:24px;display:flex;flex-direction:column; }
.person-featured { grid-column:span 2;min-height:300px;display:grid;grid-template-columns:180px 1fr;align-items:center;gap:38px;background:linear-gradient(135deg,rgba(18,54,40,.9),rgba(5,13,10,.95)); }
.avatar { width:84px;height:84px;border-radius:24px;display:grid;place-items:center;background:linear-gradient(145deg,var(--green-2),#00734d);box-shadow:inset 0 0 0 1px rgba(255,255,255,.18),0 20px 35px rgba(0,0,0,.3);font-weight:800;font-size:1.25rem;color:#03130c; }
.person-featured .avatar { width:150px;height:150px;border-radius:40px;font-size:2rem; }
.office-tag { display:inline-flex;width:max-content;padding:7px 10px;border-radius:9px;background:rgba(0,226,154,.09);border:1px solid rgba(0,226,154,.16);color:var(--green-3);font-size:.67rem;text-transform:uppercase;letter-spacing:.12em;font-weight:800; }
.person-card h3 { margin:18px 0 4px;font-size:1.45rem; }
.person-card h4 { margin:0 0 14px;color:#c5d5cd;font-size:.82rem;line-height:1.5; }
.person-card p { color:var(--muted); }
.person-card a { color:var(--muted);font-size:.82rem;margin-top:7px;word-break:break-word; }
.person-card a:hover { color:var(--green-2); }

.ceo-message { display:grid;grid-template-columns:.32fr 1.68fr;gap:40px;align-items:start;max-width:1000px; }
.quote-mark { font-family:"Playfair Display",serif;font-size:12rem;line-height:.72;color:rgba(0,226,154,.18); }
.ceo-copy p { color:var(--muted);font-size:1.06rem;line-height:1.9;max-width:800px; }
.ceo-sign { margin-top:34px;padding-top:24px;border-top:1px solid var(--line);display:flex;flex-direction:column; }
.ceo-sign strong { font-size:1.25rem; }.ceo-sign span{color:var(--green-3);margin-top:4px;font-size:.86rem}

.contact { display:grid;grid-template-columns:.85fr 1.15fr;gap:52px;align-items:start; }
.contact-intro { position:sticky;top:120px; }
.contact-links { margin-top:30px;display:flex;flex-direction:column;gap:12px; }
.contact-links a { color:var(--green-3);font-weight:700;word-break:break-word; }
.contact-form { padding:32px;border-radius:26px;border:1px solid var(--line);background:linear-gradient(145deg,rgba(17,41,31,.7),rgba(5,13,10,.88));box-shadow:var(--shadow); }
.form-row { display:grid;grid-template-columns:1fr 1fr;gap:14px; }
.contact-form label { display:flex;flex-direction:column;gap:8px;margin-bottom:14px; }
.contact-form label span { font-size:.76rem;color:#c7d8cf;font-weight:800; }
.contact-form input,.contact-form select,.contact-form textarea {
  width:100%;border:1px solid rgba(255,255,255,.09);border-radius:13px;background:rgba(255,255,255,.035);color:white;padding:14px;outline:none;transition:.2s ease;
}
.contact-form input,.contact-form select{height:50px}.contact-form textarea{resize:vertical}
.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus{border-color:var(--green);box-shadow:0 0 0 4px rgba(0,226,154,.08)}
.contact-form select option { color:#09100d; }
.form-submit { border:0;width:100%;margin-top:6px; }
.form-note { color:#6f8178;font-size:.7rem;text-align:center;margin:13px 0 0; }
.office-grid { grid-column:1/-1;display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:18px; }
.office-card { padding:27px;border-top:1px solid var(--line-strong);background:linear-gradient(180deg,rgba(0,226,154,.035),transparent); }
.office-card > span{color:var(--green-2);font-size:.7rem;font-weight:800}.office-card h3{font-size:1.2rem}.office-card p{color:var(--muted);line-height:1.75;font-size:.88rem}

footer { width:min(1180px,calc(100% - 40px));margin:0 auto;padding:52px 0 34px;border-top:1px solid var(--line);display:grid;grid-template-columns:1fr auto;gap:30px; }
.footer-brand p { color:var(--muted);max-width:470px;line-height:1.7;font-size:.85rem; }
.footer-links { display:flex;gap:24px;align-items:start;font-size:.83rem;color:#b7c8bf; }
.footer-bottom { grid-column:1/-1;padding-top:24px;border-top:1px solid rgba(255,255,255,.05);display:flex;justify-content:space-between;color:#6f8178;font-size:.75rem; }

.reveal { opacity:0;transform:translateY(34px);transition:opacity .8s ease,transform .8s cubic-bezier(.2,.7,.2,1);transition-delay:var(--delay,0ms); }
.reveal.visible { opacity:1;transform:translateY(0); }

@keyframes float { 0%,100%{transform:translateY(0) rotateY(-4deg)}50%{transform:translateY(-18px) rotateY(4deg)} }
@keyframes spin { to{transform:rotateX(72deg) rotateZ(374deg)} }
@keyframes spinReverse { to{transform:rotateY(72deg) rotateZ(-336deg)} }

@media (max-width: 980px) {
  .main-nav { position:fixed;top:86px;left:16px;right:16px;padding:24px;border:1px solid var(--line);border-radius:18px;background:rgba(4,12,9,.97);display:none;flex-direction:column;align-items:stretch; }
  .main-nav.open { display:flex; }
  .menu-toggle { display:block; }
  .hero { grid-template-columns:1fr;padding-top:150px; }
  .hero-visual { min-height:500px; }
  .scroll-cue { display:none; }
  .section-heading { grid-template-columns:1fr;gap:18px; }
  .about-grid { grid-template-columns:1fr 1fr; }
  .story-card { grid-column:span 2; }
  .timeline { grid-template-columns:1fr 1fr;row-gap:70px; }
  .timeline-track { display:none; }
  .service-grid { grid-template-columns:1fr 1fr; }
  .impact-shell { grid-template-columns:1fr; }
  .goal-grid { grid-template-columns:1fr; }
  .contact { grid-template-columns:1fr; }
  .contact-intro { position:static; }
}
@media (max-width: 700px) {
  .site-header { top:10px;height:64px;width:calc(100% - 20px);border-radius:18px; }
  .brand-text { font-size:.9rem; }
  .section { width:min(100% - 24px,1180px);padding:78px 0; }
  .hero { padding-top:130px; }
  .hero h1 { font-size:clamp(3rem,15vw,4.8rem); }
  .hero-actions { flex-direction:column; }
  .hero-stats { grid-template-columns:1fr; }
  .hero-visual { min-height:390px; }
  .orbital { width:350px; }
  .fashion-core { width:190px;height:190px; }
  .shirt { transform:scale(.78); }
  .chip-a{left:0}.chip-b{right:0}.chip-c{left:10%}
  .about-grid,.service-grid,.product-stage,.management-grid,.office-grid { grid-template-columns:1fr; }
  .story-card,.person-featured { grid-column:auto; }
  .person-featured { display:flex; }
  .person-featured .avatar { width:100px;height:100px;border-radius:28px; }
  .timeline { grid-template-columns:1fr; }
  .product-panel { grid-template-columns:1fr; }
  .product-art { min-height:260px; }
  .impact-copy { padding:46px 26px; }
  .impact-orbit { min-height:500px; }
  .planet { width:210px;height:210px; }
  .planet-ring { top:85px;left:-55px;right:-55px; }
  .ceo-message { grid-template-columns:1fr; }
  .quote-mark { font-size:8rem; }
  .form-row { grid-template-columns:1fr; }
  footer { grid-template-columns:1fr; }
  .footer-links { flex-wrap:wrap; }
  .footer-bottom { flex-direction:column;gap:8px; }
}
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation:none!important;scroll-behavior:auto!important;transition-duration:.01ms!important; }
}


/* Interactive product photo galleries */
.gallery-trigger {
  width: 100%;
  padding: 0;
  color: inherit;
  text-align: left;
  cursor: pointer;
  appearance: none;
  font: inherit;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.gallery-trigger:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 226, 154, .42);
  box-shadow: 0 35px 90px rgba(0,0,0,.55), 0 0 42px rgba(0,226,154,.08);
}
.gallery-trigger:focus-visible {
  outline: 2px solid var(--green-2);
  outline-offset: 5px;
}
.product-photo-cover {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  isolation: isolate;
}
.product-photo-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(145deg, rgba(0,226,154,.14), transparent 48%, rgba(0,0,0,.3));
  transition: transform .6s ease, background .4s ease;
}
.product-photo-cover::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(124,255,204,.2);
  border-radius: 28%;
  transform: rotate(12deg);
}
.gallery-trigger:hover .product-photo-cover::before {
  transform: scale(1.06);
  background: linear-gradient(145deg, rgba(0,226,154,.24), transparent 48%, rgba(0,0,0,.18));
}
.knit-cover {
  background-image:
    linear-gradient(135deg, rgba(2,24,16,.2), rgba(2,20,14,.52)),
    url("https://images.unsplash.com/photo-1521572163474-6864f9cf17ab?auto=format&fit=crop&w=1100&q=82");
}
.woven-cover {
  background-image:
    linear-gradient(135deg, rgba(2,24,16,.2), rgba(2,20,14,.52)),
    url("https://images.unsplash.com/photo-1523381210434-271e8be1f52b?auto=format&fit=crop&w=1100&q=82");
}
.denim-cover {
  background-image:
    linear-gradient(135deg, rgba(2,24,16,.15), rgba(2,20,14,.52)),
    url("https://images.unsplash.com/photo-1542272604-787c3835535d?auto=format&fit=crop&w=1100&q=82");
}
.special-cover {
  background-image:
    linear-gradient(135deg, rgba(2,24,16,.15), rgba(2,20,14,.52)),
    url("https://images.unsplash.com/photo-1517836357463-d25dfeac3438?auto=format&fit=crop&w=1100&q=82");
}
.gallery-count,
.gallery-open {
  position: absolute;
  z-index: 2;
  padding: 9px 12px;
  border: 1px solid rgba(124,255,204,.22);
  border-radius: 10px;
  background: rgba(3,15,10,.68);
  backdrop-filter: blur(10px);
  color: #e5fff3;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.gallery-count { top: 18px; left: 18px; }
.gallery-open {
  right: 18px;
  bottom: 18px;
  color: var(--green-3);
  transform: translateY(8px);
  opacity: 0;
  transition: .3s ease;
}
.gallery-trigger:hover .gallery-open {
  transform: translateY(0);
  opacity: 1;
}
.gallery-hint {
  margin: 22px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: .82rem;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 24px;
}
.gallery-modal.open { display: grid; }
.gallery-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,5,3,.88);
  backdrop-filter: blur(18px);
}
.gallery-dialog {
  position: relative;
  width: min(1180px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 28px;
  border: 1px solid rgba(124,255,204,.2);
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 0, rgba(0,226,154,.12), transparent 33%),
    linear-gradient(145deg, rgba(10,30,22,.98), rgba(3,10,7,.99));
  box-shadow: 0 40px 120px rgba(0,0,0,.75);
  animation: galleryIn .38s cubic-bezier(.2,.8,.2,1);
}
.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 22px;
}
.gallery-header h2 {
  margin: 10px 0 6px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: -.04em;
}
.gallery-header p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
}
.gallery-close {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(255,255,255,.04);
  color: white;
  font-size: 1rem;
  transition: .25s ease;
}
.gallery-close:hover { background: rgba(0,226,154,.13); color: var(--green-3); }

.gallery-viewer {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  align-items: center;
  gap: 14px;
}
.gallery-main {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #020604;
}
.gallery-main img {
  display: block;
  width: 100%;
  height: min(58vh, 650px);
  object-fit: cover;
  opacity: 1;
  transition: opacity .2s ease, transform .45s ease;
}
.gallery-main img.switching {
  opacity: .15;
  transform: scale(.985);
}
.gallery-main figcaption {
  min-height: 54px;
  padding: 13px 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: #cfe0d7;
  background: rgba(8,20,15,.9);
}
.gallery-main figcaption span { font-size: .86rem; }
.gallery-main figcaption strong {
  flex: 0 0 auto;
  color: var(--green-3);
  font-size: .76rem;
  letter-spacing: .08em;
}
.gallery-arrow {
  width: 52px;
  height: 72px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(9,29,21,.76);
  color: white;
  font-size: 2.3rem;
  line-height: 1;
  transition: .25s ease;
}
.gallery-arrow:hover {
  color: #03130c;
  background: var(--green-2);
  transform: scale(1.04);
}
.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(6, minmax(110px, 1fr));
  gap: 10px;
  margin-top: 16px;
}
.gallery-thumb {
  position: relative;
  height: 100px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 13px;
  background: #07110d;
  opacity: .58;
  transition: .25s ease;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.gallery-thumb:hover,
.gallery-thumb.active {
  opacity: 1;
  border-color: var(--green-2);
  box-shadow: 0 0 0 2px rgba(0,226,154,.1);
}
body.gallery-open { overflow: hidden; }

@keyframes galleryIn {
  from { opacity: 0; transform: translateY(24px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 800px) {
  .gallery-dialog { padding: 18px; border-radius: 21px; }
  .gallery-viewer { grid-template-columns: 1fr; }
  .gallery-arrow {
    position: absolute;
    z-index: 3;
    top: 48%;
    width: 44px;
    height: 58px;
    background: rgba(2,13,8,.82);
  }
  .gallery-prev { left: 24px; }
  .gallery-next { right: 24px; }
  .gallery-main img { height: 48vh; }
  .gallery-thumbnails {
    display: flex;
    overflow-x: auto;
    padding-bottom: 6px;
  }
  .gallery-thumb { min-width: 105px; }
}
@media (max-width: 520px) {
  .gallery-modal { padding: 8px; }
  .gallery-dialog { max-height: calc(100vh - 16px); padding: 15px; }
  .gallery-header h2 { font-size: 2rem; }
  .gallery-header p { font-size: .8rem; }
  .gallery-main img { height: 43vh; }
  .gallery-main figcaption { align-items: flex-start; }
  .gallery-open { opacity: 1; transform: none; }
}


/* Expanded product catalogue */
.product-gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.product-gallery-grid .product-panel {
  min-height: 420px;
  grid-template-columns: 1fr;
}
.product-gallery-grid .product-photo-cover {
  min-height: 255px;
  background-position: center;
  background-size: cover;
}
.product-gallery-grid .product-copy {
  min-height: 165px;
  padding: 25px;
}
.product-gallery-grid .product-copy h3 {
  font-size: 1.35rem;
}
.product-gallery-grid .product-copy p {
  margin-bottom: 0;
}

/* Organisation and customer sections */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.capability-card {
  min-height: 245px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(18,42,33,.72), rgba(6,15,12,.86));
  box-shadow: var(--shadow);
}
.capability-card strong {
  display: block;
  color: var(--green-3);
  font-size: 1.25rem;
  line-height: 1.25;
}
.capability-card > span {
  display: block;
  margin-top: 8px;
  color: #effff7;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 800;
}
.capability-card p {
  margin-top: 45px;
  color: var(--muted);
  line-height: 1.7;
  font-size: .88rem;
}
.factory-network {
  margin-top: 18px;
  padding: 38px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 50px;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 20%, rgba(0,226,154,.14), transparent 30%),
    linear-gradient(135deg, #0d261b, #050b08);
}
.factory-network h3 {
  margin: 12px 0 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
}
.factory-network p {
  color: var(--muted);
  line-height: 1.8;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.client-card {
  min-height: 175px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(15,38,29,.82), rgba(5,13,10,.9));
  box-shadow: var(--shadow);
}
.client-card span {
  color: var(--green-2);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-weight: 800;
}
.client-card strong {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
}
.development-card {
  background:
    radial-gradient(circle at 90% 10%, rgba(0,226,154,.18), transparent 35%),
    linear-gradient(145deg, rgba(15,38,29,.82), rgba(5,13,10,.9));
}
.development-card strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
  line-height: 1.4;
}

@media (max-width: 980px) {
  .product-gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .factory-network { grid-template-columns: 1fr; gap: 16px; }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .product-gallery-grid,
  .capability-grid,
  .client-grid { grid-template-columns: 1fr; }
  .product-gallery-grid .product-panel { min-height:280px; }
  .factory-network { padding: 26px; }
}


/* Stable gallery modal fix */
.gallery-modal {
  visibility: hidden;
  opacity: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity .2s ease, visibility .2s ease;
}
.gallery-modal.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.gallery-modal .gallery-dialog {
  transform: translateY(12px) scale(.985);
  transition: transform .22s ease;
  animation: none !important;
}
.gallery-modal.open .gallery-dialog {
  transform: translateY(0) scale(1);
}
.gallery-arrow[hidden] {
  display: none !important;
}
.gallery-viewer:has(.gallery-arrow[hidden]) {
  grid-template-columns: minmax(0, 1fr);
}
.gallery-main img {
  background: #07110d;
}
.gallery-trigger {
  touch-action: manipulation;
}


/* Official Fashion Squad Global branding */
.official-brand {
  gap: 12px;
}
.official-brand > img {
  width: 58px;
  height: 48px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  border: 1px solid rgba(213, 173, 105, .34);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .34);
}
.footer-official-brand > img {
  width: 92px;
  height: 72px;
}
@media (max-width: 700px) {
  .official-brand > img {
    width: 48px;
    height: 40px;
  }
  .official-brand .brand-text {
    display: none;
  }
}

/* Premium management portraits */
.executive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 19px;
}
.executive-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 30% 70%;
  border: 1px solid var(--line);
  border-radius: 27px;
  background:
    radial-gradient(circle at 100% 0, rgba(0,226,154,.10), transparent 34%),
    linear-gradient(145deg, rgba(13,35,26,.92), rgba(4,12,9,.97));
  box-shadow: var(--shadow);
}
.executive-featured {
  grid-column: 1 / -1;
  min-height: 340px;
  grid-template-columns: 28% 72%;
  border-color: rgba(124,255,204,.25);
}
.executive-photo {
  min-height: 100%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #15251f, #07100d);
}
.executive-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(1,8,5,.34));
  pointer-events: none;
}
.executive-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center top;
  transition: transform .55s ease;
}
.executive-featured .executive-photo img {
  min-height: 340px;
  object-position: center 22%;
}
.executive-card:hover .executive-photo img {
  transform: scale(1.025);
}
.executive-content {
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.executive-content h3 {
  margin: 18px 0 5px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.7rem, 2.7vw, 2.55rem);
  line-height: 1.06;
  letter-spacing: -.035em;
}
.executive-featured .executive-content h3 {
  font-size: clamp(2.3rem, 4vw, 4rem);
}
.executive-content h4 {
  margin: 0 0 20px;
  color: var(--green-3);
  font-size: .83rem;
  line-height: 1.55;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.executive-content p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 24px;
}
.executive-contact {
  display: grid;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.executive-contact a {
  color: #c8d9d0;
  font-size: .78rem;
  word-break: break-word;
  transition: .2s ease;
}
.executive-contact a:hover {
  color: var(--green-2);
}
.executive-placeholder {
  display: grid;
  place-items: center;
}
.executive-placeholder span {
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  border-radius: 38px;
  color: #02150d;
  background: linear-gradient(145deg, var(--green-3), var(--green));
  font-size: 2.2rem;
  font-weight: 800;
  box-shadow: 0 25px 50px rgba(0,0,0,.36);
}

@media (max-width: 980px) {
  .executive-card,
  .executive-featured {
    grid-template-columns: 1fr;
  }
  .executive-photo img,
  .executive-featured .executive-photo img {
    height:320px;
    min-height:320px;
    object-position: center 18%;
  }
}
@media (max-width: 700px) {
  .executive-grid {
    grid-template-columns: 1fr;
  }
  .executive-featured {
    grid-column: auto;
  }
  .executive-photo img,
  .executive-featured .executive-photo img {
    height:280px;
    min-height:280px;
  }
  .executive-content {
    padding: 25px 22px 28px;
  }
}

/* Refined brand-led hero */
.hero-brand-focus{max-width:760px}.hero-company-kicker{display:inline-block;margin-bottom:14px;color:var(--green-3);font-size:.72rem;font-weight:800;letter-spacing:.18em;text-transform:uppercase}.hero-brand-focus h1{margin:0 0 18px;font-family:"Playfair Display",serif;font-size:clamp(4rem,8vw,7.5rem);line-height:.84;letter-spacing:-.06em}.hero-brand-focus h1 span,.hero-brand-focus h1 strong{display:block}.hero-brand-focus h1 span{color:#f4fff9}.hero-brand-focus h1 strong{margin-left:.55em;color:transparent;background:linear-gradient(90deg,var(--green-2),#b4ffe0);-webkit-background-clip:text;background-clip:text}.hero-brand-focus h2{max-width:650px;margin:0 0 12px;color:#d4e4dc;font-family:"Manrope",sans-serif;font-size:clamp(1.1rem,2vw,1.7rem);line-height:1.35}.hero-brand-focus .hero-motto{margin:0 0 24px;color:var(--green-3);font-size:.86rem;font-weight:700;letter-spacing:.09em;text-transform:uppercase}@media(max-width:700px){.hero-brand-focus h1{font-size:clamp(3.4rem,16vw,5.2rem)}.hero-brand-focus h1 strong{margin-left:0}}
/* Realistic service icons */
.realistic-icon{width:76px;height:76px;margin-top:34px;padding:8px;border-radius:19px;background:radial-gradient(circle at 30% 20%,rgba(151,255,217,.17),rgba(7,28,20,.78));border:1px solid rgba(124,255,204,.2);box-shadow:inset 0 0 22px rgba(0,226,154,.08),0 15px 30px rgba(0,0,0,.28);transform:translateZ(22px)}.realistic-icon svg{display:block;width:100%;height:100%;filter:drop-shadow(0 8px 10px rgba(0,0,0,.28))}.service-card:hover .realistic-icon{transform:translateZ(28px) scale(1.05);transition:transform .3s ease}.service-card .service-icon i{display:none}


/* =========================================================
   BLACK + RED GLASS THEME
   ========================================================= */
.black-red-glass-theme {
  --bg: #030304;
  --bg-2: #09090b;
  --surface: rgba(18, 18, 22, .56);
  --surface-solid: #0c0c0f;
  --surface-2: rgba(27, 27, 32, .68);
  --line: rgba(255, 255, 255, .10);
  --line-strong: rgba(235, 35, 58, .34);
  --text: #f8f8fa;
  --muted: #aaaab2;
  --green: #b70820;
  --green-2: #ec233f;
  --green-3: #ff7588;
  --shadow: 0 30px 90px rgba(0,0,0,.58);
  background:
    radial-gradient(circle at 14% 8%, rgba(225, 18, 47, .17), transparent 26%),
    radial-gradient(circle at 90% 18%, rgba(126, 0, 18, .13), transparent 28%),
    radial-gradient(circle at 55% 80%, rgba(255,255,255,.025), transparent 35%),
    linear-gradient(180deg, #020203 0%, #09090b 52%, #020203 100%);
  background-attachment: fixed;
}

.black-red-glass-theme::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.black-red-glass-theme .cursor-glow {
  background: radial-gradient(circle, rgba(235,35,63,.14), transparent 67%);
}

/* Global glass surfaces */
.black-red-glass-theme .site-header,
.black-red-glass-theme .glass-card,
.black-red-glass-theme .service-card,
.black-red-glass-theme .goal-card,
.black-red-glass-theme .capability-card,
.black-red-glass-theme .client-card,
.black-red-glass-theme .executive-card,
.black-red-glass-theme .contact-form,
.black-red-glass-theme .gallery-dialog,
.black-red-glass-theme .product-panel,
.black-red-glass-theme .impact-shell,
.black-red-glass-theme .factory-network,
.black-red-glass-theme .office-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  border: 1px solid rgba(255,255,255,.105);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 28px 80px rgba(0,0,0,.46);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
}

.black-red-glass-theme .site-header {
  background: rgba(8,8,10,.60);
  border-color: rgba(255,255,255,.13);
}

.black-red-glass-theme .site-header::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(235,35,63,.85), transparent);
}

.black-red-glass-theme .official-brand > img {
  background: #050507;
  border-color: rgba(235,35,63,.48);
  box-shadow: 0 12px 34px rgba(201, 8, 35, .22);
}

.black-red-glass-theme .brand-text b,
.black-red-glass-theme .main-nav a:hover,
.black-red-glass-theme .kicker,
.black-red-glass-theme .eyebrow,
.black-red-glass-theme .hero-company-kicker,
.black-red-glass-theme .hero-motto,
.black-red-glass-theme .card-index,
.black-red-glass-theme .service-number,
.black-red-glass-theme .goal-year,
.black-red-glass-theme .office-tag,
.black-red-glass-theme .client-card span,
.black-red-glass-theme .milestone span,
.black-red-glass-theme .text-link,
.black-red-glass-theme .contact-links a,
.black-red-glass-theme .executive-contact a:hover {
  color: #ff6279;
}

.black-red-glass-theme .main-nav .nav-cta,
.black-red-glass-theme .btn-primary,
.black-red-glass-theme .form-submit,
.black-red-glass-theme .gallery-arrow:hover {
  color: white;
  background: linear-gradient(135deg, #8d0619, #ed2440 58%, #ff6075);
  box-shadow: 0 16px 38px rgba(221, 17, 48, .27);
}

.black-red-glass-theme .btn-secondary {
  color: #ededf0;
  background: rgba(255,255,255,.035);
  border-color: rgba(255,255,255,.16);
}

.black-red-glass-theme .hero-brand-focus h1 strong,
.black-red-glass-theme .hero h1 strong {
  background: linear-gradient(90deg, #d50b2a, #ff5068 52%, #ff9aaa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.black-red-glass-theme .fashion-core {
  background:
    radial-gradient(circle at 35% 25%, rgba(255,120,140,.23), transparent 30%),
    linear-gradient(145deg, rgba(230,28,58,.19), rgba(8,8,10,.93));
  border-color: rgba(255,85,110,.34);
  box-shadow:
    inset 0 0 45px rgba(235,35,63,.11),
    0 40px 80px rgba(0,0,0,.58),
    0 0 90px rgba(235,35,63,.13);
}

.black-red-glass-theme .shirt-body,
.black-red-glass-theme .shirt-left,
.black-red-glass-theme .shirt-right {
  background: linear-gradient(145deg, #ff8798, #df1735 58%, #6e0011);
}

.black-red-glass-theme .orbit,
.black-red-glass-theme .product-photo-cover::after,
.black-red-glass-theme .planet-glow {
  border-color: rgba(255,100,124,.20);
}

.black-red-glass-theme .floating-chip,
.black-red-glass-theme .gallery-count,
.black-red-glass-theme .gallery-open,
.black-red-glass-theme .impact-label {
  background: rgba(12,12,15,.70);
  border-color: rgba(255,76,102,.28);
}

.black-red-glass-theme .service-icon i,
.black-red-glass-theme .service-icon::after {
  border-color: #ef2543;
  background-color: rgba(239,37,67,.07);
}

.black-red-glass-theme .bars-icon i,
.black-red-glass-theme .shield-icon i,
.black-red-glass-theme .leaf-icon i,
.black-red-glass-theme .route-icon i,
.black-red-glass-theme .progress i {
  background: linear-gradient(#ff8191, #dc1532);
}

.black-red-glass-theme .planet {
  background:
    radial-gradient(circle at 34% 25%, #ffcad2 0, #ff5b73 18%, #a20a22 48%, #280008 74%);
  box-shadow:
    inset -28px -30px 50px rgba(0,0,0,.45),
    0 0 90px rgba(235,35,63,.18);
}

.black-red-glass-theme .planet-leaf {
  background: linear-gradient(145deg, #ffb2bf, #de1735);
}

.black-red-glass-theme .planet-ring {
  border-color: rgba(255,86,112,.31);
  border-left-color: rgba(255,86,112,.07);
  border-right-color: rgba(255,86,112,.55);
}

.black-red-glass-theme input:focus,
.black-red-glass-theme select:focus,
.black-red-glass-theme textarea:focus {
  border-color: #e92240;
  box-shadow: 0 0 0 4px rgba(233,34,64,.10);
}

.black-red-glass-theme .gallery-thumb.active,
.black-red-glass-theme .gallery-thumb:hover {
  border-color: #ed2440;
  box-shadow: 0 0 0 2px rgba(237,36,64,.12);
}

.black-red-glass-theme .timeline-track {
  background: linear-gradient(90deg, #ed2440, rgba(237,36,64,.10));
}

.black-red-glass-theme .milestone::before {
  background: #ed2440;
  box-shadow:
    0 0 0 7px rgba(237,36,64,.09),
    0 0 28px rgba(237,36,64,.42);
}

.black-red-glass-theme .executive-placeholder span {
  color: white;
  background: linear-gradient(145deg, #fa435d, #8a0619);
}

/* Stronger transparent-glass hover effect */
.black-red-glass-theme .glass-card:hover,
.black-red-glass-theme .service-card:hover,
.black-red-glass-theme .capability-card:hover,
.black-red-glass-theme .client-card:hover,
.black-red-glass-theme .executive-card:hover,
.black-red-glass-theme .product-panel:hover {
  border-color: rgba(255,72,100,.35);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 30px 85px rgba(0,0,0,.55),
    0 0 38px rgba(222,18,50,.07);
}

/* Remove residual green from SVG-like CSS icons and decorative borders */
.black-red-glass-theme .brand-mark i,
.black-red-glass-theme .custom-check,
.black-red-glass-theme .gallery-close,
.black-red-glass-theme .gallery-arrow,
.black-red-glass-theme .filter-group {
  border-color: rgba(255,76,102,.30);
}

.black-red-glass-theme .scroll-cue i,
.black-red-glass-theme .eyebrow::before,
.black-red-glass-theme .kicker::before {
  background: linear-gradient(90deg, #ed2440, transparent);
}

.black-red-glass-theme .clean-list li::before {
  background: #ed2440;
}

.black-red-glass-theme footer {
  background: rgba(8,8,10,.42);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Office text line in hero and accent labels */
.black-red-glass-theme .hero .eyebrow {
  color: #ff7b8d;
}

/* Mobile nav glass */
@media (max-width: 980px) {
  .black-red-glass-theme .main-nav {
    background: rgba(7,7,9,.88);
    border-color: rgba(255,255,255,.12);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
  }
}


/* Dominant company-name hero correction */
.hero {
  grid-template-columns: minmax(0, 1.28fr) minmax(360px, .72fr);
  gap: 24px;
}
.hero-brand-dominant {
  max-width: 940px;
}
.hero-brand-dominant h1 {
  margin: 0 0 24px;
  font-size: clamp(6.2rem, 11.2vw, 11.5rem) !important;
  line-height: .72 !important;
  letter-spacing: -.075em !important;
}
.hero-brand-dominant h1 span,
.hero-brand-dominant h1 strong {
  display: block;
  white-space: nowrap;
}
.hero-brand-dominant h1 strong {
  margin-left: .43em !important;
}
.hero-brand-dominant h2 {
  max-width: 720px;
  font-size: clamp(1.25rem, 2vw, 2rem);
}
.hero-brand-dominant .hero-company-kicker {
  font-size: .78rem;
}
.hero-brand-dominant .hero-motto {
  font-size: .84rem;
}
.hero-description {
  max-width: 680px !important;
  font-size: 1rem !important;
}
.hero-visual {
  transform: scale(.86);
  transform-origin: center right;
}
@media (max-width: 1100px) {
  .hero-brand-dominant h1 {
    font-size: clamp(5.3rem, 10.4vw, 8.4rem) !important;
  }
}
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-brand-dominant h1 {
    font-size: clamp(5rem, 15vw, 8.5rem) !important;
  }
  .hero-visual { transform: scale(.9); transform-origin: center; }
}
@media (max-width: 700px) {
  .hero-brand-dominant h1 {
    font-size: clamp(4.25rem, 20vw, 6.7rem) !important;
    line-height: .78 !important;
  }
  .hero-brand-dominant h1 span,
  .hero-brand-dominant h1 strong { white-space: normal; }
  .hero-brand-dominant h1 strong { margin-left: 0 !important; }
}


/* Client and office information update */
.client-grid {
  align-items: stretch;
}
.office-card p strong {
  display: inline-block;
  margin-top: 8px;
  color: var(--green-3);
  font-size: .78rem;
  letter-spacing: .04em;
}
@media (min-width: 981px) {
  .client-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* Corrected sequential product portfolio */
.product-gallery-grid .product-photo-cover {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.product-gallery-grid .product-copy h3 {
  min-height: 1.5em;
}
.gallery-main img {
  object-fit: contain;
  background:
    radial-gradient(circle at 70% 20%, rgba(220,24,45,.12), transparent 34%),
    #0B1F3A;
}

/* Final management title refinement */
.executive-featured .executive-content h4{max-width:720px;line-height:1.5;}


/* Navy + Gold Corporate Theme */
:root{
 --primary:#0B1F3A;
 --secondary:#13294B;
 --card:#1E3A5F;
 --accent:#C9A227;
 --accent-hover:#D8B54A;
 --text:#FFFFFF;
 --muted:#D6DCE5;
}
body{
 background:linear-gradient(180deg,#0B1F3A 0%,#13294B 100%);
 color:var(--text);
}
.section,.hero,.footer{
 background:transparent;
}
.product-panel,
.executive-card,
.stat-card,
.capability-card,
.client-card{
 background:rgba(30,58,95,.55);
 border:1px solid rgba(201,162,39,.35);
 box-shadow:0 12px 40px rgba(0,0,0,.25);
}
.office-tag,
.gallery-count,
.gallery-open,
.btn-primary{
 background:var(--accent)!important;
 color:#0B1F3A!important;
}
.btn-secondary{
 border-color:var(--accent)!important;
 color:var(--accent)!important;
}
h1,h2,h3,h4,.section-heading span{
 color:#fff;
}
a:hover,.accent,.highlight{
 color:var(--accent-hover)!important;
}

/* =========================================================
   FINAL DARK BLACK + GOLD THEME
   ========================================================= */
:root,
.black-red-glass-theme {
  --primary: #050505;
  --secondary: #0b0b0c;
  --card: #111113;
  --accent: #d4af37;
  --accent-hover: #f0cc5b;
  --bg: #030303;
  --bg-2: #090909;
  --surface: rgba(18, 18, 19, .78);
  --surface-solid: #0d0d0e;
  --surface-2: rgba(24, 24, 26, .82);
  --line: rgba(255,255,255,.09);
  --line-strong: rgba(212,175,55,.34);
  --text: #f7f7f5;
  --muted: #aaa9a3;
  --green: #b78f18;
  --green-2: #d4af37;
  --green-3: #efd36f;
  --shadow: 0 30px 90px rgba(0,0,0,.68);
}

body,
body.black-red-glass-theme {
  color: var(--text);
  background:
    radial-gradient(circle at 16% 7%, rgba(212,175,55,.075), transparent 25%),
    radial-gradient(circle at 88% 20%, rgba(212,175,55,.045), transparent 27%),
    linear-gradient(180deg, #020202 0%, #080808 50%, #020202 100%);
  background-attachment: fixed;
}

.black-red-glass-theme::before {
  background:
    linear-gradient(rgba(255,255,255,.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.014) 1px, transparent 1px);
  background-size: 62px 62px;
}

.black-red-glass-theme .cursor-glow {
  background: radial-gradient(circle, rgba(212,175,55,.09), transparent 68%);
}

.black-red-glass-theme .site-header,
.black-red-glass-theme .glass-card,
.black-red-glass-theme .service-card,
.black-red-glass-theme .goal-card,
.black-red-glass-theme .capability-card,
.black-red-glass-theme .client-card,
.black-red-glass-theme .executive-card,
.black-red-glass-theme .contact-form,
.black-red-glass-theme .gallery-dialog,
.black-red-glass-theme .product-panel,
.black-red-glass-theme .impact-shell,
.black-red-glass-theme .factory-network,
.black-red-glass-theme .office-card,
.product-panel,
.executive-card,
.stat-card,
.capability-card,
.client-card {
  background: linear-gradient(145deg, rgba(24,24,25,.88), rgba(8,8,9,.92));
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.045), 0 28px 80px rgba(0,0,0,.58);
  backdrop-filter: blur(22px) saturate(115%);
  -webkit-backdrop-filter: blur(22px) saturate(115%);
}

.black-red-glass-theme .site-header {
  background: rgba(5,5,6,.78);
  border-color: rgba(212,175,55,.18);
}
.black-red-glass-theme .site-header::after {
  background: linear-gradient(90deg, transparent, rgba(212,175,55,.72), transparent);
}
.black-red-glass-theme .official-brand > img {
  background: #050505;
  border-color: rgba(212,175,55,.34);
  box-shadow: 0 12px 34px rgba(0,0,0,.5);
}

.black-red-glass-theme .brand-text b,
.black-red-glass-theme .main-nav a:hover,
.black-red-glass-theme .kicker,
.black-red-glass-theme .eyebrow,
.black-red-glass-theme .hero-company-kicker,
.black-red-glass-theme .hero-motto,
.black-red-glass-theme .card-index,
.black-red-glass-theme .service-number,
.black-red-glass-theme .goal-year,
.black-red-glass-theme .office-tag,
.black-red-glass-theme .client-card span,
.black-red-glass-theme .milestone span,
.black-red-glass-theme .text-link,
.black-red-glass-theme .contact-links a,
.black-red-glass-theme .executive-contact a:hover,
.office-card p strong,
a:hover,.accent,.highlight {
  color: var(--accent-hover) !important;
}

.black-red-glass-theme .main-nav .nav-cta,
.black-red-glass-theme .btn-primary,
.black-red-glass-theme .form-submit,
.black-red-glass-theme .gallery-arrow:hover,
.office-tag,
.gallery-count,
.gallery-open,
.btn-primary {
  color: #111 !important;
  background: linear-gradient(135deg, #a9851b, #d4af37 55%, #f0d46c) !important;
  box-shadow: 0 16px 38px rgba(212,175,55,.16);
}
.black-red-glass-theme .btn-secondary,
.btn-secondary {
  color: #e8cf78 !important;
  background: rgba(255,255,255,.025);
  border-color: rgba(212,175,55,.42) !important;
}

.black-red-glass-theme .hero-brand-focus h1 strong,
.black-red-glass-theme .hero h1 strong {
  background: linear-gradient(90deg, #b58d1d, #e0bc48 52%, #f4dc82);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.black-red-glass-theme .fashion-core {
  background: radial-gradient(circle at 35% 25%, rgba(240,204,91,.18), transparent 31%), linear-gradient(145deg, rgba(212,175,55,.11), rgba(7,7,8,.96));
  border-color: rgba(212,175,55,.32);
  box-shadow: inset 0 0 45px rgba(212,175,55,.08), 0 40px 80px rgba(0,0,0,.65), 0 0 80px rgba(212,175,55,.08);
}
.black-red-glass-theme .shirt-body,
.black-red-glass-theme .shirt-left,
.black-red-glass-theme .shirt-right {
  background: linear-gradient(145deg, #f0d772, #c9a227 58%, #71570b);
}
.black-red-glass-theme .shirt-neck { background: #19160b; }
.black-red-glass-theme .shirt-line { background: rgba(70,52,4,.45); }

.black-red-glass-theme .orbit,
.black-red-glass-theme .product-photo-cover::after,
.black-red-glass-theme .planet-glow {
  border-color: rgba(212,175,55,.20);
}
.black-red-glass-theme .floating-chip,
.black-red-glass-theme .gallery-count,
.black-red-glass-theme .gallery-open,
.black-red-glass-theme .impact-label {
  color: #f1dfa0;
  background: rgba(12,12,13,.82);
  border-color: rgba(212,175,55,.28);
}

.black-red-glass-theme .service-icon i,
.black-red-glass-theme .service-icon::after,
.black-red-glass-theme .brand-mark i,
.black-red-glass-theme .custom-check,
.black-red-glass-theme .gallery-close,
.black-red-glass-theme .gallery-arrow,
.black-red-glass-theme .filter-group {
  border-color: rgba(212,175,55,.34);
  background-color: rgba(212,175,55,.05);
}
.black-red-glass-theme .bars-icon i,
.black-red-glass-theme .shield-icon i,
.black-red-glass-theme .leaf-icon i,
.black-red-glass-theme .route-icon i,
.black-red-glass-theme .progress i {
  background: linear-gradient(#efd36f, #b78f18);
}

.black-red-glass-theme .planet {
  background: radial-gradient(circle at 34% 25%, #f6e7a4 0, #d8b83f 18%, #8e6d12 48%, #211a04 74%);
  box-shadow: inset -28px -30px 50px rgba(0,0,0,.48), 0 0 80px rgba(212,175,55,.13);
}
.black-red-glass-theme .planet-leaf { background: linear-gradient(145deg, #f6e8aa, #c9a227); }
.black-red-glass-theme .planet-ring {
  border-color: rgba(212,175,55,.28);
  border-left-color: rgba(212,175,55,.06);
  border-right-color: rgba(240,204,91,.50);
}

.black-red-glass-theme input:focus,
.black-red-glass-theme select:focus,
.black-red-glass-theme textarea:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 4px rgba(212,175,55,.09);
}
.black-red-glass-theme .gallery-thumb.active,
.black-red-glass-theme .gallery-thumb:hover {
  border-color: #d4af37;
  box-shadow: 0 0 0 2px rgba(212,175,55,.10);
}
.black-red-glass-theme .timeline-track,
.black-red-glass-theme .scroll-cue i,
.black-red-glass-theme .eyebrow::before,
.black-red-glass-theme .kicker::before {
  background: linear-gradient(90deg, #d4af37, transparent);
}
.black-red-glass-theme .milestone::before,
.black-red-glass-theme .clean-list li::before {
  background: #d4af37;
}
.black-red-glass-theme .milestone::before {
  box-shadow: 0 0 0 7px rgba(212,175,55,.08), 0 0 28px rgba(212,175,55,.28);
}
.black-red-glass-theme .executive-placeholder span,
.black-red-glass-theme .avatar {
  color: #14110a;
  background: linear-gradient(145deg, #efd36f, #9d7914);
}
.black-red-glass-theme .glass-card:hover,
.black-red-glass-theme .service-card:hover,
.black-red-glass-theme .capability-card:hover,
.black-red-glass-theme .client-card:hover,
.black-red-glass-theme .executive-card:hover,
.black-red-glass-theme .product-panel:hover {
  border-color: rgba(212,175,55,.34);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.055), 0 30px 85px rgba(0,0,0,.62), 0 0 34px rgba(212,175,55,.045);
}

.product-art {
  background: radial-gradient(circle at 48% 40%, rgba(212,175,55,.12), transparent 45%), linear-gradient(140deg,#17150d,#060606);
}
.product-art::before { border-color: rgba(212,175,55,.16); }
.art-knit span { background: linear-gradient(145deg,#f0db80,#b38b16); }
.art-woven span { background: linear-gradient(145deg,#fff2bc,#d2aa34 62%,#74580c); }
.art-denim span { background: linear-gradient(145deg,#d1af43,#6f570f); }
.art-special span { background: linear-gradient(145deg,#f1df98,#b98f19); }

.gallery-main img {
  background: radial-gradient(circle at 70% 20%, rgba(212,175,55,.08), transparent 34%), #080808;
}
.black-red-glass-theme footer { background: rgba(4,4,5,.68); }
@media (max-width: 980px) {
  .black-red-glass-theme .main-nav {
    background: rgba(5,5,6,.95);
    border-color: rgba(212,175,55,.20);
  }
}

/* =========================================================
   PRODUCT PORTFOLIO — RESPONSIVE + RELIABLE MODAL FIX
   ========================================================= */
.product-stage.product-gallery-grid {
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  perspective: none;
}
.product-gallery-grid .product-panel {
  min-width: 0;
  width: 100%;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  overflow: hidden;
}
.product-gallery-grid .product-photo-cover {
  min-width: 0;
  min-height: 0;
  width: 100%;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
}
.product-gallery-grid .product-copy {
  min-width: 0;
  min-height: 0;
  padding: clamp(18px, 2.2vw, 25px);
}
.product-gallery-grid .product-copy h3,
.product-gallery-grid .product-copy p {
  overflow-wrap: anywhere;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: clamp(8px, 2vw, 24px);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}
.gallery-modal.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.gallery-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(0,0,0,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.gallery-dialog {
  position: relative;
  z-index: 2;
  width: min(1080px, 100%);
  max-width: 100%;
  max-height: calc(100dvh - 2 * clamp(8px, 2vw, 24px));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateY(12px) scale(.985);
  transition: transform .22s ease;
}
.gallery-modal.open .gallery-dialog {
  transform: translateY(0) scale(1);
}
.gallery-viewer,
.gallery-main,
.gallery-main img {
  min-width: 0;
  max-width: 100%;
}
.gallery-viewer {
  grid-template-columns: minmax(0, 1fr);
}
.gallery-arrow[hidden] {
  display: none !important;
}
.gallery-main img {
  display: block;
  width: 100%;
  height: min(62dvh, 650px);
  object-fit: contain;
  background: #080808;
}
.gallery-thumbnails {
  grid-template-columns: minmax(90px, 150px);
}
.gallery-thumb {
  width: 100%;
}

@media (max-width: 980px) {
  .product-stage.product-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .product-stage.product-gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .product-gallery-grid .product-photo-cover {
    aspect-ratio: 16 / 10;
  }
  .gallery-dialog {
    padding: 14px;
    border-radius: 18px;
  }
  .gallery-header {
    gap: 12px;
    margin-bottom: 14px;
  }
  .gallery-header h2 {
    font-size: clamp(1.65rem, 8vw, 2.15rem);
  }
  .gallery-close {
    width: 42px;
    height: 42px;
  }
  .gallery-main img {
    height: min(52dvh, 480px);
  }
  .gallery-main figcaption {
    min-height: 48px;
    padding: 11px 13px;
  }
}
@media (max-width: 420px) {
  .section {
    width: min(100% - 24px, 1180px);
  }
  .gallery-modal {
    padding: 6px;
  }
  .gallery-dialog {
    max-height: calc(100dvh - 12px);
    padding: 12px;
  }
  .gallery-main img {
    height: 46dvh;
  }
}

/* FINAL PORTFOLIO OVERRIDE — simple, compatible, and fully responsive */
#products .product-stage.product-gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  width: 100% !important;
  max-width: 100% !important;
  gap: 20px !important;
}
#products .product-panel.gallery-trigger {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: auto !important;
  overflow: hidden !important;
  transform: none;
}
#products .product-panel .product-photo-cover {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 210px !important;
  aspect-ratio: 4 / 3 !important;
  background-size: cover !important;
  background-position: center !important;
  flex: 0 0 auto !important;
}
#products .product-panel .product-copy {
  width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  flex: 1 1 auto !important;
}
#galleryModal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2147483647 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 16px !important;
  background: rgba(0,0,0,.94) !important;
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  overflow: auto !important;
}
#galleryModal.open { display: flex !important; }
#galleryModal .gallery-backdrop {
  position: fixed !important;
  inset: 0 !important;
  z-index: 0 !important;
  background: rgba(0,0,0,.94) !important;
}
#galleryModal .gallery-dialog {
  position: relative !important;
  z-index: 1 !important;
  display: block !important;
  width: min(960px, 100%) !important;
  max-width: 100% !important;
  max-height: calc(100vh - 32px) !important;
  overflow: auto !important;
  padding: 22px !important;
  box-sizing: border-box !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  animation: none !important;
  background: #0a0a0a !important;
  border: 1px solid rgba(212,175,55,.35) !important;
  border-radius: 22px !important;
}
#galleryModal .gallery-viewer {
  display: block !important;
  width: 100% !important;
}
#galleryModal .gallery-main {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
}
#galleryModal #galleryMainImage {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 68vh !important;
  min-height: 180px !important;
  object-fit: contain !important;
  margin: 0 auto !important;
  background: #050505 !important;
  transition: opacity .15s ease !important;
}
#galleryModal .gallery-arrow,
#galleryModal .gallery-thumbnails { display: none !important; }
@media (max-width: 900px) {
  #products .product-stage.product-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 600px) {
  #products .product-stage.product-gallery-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 15px !important;
  }
  #products .product-panel .product-photo-cover {
    min-height: 190px !important;
    aspect-ratio: 16 / 10 !important;
  }
  #galleryModal { padding: 7px !important; }
  #galleryModal .gallery-dialog {
    width: 100% !important;
    max-height: calc(100vh - 14px) !important;
    padding: 14px !important;
    border-radius: 15px !important;
  }
  #galleryModal #galleryMainImage {
    max-height: 58vh !important;
  }
}
