:root {
  --ink: #151512;
  --paper: #f5f0e4;
  --paper-2: #fffaf0;
  --orange: #f16935;
  --lime: #d8ff5b;
  --green: #17624a;
  --muted: #706e66;
  --line: rgba(21, 21, 18, 0.16);
  --radius: 22px;
  --shadow: 0 26px 70px rgba(22, 22, 18, 0.13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }

button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 999;
  left: 12px;
  top: 12px;
  transform: translateY(-180%);
  padding: 10px 14px;
  border-radius: 6px;
  background: white;
  color: black;
}

.skip-link:focus { transform: translateY(0); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(22px, 4vw, 64px);
  color: white;
  transition: background 220ms ease, color 220ms ease, padding 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(245, 240, 228, 0.91);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand img { border-radius: 50%; }
.brand span { display: flex; flex-direction: column; line-height: 1.05; }
.brand strong { font-family: "Manrope", sans-serif; font-size: 1rem; letter-spacing: -0.02em; }
.brand small { margin-top: 5px; color: currentColor; font-size: 0.63rem; letter-spacing: 0.09em; opacity: 0.68; text-transform: uppercase; }

.site-nav { display: flex; align-items: center; gap: 30px; font-size: 0.86rem; }
.site-nav > a:not(.nav-contact) { opacity: 0.75; transition: opacity 180ms ease; }
.site-nav > a:hover { opacity: 1; }
.site-nav .nav-shop { padding: 9px 14px; border-radius: 999px; color: var(--ink); background: var(--lime); opacity: 1; }
.site-nav .nav-shop:hover { background: white; }
.nav-contact { padding: 11px 16px; border: 1px solid currentColor; border-radius: 999px; }
.nav-contact span { margin-left: 12px; }

.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px clamp(22px, 7vw, 110px) 130px;
  color: var(--paper-2);
  background:
    radial-gradient(circle at 77% 34%, rgba(216, 255, 91, 0.11), transparent 25%),
    linear-gradient(135deg, #0e0e0c, #1e2118 58%, #11120e);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image: linear-gradient(rgba(255,255,255,0.034) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.034) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 80%);
}

.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.orb-one { width: 480px; height: 480px; right: -160px; top: 12%; border: 1px solid rgba(216,255,91,0.32); }
.orb-two { width: 160px; height: 160px; right: 24%; bottom: 12%; background: var(--orange); opacity: 0.16; filter: blur(60px); }

.eyebrow, .kicker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow { color: var(--lime); }
.eyebrow span { width: 26px; height: 1px; background: currentColor; }

.hero h1 {
  position: relative;
  z-index: 1;
  max-width: 1050px;
  margin: 25px 0 22px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.2rem, 7.5vw, 7.6rem);
  line-height: 0.91;
  letter-spacing: -0.075em;
}

.hero h1 em { color: var(--orange); font-style: normal; }

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 610px;
  margin: 0;
  color: rgba(255, 250, 240, 0.68);
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  line-height: 1.65;
}

.hero-actions { position: relative; z-index: 1; display: flex; align-items: center; gap: 28px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 32px; padding: 15px 19px; border-radius: 999px; font-weight: 600; font-size: 0.86rem; transition: transform 180ms ease, background 180ms ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--lime); }
.button-primary:hover { background: white; }
.button-dark { align-self: flex-start; color: white; background: var(--ink); }
.button-dark:hover { background: var(--green); }
.button-shop { color: var(--ink); background: var(--lime); }
.button-shop:hover { color: white; background: var(--green); }
.text-link { padding: 9px 0 6px; font-size: 0.86rem; border-bottom: 1px solid rgba(255,255,255,0.32); }
.text-link span { margin-left: 12px; }

.hero-stage {
  position: absolute;
  z-index: 1;
  width: clamp(270px, 28vw, 420px);
  aspect-ratio: 1;
  right: 7vw;
  bottom: 120px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
}

