:root {
  color-scheme: light;
  --black: #050505;
  --ink: #111111;
  --muted: #6d6a63;
  --line: rgba(255, 255, 255, 0.18);
  --paper: #f6f0e8;
  --white: #ffffff;
  --blue: #67b7ff;
  --gold: #d9a650;
  --forest: #173f35;
  --lake: #7fb9bd;
  --cream: #efe2d0;
  --caramel: #b6743d;
  --neon: #ff7a18;
  --radius: 14px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--black);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", "PingFang SC",
    "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(5, 5, 5, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.site-header[data-elevated="true"] {
  background: rgba(5, 5, 5, 0.82);
  border-color: rgba(255, 255, 255, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
}

.desktop-nav {
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.desktop-nav a,
.header-cta {
  transition: color 0.2s ease, transform 0.2s ease;
}

.desktop-nav a:hover,
.header-cta:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 17px;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.2s ease;
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: 90;
  inset: 64px 0 auto;
  display: none;
  padding: 10px 24px 22px;
  color: var(--white);
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(20px);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 800;
}

.opening {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: clamp(28px, 5vw, 70px);
  padding: 120px clamp(20px, 5vw, 74px) 64px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 25%, rgba(217, 166, 80, 0.22), transparent 26%),
    radial-gradient(circle at 84% 18%, rgba(103, 183, 255, 0.18), transparent 25%),
    linear-gradient(135deg, #080808 0%, #181410 52%, #020202 100%);
}

.opening::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent);
  pointer-events: none;
}

.opening-media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.opening-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.62) 38%, transparent 72%);
}

.opening-frame {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  animation: float 7s ease-in-out infinite;
}

.frame-a {
  top: 12%;
  right: 8%;
  width: min(32vw, 440px);
  aspect-ratio: 4 / 5;
  background-image:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.34)),
    url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1200&q=82");
}

.frame-b {
  top: 18%;
  left: 8%;
  width: min(23vw, 300px);
  aspect-ratio: 3 / 4;
  background-image:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.42)),
    url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=900&q=82");
  animation-delay: -2s;
  opacity: 0.58;
}

.frame-c {
  right: 32%;
  bottom: 8%;
  width: min(24vw, 340px);
  aspect-ratio: 1 / 1;
  background-image:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.44)),
    url("https://images.unsplash.com/photo-1495474472287-4d71bcdd2085?auto=format&fit=crop&w=900&q=82");
  animation-delay: -4s;
}

.opening-copy,
.opening-index,
.section-copy,
.split-layout,
.material-board,
.horizontal-gallery,
.retreat-grid,
.experience-strip,
.polaroid-wall,
.industrial-dashboard,
.factory-layout,
.world-map,
.magazine-layout,
.coffee-collage,
.beer-board,
.night-grid,
.conversion-copy,
.conversion-card {
  position: relative;
  z-index: 2;
}

.opening-copy {
  max-width: 900px;
}

.kicker {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0.82;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 940px;
  margin-bottom: 30px;
  font-size: clamp(42px, 6.9vw, 96px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(44px, 7vw, 106px);
  line-height: 0.95;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 16px;
  font-size: clamp(28px, 3.4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

.opening-copy p,
.section-copy p,
.editorial-block p,
.factory-copy p,
.conversion-copy p,
.quote-title p {
  max-width: 740px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.7;
}

.opening-actions,
.section-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}

.button,
.conversion-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.conversion-card button:hover {
  transform: translateY(-2px);
}

.button.light {
  color: var(--black);
  background: var(--white);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.button.dark {
  color: var(--white);
  background: var(--black);
}

.button.neon {
  color: #001b2b;
  background: var(--blue);
  box-shadow: 0 0 34px rgba(103, 183, 255, 0.38);
}

.button.caramel {
  color: var(--white);
  background: var(--caramel);
  box-shadow: 0 18px 40px rgba(182, 116, 61, 0.24);
}

.button.glow {
  color: var(--black);
  background: linear-gradient(135deg, #ffc25d, #ff6a18);
  box-shadow: 0 0 44px rgba(255, 122, 24, 0.45);
}

.section-cta span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.opening-index {
  align-self: end;
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.opening-index a {
  display: flex;
  gap: 12px;
  padding: 12px 10px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
  transition: background 0.2s ease, color 0.2s ease;
}

.opening-index a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.opening-index span {
  color: var(--gold);
}

.industry-showcase {
  scroll-margin-top: 64px;
  padding: 118px clamp(20px, 5vw, 74px);
  color: var(--white);
  background:
    radial-gradient(circle at 82% 12%, rgba(103, 183, 255, 0.18), transparent 26%),
    linear-gradient(180deg, #070707, #11100d 54%, #060606);
}

.industry-heading {
  max-width: 980px;
  margin-bottom: 42px;
}

.industry-heading p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  overflow: visible;
}

.industry-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  color: var(--white);
  background: #161616;
  cursor: pointer;
  isolation: isolate;
}

.industry-card video,
.industry-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.8s ease, filter 0.8s ease;
}

.industry-card img {
  display: none;
}

.industry-card.video-failed img {
  display: block;
}

.industry-card.video-failed video {
  display: none;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 68% 12%, var(--card-glow, rgba(217, 166, 80, 0.28)), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.78));
  transition: background 0.35s ease;
}

.industry-card:hover video,
.industry-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.12) contrast(1.05);
}

