:root {
  --ink: #111827;
  --text: #263445;
  --muted: #748092;
  --pink: #e75f99;
  --pink-soft: #fdeaf3;
  --pink-line: #f6c6dc;
  --blue: #a9dff7;
  --blue-soft: #eef9ff;
  --gray: #f5f6f8;
  --line: #e9edf3;
  --white: #fff;
  --shadow: 0 26px 80px rgba(17, 24, 39, .10);
  --shadow-soft: 0 12px 40px rgba(17, 24, 39, .08);
  --radius: 30px;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--sans);
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 9%, rgba(247, 168, 200, .24), transparent 28rem),
    radial-gradient(circle at 83% 44%, rgba(191, 232, 249, .20), transparent 32rem),
    linear-gradient(180deg, #fff 0%, #fff9fc 38%, #f7fbff 100%);
  z-index: -3;
}
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
img, svg { max-width: 100%; display: block; }

.soft-bg {
  position: fixed;
  inset: auto -10% -20% auto;
  width: 50vw;
  height: 50vw;
  min-width: 560px;
  min-height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(169, 223, 247, .22), transparent 65%);
  filter: blur(6px);
  pointer-events: none;
  z-index: -2;
}

.container {
  width: min(1220px, calc(100% - 48px));
  margin-inline: auto;
}
.section {
  scroll-margin-top: 110px;
}

.topbar {
  position: fixed;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: min(820px, calc(100% - 32px));
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 10px 8px 12px;
  border: 1px solid rgba(231, 237, 243, .92);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 48px rgba(17, 24, 39, .09);
  z-index: 50;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 205px;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8bbd6, #ec6fa6 52%, #bfe8f9);
  color: #fff;
  font-weight: 850;
  letter-spacing: -.04em;
  box-shadow: 0 8px 24px rgba(231, 95, 153, .25);
}
.brand strong { display: block; font-size: 13px; letter-spacing: -.02em; }
.brand small { display: block; font-size: 10px; color: var(--muted); margin-top: 1px; }
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(245, 246, 248, .88);
  white-space: nowrap;
}
.nav a {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 760;
  color: #394457;
  transition: .25s ease;
}
.nav a:hover, .nav a.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(17, 24, 39, .07);
}

.tour-rail {
  position: fixed;
  left: clamp(18px, 3vw, 58px);
  top: 120px;
  width: 116px;
  padding: 18px 14px;
  border: 1px solid rgba(231, 237, 243, .92);
  border-radius: 24px;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
  z-index: 40;
}
.tour-title {
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #697589;
  margin-bottom: 16px;
}
.tour-step {
  position: relative;
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  color: #768397;
}
.tour-step::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 30px;
  width: 1px;
  height: 24px;
  background: #e8edf3;
}
.tour-step:last-of-type::before { display: none; }
.tour-step span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid #e3e9f0;
  background: #fff;
  font-size: 11px;
  font-weight: 800;
  transition: .25s ease;
}
.tour-step em {
  font-style: normal;
  font-size: 9px;
  line-height: 1.12;
  font-weight: 780;
}
.tour-step.active span {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
  box-shadow: 0 8px 18px rgba(231, 95, 153, .22);
}
.tour-step.active em { color: var(--pink); }
.progress-box {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid #edf0f4;
}
.progress-box small {
  display: block;
  color: #97a1b0;
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .10em;
}
.progress-box strong {
  display: block;
  margin: 5px 0 6px;
  color: var(--pink);
  font-size: 12px;
}
.progress-line {
  height: 5px;
  border-radius: 999px;
  background: #eef1f5;
  overflow: hidden;
}
.progress-line i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--pink), var(--blue));
}