.hero-stage::before, .hero-stage::after { content: ""; position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.08); }
.hero-stage::before { inset: 9%; }
.hero-stage::after { inset: 19%; }
.stage-mark { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; font-family: "Manrope", sans-serif; font-size: clamp(2.4rem, 4vw, 4rem); font-weight: 800; line-height: 0.75; letter-spacing: -0.08em; transform: rotate(-8deg); }
.stage-mark span:nth-child(2) { color: var(--orange); }
.stage-copy { position: absolute; top: 7%; left: -4%; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.48); font-size: 0.65rem; line-height: 1.3; text-transform: uppercase; letter-spacing: 0.08em; }
.stage-number { color: var(--lime); font-family: "Manrope", sans-serif; font-size: 1.7rem; font-weight: 700; }
.hero-stage > p { position: absolute; right: -3%; bottom: 5%; margin: 0; color: rgba(255,255,255,0.48); font-size: 0.66rem; line-height: 1.45; text-align: right; text-transform: uppercase; letter-spacing: 0.08em; }

.ticker { position: absolute; z-index: 2; bottom: 0; left: 0; width: 100%; overflow: hidden; border-top: 1px solid rgba(255,255,255,0.12); background: rgba(0,0,0,0.16); }
.ticker-track { width: max-content; display: flex; align-items: center; gap: 32px; padding: 18px 0; animation: ticker 34s linear infinite; }
.ticker span { color: rgba(255,255,255,0.64); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; white-space: nowrap; }
.ticker i { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
@keyframes ticker { to { transform: translateX(-50%); } }

.section-pad { padding: 110px clamp(22px, 7vw, 110px) 130px; }

.section-heading { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 50px; align-items: end; }
.kicker { color: var(--green); }
.section-heading h2, .declaration h2 { margin: 16px 0 0; font-family: "Manrope", sans-serif; font-size: clamp(2.5rem, 5vw, 5.1rem); line-height: 0.98; letter-spacing: -0.065em; }
.section-heading > p { max-width: 450px; margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.7; }

.division-explorer { margin-top: 72px; border-top: 1px solid var(--line); }
.division-tabs { display: grid; grid-template-columns: repeat(5, 1fr); }
.division-tab { position: relative; min-height: 154px; display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; padding: 22px 18px; color: var(--ink); background: transparent; border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); cursor: pointer; text-align: left; transition: background 180ms ease, color 180ms ease; }
.division-tab:first-child { border-left: 1px solid var(--line); }
.division-tab span { color: var(--muted); font-size: 0.65rem; }
.division-tab strong { font-family: "Manrope", sans-serif; font-size: 0.9rem; line-height: 1.2; }
.division-tab i { position: absolute; right: 16px; top: 18px; font-style: normal; opacity: 0; transform: translate(-5px, 5px); transition: opacity 180ms ease, transform 180ms ease; }
.division-tab:hover, .division-tab.active { color: var(--paper-2); background: var(--ink); }
.division-tab:hover span, .division-tab.active span { color: var(--lime); }
.division-tab:hover i, .division-tab.active i { opacity: 1; transform: translate(0, 0); }