.industry-card:hover::before {
  background:
    radial-gradient(circle at 68% 12%, var(--card-glow, rgba(217, 166, 80, 0.4)), transparent 32%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.84));
}

.industry-card-content {
  position: absolute;
  z-index: 2;
  inset: auto 20px 20px;
}

.industry-card-index {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 900;
}

.industry-card h3 {
  margin-bottom: 12px;
  font-size: clamp(25px, 2.4vw, 34px);
}

.industry-card p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

.industry-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: max-height 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}

.industry-card:hover .industry-services,
.industry-card:focus-within .industry-services {
  max-height: 140px;
  opacity: 1;
  transform: translateY(0);
}

.industry-services span {
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 12px;
  font-weight: 900;
}

.industry-card-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--card-accent, #f6c36b);
  font-weight: 900;
}

.industry-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.industry-mini-control {
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  transition: background 0.2s ease, transform 0.2s ease;
}

.industry-mini-control:hover {
  background: var(--card-accent, rgba(255, 255, 255, 0.2));
  transform: translateY(-1px);
}

.brand-section {
  position: relative;
  scroll-margin-top: 64px;
  overflow: hidden;
}

.section-hero,
.video-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 120px clamp(20px, 5vw, 74px) 72px;
  color: var(--white);
  overflow: hidden;
}

.section-bg,
.video-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 112%;
  object-fit: cover;
  transform: translate3d(0, var(--parallax, 0px), 0) scale(1.02);
}

.interior-bg {
  background-image: url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=2200&q=84");
  background-size: cover;
  background-position: center;
}

.section-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.08)),
    linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.7));
}

.nature-overlay {
  background:
    radial-gradient(circle at 78% 18%, rgba(127, 185, 189, 0.3), transparent 28%),
    linear-gradient(90deg, rgba(6, 35, 27, 0.72), rgba(6, 35, 27, 0.18)),
    linear-gradient(180deg, transparent 40%, rgba(8, 23, 17, 0.84));
}

.section-copy {
  max-width: 920px;
}

.interior {
  background: #f7f2ea;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: 96px clamp(20px, 5vw, 74px);
}

.before-after {
  --split: 56%;
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border-radius: 28px;
  background: #d8d0c4;
  box-shadow: 0 28px 80px rgba(56, 45, 32, 0.2);
}

.before-after img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.after-wrap {
  position: absolute;
  inset: 0;
  width: var(--split);
  overflow: hidden;
  border-right: 2px solid rgba(255, 255, 255, 0.85);
}

.after-wrap img {
  width: calc(100% / (var(--split-num, 0.56)));
  max-width: none;
}

.compare-range {
  position: absolute;
  inset: auto 6% 28px;
  z-index: 4;
  width: 88%;
  accent-color: var(--white);
}

.compare-label {
  position: absolute;
  z-index: 3;
  top: 24px;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.34);
  font-size: 12px;
  font-weight: 900;
}

.compare-label.before {
  right: 24px;
}

.compare-label.after {
  left: 24px;
}