.hero {
  position: relative;
  padding: 132px 0 62px;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(460px, 1.15fr);
  gap: 42px;
  align-items: center;
}
.eyebrow, .label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pink);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 6px rgba(231, 95, 153, .12);
}
.hero h1 {
  margin: 18px 0 8px;
  font-family: var(--serif);
  font-size: clamp(58px, 8.2vw, 108px);
  line-height: .94;
  letter-spacing: -.055em;
  font-weight: 500;
}
.hero h1 span { color: var(--pink); }
.hero h2 {
  margin: 0 0 20px;
  font-size: clamp(22px, 2.2vw, 33px);
  line-height: 1.18;
  letter-spacing: -.04em;
  font-weight: 760;
  color: #141b2c;
}
.hero p {
  max-width: 590px;
  margin: 0;
  color: var(--text);
  font-size: 17px;
  line-height: 1.85;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
.btn, .link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 16px;
  min-height: 54px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 820;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover, .link-btn:hover { transform: translateY(-2px); }
.btn.primary {
  background: linear-gradient(135deg, #ee6ba3, #d84d88);
  color: #fff;
  box-shadow: 0 18px 36px rgba(231, 95, 153, .27);
}
.btn.primary span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
}
.btn.ghost, .link-btn {
  background: rgba(255, 255, 255, .82);
  color: var(--ink);
  border-color: #e8dce5;
  box-shadow: 0 10px 24px rgba(17, 24, 39, .05);
}
.trust-strip { margin-top: 52px; }
.trust-strip small {
  display: block;
  color: #8b95a5;
  font-size: 12px;
  margin-bottom: 20px;
}
.logos {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  color: #a3adbd;
}
.logos b {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 18px;
  opacity: .86;
}
.logos b:nth-child(2) { font-family: cursive; text-transform: none; }

.office-stage {
  position: relative;
  min-height: 570px;
  border-radius: 38px;
  isolation: isolate;
}
.office-stage::before {
  content: '';
  position: absolute;
  inset: 10px 0 auto 4%;
  height: 520px;
  border-radius: 50% 50% 26px 26px;
  background: linear-gradient(135deg, rgba(255,255,255,.62), rgba(238,249,255,.52));
  box-shadow: inset 0 0 0 1px rgba(232, 238, 246, .80);
  z-index: -1;
}
.lobby-window {
  position: absolute;
  inset: 36px 8px 80px 0;
  overflow: hidden;
  border-radius: 42% 42% 24px 24px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.86), rgba(255,255,255,.42)),
    linear-gradient(180deg, rgba(218, 241, 254, .76), rgba(255,255,255,.75));
  border: 1px solid rgba(226, 234, 243, .8);
}
.ceiling-ring {
  position: absolute;
  top: -48px;
  left: 30%;
  width: 400px;
  height: 128px;
  border-radius: 50%;
  border: 24px solid rgba(255,255,255,.74);
  box-shadow: 0 20px 70px rgba(17,24,39,.08);
}
.city-line {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 92px;
  height: 130px;
  opacity: .44;
  background: repeating-linear-gradient(90deg, transparent 0 18px, rgba(134, 181, 207, .25) 18px 20px), linear-gradient(180deg, transparent 0 50%, rgba(169, 223, 247, .32));
  clip-path: polygon(0 88%, 7% 50%, 13% 75%, 20% 26%, 28% 68%, 37% 38%, 46% 76%, 54% 20%, 63% 80%, 72% 44%, 79% 70%, 86% 28%, 94% 78%, 100% 51%, 100% 100%, 0 100%);
}
.reception-desk {
  position: absolute;
  left: 15%;
  bottom: 116px;
  width: 280px;
  height: 100px;
  border-radius: 16px 16px 8px 8px;
  background: rgba(255,255,255,.72);
  border: 1px solid #e7edf3;
  box-shadow: 0 24px 46px rgba(17,24,39,.08);
}
.reception-desk::before, .reception-desk::after {
  content: '';
  position: absolute;
  top: -30px;
  width: 58px;
  height: 32px;
  border-radius: 8px;
  background: #cfd9e6;
  opacity: .5;
}
.reception-desk::before { left: 46px; }
.reception-desk::after { right: 56px; }
.neon-words {
  position: absolute;
  top: 142px;
  left: 37%;
  font-family: cursive;
  color: rgba(231, 95, 153, .70);
  font-size: 28px;
  line-height: 1.08;
  transform: rotate(-4deg);
  text-shadow: 0 0 22px rgba(231, 95, 153, .25);
}
.wall-poster {
  position: absolute;
  right: 34px;
  top: 132px;
  width: 118px;
  height: 142px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 14px;
  color: #8490a1;
  font-weight: 780;
  font-size: 13px;
  line-height: 1.28;
  text-transform: uppercase;
  background: rgba(255,255,255,.74);
  border: 1px solid #dce5ef;
  border-radius: 12px;
}
.pink-sofa {
  position: absolute;
  right: 24px;
  bottom: 116px;
  width: 185px;
  height: 70px;
  border-radius: 28px 28px 14px 14px;
  background: linear-gradient(180deg, #f5bfd5, #e99bbb);
  box-shadow: inset 0 12px 20px rgba(255,255,255,.35);
  opacity: .82;
}
.pink-sofa::before {
  content:'';
  position:absolute;
  left: -20px;
  bottom: 8px;
  width: 34px;
  height: 54px;
  border-radius: 16px;
  background:#efabc7;
}
.plant { position: absolute; width: 58px; height: 90px; bottom: 115px; }
.plant-left { left: 30%; }
.plant-right { right: 12%; transform: scale(.8); }
.plant::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  width: 28px;
  height: 28px;
  border-radius: 4px 4px 12px 12px;
  background: #d7c4ba;
}
.plant span, .plant span::before, .plant span::after {
  position: absolute;
  content: '';
  border-radius: 100% 0 100% 0;
  background: #8bb79e;
}
.plant span { width: 36px; height: 24px; top: 18px; left: 14px; transform: rotate(-35deg); }
.plant span::before { width: 32px; height: 22px; top: 18px; left: -12px; transform: rotate(75deg); }
.plant span::after { width: 40px; height: 25px; top: 38px; left: 12px; transform: rotate(50deg); }