.division-panel { display: grid; grid-template-columns: 1.05fr 0.95fr; min-height: 590px; background: var(--paper-2); box-shadow: var(--shadow); }
.panel-art { position: relative; overflow: hidden; display: grid; place-items: center; min-height: 520px; background: var(--orange); transition: background 400ms ease; }
.panel-art::before { content: ""; position: absolute; inset: 22px; border: 1px solid rgba(255,255,255,0.34); border-radius: 50%; transform: scale(1.25); }
.art-word { position: absolute; left: -4%; top: 9%; color: rgba(255,255,255,0.22); font-family: "Manrope", sans-serif; font-size: clamp(5rem, 10vw, 10rem); font-weight: 800; letter-spacing: -0.1em; line-height: 1; }
.beauty-product { position: relative; z-index: 2; width: min(72%, 430px); height: 82%; display: block; object-fit: cover; border: 1px solid rgba(255,255,255,0.35); border-radius: 22px; box-shadow: 28px 36px 50px rgba(55,16,16,0.28); transform: rotate(-2deg); transition: transform 450ms cubic-bezier(.2,.8,.2,1); }
.panel-art.beauty { background: linear-gradient(145deg, #ef5a42, #8c173c 78%); }
.panel-art.beauty .art-bottle { display: none; }
.panel-art:not(.beauty) .beauty-product { display: none; }
.panel-art.beauty:hover .beauty-product { transform: rotate(0) scale(1.015); }
.art-bottle { position: relative; z-index: 2; width: 150px; height: 290px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; padding: 20px; border-radius: 24px 24px 38px 38px; color: var(--ink); background: linear-gradient(110deg, #fffaf0, #e8dfcb); box-shadow: 30px 40px 50px rgba(55,28,13,0.26), inset -15px 0 20px rgba(0,0,0,0.06); transform: rotate(5deg); transition: width 350ms ease, height 350ms ease, border-radius 350ms ease, transform 350ms ease, background 350ms ease; }
.art-bottle::before { content: ""; position: absolute; top: -38px; width: 72px; height: 44px; border-radius: 10px 10px 5px 5px; background: var(--lime); box-shadow: inset -8px 0 rgba(0,0,0,0.08); }
.art-bottle span { font-family: "Manrope", sans-serif; font-size: 1.05rem; font-weight: 800; }
.art-bottle small { font-size: 0.52rem; text-transform: uppercase; letter-spacing: 0.06em; }
.art-ring { position: absolute; width: 74%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,0.32); border-radius: 50%; animation: spin 24s linear infinite; }
.art-ring::after { content: ""; position: absolute; top: 8%; right: 8%; width: 10px; height: 10px; border-radius: 50%; background: var(--lime); }
@keyframes spin { to { transform: rotate(360deg); } }

.panel-art.home { background: #af9a71; }
.panel-art.home .art-bottle { width: 280px; height: 220px; border-radius: 4px; background: linear-gradient(145deg, #473422, #9d7a50); transform: rotate(-3deg); }
.panel-art.home .art-bottle::before { width: 74%; height: 8px; top: 18px; background: var(--lime); }
.panel-art.media { background: #633f7f; }
.panel-art.media .art-bottle { width: 235px; height: 235px; border-radius: 50%; color: white; background: #1b1520; transform: rotate(0); }
.panel-art.media .art-bottle::before { width: 54px; height: 54px; top: calc(50% - 27px); border-radius: 50%; background: var(--orange); }
.panel-art.media .art-bottle span, .panel-art.media .art-bottle small { transform: translateY(78px); }
.panel-art.design { background: var(--green); }
.panel-art.design .art-bottle { width: 260px; height: 195px; border-radius: 16px; background: var(--lime); transform: rotate(6deg); }
.panel-art.design .art-bottle::before { width: 80px; height: 80px; top: -30px; right: -24px; border-radius: 50%; background: var(--orange); }
.panel-art.construction { background: #424542; }
.panel-art.construction .art-bottle { width: 240px; height: 260px; border-radius: 2px; color: white; background: repeating-linear-gradient(90deg, #252724 0 10px, #8a7355 10px 26px); transform: perspective(500px) rotateY(-12deg); }
.panel-art.construction .art-bottle::before { width: 112%; height: 12px; top: -12px; border-radius: 0; background: var(--lime); }

.panel-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(35px, 6vw, 85px); }
.panel-label { color: var(--green); font-size: 0.67rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.panel-content h3 { margin: 16px 0 16px; font-family: "Manrope", sans-serif; font-size: clamp(2.1rem, 4vw, 4rem); line-height: 0.98; letter-spacing: -0.06em; }
.panel-content > p { max-width: 530px; margin: 0; color: var(--muted); line-height: 1.65; }
.services { display: grid; grid-template-columns: 95px 1fr; gap: 18px; margin: 38px 0; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.services > span { color: var(--muted); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.08em; }
.services ul { display: grid; grid-template-columns: 1fr 1fr; gap: 11px 22px; margin: 0; padding: 0; list-style: none; }
.services li { position: relative; padding-left: 13px; font-size: 0.83rem; }
.services li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 4px; height: 4px; border-radius: 50%; background: var(--orange); }
.panel-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.panel-actions .button[hidden] { display: none; }

.music-hub { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr); overflow: hidden; color: white; background: #161713; border-top: 1px solid rgba(255,255,255,0.1); }
.music-hub[hidden] { display: none; }
.music-player { min-height: 430px; display: grid; place-items: center; padding: clamp(20px, 3vw, 42px); background: radial-gradient(circle at center, #38332d, #0c0d0b 72%); }
.music-player iframe { width: 100%; max-width: 840px; aspect-ratio: 16 / 9; display: block; border: 0; border-radius: 12px; background: black; box-shadow: 0 26px 65px rgba(0,0,0,0.42); }
.music-channel-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(35px, 5vw, 70px); }
.music-channel-label { display: flex; align-items: center; gap: 9px; color: var(--lime); font-size: 0.63rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.music-channel-label i { width: 24px; height: 16px; display: grid; place-items: center; border-radius: 4px; background: var(--orange); }
.music-channel-label i::after { content: ""; width: 0; height: 0; border-top: 3px solid transparent; border-bottom: 3px solid transparent; border-left: 5px solid white; transform: translateX(1px); }
.music-channel-copy h3 { margin: 18px 0 2px; font-family: "Manrope", sans-serif; font-size: clamp(2.2rem, 4vw, 4rem); line-height: 0.95; letter-spacing: -0.06em; }
.music-channel-copy > strong { color: rgba(255,255,255,0.55); font-size: 0.82rem; font-weight: 500; }
.music-channel-copy > p { margin: 24px 0 28px; color: rgba(255,255,255,0.58); font-size: 0.88rem; line-height: 1.65; }
.music-links { display: flex; flex-wrap: wrap; align-items: center; gap: 13px 18px; }
.music-youtube-button { width: 100%; margin-bottom: 5px; color: var(--ink); background: var(--lime); }
.music-youtube-button:hover { background: white; }
.music-links > a:not(.music-youtube-button) { padding-bottom: 3px; border-bottom: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.72); font-size: 0.68rem; }
.music-links > a:not(.music-youtube-button):hover { color: white; border-color: var(--lime); }

.work-showcase { padding-top: 130px; scroll-margin-top: 70px; }
.work-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: end; }
.work-heading h2 { margin: 16px 0 0; font-family: "Manrope", sans-serif; font-size: clamp(2.5rem, 5vw, 5.1rem); line-height: 0.98; letter-spacing: -0.065em; }
.work-heading > div:last-child { display: flex; flex-direction: column; align-items: flex-start; gap: 26px; }
.work-heading p { max-width: 520px; margin: 0; color: var(--muted); line-height: 1.7; }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.gallery-filter { padding: 10px 15px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); background: transparent; font: inherit; font-size: 0.73rem; cursor: pointer; transition: color 180ms ease, background 180ms ease, border-color 180ms ease; }
.gallery-filter:hover, .gallery-filter.active { color: white; border-color: var(--ink); background: var(--ink); }
.gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 16px; margin-top: 52px; }
.gallery-card { position: relative; grid-column: span 5; min-height: 345px; overflow: hidden; padding: 0; border: 0; border-radius: 16px; background: #d9d4c9; cursor: zoom-in; text-align: left; animation: gallery-in 320ms ease both; }
.gallery-card-wide { grid-column: span 7; }
.gallery-card-portrait { grid-column: span 5; grid-row: span 2; min-height: 706px; }
.gallery-card[hidden] { display: none; }
.gallery-card::after { content: "+"; position: absolute; z-index: 2; top: 18px; right: 18px; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: var(--lime); font-size: 1.2rem; opacity: 0; transform: scale(0.8); transition: opacity 180ms ease, transform 180ms ease; }
.gallery-card img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform 650ms cubic-bezier(.2,.8,.2,1); }
.gallery-card-portrait img { object-position: center top; }
.gallery-card:hover img, .gallery-card:focus-visible img { transform: scale(1.04); }
.gallery-card:hover::after, .gallery-card:focus-visible::after { opacity: 1; transform: scale(1); }
.gallery-card-copy { position: absolute; z-index: 1; inset: auto 0 0; display: flex; flex-direction: column; gap: 5px; padding: 55px 22px 20px; color: white; background: linear-gradient(transparent, rgba(5,6,5,0.8)); }
.gallery-card-copy small { font-size: 0.61rem; letter-spacing: 0.11em; text-transform: uppercase; opacity: 0.68; }
.gallery-card-copy strong { font-family: "Manrope", sans-serif; font-size: 1.05rem; }
@keyframes gallery-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.lightbox { width: min(1120px, calc(100% - 32px)); max-width: none; overflow: visible; padding: 0; border: 0; border-radius: 18px; color: white; background: #0d0e0c; box-shadow: 0 30px 120px rgba(0,0,0,0.55); }
.lightbox::backdrop { background: rgba(8,9,7,0.82); backdrop-filter: blur(12px); }
.lightbox-image-wrap { width: 100%; max-height: 78vh; display: grid; place-items: center; overflow: hidden; border-radius: 18px 18px 0 0; background: #10110f; }
.lightbox-image-wrap img { width: 100%; max-height: 78vh; display: block; object-fit: contain; }
.lightbox-caption { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 19px 22px 22px; }
.lightbox-caption > div { display: flex; flex-direction: column; gap: 5px; }
.lightbox-caption > div span { color: var(--lime); font-size: 0.62rem; letter-spacing: 0.11em; text-transform: uppercase; }
.lightbox-caption strong { font-family: "Manrope", sans-serif; font-size: clamp(1.2rem, 2vw, 1.7rem); }
.lightbox-caption > a { flex: 0 0 auto; padding: 11px 15px; border: 1px solid rgba(255,255,255,0.25); border-radius: 999px; font-size: 0.72rem; transition: color 180ms ease, background 180ms ease; }
.lightbox-caption > a:hover { color: var(--ink); background: var(--lime); }
.lightbox-caption > a span { margin-left: 12px; }
.lightbox-close { position: absolute; z-index: 2; top: -14px; right: -14px; width: 44px; height: 44px; border: 0; border-radius: 50%; color: var(--ink); background: var(--lime); font-size: 1.7rem; line-height: 1; cursor: pointer; box-shadow: 0 8px 24px rgba(0,0,0,0.25); }

.floating-chat { position: fixed; z-index: 45; right: 22px; bottom: 22px; display: inline-flex; align-items: center; gap: 9px; padding: 11px 15px 11px 11px; border-radius: 999px; color: white; background: var(--green); box-shadow: 0 12px 35px rgba(14, 44, 33, 0.32); font-size: 0.76rem; font-weight: 700; transition: transform 180ms ease, background 180ms ease; }
.floating-chat:hover { transform: translateY(-3px); background: #0d4d38; }
.floating-chat svg { width: 25px; height: 25px; fill: none; stroke: var(--lime); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.declaration { padding: 110px clamp(22px, 7vw, 110px) 34px; color: var(--paper-2); background: var(--ink); }
.declaration-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 90px; align-items: end; }
.declaration .kicker { color: var(--lime); }
.declaration h2 { color: white; }
.declaration-copy { color: rgba(255,255,255,0.58); font-size: clamp(1.05rem, 1.45vw, 1.25rem); line-height: 1.7; }
.declaration-copy p { margin: 0 0 22px; }
.team-story { position: relative; min-height: 560px; overflow: hidden; margin: 90px 0 0; border-radius: var(--radius); background: #242923; }
.team-story img { position: absolute; inset: 0; width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 45%; transition: transform 900ms cubic-bezier(.2,.8,.2,1); }
.team-story:hover img { transform: scale(1.025); }
.team-story-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,10,8,0.8) 0%, rgba(8,10,8,0.15) 55%, rgba(8,10,8,0.08) 100%), linear-gradient(0deg, rgba(8,10,8,0.62) 0%, transparent 42%); }
.team-story figcaption { position: absolute; inset: auto 0 0; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; padding: clamp(28px, 5vw, 68px); }
.team-story figcaption > div { display: flex; flex-direction: column; }
.team-kicker { margin-bottom: 15px; color: var(--lime); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.team-story strong { max-width: 700px; color: white; font-family: "Manrope", sans-serif; font-size: clamp(2.3rem, 5vw, 5rem); line-height: 0.95; letter-spacing: -0.065em; }
.team-story figcaption p { margin: 0; padding-bottom: 7px; color: rgba(255,255,255,0.7); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }
.quote-builder { margin-top: 24px; padding: clamp(32px, 5vw, 70px); scroll-margin-top: 80px; border-radius: var(--radius); color: var(--ink); background: var(--paper-2); }
.quote-builder .kicker { color: var(--green); }
.quote-heading { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 70px; align-items: end; }
.quote-heading h2 { color: var(--ink); }
.quote-heading > p { max-width: 490px; margin: 0; color: var(--muted); line-height: 1.7; }
.quote-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr); gap: clamp(30px, 5vw, 70px); align-items: start; margin-top: 60px; }
.quote-form { display: grid; grid-template-columns: 1fr 1fr; gap: 23px 18px; }
.form-field { display: flex; flex-direction: column; gap: 9px; }
.form-field-full { grid-column: 1 / -1; }
.form-field label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 54px; padding: 14px 15px; border: 1px solid rgba(21,21,18,0.2); border-radius: 9px; outline: 0; color: var(--ink); background: #f8f4ea; font: inherit; font-size: 0.9rem; transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease; }
.form-field textarea { min-height: 154px; resize: vertical; line-height: 1.5; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--green); background: white; box-shadow: 0 0 0 3px rgba(23,98,74,0.12); }
.form-field input:user-invalid, .form-field select:user-invalid, .form-field textarea:user-invalid { border-color: #b3472f; }
.form-field small { color: var(--muted); font-size: 0.67rem; }
.quote-preview { position: sticky; top: 100px; padding: clamp(26px, 3.5vw, 42px); border-radius: 16px; color: white; background: var(--ink); box-shadow: 0 22px 60px rgba(21,21,18,0.17); }
.preview-kicker { color: var(--lime); font-size: 0.64rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.quote-preview h3 { margin: 11px 0 28px; font-family: "Manrope", sans-serif; font-size: clamp(2rem, 3vw, 3rem); letter-spacing: -0.05em; }
.quote-preview dl { margin: 0; }
.quote-preview dl > div { display: grid; grid-template-columns: 85px 1fr; gap: 15px; padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.13); }
.quote-preview dt { color: rgba(255,255,255,0.48); font-size: 0.65rem; letter-spacing: 0.06em; text-transform: uppercase; }
.quote-preview dd { margin: 0; font-size: 0.79rem; text-align: right; overflow-wrap: anywhere; }
.preview-brief { padding: 17px 0; border-top: 1px solid rgba(255,255,255,0.13); }
.preview-brief > span { color: rgba(255,255,255,0.48); font-size: 0.65rem; letter-spacing: 0.06em; text-transform: uppercase; }
.preview-brief p { max-height: 95px; overflow: auto; margin: 8px 0 0; color: rgba(255,255,255,0.7); font-size: 0.78rem; line-height: 1.5; overflow-wrap: anywhere; }
.quote-submit { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 4px; padding: 15px 17px; border: 0; border-radius: 999px; color: var(--ink); background: var(--lime); font: inherit; font-size: 0.8rem; font-weight: 700; cursor: pointer; transition: transform 180ms ease, background 180ms ease; }
.quote-submit:hover { transform: translateY(-2px); background: white; }
.form-note { margin: 13px 0 0; color: rgba(255,255,255,0.44); font-size: 0.62rem; line-height: 1.45; text-align: center; }
.form-status { min-height: 1em; margin: 10px 0 0; color: #ffc4ac; font-size: 0.68rem; text-align: center; }
.form-status.success { color: var(--lime); }
.contact-card { margin-top: 90px; display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; padding: clamp(30px, 5vw, 70px); border-radius: var(--radius); color: var(--ink); background: var(--lime); }
.contact-card > div > span { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; }
.contact-card h3 { margin: 14px 0 0; font-family: "Manrope", sans-serif; font-size: clamp(2rem, 4vw, 4.3rem); line-height: 0.98; letter-spacing: -0.06em; }
.contact-options { display: flex; flex-direction: column; }
.contact-email { position: relative; display: flex; flex-direction: column; padding: 19px 52px 19px 0; border-top: 1px solid rgba(0,0,0,0.3); }
.contact-email:last-child { border-bottom: 1px solid rgba(0,0,0,0.3); }
.contact-email span { margin-bottom: 8px; color: rgba(0,0,0,0.58); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; }
.contact-email strong { overflow-wrap: anywhere; font-size: clamp(0.95rem, 1.65vw, 1.35rem); }
.contact-email i { position: absolute; top: 50%; right: 8px; font-size: 1.8rem; font-style: normal; transform: translateY(-50%); transition: transform 180ms ease; }
.contact-email:hover i { transform: translate(4px, -58%); }
.facebook-bridge { display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center; margin-top: 20px; padding: 24px 26px; border: 1px solid rgba(255,255,255,0.16); border-radius: 16px; background: rgba(255,255,255,0.04); transition: border-color 180ms ease, background 180ms ease, transform 180ms ease; }
.facebook-bridge:hover { border-color: rgba(216,255,91,0.52); background: rgba(255,255,255,0.07); transform: translateY(-2px); }
.facebook-mark { width: 45px; height: 45px; display: grid; place-items: end center; overflow: hidden; border-radius: 50%; color: white; background: #315da9; font-family: Arial, sans-serif; font-size: 2.25rem; font-weight: 700; line-height: 1; }
.facebook-copy { display: flex; flex-direction: column; gap: 5px; }
.facebook-copy small { color: var(--lime); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.11em; text-transform: uppercase; }
.facebook-copy strong { color: white; font-size: clamp(0.88rem, 1.4vw, 1.05rem); font-weight: 500; }
.facebook-action { display: flex; align-items: center; gap: 16px; color: rgba(255,255,255,0.68); font-size: 0.73rem; font-weight: 700; }
.facebook-action i { color: var(--lime); font-size: 1.2rem; font-style: normal; transition: transform 180ms ease; }
.facebook-bridge:hover .facebook-action i { transform: translate(3px, -3px); }

footer { display: grid; grid-template-columns: 1fr auto auto auto; gap: 35px; align-items: center; margin-top: 70px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.14); color: rgba(255,255,255,0.5); font-size: 0.72rem; }
.footer-brand { color: white; }
.footer-social { display: flex; align-items: center; gap: 14px; }
.footer-social a { padding-bottom: 2px; border-bottom: 1px solid rgba(255,255,255,0.25); }
.footer-social a:hover { color: white; border-color: var(--lime); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 700ms cubic-bezier(.2,.8,.2,1), transform 700ms cubic-bezier(.2,.8,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  .hero { justify-content: flex-start; }
  .hero-stage { position: relative; right: auto; bottom: auto; align-self: flex-end; margin-top: -110px; }
  .section-heading { grid-template-columns: 1fr 0.6fr; }
  .division-panel { grid-template-columns: 0.9fr 1.1fr; }
  .services { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .site-header { padding: 13px 18px; }
  .brand img { width: 40px; height: 40px; }
  .menu-toggle { z-index: 52; width: 44px; height: 44px; display: grid; place-content: center; gap: 6px; border: 0; border-radius: 50%; color: inherit; background: rgba(255,255,255,0.1); }
  .menu-toggle span:not(.sr-only) { width: 18px; height: 1px; display: block; background: currentColor; transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; z-index: 51; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 18px; padding: 90px 30px 40px; color: var(--paper-2); background: var(--ink); transform: translateX(105%); transition: transform 260ms ease; }
  .site-nav.open { transform: translateX(0); }
  .site-nav a { font-family: "Manrope", sans-serif; font-size: 2rem; font-weight: 600; letter-spacing: -0.04em; }
  .site-nav .nav-shop { padding: 10px 16px; font-size: 1.2rem; }
  .site-nav .nav-contact { margin-top: 18px; padding: 13px 17px; font-size: 1rem; }
  .site-header.scrolled .menu-toggle[aria-expanded="true"] { color: white; }

  .hero { min-height: auto; padding: 130px 22px 96px; }
  .hero h1 { margin-top: 20px; font-size: clamp(3.5rem, 17vw, 5.5rem); }
  .hero-copy { font-size: 0.98rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 12px; margin-top: 30px; }
  .hero-stage { width: 84vw; margin: 70px auto 10px; align-self: center; }
  .ticker-track { padding: 15px 0; }

  .section-pad { padding: 80px 18px 90px; }
  .section-heading, .declaration-grid { grid-template-columns: 1fr; gap: 30px; }
  .section-heading h2, .declaration h2 { font-size: clamp(2.65rem, 13vw, 4.3rem); }
  .division-explorer { margin-top: 48px; }
  .division-tabs { display: flex; overflow-x: auto; scrollbar-width: none; scroll-snap-type: x mandatory; }
  .division-tabs::-webkit-scrollbar { display: none; }
  .division-tab { flex: 0 0 42%; min-height: 130px; scroll-snap-align: start; }
  .division-tab strong { font-size: 0.78rem; }
  .division-panel { grid-template-columns: 1fr; }
  .panel-art { min-height: 390px; }
  .beauty-product { width: min(76%, 360px); height: 84%; }
  .panel-content { padding: 38px 25px 44px; }
  .services ul { grid-template-columns: 1fr; }
  .panel-actions { width: 100%; }
  .panel-actions .button { width: 100%; }
  .music-hub { grid-template-columns: 1fr; }
  .music-player { min-height: 0; padding: 18px; }
  .music-channel-copy { padding: 36px 25px 42px; }

  .work-showcase { padding-top: 90px; }
  .work-heading { grid-template-columns: 1fr; gap: 26px; }
  .work-heading h2 { font-size: clamp(2.65rem, 13vw, 4.3rem); }
  .gallery-filters { flex-wrap: nowrap; width: calc(100vw - 36px); overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
  .gallery-filters::-webkit-scrollbar { display: none; }
  .gallery-filter { flex: 0 0 auto; }
  .gallery-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 36px; }
  .gallery-card, .gallery-card-wide, .gallery-card-portrait { grid-column: 1; grid-row: auto; min-height: 310px; aspect-ratio: 4 / 3; }
  .gallery-card-portrait { aspect-ratio: 4 / 5; }
  .gallery-card::after { opacity: 1; transform: scale(1); }
  .lightbox { width: calc(100% - 24px); }
  .lightbox-close { top: 10px; right: 10px; }
  .lightbox-caption { align-items: flex-start; flex-direction: column; }
  .lightbox-caption > a { width: 100%; text-align: center; }
  .floating-chat { right: 14px; bottom: 14px; padding-right: 11px; }
  .floating-chat > span { display: none; }

  .declaration { padding: 78px 18px 28px; }
  .team-story { min-height: 510px; margin-top: 55px; }
  .team-story img { object-position: 43% center; }
  .team-story-shade { background: linear-gradient(0deg, rgba(8,10,8,0.82) 0%, rgba(8,10,8,0.08) 72%); }
  .team-story figcaption { flex-direction: column; align-items: flex-start; gap: 20px; padding: 26px 22px; }
  .team-story strong { font-size: clamp(2.4rem, 12vw, 3.7rem); }
  .team-story figcaption p { padding-bottom: 0; }
  .quote-builder { padding: 42px 22px 24px; }
  .quote-heading, .quote-layout { grid-template-columns: 1fr; gap: 26px; }
  .quote-layout { margin-top: 42px; }
  .quote-form { grid-template-columns: 1fr; }
  .form-field-full { grid-column: auto; }
  .quote-preview { position: static; }
  .contact-card { grid-template-columns: 1fr; gap: 40px; margin-top: 60px; padding: 32px 24px; }
  .facebook-bridge { grid-template-columns: auto 1fr; padding: 21px 20px; }
  .facebook-action { grid-column: 2; }
  footer { grid-template-columns: 1fr; gap: 15px; margin-top: 50px; }
  footer p { margin: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