.editorial-block {
  color: #211b15;
}

.editorial-block p {
  color: #62584f;
}

.minimal-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
  color: #3c3329;
  font-weight: 900;
}

.minimal-list li {
  padding-top: 13px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.material-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(20px, 5vw, 74px) 90px;
}

.material-board article {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  overflow: hidden;
  border-radius: 22px;
  color: var(--white);
  background:
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.58)),
    var(--mat);
  background-size: cover;
  background-position: center;
  transition: transform 0.35s ease;
}

.material-board article:hover {
  transform: translateY(-8px) scale(1.02);
}

.material-board span,
.room-card span,
.beer-board span {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.material-board strong {
  font-size: 26px;
}

.horizontal-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(310px, 38vw);
  gap: 18px;
  overflow-x: auto;
  padding: 0 clamp(20px, 5vw, 74px) 110px;
  scroll-snap-type: x mandatory;
}

.horizontal-gallery figure,
.night-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #111;
  scroll-snap-align: start;
}

.horizontal-gallery img,
.night-grid img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.horizontal-gallery figure:hover img,
.night-grid figure:hover img {
  transform: scale(1.06);
}

.horizontal-gallery figcaption,
.night-grid figcaption {
  padding: 18px;
  color: var(--white);
  font-weight: 900;
}

.retreat {
  background: #102b25;
  color: var(--white);
}

.retreat-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  grid-template-rows: repeat(2, 300px);
  gap: 18px;
  padding: 96px clamp(20px, 5vw, 74px) 24px;
}

.room-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  min-height: 280px;
}

.room-card.large {
  grid-row: span 2;
}

.room-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.room-card:hover img {
  transform: scale(1.06);
}

.room-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.64));
}

.room-card div {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
}

.room-card h3 {
  color: var(--white);
}

.room-card p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.6;
}

.experience-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0 clamp(20px, 5vw, 74px) 80px;
}

.experience-strip div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  font-weight: 900;
}

.experience-strip span {
  display: block;
  margin-bottom: 12px;
  color: var(--lake);
  font-size: 28px;
}

.polaroid-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0 clamp(20px, 5vw, 74px) 108px;
}

.polaroid-wall img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border: 10px solid #f4eadc;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.polaroid-wall img:nth-child(odd) {
  transform: rotate(-2deg);
}

.polaroid-wall img:nth-child(even) {
  transform: rotate(2deg) translateY(22px);
}

.factory {
  background: #06101b;
  color: var(--white);
}

.industrial-hero video {
  filter: saturate(0.8) contrast(1.1);
}

.factory-grid-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(103, 183, 255, 0.12) 1px, transparent 1px),
    linear-gradient(180deg, rgba(103, 183, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 8, 16, 0.86), rgba(2, 8, 16, 0.26));
  background-size: 58px 58px, 58px 58px, auto;
}

.industrial-dashboard {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid rgba(103, 183, 255, 0.18);
  background: #071421;
}

.metric {
  padding: 42px clamp(20px, 4vw, 52px);
  border-right: 1px solid rgba(103, 183, 255, 0.16);
}

.metric strong {
  display: block;
  color: var(--blue);
  font-size: clamp(42px, 6vw, 82px);
  line-height: 1;
}

.metric span {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 900;
}

.factory-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  gap: 36px;
  padding: 100px clamp(20px, 5vw, 74px);
}

.machine-cards {
  display: grid;
  gap: 16px;
}

.machine-cards article {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(103, 183, 255, 0.16);
}

.machine-cards img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3);
}

.machine-cards span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: var(--white);
  font-weight: 900;
}