.guide-character {
  position: absolute;
  right: 95px;
  bottom: 28px;
  width: 205px;
  height: 485px;
  filter: drop-shadow(0 24px 30px rgba(17,24,39,.12));
  animation: floatGuide 6s ease-in-out infinite;
}
@keyframes floatGuide { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hair {
  position: absolute;
  top: 20px;
  left: 42px;
  width: 118px;
  height: 138px;
  border-radius: 60% 60% 48% 48%;
  background: #4f2e35;
  box-shadow: inset -18px 14px 0 rgba(0,0,0,.10);
}
.head {
  position: absolute;
  top: 45px;
  left: 67px;
  width: 78px;
  height: 90px;
  border-radius: 46% 46% 42% 42%;
  background: #f3c9bd;
  border: 1px solid rgba(90,50,60,.12);
}
.head::before, .head::after {
  content: '';
  position: absolute;
  top: 38px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2d2430;
}
.head::before { left: 22px; }
.head::after { right: 22px; }
.head i {
  position: absolute;
  left: 29px;
  top: 60px;
  width: 20px;
  height: 9px;
  border-bottom: 3px solid #d67583;
  border-radius: 50%;
}
.neck {
  position: absolute;
  top: 126px;
  left: 90px;
  width: 34px;
  height: 42px;
  background: #efb9ad;
}
.body {
  position: absolute;
  top: 154px;
  left: 54px;
  width: 104px;
  height: 164px;
  border-radius: 28px 28px 14px 14px;
  background: linear-gradient(90deg, #e77ca9, #d9578f);
}
.shirt {
  position: absolute;
  top: 162px;
  left: 83px;
  width: 50px;
  height: 152px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: #fff6f5;
}
.arm { position: absolute; background: #e777a4; border-radius: 22px; }
.arm-left { top: 170px; left: 35px; width: 28px; height: 145px; transform: rotate(14deg); }
.arm-right { top: 167px; right: 18px; width: 26px; height: 145px; transform: rotate(-38deg); transform-origin: top; }
.arm-right::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: -3px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f1c0b3;
}
.tablet {
  position: absolute;
  top: 245px;
  left: 20px;
  width: 70px;
  height: 94px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #f4f6fa, #cfd8e6);
  color: #6d7480;
  font-weight: 900;
  transform: rotate(-9deg);
  border: 1px solid #c5cfdd;
}
.leg { position: absolute; top: 315px; width: 39px; height: 150px; background: #fff5ef; border: 1px solid rgba(90,50,60,.08); }
.leg-left { left: 72px; border-radius: 0 0 18px 18px; transform: rotate(1deg); }
.leg-right { left: 116px; border-radius: 0 0 18px 18px; transform: rotate(-1deg); }
.guide-note {
  position: absolute;
  right: 234px;
  bottom: 118px;
  width: 222px;
  min-height: 108px;
  padding: 20px 58px 18px 22px;
  border: 1px solid #f4d5e2;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}
.guide-note strong { display:block; color: var(--pink); font-size: 17px; margin-bottom: 6px; }
.guide-note span { display:block; color:#4e5a6d; font-size:13px; line-height:1.45; }
.guide-note button {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  box-shadow: 0 10px 18px rgba(231,95,153,.25);
}
.scroll-cue {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 22px auto 0;
  color: #8793a5;
  font-size: 13px;
}
.scroll-cue span {
  width: 18px;
  height: 30px;
  border: 2px solid #a7b1c0;
  border-radius: 999px;
  position: relative;
}
.scroll-cue span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 6px;
  border-radius: 999px;
  transform: translateX(-50%);
  background: #a7b1c0;
  animation: wheel 1.7s infinite;
}
@keyframes wheel { 0%{opacity:0; transform: translate(-50%,0);} 30%{opacity:1;} 100%{opacity:0; transform: translate(-50%,10px);} }

.panel-large {
  padding: 34px;
  border: 1px solid rgba(229, 235, 243, .88);
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 70px rgba(17,24,39,.055);
}
.section-head { margin-bottom: 28px; }
.section-head.split {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}
.section-head h2 {
  margin: 8px 0 8px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -.04em;
}
.section-head p {
  margin: 0;
  color: var(--text);
  line-height: 1.65;
  max-width: 450px;
}
.room-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.room-card {
  position: relative;
  min-height: 348px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid #ecedf2;
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.72));
  box-shadow: 0 16px 32px rgba(17,24,39,.055);
  overflow: hidden;
  transition: .35s ease;
}
.room-card:hover {
  transform: translateY(-7px);
  border-color: rgba(231, 95, 153, .25);
  box-shadow: 0 26px 60px rgba(17,24,39,.10);
}
.icon-badge {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 18px;
}
.icon-badge.pink { background: var(--pink-soft); color: var(--pink); box-shadow: 0 0 0 8px rgba(253,234,243,.58); }
.icon-badge.blue { background: var(--blue-soft); color: #5589a3; box-shadow: 0 0 0 8px rgba(238,249,255,.72); }
.room-card small {
  display:block;
  margin-top: 20px;
  color: var(--pink);
  font-weight: 850;
  font-size: 14px;
}
.room-card h3 {
  margin: 6px 0 8px;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.05;
  letter-spacing: -.03em;
}
.room-card p {
  margin: 0;
  color: #425063;
  font-size: 14px;
  line-height: 1.58;
}
.room-card button {
  position: absolute;
  left: 20px;
  bottom: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #f2cfde;
  background: #fff;
  color: var(--pink);
}
.mini-diagram {
  height: 112px;
  margin: 4px 0 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff, #f7fbff);
  border: 1px solid #eef1f5;
  position: relative;
  overflow: hidden;
}
.target-diagram i {
  position:absolute; inset: 26px 62px; border-radius:50%; border: 10px solid rgba(231,95,153,.20); box-shadow: inset 0 0 0 8px rgba(231,95,153,.13), inset 0 0 0 22px rgba(231,95,153,.08);
}
.target-diagram i::after { content:''; position:absolute; inset:24px; border-radius:50%; background: var(--pink); opacity:.55; }
.target-diagram span { position:absolute; font-size:9px; color:#687386; font-weight:760; }
.target-diagram span:nth-child(1){ left:14px; top:25px; }
.target-diagram span:nth-child(2){ right:12px; top:30px; }
.target-diagram span:nth-child(3){ left:20px; bottom:22px; }
.target-diagram span:nth-child(4){ right:10px; bottom:22px; }
.design-diagram::before, .copy-diagram::before, .web-diagram::before { content:''; position:absolute; left:18px; right:18px; top:22px; height:8px; border-radius:999px; background:#e8edf4; box-shadow: 0 18px 0 #f2f5f8, 0 36px 0 #f2f5f8; }
.design-diagram i { position:absolute; left:28px; bottom:20px; width:70px; height:36px; border:2px solid #dbe4ef; border-radius:9px; }
.design-diagram b { position:absolute; right:28px; bottom:22px; color:#9ca7b7; font-size:24px; }
.design-diagram span { position:absolute; left:80px; top:52px; width:54px; height:30px; border-radius:50%; border:2px dashed rgba(231,95,153,.24); }
.copy-diagram b { position:absolute; left:22px; top:25px; color:#f1a5c4; font-size:30px; }
.copy-diagram span { position:absolute; left:52px; height:7px; border-radius:999px; background:#e3eaf2; }
.copy-diagram span:nth-child(2){ top:35px; width:92px; }
.copy-diagram span:nth-child(3){ top:55px; width:112px; }
.copy-diagram span:nth-child(4){ top:75px; width:76px; }
.copy-diagram i { position:absolute; right:24px; bottom:20px; width:54px; height:5px; border-radius:999px; background:#b8c6d8; transform:rotate(-34deg); }
.people-diagram i { position:absolute; width:38px; height:38px; border-radius:50%; border:1px solid #dce6ef; background: linear-gradient(180deg,#fff,#eef9ff); }
.people-diagram i:nth-child(1){ left:28px; top:28px; }
.people-diagram i:nth-child(2){ left:88px; top:54px; }
.people-diagram i:nth-child(3){ right:28px; top:26px; }
.people-diagram i::after { content:''; position:absolute; left:10px; top:9px; width:16px; height:16px; border-radius:50%; background:#f7a8c8; opacity:.55; }
.people-diagram em { position:absolute; width:42px; height:22px; border-radius:10px; background:#eef9ff; border:1px solid #dceaf4; }
.people-diagram em:nth-of-type(1){ left:42px; bottom:18px; }
.people-diagram em:nth-of-type(2){ right:36px; bottom:22px; background:#fdeaf3; }
.web-diagram span:first-child { position:absolute; left:22px; bottom:22px; width:74px; height:52px; border-radius:12px; border:1px solid #dce5ef; background:#f4f6f8; }
.web-diagram span:nth-child(2) { position:absolute; right:22px; bottom:22px; width:74px; height:52px; border-radius:12px; border:1px solid #dce5ef; background:#fff; }
.web-diagram b { position:absolute; right:38px; bottom:40px; color:#e75f99; }

.work-section { padding: 44px 0 36px; }
.work-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}
.sticky-copy .btn { margin-top: 28px; }
.work-carousel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.work-card {
  min-width: 0;
  padding: 12px 12px 18px;
  border: 1px solid #eee2e8;
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 16px 36px rgba(17,24,39,.07);
  transition: .3s ease;
  cursor: pointer;
}
.work-card:hover { transform: translateY(-6px); box-shadow: 0 28px 60px rgba(17,24,39,.10); }
.work-thumb {
  height: 160px;
  border-radius: 14px;
  margin-bottom: 14px;
  overflow:hidden;
  position:relative;
  border:1px solid rgba(255,255,255,.62);
}
.work-thumb.blush { background: linear-gradient(135deg, #f8d6e4, #fff5f9); }
.work-thumb.dark { background: linear-gradient(135deg, #f3ede6, #2f3136); }
.work-thumb.neutral { background: linear-gradient(135deg, #f6f1ec, #d7dde6); }
.work-thumb.blue { background: linear-gradient(135deg, #eef9ff, #f8dce8); }
.product-thumb i { position:absolute; bottom:24px; width:48px; border-radius:16px 16px 8px 8px; background:rgba(255,255,255,.58); border:1px solid rgba(231,95,153,.15); }
.product-thumb i:nth-child(1){ left:28px; height:92px; }
.product-thumb i:nth-child(2){ left:88px; height:125px; }
.product-thumb i:nth-child(3){ left:150px; width:70px; height:70px; border-radius:50%; }
.brand-thumb i { position:absolute; border-radius:10px; background:rgba(255,255,255,.74); }
.brand-thumb i:nth-child(1){ left:22px; top:22px; width:80px; height:104px; }
.brand-thumb i:nth-child(2){ right:28px; top:30px; width:94px; height:84px; background:rgba(10,12,18,.42); }
.brand-thumb i:nth-child(3){ left:100px; bottom:18px; width:110px; height:34px; }
.website-thumb i { position:absolute; border-radius:9px; background:rgba(255,255,255,.72); border:1px solid rgba(123,136,154,.16); }
.website-thumb i:nth-child(1){ left:20px; top:18px; width:102px; height:76px; }
.website-thumb i:nth-child(2){ right:20px; top:28px; width:110px; height:86px; }
.website-thumb i:nth-child(3){ left:72px; bottom:20px; width:120px; height:52px; }
.content-thumb i { position:absolute; border-radius:10px; background:rgba(255,255,255,.72); border:1px solid rgba(123,136,154,.12); }
.content-thumb i:nth-child(1){ left:24px; top:24px; width:180px; height:44px; }
.content-thumb i:nth-child(2){ left:24px; top:82px; width:130px; height:54px; }
.content-thumb i:nth-child(3){ right:22px; bottom:22px; width:78px; height:78px; }
.work-card h3 { margin: 0 0 5px; font-size: 16px; letter-spacing: -.02em; }
.work-card p { margin:0 0 12px; color:#647086; font-size: 12px; }
.work-card span { display:inline-flex; padding: 7px 10px; border-radius: 999px; background: var(--pink-soft); color: var(--pink); font-size: 11px; font-weight: 850; }

.process-section { padding: 26px 0 36px; }
.process-panel {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: center;
}
.process-flow {
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr 32px 1fr 32px 1fr;
  align-items: start;
  gap: 10px;
}
.process-flow > i {
  height: 1px;
  margin-top: 39px;
  background: linear-gradient(90deg, #d6dce6 55%, transparent 55%);
  background-size: 8px 1px;
  position: relative;
}
.process-flow > i::after {
  content:'→';
  position:absolute;
  right:-5px;
  top:-10px;
  color:#a3adbd;
  font-style:normal;
}
.process-step { text-align:center; }
.process-step span {
  width: 66px;
  height: 66px;
  margin: 0 auto 14px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#fff;
  color:var(--pink);
  border:1px solid #f0d4e1;
  box-shadow: 0 0 0 10px rgba(253,234,243,.55);
  font-weight:900;
}
.process-step:nth-of-type(2n) span { color:#5589a3; border-color:#d6e9f4; box-shadow:0 0 0 10px rgba(238,249,255,.68); }
.process-step h3 { margin:0 0 8px; font-size:14px; }
.process-step p { margin:0; color:#59677a; font-size:12px; line-height:1.48; }

.contact-section { padding: 26px 0 20px; }
.meeting-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr 410px;
  gap: 34px;
  padding: 48px;
  border-radius: 32px;
  border: 1px solid #e9edf3;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 45%, rgba(251, 233, 242, .54) 100%),
    linear-gradient(135deg, #fff, #eef9ff);
  box-shadow: 0 20px 70px rgba(17,24,39,.08);
}
.meeting-copy { position:relative; z-index:2; max-width: 480px; }
.meeting-copy h2 {
  margin: 10px 0 16px;
  font-family: var(--serif);
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.02;
  letter-spacing: -.045em;
  font-weight: 500;
}
.meeting-copy p { color:#415066; line-height:1.7; margin:0 0 22px; }
ul { list-style:none; margin:0; padding:0; }
.meeting-copy li {
  display:flex;
  align-items:center;
  gap:11px;
  margin:12px 0;
  color:#425063;
  font-weight:690;
}
.meeting-copy li span {
  width:26px;
  height:26px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:var(--pink-soft);
  color:var(--pink);
  font-size:13px;
}
.contact-form {
  position:relative;
  z-index:3;
  display:grid;
  gap:13px;
  padding:24px;
  border-radius:24px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(233,237,243,.94);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}
.form-head h3 { margin:0 0 4px; font-family: var(--serif); font-size: 28px; font-weight:500; }
.form-head p { margin:0; color:#718095; font-size:13px; }
.contact-form label {
  display:grid;
  gap:7px;
  color:#526075;
  font-size:12px;
  font-weight:820;
}
.contact-form input, .contact-form textarea, .contact-form select {
  width:100%;
  border:1px solid #e2e8f0;
  border-radius:14px;
  background:#fff;
  color:var(--ink);
  padding:13px 14px;
  outline:none;
  transition:.2s ease;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color:#ed9fc1;
  box-shadow:0 0 0 4px rgba(231,95,153,.12);
}
.contact-form textarea { resize: vertical; }
.form-status { margin:0; min-height:20px; color:var(--pink); font-weight:760; font-size:13px; }
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.meeting-illustration {
  position:absolute;
  right:0;
  bottom:0;
  width:56%;
  height:54%;
  opacity:.95;
  z-index:1;
}
.meeting-window {
  position:absolute;
  left:10%;
  right:0;
  bottom:0;
  height:100%;
  background: linear-gradient(180deg, rgba(218,241,254,.68), rgba(255,255,255,.12));
  border-left:1px solid rgba(193,212,227,.62);
}
.meeting-window::after {
  content:'';
  position:absolute;
  inset:auto 0 0 0;
  height:58%;
  opacity:.42;
  background: repeating-linear-gradient(90deg, transparent 0 30px, rgba(117,166,196,.22) 30px 32px);
  clip-path: polygon(0 80%, 8% 54%, 18% 82%, 31% 35%, 48% 76%, 62% 42%, 76% 78%, 88% 30%, 100% 62%, 100% 100%, 0 100%);
}
.meeting-table {
  position:absolute;
  right:24%;
  bottom:38px;
  width:250px;
  height:95px;
  border-radius:50%;
  background:rgba(255,255,255,.82);
  box-shadow:0 28px 38px rgba(17,24,39,.10);
  border:1px solid #e6ebf1;
}
.meeting-table span {
  position:absolute;
  left:92px;
  top:-34px;
  width:72px;
  height:50px;
  display:grid;
  place-items:center;
  border-radius:10px;
  background:#222833;
  color:#fff;
  font-family:var(--serif);
}
.meeting-chair { position:absolute; width:74px; height:74px; border-radius:22px 22px 30px 30px; background:#eaa6c2; opacity:.86; }
.meeting-chair.c1 { right:44%; bottom:88px; transform:rotate(-18deg); }
.meeting-chair.c2 { right:18%; bottom:90px; transform:rotate(18deg); }
.meeting-chair.c3 { right:34%; bottom:8px; }
.wall-quote {
  position:absolute;
  right:60px;
  top:34px;
  color:rgba(255,255,255,.96);
  font-family:cursive;
  font-size:31px;
  line-height:1.1;
  text-shadow:0 0 24px rgba(231,95,153,.52);
}

.footer {
  width:min(1220px, calc(100% - 48px));
  margin:0 auto 24px;
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  color:#7b8798;
  font-size:12px;
}
.footer-icons { display:flex; gap:10px; }
.footer-icons a {
  width:30px;
  height:30px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#fff;
  border:1px solid #e6ebf1;
  font-weight:800;
}

.modal { position:fixed; inset:0; display:none; z-index:100; }
.modal[aria-hidden="false"] { display:block; }
.modal-backdrop { position:absolute; inset:0; background:rgba(17,24,39,.34); backdrop-filter:blur(8px); }
.modal-card {
  position:relative;
  width:min(560px, calc(100% - 32px));
  margin:10vh auto;
  padding:32px;
  border-radius:28px;
  background:#fff;
  box-shadow:0 40px 100px rgba(17,24,39,.25);
  border:1px solid #edf1f5;
}
.modal-close {
  position:absolute;
  top:16px;
  right:16px;
  width:36px;
  height:36px;
  border:1px solid #e6ebf1;
  border-radius:50%;
  background:#fff;
  color:#6c7687;
  font-size:24px;
  line-height:1;
}
.modal-card h2 { margin:8px 0 12px; font-family:var(--serif); font-size:42px; font-weight:500; letter-spacing:-.04em; }
.modal-card p { color:#415066; line-height:1.65; }
.modal-points { display:grid; gap:10px; margin:20px 0 24px; }
.modal-points span { display:flex; gap:10px; color:#3f4d61; font-weight:700; }
.modal-points span::before { content:'✓'; color:var(--pink); }

.reveal { opacity:0; transform:translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity:1; transform:translateY(0); }
.delay-1 { transition-delay:.12s; }

@media (max-width: 1360px) {
  .tour-rail { left: 18px; transform: scale(.92); transform-origin: top left; }
  .container { width: min(1120px, calc(100% - 48px)); }
  .hero-grid { grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr); }
  .room-grid { gap:12px; }
  .room-card { padding:18px; }
  .guide-character { right: 55px; }
  .guide-note { right: 198px; }
}

@media (max-width: 1180px) {
  .tour-rail { display:none; }
  .topbar { width:min(940px, calc(100% - 28px)); }
  .container { width:min(940px, calc(100% - 40px)); }
  .hero-grid { grid-template-columns: 1fr; }
  .office-stage { min-height: 580px; order:-1; margin-top:20px; }
  .hero-copy { text-align:center; }
  .hero p { margin-inline:auto; }
  .hero-actions, .logos { justify-content:center; }
  .trust-strip { margin-top:34px; }
  .room-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .room-card { min-height: 330px; }
  .work-layout { grid-template-columns:1fr; gap:22px; }
  .work-carousel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-panel { grid-template-columns:1fr; }
  .process-flow { grid-template-columns:1fr; gap:18px; }
  .process-flow > i { width:1px; height:32px; margin:0 auto; background:#d6dce6; }
  .process-flow > i::after { content:'↓'; right:-8px; top:8px; }
  .meeting-card { grid-template-columns:1fr; }
  .contact-form { max-width:620px; }
  .meeting-illustration { width:100%; opacity:.36; }
}

@media (max-width: 760px) {
  .topbar {
    top: 12px;
    height:auto;
    min-height:60px;
    border-radius:24px;
    align-items:flex-start;
    flex-direction:column;
    padding:10px;
  }
  .brand { min-width:0; width:100%; }
  .nav {
    width:100%;
    overflow-x:auto;
    justify-content:flex-start;
    scrollbar-width:none;
  }
  .nav::-webkit-scrollbar { display:none; }
  .nav a { font-size:11px; padding:8px 12px; }
  .hero { padding: 132px 0 42px; }
  .container { width: calc(100% - 28px); }
  .hero h1 { font-size: clamp(48px, 14vw, 78px); }
  .hero h2 { font-size: 22px; }
  .hero p { font-size:15px; line-height:1.7; }
  .hero-actions { gap:10px; }
  .btn, .link-btn { width:100%; min-height:52px; }
  .logos { gap:16px; }
  .logos b { font-size:14px; }
  .office-stage { min-height: 472px; }
  .office-stage::before { height: 420px; border-radius: 30px; }
  .lobby-window { inset: 18px 0 72px; border-radius: 30px; }
  .wall-poster, .neon-words, .plant-right { display:none; }
  .pink-sofa { right:16px; width:124px; }
  .reception-desk { left:7%; width:210px; bottom:112px; }
  .guide-character { transform: scale(.72); transform-origin: bottom right; right:12px; bottom:22px; animation:none; }
  .guide-note { left:16px; right:auto; bottom:54px; width:210px; }
  .panel-large { padding:20px; border-radius:24px; }
  .section-head.split { display:block; }
  .section-head h2 { font-size:38px; }
  .room-grid { grid-template-columns:1fr; }
  .room-card { min-height:300px; }
  .work-carousel { grid-template-columns:1fr; }
  .work-thumb { height:180px; }
  .meeting-card { padding:28px 20px; border-radius:24px; }
  .meeting-copy h2 { font-size:38px; }
  .contact-form { padding:18px; }
  .footer { width:calc(100% - 28px); flex-direction:column; text-align:center; padding:20px 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior:auto !important; animation:none !important; transition:none !important; }
  .reveal { opacity:1; transform:none; }
}


/* =========================================================
   Reference Match Polish — homepage closer to uploaded mockup
   ========================================================= */
:root {
  --pink: #e65a98;
  --ink: #151d2d;
  --text: #3b4658;
  --muted: #8691a4;
  --line: #e9edf3;
  --page-width: 1080px;
}

body {
  background:
    radial-gradient(circle at 12% 4%, rgba(247,168,200,.18), transparent 300px),
    linear-gradient(180deg, #fff 0%, #fbfdff 54%, #fff 100%);
}

.container,
.footer {
  width: min(var(--page-width), calc(100% - 64px));
}

/* Header: logo left, clean nav right, like the reference */
.topbar {
  top: 28px;
  left: 50%;
  width: min(var(--page-width), calc(100% - 64px));
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transform: translateX(-50%);
}

.brand {
  min-width: 0;
  gap: 0;
}

.brand-mark {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: var(--pink);
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 500;
  letter-spacing: -.08em;
  box-shadow: none;
}

.brand > span:not(.brand-mark) {
  display: none;
}

.nav {
  margin-left: auto;
  padding: 0;
  gap: 30px;
  background: transparent;
  border-radius: 0;
}

.nav a {
  padding: 9px 0;
  border-radius: 0;
  color: #1d2638;
  font-size: 12px;
  font-weight: 760;
  box-shadow: none !important;
  background: transparent !important;
}

.nav a:hover,
.nav a.active {
  color: var(--pink);
}

.nav .talk-link {
  padding: 10px 17px;
  border-radius: 8px;
  background: var(--pink) !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(230,90,152,.20) !important;
}

/* Left office rail: smaller, cleaner, closer to the mockup */
.tour-rail {
  left: max(38px, calc((100vw - var(--page-width)) / 2 - 124px));
  top: 112px;
  width: 92px;
  padding: 16px 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 52px rgba(17,24,39,.08);
}

.tour-title {
  font-size: 9px;
  letter-spacing: .10em;
  margin-bottom: 14px;
}

.tour-step {
  grid-template-columns: 26px 1fr;
  gap: 7px;
  min-height: 41px;
}

.tour-step span {
  width: 26px;
  height: 26px;
  font-size: 10px;
}

.tour-step em {
  font-size: 8.4px;
  line-height: 1.08;
}

.progress-box {
  margin-top: 14px;
  padding-top: 13px;
}

/* Hero: smaller headline, clearer background, reference-like spacing */
.hero {
  position: relative;
  min-height: 596px;
  padding: 122px 0 26px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/assets/hero-office-bg.png?v=reference-match-1');
  background-repeat: no-repeat;
  background-position: right clamp(-70px, -3.5vw, -18px) top 44px;
  background-size: auto 560px;
  opacity: 1;
  filter: none;
  z-index: -2;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,.98) 0%,
      rgba(255,255,255,.94) 32%,
      rgba(255,255,255,.58) 47%,
      rgba(255,255,255,.18) 64%,
      rgba(255,255,255,.04) 100%),
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.88) 96%);
  z-index: -1;
}

.hero-grid {
  min-height: 420px;
  grid-template-columns: minmax(0, 520px) 1fr;
  gap: 24px;
  align-items: center;
}

.hero-copy {
  max-width: 520px;
}

.eyebrow,
.label {
  font-size: 10px;
  letter-spacing: .17em;
}

.hero h1 {
  margin: 16px 0 6px;
  font-size: clamp(46px, 5.1vw, 70px);
  line-height: .98;
  letter-spacing: -.055em;
  white-space: nowrap;
}

.hero h2 {
  margin-bottom: 18px;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.15;
}

.hero p {
  max-width: 480px;
  font-size: 13.5px;
  line-height: 1.75;
  color: #3f4b5f;
}

.hero-actions {
  margin-top: 28px;
  gap: 20px;
}

.btn,
.link-btn {
  min-height: 46px;
  padding: 0 22px;
  border-radius: 10px;
  font-size: 12px;
}

.btn.primary span {
  width: 28px;
  height: 28px;
}

.trust-strip {
  margin-top: 44px;
}

.trust-strip small {
  font-size: 11px;
  margin-bottom: 18px;
}

.logos {
  gap: 25px;
}

.logos b {
  font-size: 15px;
  color: #a2adbd;
}

/* Keep only the speech card from the old CSS illustration; avoid duplicate character */
.office-stage {
  display: block;
  position: absolute;
  inset: 0;
  min-height: 0;
  pointer-events: none;
  z-index: 1;
}

.office-stage > :not(.guide-note) {
  display: none !important;
}

.guide-note {
  display: block;
  right: max(260px, calc((100vw - var(--page-width)) / 2 + 224px));
  bottom: 72px;
  width: 226px;
  min-height: 86px;
  padding: 18px 58px 16px 20px;
  border-radius: 11px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(244,213,226,.86);
  box-shadow: 0 18px 44px rgba(17,24,39,.10);
  backdrop-filter: blur(14px);
}

.guide-note strong {
  font-size: 14px;
}

.guide-note span {
  font-size: 11px;
}

.scroll-cue {
  margin-top: 8px;
  font-size: 11px;
}

/* Section panels: compact, airy, same visual rhythm as reference */
.section {
  scroll-margin-top: 92px;
}

.rooms-section,
.work-section,
.process-section,
.testimonials-section,
.contact-section {
  padding: 18px 0 22px;
}

.panel-large,
.meeting-card {
  border-radius: 14px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(226,232,240,.92);
  box-shadow: 0 16px 48px rgba(17,24,39,.045);
}

.panel-large {
  padding: 28px;
}

.section-head {
  margin-bottom: 22px;
}

.section-head h2 {
  font-size: clamp(28px, 3.2vw, 38px);
}

.section-head p {
  font-size: 12px;
  line-height: 1.5;
}

.room-grid {
  gap: 13px;
}

.room-card {
  min-height: 270px;
  padding: 18px;
  border-radius: 12px;
}

.icon-badge {
  width: 44px;
  height: 44px;
  font-size: 17px;
  margin-bottom: 12px;
}

.mini-diagram {
  height: 86px;
  border-radius: 10px;
}

.room-card small {
  margin-top: 14px;
  font-size: 11px;
}

.room-card h3 {
  font-size: 18px;
}

.room-card p {
  font-size: 11px;
  line-height: 1.48;
}

.room-card button {
  width: 28px;
  height: 28px;
  left: 17px;
  bottom: 15px;
}

.work-layout {
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 30px;
}

.work-thumb {
  height: 132px;
}

.work-card {
  border-radius: 12px;
}

.work-card h3 {
  font-size: 12px;
}

.work-card p,
.work-card span {
  font-size: 10px;
}

.process-panel {
  grid-template-columns: 210px 1fr;
}

.process-step span {
  width: 56px;
  height: 56px;
}

.process-step h3 {
  font-size: 11px;
}

.process-step p {
  font-size: 10px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.testimonial-grid article {
  padding: 20px;
  border: 1px solid #edf0f5;
  border-radius: 14px;
  background: rgba(255,255,255,.82);
}

.testimonial-grid p {
  margin: 0 0 12px;
  color: #3f4b5f;
  font-size: 13px;
  line-height: 1.55;
}

.testimonial-grid strong {
  color: var(--pink);
  font-size: 12px;
}

.meeting-card {
  min-height: 310px;
  grid-template-columns: minmax(0, 410px) 1fr;
  padding: 34px;
}

.meeting-copy h2 {
  font-size: 36px;
}

.contact-form {
  max-width: 360px;
  padding: 18px;
  border-radius: 14px;
}

.meeting-illustration {
  opacity: .55;
}

.footer {
  margin-top: 0;
}

@media (max-width: 1180px) {
  :root { --page-width: 940px; }
  .tour-rail { display: none; }
  .topbar, .container, .footer { width: min(940px, calc(100% - 40px)); }
  .hero::before {
    background-position: right -110px top 80px;
    background-size: auto 510px;
  }
  .guide-note {
    right: 230px;
    bottom: 64px;
  }
}

@media (max-width: 860px) {
  .topbar {
    top: 14px;
    height: auto;
    min-height: 50px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 14px;
  }
  .nav {
    overflow-x: auto;
    gap: 18px;
    justify-content: flex-start;
    scrollbar-width: none;
  }
  .nav::-webkit-scrollbar { display: none; }
  .nav a { font-size: 11px; white-space: nowrap; }
  .nav .talk-link { padding: 9px 14px; }

  .hero {
    min-height: auto;
    padding: 108px 0 34px;
  }
  .hero::before {
    background-position: right -170px top 96px;
    background-size: auto 455px;
    opacity: .55;
  }
  .hero::after {
    background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.88) 54%, rgba(255,255,255,.98) 100%);
  }
  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-copy {
    max-width: 100%;
    text-align: left;
  }
  .hero h1 {
    white-space: normal;
    font-size: clamp(43px, 13vw, 62px);
  }
  .hero p {
    max-width: 100%;
  }
  .hero-actions,
  .logos {
    justify-content: flex-start;
  }
  .office-stage {
    display: none;
  }
  .room-grid,
  .work-carousel,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .work-layout,
  .process-panel,
  .meeting-card {
    grid-template-columns: 1fr;
  }
  .contact-form {
    max-width: none;
  }
}

@media (max-width: 520px) {
  .container,
  .footer,
  .topbar {
    width: calc(100% - 28px);
  }
  .nav {
    grid-column: 1 / -1;
  }
  .hero {
    padding-top: 118px;
  }
  .hero::before {
    background-position: right -210px top 120px;
    background-size: auto 420px;
    opacity: .42;
  }
  .btn,
  .link-btn {
    width: 100%;
  }
  .panel-large,
  .meeting-card {
    padding: 20px;
  }
}