.world-map {
  min-height: 420px;
  margin: 0 clamp(20px, 5vw, 74px) 110px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(103, 183, 255, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 26% 44%, rgba(103, 183, 255, 0.28), transparent 6%),
    radial-gradient(circle at 54% 38%, rgba(103, 183, 255, 0.24), transparent 5%),
    radial-gradient(circle at 74% 58%, rgba(103, 183, 255, 0.22), transparent 5%),
    linear-gradient(135deg, #071827, #040910);
}

.map-line {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(103, 183, 255, 0.22);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

.pin {
  position: absolute;
  color: var(--black);
  background: var(--blue);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 0 26px rgba(103, 183, 255, 0.5);
}

.p1 { left: 26%; top: 40%; }
.p2 { left: 18%; top: 55%; }
.p3 { left: 68%; top: 62%; }
.p4 { left: 52%; top: 52%; }

.world-map p {
  position: absolute;
  left: 28px;
  bottom: 26px;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(24px, 4vw, 50px);
  line-height: 1.05;
  font-weight: 900;
}

.coffee {
  background: #f5eadc;
  color: #2d2016;
}

.coffee-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(58, 35, 19, 0.72), rgba(245, 234, 220, 0.06)),
    linear-gradient(180deg, transparent, rgba(58, 35, 19, 0.7));
}

.handwritten {
  font-family: "Segoe Script", "Comic Sans MS", cursive;
  text-transform: none;
  font-size: 18px;
}

.magazine-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: start;
  padding: 100px clamp(20px, 5vw, 74px) 40px;
}

.coffee-note {
  position: sticky;
  top: 96px;
}

.coffee-note h3,
.coffee-note p {
  color: #3a2619;
}

.menu-stack {
  display: grid;
  gap: 14px;
}

.menu-stack article {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(58, 35, 19, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.5);
  transition: transform 0.25s ease, background 0.25s ease;
}

.menu-stack article:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.82);
}

.menu-stack span {
  color: var(--caramel);
  font-size: 28px;
  font-weight: 900;
}

.menu-stack strong {
  display: block;
  font-size: clamp(24px, 3vw, 44px);
}

.menu-stack em {
  color: rgba(58, 35, 19, 0.58);
  font-style: normal;
  font-weight: 800;
}

.coffee-collage {
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.9fr;
  gap: 16px;
  align-items: end;
  padding: 0 clamp(20px, 5vw, 74px) 110px;
}

.coffee-collage img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(58, 35, 19, 0.18);
}

.coffee-collage img:nth-child(2) {
  height: 560px;
}

.xhs-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border-radius: 26px;
  color: var(--white);
  background: #3a2619;
}

.xhs-card span {
  font-family: "Segoe Script", cursive;
  color: #f3c38d;
}

.xhs-card strong {
  font-size: 24px;
  line-height: 1.3;
}

.craft {
  background: #050205;
  color: var(--white);
}

.craft-hero video {
  filter: saturate(1.3) contrast(1.14) brightness(0.72);
}

.neon-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 122, 24, 0.44), transparent 25%),
    radial-gradient(circle at 18% 74%, rgba(180, 35, 30, 0.38), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18));
  animation: neonSweep 5s ease-in-out infinite alternate;
}

.beer-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 96px clamp(20px, 5vw, 74px) 26px;
}

.beer-board article {
  min-height: 270px;
  padding: 28px;
  border: 1px solid rgba(255, 122, 24, 0.26);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 122, 24, 0.12), transparent),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 34px rgba(255, 122, 24, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.beer-board article:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 45px rgba(255, 122, 24, 0.22);
}

.beer-board strong {
  display: block;
  margin: 54px 0 16px;
  font-size: clamp(26px, 3.4vw, 44px);
}

.beer-board em {
  color: #ffc25d;
  font-style: normal;
  font-weight: 900;
}

.night-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(20px, 5vw, 74px) 120px;
}

.night-grid figure {
  border: 1px solid rgba(255, 122, 24, 0.2);
}

.night-grid img {
  height: 520px;
}

.conversion {
  scroll-margin-top: 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: 120px clamp(20px, 5vw, 74px);
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(217, 166, 80, 0.28), transparent 28%),
    linear-gradient(135deg, #111, #050505);
}

.conversion-card {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.conversion-card span {
  color: var(--gold);
  font-weight: 900;
}

.conversion-card a,
.conversion-card button {
  min-height: 52px;
  justify-content: flex-start;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  text-align: left;
}

.sound-toggle {
  position: fixed;
  z-index: 130;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  background: rgba(5, 5, 5, 0.78);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  cursor: pointer;
  font-weight: 900;
}

.sound-toggle[aria-pressed="true"] {
  color: var(--black);
  background: var(--white);
}

.sound-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #777;
}

.sound-toggle[aria-pressed="true"] .sound-dot {
  background: #27c46a;
  box-shadow: 0 0 16px rgba(39, 196, 106, 0.8);
}

.industry-modal {
  position: fixed;
  z-index: 150;
  inset: 0;
  display: none;
  place-items: center;
  padding: 20px;
}

.industry-modal.open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(14px);
}

.modal-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  width: min(1120px, 100%);
  max-height: min(760px, calc(100vh - 40px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  color: var(--white);
  background: #0d0d0d;
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  z-index: 4;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(0, 0, 0, 0.46);
  cursor: pointer;
  font-size: 24px;
}

.modal-media {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #111;
}

.modal-media video,
.modal-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-fallback {
  z-index: 1;
  display: block;
}

.modal-video {
  z-index: 2;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.modal-panel.video-ready .modal-video {
  opacity: 1;
}

.modal-panel.video-failed .modal-video {
  opacity: 0;
}

.modal-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 44px);
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.08), transparent 30%),
    #101010;
}

.modal-copy h3 {
  color: var(--white);
}

.modal-copy p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.modal-copy ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 20px 0;
  list-style: none;
}

.modal-copy li {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 900;
}

.modal-voice {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  color: var(--black);
  background: var(--white);
  cursor: pointer;
  font-weight: 900;
}

.voice-hint {
  margin: 14px 0 0;
  font-size: 13px;
}

.industry-detail-stage {
  background: #050505;
  color: var(--white);
  scroll-margin-top: 64px;
}

.industry-page {
  --industry-accent: #d9a650;
  --industry-glow: rgba(217, 166, 80, 0.38);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, var(--industry-glow), transparent 30%),
    linear-gradient(180deg, #050505, #0e0e0e 48%, #050505);
}

.industry-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.52;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 64%);
}

.industry-page-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: end;
  gap: clamp(24px, 4vw, 54px);
  padding: 118px clamp(20px, 5vw, 74px) 70px;
  overflow: hidden;
}

.industry-page-media,
.industry-page-vignette {
  position: absolute;
  inset: 0;
}

.industry-page-media {
  overflow: hidden;
  background: #111;
}

.industry-page-video,
.industry-page-video-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-page-video {
  z-index: 2;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.5s ease, transform 1.2s ease;
}

.industry-page-media.video-ready .industry-page-video {
  opacity: 1;
  transform: scale(1.01);
}

.industry-page-media.video-failed .industry-page-video {
  opacity: 0;
}

.industry-page-video-fallback {
  z-index: 1;
}

.industry-page-vignette {
  z-index: 2;
  background:
    radial-gradient(circle at 75% 24%, var(--industry-glow), transparent 26%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.16)),
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.82));
}

.industry-page-copy,
.industry-signal-panel {
  position: relative;
  z-index: 3;
}

.industry-page-copy {
  max-width: 1020px;
}

.industry-back {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 28px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 900;
}

.industry-page-copy h2 {
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(54px, 9vw, 132px);
}

.industry-page-copy p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(18px, 2.2vw, 25px);
  line-height: 1.7;
}

.industry-page-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.industry-page-controls button,
.industry-page-controls a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font-weight: 900;
  backdrop-filter: blur(16px);
}

.industry-page-controls button:first-child {
  color: #050505;
  background: var(--industry-accent);
  border-color: transparent;
}

.industry-signal-panel {
  align-self: end;
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  background: rgba(5, 5, 5, 0.46);
  backdrop-filter: blur(20px);
}

.industry-signal-panel span {
  color: var(--industry-accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.industry-signal-panel strong {
  font-size: 32px;
}

.industry-signal-panel em {
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
  line-height: 1.6;
}

.industry-story-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  padding: 100px clamp(20px, 5vw, 74px) 28px;
}

.industry-story-card {
  min-height: 420px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 80% 10%, var(--industry-glow), transparent 32%),
    rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.industry-story-card span {
  color: var(--industry-accent);
  font-size: 13px;
  font-weight: 900;
}

.industry-story-card h3,
.industry-package-lab h3,
.industry-final-cta h3 {
  color: var(--white);
}

.industry-story-card ul {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.industry-story-card li {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.45;
  font-weight: 800;
}

.industry-commerce-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0 clamp(20px, 5vw, 74px) 80px;
}

.industry-commerce-strip div {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.25s ease, background 0.25s ease;
}

.industry-commerce-strip div:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
}

.industry-commerce-strip span {
  color: var(--industry-accent);
  font-weight: 900;
}

.industry-commerce-strip strong {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
}

.industry-package-lab {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: center;
  padding: 0 clamp(20px, 5vw, 74px) 86px;
}

.industry-package-lab p {
  max-width: 780px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.7;
}

.industry-package-list {
  display: grid;
  gap: 12px;
}

.industry-package-list button {
  min-height: 66px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  text-align: left;
  padding: 0 20px;
  cursor: pointer;
  font-weight: 900;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.industry-package-list button:hover {
  transform: translateX(8px);
  border-color: var(--industry-accent);
}

.industry-case-wall {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(20px, 5vw, 74px) 96px;
}

.industry-case-wall figure {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.industry-case-wall img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.04);
}

.industry-case-wall figcaption {
  padding: 18px;
  color: var(--white);
  font-weight: 900;
}

.industry-final-cta {
  position: relative;
  z-index: 2;
  margin: 0 clamp(20px, 5vw, 74px) 110px;
  padding: clamp(34px, 5vw, 62px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 85% 20%, var(--industry-glow), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.industry-final-cta span {
  color: var(--industry-accent);
  font-weight: 900;
}

.industry-page--interior {
  background: linear-gradient(180deg, #0b0b0a, #191612 55%, #090807);
}

.industry-page--restaurant {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 115, 50, 0.25), transparent 28%),
    linear-gradient(180deg, #180905, #2c1209 56%, #080302);
}

.industry-page--bar {
  background:
    radial-gradient(circle at 24% 70%, rgba(52, 95, 255, 0.34), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(204, 61, 255, 0.34), transparent 28%),
    #05020a;
}

.industry-page--bar::before {
  animation: neonSweep 4s ease-in-out infinite alternate;
}

.industry-page--beauty {
  color: #2b211b;
  background:
    radial-gradient(circle at 82% 14%, rgba(232, 199, 167, 0.4), transparent 28%),
    linear-gradient(180deg, #f5eee6, #fffaf4 48%, #efe1d4);
}

.industry-page--beauty .industry-page-vignette {
  background:
    linear-gradient(90deg, rgba(245, 238, 230, 0.82), rgba(245, 238, 230, 0.16)),
    linear-gradient(180deg, transparent 42%, rgba(245, 238, 230, 0.86));
}

.industry-page--beauty .industry-page-copy h2,
.industry-page--beauty .industry-page-copy p,
.industry-page--beauty .industry-story-card h3,
.industry-page--beauty .industry-package-lab h3,
.industry-page--beauty .industry-final-cta h3 {
  color: #251d18;
}

.industry-page--beauty .industry-page-copy p,
.industry-page--beauty .industry-package-lab p,
.industry-page--beauty .industry-story-card li {
  color: rgba(37, 29, 24, 0.74);
}

.industry-page--beauty .industry-story-card,
.industry-page--beauty .industry-commerce-strip div,
.industry-page--beauty .industry-package-list button,
.industry-page--beauty .industry-final-cta {
  color: #251d18;
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(37, 29, 24, 0.12);
}

.industry-page--beauty .industry-commerce-strip strong,
.industry-page--beauty .industry-package-list button {
  color: #251d18;
}

.industry-page--beauty .industry-back,
.industry-page--beauty .industry-page-controls button,
.industry-page--beauty .industry-page-controls a {
  color: #251d18;
  border-color: rgba(37, 29, 24, 0.14);
  background: rgba(255, 255, 255, 0.58);
}

.industry-page--beauty .industry-page-controls button:first-child {
  color: #251d18;
  background: #e8c7a7;
}

.industry-page--hotel {
  background:
    radial-gradient(circle at 12% 22%, rgba(143, 191, 159, 0.28), transparent 28%),
    linear-gradient(180deg, #0d241c, #173a2d 54%, #08150f);
}

.industry-page--factory {
  background:
    linear-gradient(90deg, rgba(103, 183, 255, 0.11) 1px, transparent 1px),
    linear-gradient(180deg, #05080d, #0c1624 54%, #030508);
  background-size: 54px 54px, auto;
}

.industry-page--factory .industry-commerce-strip div {
  box-shadow: inset 0 0 28px rgba(103, 183, 255, 0.08);
}

.industry-page--education {
  background:
    linear-gradient(90deg, rgba(107, 183, 255, 0.16) 1px, transparent 1px),
    linear-gradient(180deg, #06111f, #09233d 54%, #040a12);
  background-size: 64px 64px, auto;
}

.industry-page--auto {
  background:
    radial-gradient(circle at 70% 18%, rgba(214, 221, 230, 0.22), transparent 28%),
    linear-gradient(180deg, #07090c, #171b20 52%, #050506);
}

.industry-page--auto::before {
  background:
    linear-gradient(118deg, transparent 0 42%, rgba(255, 255, 255, 0.08) 43% 44%, transparent 45%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 140px 140px, 80px 80px;
}

.industry-page--tourism {
  background:
    radial-gradient(circle at 14% 20%, rgba(182, 213, 123, 0.26), transparent 30%),
    radial-gradient(circle at 80% 66%, rgba(83, 143, 197, 0.22), transparent 30%),
    linear-gradient(180deg, #07150d, #19351c 52%, #050805);
}

.industry-page--aivideo {
  background:
    radial-gradient(circle at 18% 70%, rgba(82, 133, 255, 0.34), transparent 30%),
    radial-gradient(circle at 82% 16%, rgba(169, 103, 255, 0.38), transparent 28%),
    linear-gradient(180deg, #050610, #110a28 52%, #04040b);
}

.industry-page--aivideo .industry-commerce-strip div {
  box-shadow: inset 0 0 32px rgba(143, 124, 255, 0.08);
}

.quote-page {
  color: #111;
  background: #f4f4f1;
}

.quote-page .site-header {
  color: var(--white);
}

.quote-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: end;
  padding: 132px clamp(20px, 5vw, 74px) 70px;
  background:
    radial-gradient(circle at 78% 18%, rgba(103, 183, 255, 0.14), transparent 28%),
    linear-gradient(135deg, #f8f7f4, #ece7de);
}

.quote-title h1 {
  max-width: 860px;
  color: #111;
  font-size: clamp(38px, 5vw, 74px);
  line-height: 1.04;
}

.quote-title p {
  color: #5f5b52;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.72;
}

.quote-summary {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.quote-summary span {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 900;
}

.quote-summary span:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.quote-sheet {
  padding: 0 clamp(20px, 5vw, 74px) 100px;
}

.quote-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 22px;
  background: var(--white);
}

.quote-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

.quote-table th,
.quote-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  text-align: left;
  vertical-align: top;
  font-size: 15px;
  line-height: 1.72;
}

.quote-table th {
  color: #6f6a62;
  background: #faf9f6;
  font-size: 13px;
  font-weight: 900;
}

.quote-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.quote-notes article {
  padding: 26px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  background: var(--white);
}

.quote-notes h2 {
  color: #111;
  font-size: 24px;
}

.quote-notes ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 0;
  color: #5f5b52;
  line-height: 1.7;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 5vw, 74px) 44px;
  color: rgba(255, 255, 255, 0.58);
  background: #050505;
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 900;
}

.toast {
  position: fixed;
  z-index: 140;
  left: 50%;
  bottom: 28px;
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--black);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate(-50%, 16px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -18px, 0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.08); opacity: 0.42; }
}

@keyframes neonSweep {
  0% { filter: hue-rotate(0deg); opacity: 0.78; }
  100% { filter: hue-rotate(18deg); opacity: 1; }
}

@media (max-width: 1100px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .opening,
  .split-layout,
  .factory-layout,
  .magazine-layout,
  .conversion {
    grid-template-columns: 1fr;
  }

  .quote-hero,
  .quote-notes {
    grid-template-columns: 1fr;
  }

  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .modal-panel {
    grid-template-columns: 1fr;
    overflow-y: auto;
  }

  .modal-media {
    min-height: 320px;
  }

  .opening-index {
    max-width: 520px;
  }

  .material-board,
  .experience-strip,
  .industrial-dashboard,
  .beer-board,
  .night-grid,
  .polaroid-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .retreat-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .room-card,
  .room-card.large {
    min-height: 430px;
    grid-row: auto;
  }

  .coffee-collage {
    grid-template-columns: 1fr 1fr;
  }

  .xhs-card {
    grid-column: 1 / -1;
  }

  .industry-page-hero,
  .industry-story-grid,
  .industry-package-lab {
    grid-template-columns: 1fr;
  }

  .industry-commerce-strip,
  .industry-case-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    height: 58px;
    padding-inline: 16px;
  }

  .mobile-nav {
    inset-top: 58px;
  }

  .brand {
    font-size: 14px;
  }

  .opening,
  .section-hero,
  .video-hero,
  .conversion {
    min-height: 92vh;
    padding: 92px 20px 48px;
  }

  .opening-copy p,
  .section-copy p,
  .conversion-copy p {
    font-size: 16px;
  }

  .opening-actions,
  .section-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .conversion-card button {
    width: 100%;
  }

  .industry-showcase {
    padding: 80px 20px;
  }

  .industry-grid {
    grid-template-columns: 1fr;
    overflow-x: visible;
  }

  .industry-card {
    min-height: 430px;
  }

  .industry-services {
    max-height: 140px;
    opacity: 1;
    transform: none;
  }

  .industry-card-actions {
    align-items: stretch;
  }

  .industry-mini-control {
    flex: 1 1 auto;
  }

  .industry-page-hero {
    min-height: 92vh;
    padding: 92px 20px 48px;
  }

  .industry-page-copy h2 {
    font-size: clamp(44px, 18vw, 82px);
  }

  .industry-page-copy p {
    font-size: 17px;
  }

  .industry-page-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .industry-page-controls button,
  .industry-page-controls a {
    width: 100%;
  }

  .industry-signal-panel {
    display: none;
  }

  .industry-story-grid,
  .industry-commerce-strip,
  .industry-package-lab,
  .industry-case-wall {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px;
  }

  .industry-story-grid {
    padding-top: 68px;
  }

  .industry-story-card {
    min-height: auto;
  }

  .industry-commerce-strip {
    padding-bottom: 66px;
  }

  .industry-case-wall img {
    height: 230px;
  }

  .industry-final-cta {
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 78px;
  }

  .sound-toggle {
    right: 14px;
    bottom: 14px;
    min-height: 42px;
    padding-inline: 13px;
    font-size: 13px;
  }

  .modal-panel {
    max-height: calc(100vh - 28px);
    border-radius: 22px;
  }

  .modal-copy {
    padding: 24px;
  }

  .opening-index {
    display: none;
  }

  .opening-frame {
    opacity: 0.38;
  }

  .frame-a {
    width: 72vw;
    right: -12vw;
  }

  .frame-b,
  .frame-c {
    display: none;
  }

  .split-layout,
  .material-board,
  .retreat-grid,
  .experience-strip,
  .polaroid-wall,
  .industrial-dashboard,
  .factory-layout,
  .magazine-layout,
  .coffee-collage,
  .beer-board,
  .night-grid,
  .conversion {
    padding-left: 20px;
    padding-right: 20px;
  }

  .split-layout,
  .factory-layout,
  .magazine-layout {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .before-after {
    min-height: 420px;
    border-radius: 20px;
  }

  .material-board,
  .experience-strip,
  .industrial-dashboard,
  .beer-board,
  .night-grid,
  .polaroid-wall,
  .coffee-collage {
    grid-template-columns: 1fr;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid rgba(103, 183, 255, 0.16);
  }

  .horizontal-gallery {
    grid-auto-columns: 86vw;
    padding-left: 20px;
    padding-right: 20px;
  }

  .horizontal-gallery img,
  .night-grid img,
  .coffee-collage img,
  .coffee-collage img:nth-child(2) {
    height: 380px;
  }

  .room-card,
  .room-card.large {
    min-height: 360px;
  }

  .polaroid-wall img:nth-child(n) {
    transform: none;
  }

  .world-map {
    margin-left: 20px;
    margin-right: 20px;
  }

  .site-footer {
    flex-direction: column;
  }
}
