:root {
  --text: #111111;
  --muted: rgba(17, 17, 17, .56);
  --soft: rgba(17, 17, 17, .12);
  --white: #ffffff;
  --cream: #f2eee6;
  --sand: #e7ded1;
  --blue: #dfe8ee;
  --stone: #e5e1d7;
  --ink: #101722;
  --black: #080a0f;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  word-break: keep-all;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

html.no-snap { scroll-snap-type: none; }

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

.top-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 120;
  height: 74px;
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  align-items: center;
  padding: 0 40px;
  background: rgba(242, 238, 230, .54);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-weight: 950;
  letter-spacing: -.07em;
}

.brand-mark {
  width: 24px;
  height: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  flex: 0 0 24px;
}

.brand-mark i {
  display: block;
  background: currentColor;
}

.brand strong,
.footer-logo strong {
  font-size: 25px;
  line-height: 1;
}

.top-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -.02em;
}

.top-menu a,
.top-actions a {
  opacity: .72;
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}

.top-menu a:hover,
.top-actions a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.top-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  color: rgba(17, 17, 17, .72);
  font-size: 14px;
  font-weight: 850;
}

.contact-box {
  min-width: 96px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  padding: 0 18px;
  border: 1px solid rgba(17,17,17,.32);
  border-radius: 0;
  background: rgba(255,255,255,.14);
  color: inherit;
}

.hamburger {
  width: 36px;
  height: 29px;
  padding: 0;
  display: grid;
  align-content: space-between;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  background: #111;
  transform-origin: center;
  transition: transform .22s ease, opacity .22s ease, background .22s ease;
}

body.menu-open .hamburger span:nth-child(1) { transform: translateY(13.5px) rotate(45deg); }
body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
body.menu-open .hamburger span:nth-child(3) { transform: translateY(-13.5px) rotate(-45deg); }

.left-menu {
  position: fixed;
  left: 42px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: grid;
  gap: 13px;
  font-size: 14px;
  font-weight: 800;
  color: rgba(17, 17, 17, .4);
}

.left-menu a {
  display: flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
}

.left-menu a::before {
  content: "";
  width: 16px;
  height: 1px;
  background: currentColor;
  transition: width .2s ease, height .2s ease;
}

.left-menu a.active,
.left-menu a:hover {
  color: #111;
}

.left-menu a.active::before {
  width: 26px;
  height: 2px;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 130;
  background: rgba(0,0,0,.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease;
}

.drawer-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 140;
  width: min(430px, 88vw);
  height: 100dvh;
  padding: 30px clamp(24px, 5vw, 44px) 38px;
  display: grid;
  align-content: start;
  gap: 34px;
  color: #111;
  background: rgba(246, 242, 234, .96);
  box-shadow: -30px 0 80px rgba(0,0,0,.16);
  transform: translateX(100%);
  transition: transform .28s ease;
}

body.menu-open .drawer-backdrop {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open .drawer-menu { transform: translateX(0); }

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(17,17,17,.48);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .18em;
}

.drawer-close {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: -.02em;
  cursor: pointer;
}

.drawer-section-links {
  display: grid;
  gap: 14px;
}

.drawer-section-links a {
  display: block;
  padding: 5px 0;
  font-size: clamp(38px, 9vw, 58px);
  line-height: .92;
  letter-spacing: -.07em;
  font-weight: 950;
}

.drawer-contact {
  width: min(100%, 280px);
  height: 76px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(17,17,17,.82);
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -.04em;
}

.drawer-home-links {
  display: grid;
  gap: 10px;
  padding-top: 26px;
  border-top: 1px solid rgba(17,17,17,.14);
}

.drawer-home-links p {
  margin: 0 0 8px;
  color: rgba(17,17,17,.48);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.drawer-home-links a {
  width: fit-content;
  color: rgba(17,17,17,.7);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.025em;
}

.snap-wrap { position: relative; }

.snap-section {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(120px, .88fr) minmax(460px, 1.12fr);
  align-items: center;
  padding: 112px clamp(42px, 6vw, 116px) 76px clamp(180px, 14vw, 260px);
}

.snap-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(0,0,0,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.026) 1px, transparent 1px);
  background-size: 48px 48px;
}

.snap-section::after {
  content: "";
  position: absolute;
  inset: 12% 7% 10% 34%;
  z-index: -1;
  border-radius: 50%;
  filter: blur(10px);
  opacity: .72;
  background: radial-gradient(circle, rgba(255,255,255,.7) 0%, rgba(255,255,255,.35) 32%, transparent 64%);
}

.intro { background: var(--cream); }
.development { background: var(--sand); }
.media { background: var(--blue); }
.technology { background: var(--stone); }
.identity { background: radial-gradient(circle at 62% 52%, rgba(183,139,91,.18), transparent 38%), var(--ink); color: #fff; }

.section-copy {
  grid-column: 2;
  width: min(100%, 880px);
  justify-self: center;
  text-align: center;
}

.eyebrow {
  margin: 0 0 15px;
  color: rgba(17, 17, 17, .48);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.light-copy .eyebrow,
.identity .eyebrow {
  color: rgba(255,255,255,.55);
}

h1, h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(58px, 7.3vw, 124px);
  line-height: .88;
  letter-spacing: -.082em;
  font-weight: 950;
}

.section-subtitle {
  margin: 28px auto 0;
  max-width: 820px;
  font-size: clamp(22px, 2.3vw, 36px);
  line-height: 1.25;
  letter-spacing: -.055em;
  font-weight: 750;
  color: rgba(17,17,17,.78);
}

.light-copy .section-subtitle,
.identity .section-subtitle { color: rgba(255,255,255,.82); }

.section-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 42px;
}

.section-buttons a {
  min-width: 210px;
  height: 62px;
  display: inline-grid;
  place-items: center;
  border: 2px solid rgba(17,17,17,.78);
  border-radius: 999px;
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -.04em;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.section-buttons a::after {
  content: "↗";
  margin-left: 8px;
  font-size: .9em;
}

.section-buttons a:hover {
  color: #fff;
  background: #111;
  transform: translateY(-2px);
}

.light-buttons a {
  color: #fff;
  border-color: rgba(255,255,255,.72);
}

.light-buttons a:hover {
  color: #111;
  background: #fff;
  border-color: #fff;
}

.site-footer {
  min-height: 70vh;
  min-height: 70svh;
  scroll-snap-align: start;
  display: grid;
  align-content: center;
  gap: 44px;
  padding: 110px clamp(42px, 6vw, 116px) 70px clamp(180px, 14vw, 260px);
  color: #fff;
  background: var(--black);
}

.site-footer .brand-mark { color: #fff; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 28px;
  padding-top: 34px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.footer-grid h3 {
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.48);
}

.footer-grid p {
  margin: 8px 0;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.46);
  font-size: 14px;
  font-weight: 800;
}

.detail-page {
  background: #f4f0ea;
}

.detail-page html,
.detail-page {
  scroll-snap-type: none;
}

.detail-page .top-header {
  background: rgba(244, 240, 234, .7);
}

.detail-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 134px 24px 110px;
}

.detail-kicker {
  margin: 0 0 16px;
  color: rgba(17,17,17,.48);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .18em;
}

.detail-title {
  margin-bottom: 54px;
  font-size: clamp(58px, 8vw, 118px);
}

.detail-section {
  padding: 56px 0 64px;
  border-top: 1px solid rgba(0,0,0,.15);
}

.detail-section h2 {
  margin-bottom: 20px;
  font-size: clamp(42px, 5vw, 72px);
}

.detail-section p:not(.eyebrow) {
  max-width: 820px;
  margin: 0 0 24px;
  color: rgba(17,17,17,.64);
  font-size: 20px;
  line-height: 1.82;
  letter-spacing: -.025em;
}

.detail-section ul {
  display: grid;
  gap: 10px;
  max-width: 820px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.detail-section li {
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(255,255,255,.56);
  font-size: 17px;
  font-weight: 850;
}

.detail-visual,
.detail-card-grid,
.detail-phone-visual {
  margin: 0 0 34px;
}

.logo-visual {
  width: min(100%, 560px);
  min-height: 170px;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 30px;
  color: #fff;
  background: #111;
  box-shadow: 0 26px 60px rgba(0,0,0,.12);
}

.logo-visual .brand-mark {
  width: 54px;
  height: 54px;
  flex-basis: 54px;
  gap: 6px;
}

.logo-visual strong {
  font-size: clamp(30px, 5vw, 54px);
  line-height: .95;
  letter-spacing: -.07em;
}

.detail-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 820px;
}

.detail-card-grid article {
  min-height: 180px;
  padding: 26px;
  border-radius: 26px;
  border: 1px solid rgba(17,17,17,.12);
  background: rgba(255,255,255,.5);
  box-shadow: 0 20px 46px rgba(0,0,0,.08);
}

.detail-card-grid article:first-child,
.identity-detail article {
  color: #fff;
  background: #111;
}

.detail-card-grid small {
  display: block;
  margin-bottom: 22px;
  color: rgba(17,17,17,.48);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
}

.detail-card-grid article:first-child small,
.identity-detail small { color: rgba(255,255,255,.52); }

.detail-card-grid strong {
  display: block;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.02;
  letter-spacing: -.065em;
  font-weight: 950;
}

.detail-phone-visual {
  display: flex;
  align-items: center;
  gap: 22px;
  max-width: 700px;
}

.detail-phone-visual > div {
  width: 180px;
  height: 260px;
  padding: 28px 20px;
  border-radius: 34px;
  background: #111;
  box-shadow: 0 22px 54px rgba(0,0,0,.14);
}

.detail-phone-visual span,
.detail-phone-visual i {
  display: block;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
}

.detail-phone-visual span {
  width: 58px;
  height: 8px;
  margin: 0 auto 38px;
}

.detail-phone-visual i {
  height: 16px;
  margin: 18px 0;
}

.detail-phone-visual i:first-of-type {
  width: 72%;
  height: 24px;
  background: rgba(255,255,255,.48);
}

.detail-phone-visual strong {
  font-size: clamp(42px, 6vw, 72px);
  line-height: .9;
  letter-spacing: -.07em;
}

.back-link {
  display: inline-flex;
  margin-top: 38px;
  font-size: 18px;
  font-weight: 950;
}

@media (max-width: 1200px) {
  .top-header {
    grid-template-columns: auto 1fr auto;
    padding: 0 24px;
  }

  .top-menu { display: none; }
  .left-menu { left: 24px; }

  .snap-section {
    grid-template-columns: minmax(80px, .32fr) minmax(0, 1fr);
    padding-left: 142px;
    padding-right: 42px;
  }

  .site-footer { padding-left: 142px; }
}

@media (max-width: 760px) {
  html { scroll-snap-type: y mandatory; }

  .top-header {
    height: 64px;
    grid-template-columns: auto 1fr;
    padding: 0 18px;
  }

  .brand strong { font-size: 22px; }
  .brand-mark { width: 22px; height: 22px; flex-basis: 22px; }
  .top-actions { gap: 10px; }
  .top-link { display: none; }
  .contact-box {
    min-width: 80px;
    height: 34px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hamburger {
    width: 32px;
    height: 25px;
  }

  body.menu-open .hamburger span:nth-child(1) { transform: translateY(11.5px) rotate(45deg); }
  body.menu-open .hamburger span:nth-child(3) { transform: translateY(-11.5px) rotate(-45deg); }

  .left-menu { display: none; }

  .snap-section {
    min-height: 100vh;
    min-height: 100svh;
    grid-template-columns: 1fr;
    place-items: center;
    padding: 90px 22px 62px;
  }

  .snap-section::before { background-size: 34px 34px; }
  .snap-section::after { inset: 18% -28% 18% 10%; opacity: .66; }

  .section-copy {
    grid-column: 1;
    width: 100%;
  }

  h1, h2 {
    font-size: clamp(46px, 15vw, 78px);
    line-height: .92;
  }

  .section-subtitle {
    max-width: 320px;
    margin-top: 24px;
    font-size: 21px;
    line-height: 1.34;
  }

  .section-buttons { margin-top: 34px; }
  .section-buttons a {
    min-width: 178px;
    height: 54px;
    font-size: 16px;
  }

  .drawer-menu {
    width: 100vw;
    padding: 28px 24px 36px;
  }

  .drawer-section-links a {
    font-size: clamp(40px, 13vw, 60px);
  }

  .drawer-contact {
    width: 100%;
    height: 70px;
  }

  .site-footer {
    min-height: 100vh;
    min-height: 100svh;
    padding: 86px 22px 50px;
  }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }

  .detail-wrap { padding: 106px 20px 80px; }
  .detail-section p:not(.eyebrow) { font-size: 17px; }
  .detail-card-grid { grid-template-columns: 1fr; }
  .detail-phone-visual { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 420px) {
  .contact-box { display: none; }
  .snap-section { padding-left: 18px; padding-right: 18px; }
  h1, h2 { font-size: clamp(42px, 16vw, 66px); }
}

body.dark-ui .top-header {
  color: #fff;
  background: rgba(8, 10, 15, .46);
}

body.dark-ui .contact-box {
  border-color: rgba(255,255,255,.32);
  background: rgba(255,255,255,.06);
}

body.dark-ui .hamburger span {
  background: #fff;
}

body.dark-ui .left-menu {
  color: rgba(255,255,255,.42);
}

body.dark-ui .left-menu a.active,
body.dark-ui .left-menu a:hover {
  color: #fff;
}


/* v03 responsive refinements */
html:not(.no-snap),
html:not(.no-snap) body {
  height: 100%;
  overflow: hidden;
}

html:not(.no-snap) {
  scroll-snap-type: none;
}

body:not(.detail-page) {
  overflow: hidden;
}

body.menu-open .snap-wrap {
  overflow: hidden;
}

.top-header {
  grid-template-columns: 260px 1fr 80px;
}

.top-actions > a,
.top-actions .outline-btn {
  display: none;
}

.snap-wrap {
  position: relative;
  height: 100vh;
  height: 100dvh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  overscroll-behavior-y: contain;
}

.snap-section {
  grid-template-columns: 1fr;
  place-items: center;
  padding: 108px clamp(34px, 7vw, 116px) 76px;
}

.section-copy {
  grid-column: 1;
  width: min(100%, 980px);
  justify-self: center;
  margin-inline: auto;
  text-align: center;
}

.visual-object,
.section-desc {
  display: none !important;
}

.intro-title {
  font-size: clamp(42px, 5.9vw, 92px);
  line-height: .95;
  letter-spacing: -.075em;
  white-space: nowrap;
}

h1:not(.intro-title), h2 {
  font-size: clamp(50px, 6.4vw, 104px);
}

.section-subtitle {
  max-width: 760px;
  margin-top: 22px;
  font-size: clamp(17px, 1.65vw, 26px);
  line-height: 1.36;
  letter-spacing: -.045em;
}

.intro-subtitle {
  max-width: 720px;
}

.section-buttons {
  margin-top: 34px;
}

.section-buttons a {
  min-width: 164px;
  height: 52px;
  padding: 0 28px;
  font-size: 15px;
  border-width: 1.5px;
}

.section-buttons a::after {
  content: none !important;
}

.drawer-menu {
  width: min(360px, 92vw);
  gap: 28px;
}

.drawer-head {
  font-size: 11px;
  letter-spacing: .16em;
}

.drawer-head span {
  text-transform: lowercase;
}

.drawer-close {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(17,17,17,.16);
  color: rgba(17,17,17,.72);
  font-size: 22px;
  line-height: 1;
  font-weight: 500;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.drawer-close:hover {
  color: #111;
  border-color: rgba(17,17,17,.42);
  background: rgba(255,255,255,.56);
}

.drawer-section-links {
  gap: 8px;
}

.drawer-section-links a {
  padding: 5px 0;
  font-size: clamp(22px, 4.2vw, 34px);
  line-height: 1.04;
  letter-spacing: -.055em;
}

.drawer-contact {
  width: 100%;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border: 1px solid rgba(17,17,17,.16);
  background: rgba(255,255,255,.18);
  color: rgba(17,17,17,.46);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -.035em;
  opacity: .62;
  transition: opacity .18s ease, color .18s ease, border-color .18s ease, background .18s ease, transform .18s ease;
}

.drawer-contact:hover {
  opacity: 1;
  color: #111;
  border-color: rgba(17,17,17,.72);
  background: rgba(255,255,255,.62);
  transform: translateY(-1px);
}

.drawer-contact i,
.drawer-home-links i {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 28px;
  border-radius: 50%;
  background: rgba(17,17,17,.08);
  font-style: normal;
  font-size: 14px;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.drawer-contact:hover i,
.drawer-home-links a:hover i {
  color: #fff;
  background: #111;
  transform: translateX(2px);
}

.drawer-home-links {
  gap: 8px;
  padding-top: 20px;
}

.drawer-home-links p {
  display: none;
}

.drawer-home-links a {
  width: 100%;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 0 0 2px;
  color: rgba(17,17,17,.62);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -.025em;
  transition: color .18s ease, transform .18s ease;
}

.drawer-home-links a:hover {
  color: #111;
  transform: translateX(2px);
}

.site-footer {
  min-height: 100vh;
  min-height: 100dvh;
  scroll-snap-align: start;
}

@media (max-width: 1200px) {
  .top-header {
    grid-template-columns: auto 1fr auto;
  }
  .snap-section {
    grid-template-columns: 1fr;
    padding-left: clamp(34px, 7vw, 92px);
    padding-right: clamp(34px, 7vw, 92px);
  }
  .site-footer {
    padding-left: clamp(34px, 7vw, 92px);
  }
}

@media (max-width: 760px) {
  html:not(.no-snap),
  html:not(.no-snap) body {
    height: 100%;
    overflow: hidden;
  }

  .snap-wrap {
    height: 100vh;
    height: 100dvh;
    scroll-snap-type: y mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .top-header {
    grid-template-columns: auto 1fr auto;
  }

  .section-copy {
    transform: translateY(-2vh);
  }

  .intro-title {
    font-size: clamp(34px, 10vw, 48px);
    letter-spacing: -.065em;
  }

  h1:not(.intro-title), h2 {
    font-size: clamp(42px, 13vw, 66px);
  }

  .section-subtitle {
    max-width: 330px;
    margin-top: 18px;
    font-size: clamp(15px, 4.2vw, 18px);
    line-height: 1.42;
  }

  .section-buttons {
    margin-top: 28px;
  }

  .section-buttons a {
    min-width: 144px;
    height: 47px;
    font-size: 14px;
  }

  .drawer-section-links a {
    font-size: clamp(24px, 8vw, 34px);
  }

  .drawer-menu {
    width: 100vw;
    padding: 28px 24px 36px;
    gap: 26px;
  }
}

@media (max-width: 420px) {
  .intro-title {
    font-size: clamp(30px, 9.2vw, 38px);
  }
  .snap-section {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* v04 footer and drawer refinements */
.drawer-menu {
  width: min(340px, 92vw);
  gap: 22px;
}

.drawer-section-links {
  gap: 4px;
}

.drawer-section-links a {
  padding: 3px 0;
  font-size: clamp(19px, 3.35vw, 28px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.drawer-contact {
  height: 52px;
  padding: 0 16px;
  border-color: rgba(17,17,17,.13);
  background: rgba(255,255,255,.12);
  font-size: 15px;
  opacity: .48;
}

.drawer-contact i,
.drawer-home-links i {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(17,17,17,.16);
  background: transparent;
  color: rgba(17,17,17,.52);
  font-size: 12px;
  line-height: 1;
}

.drawer-contact:hover i,
.drawer-home-links a:hover i {
  color: #111;
  background: rgba(17,17,17,.06);
  border-color: rgba(17,17,17,.34);
  transform: translateX(2px);
}

.drawer-home-links {
  gap: 3px;
  padding-top: 14px;
  border-top-color: rgba(17,17,17,.1);
}

.drawer-home-links a {
  min-height: 35px;
  padding: 0 0 0 1px;
  color: rgba(17,17,17,.56);
  font-size: 13px;
  font-weight: 800;
}

.drawer-home-links a:hover {
  color: #111;
  transform: translateX(1px);
}

.site-footer {
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-content: end;
  padding: 112px clamp(42px, 6vw, 116px) 54px clamp(42px, 6vw, 116px);
  color: #fff;
  background: var(--black);
}

.footer-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.site-footer .footer-logo {
  color: #fff;
  margin-bottom: 8px;
}

.site-footer .footer-logo strong {
  font-size: clamp(24px, 2.2vw, 32px);
  letter-spacing: -.06em;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.74);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -.025em;
}

.footer-legal a {
  transition: color .18s ease, opacity .18s ease;
}

.footer-legal a:hover {
  color: #fff;
}

.footer-company {
  display: grid;
  gap: 7px;
  margin: 0;
  color: rgba(255,255,255,.52);
  font-style: normal;
  font-size: 13px;
  line-height: 1.75;
  letter-spacing: -.025em;
  font-weight: 650;
}

.footer-company p {
  margin: 0;
}

.footer-copyright {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.42);
  font-size: 13px;
  font-weight: 750;
}

@media (max-width: 760px) {
  .drawer-menu {
    width: 100vw;
    gap: 20px;
  }

  .drawer-section-links a {
    font-size: clamp(22px, 6.8vw, 30px);
  }

  .drawer-home-links {
    gap: 2px;
  }

  .drawer-home-links a {
    min-height: 34px;
    font-size: 13px;
  }

  .site-footer {
    padding: 86px 22px 42px;
    align-content: end;
  }

  .footer-inner {
    gap: 18px;
  }

  .footer-legal {
    gap: 10px 16px;
    font-size: 13px;
  }

  .footer-company {
    font-size: 12px;
    line-height: 1.7;
  }
}

/* v05 intro background video */
.video-section {
  background: var(--black);
  color: #fff;
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
  pointer-events: none;
}

.video-section .video-dim {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.08), transparent 42%),
    linear-gradient(90deg, rgba(8,10,15,.72), rgba(8,10,15,.36) 48%, rgba(8,10,15,.72)),
    rgba(8,10,15,.34);
  pointer-events: none;
}

.video-section::before {
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
}

.video-section::after {
  z-index: -1;
  opacity: .34;
  background: radial-gradient(circle, rgba(255,255,255,.24) 0%, rgba(255,255,255,.12) 34%, transparent 64%);
}

.intro .eyebrow {
  color: rgba(255,255,255,.58);
}

.intro .section-subtitle {
  color: rgba(255,255,255,.82);
}

@media (prefers-reduced-motion: reduce) {
  .bg-video {
    display: none;
  }
}


/* v06 transparent header and bright overlay menu on dark video sections */
.top-header {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

body.dark-ui .top-header {
  color: #fff;
  background: transparent !important;
}

body.dark-ui .brand,
body.dark-ui .top-menu,
body.dark-ui .top-actions {
  color: #fff;
}

body.dark-ui .top-menu a {
  opacity: .82;
}

body.dark-ui .top-menu a:hover {
  opacity: 1;
}

body.dark-ui .hamburger span {
  background: #fff;
}

body.dark-ui .left-menu {
  color: rgba(255, 255, 255, .54);
  text-shadow: 0 2px 16px rgba(0, 0, 0, .38);
}

body.dark-ui .left-menu a.active,
body.dark-ui .left-menu a:hover {
  color: #fff;
}

body.dark-ui .left-menu a::before {
  background: currentColor;
}

.detail-page .top-header {
  background: rgba(244, 240, 234, .72) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}

/* v07 video visibility fix */
.video-section {
  isolation: isolate;
}

.video-section .bg-video {
  z-index: 0 !important;
  display: block;
  opacity: 1;
}

.video-section .video-dim {
  z-index: 1 !important;
}

.video-section::before,
.video-section::after {
  z-index: 2 !important;
  pointer-events: none;
}

.video-section .section-copy {
  position: relative;
  z-index: 3;
}

/* v08 intro video replacement + compact footer */
.site-footer {
  min-height: auto !important;
  min-height: unset !important;
  scroll-snap-align: end !important;
  align-content: center !important;
  padding: clamp(46px, 6vw, 72px) clamp(28px, 6vw, 116px) clamp(34px, 5vw, 56px) !important;
}

.footer-inner {
  gap: 16px !important;
}

.site-footer .footer-logo {
  margin-bottom: 4px !important;
}

.footer-legal {
  padding-top: 16px !important;
}

.footer-company {
  gap: 4px !important;
  line-height: 1.55 !important;
}

.footer-copyright {
  padding-top: 14px !important;
}

@media (max-width: 760px) {
  .site-footer {
    padding: 40px 22px 34px !important;
  }

  .footer-inner {
    gap: 14px !important;
  }

  .footer-legal {
    padding-top: 14px !important;
  }
}


/* v12 CSS motion backgrounds for Media / Technology / Identity */
.css-motion-section {
  isolation: isolate;
}

.css-motion-section .section-copy {
  position: relative;
  z-index: 4;
}

/* Media: bright idea / content production mood */
.media {
  color: #111;
  background:
    radial-gradient(circle at 18% 52%, rgba(255,255,255,.58) 0 7%, transparent 8%),
    linear-gradient(135deg, #ffd941 0%, #ffc32e 48%, #ffb13b 100%);
}

.media::before {
  z-index: 0 !important;
  opacity: .78;
  background:
    radial-gradient(circle at 18% 46%, rgba(255,255,255,.92) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 34%, rgba(255,255,255,.54) 0 3px, transparent 4px),
    radial-gradient(circle at 78% 65%, rgba(255,255,255,.44) 0 2px, transparent 3px),
    radial-gradient(circle at 43% 74%, rgba(255,255,255,.32) 0 2px, transparent 3px),
    radial-gradient(circle at 58% 45%, rgba(17,17,17,.08) 0 1px, transparent 2px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 220px 220px, 270px 270px, 310px 310px, 260px 260px, 180px 180px, 60px 60px, 60px 60px;
  animation: mediaParticles 9s ease-in-out infinite alternate;
}

.media::after {
  z-index: 1 !important;
  inset: auto auto -18% -8% !important;
  width: clamp(280px, 46vw, 660px);
  height: clamp(280px, 46vw, 660px);
  border-radius: 50%;
  filter: blur(2px);
  opacity: .78;
  background:
    radial-gradient(circle at 42% 38%, rgba(255,255,255,.95) 0 9%, rgba(255,255,255,.58) 10% 16%, transparent 17%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.22), transparent 60%);
  animation: mediaGlow 7s ease-in-out infinite alternate;
}

/* Technology: digital grid / automation mood */
.technology {
  color: #fff;
  background:
    radial-gradient(circle at 68% 45%, rgba(49,170,255,.26), transparent 35%),
    radial-gradient(circle at 22% 72%, rgba(104,255,215,.14), transparent 30%),
    linear-gradient(135deg, #08111d 0%, #101827 52%, #06101c 100%);
}

.technology::before {
  z-index: 0 !important;
  opacity: .86;
  background:
    linear-gradient(90deg, rgba(118,217,255,.12) 1px, transparent 1px),
    linear-gradient(rgba(118,217,255,.12) 1px, transparent 1px),
    radial-gradient(circle at 15% 25%, rgba(255,255,255,.68) 0 1px, transparent 2px),
    radial-gradient(circle at 80% 40%, rgba(117,221,255,.72) 0 1px, transparent 2px),
    radial-gradient(circle at 65% 72%, rgba(255,255,255,.46) 0 1px, transparent 2px);
  background-size: 54px 54px, 54px 54px, 180px 180px, 240px 240px, 210px 210px;
  animation: techGrid 12s linear infinite;
}

.technology::after {
  z-index: 1 !important;
  inset: 13% 7% 12% 40% !important;
  border-radius: 42%;
  filter: blur(0);
  opacity: .64;
  background:
    linear-gradient(115deg, transparent 0 22%, rgba(95,210,255,.28) 23% 24%, transparent 25% 48%, rgba(255,255,255,.14) 49% 50%, transparent 51%),
    radial-gradient(circle at 35% 32%, rgba(120,226,255,.34), transparent 28%),
    radial-gradient(circle at 72% 68%, rgba(255,255,255,.14), transparent 24%);
  animation: techLines 8s ease-in-out infinite alternate;
}

.technology .eyebrow,
.technology .section-subtitle {
  color: rgba(255,255,255,.78);
}

.technology .section-buttons a {
  color: #fff;
  border-color: rgba(255,255,255,.72);
}

.technology .section-buttons a:hover {
  color: #111;
  background: #fff;
  border-color: #fff;
}

/* Identity: warm brand / space branding mood */
.identity {
  color: #fff;
  background:
    radial-gradient(circle at 32% 40%, rgba(215,166,103,.24), transparent 30%),
    radial-gradient(circle at 74% 62%, rgba(255,230,188,.12), transparent 28%),
    linear-gradient(135deg, #100d0b 0%, #1a1511 48%, #0a0b10 100%);
}

.identity::before {
  z-index: 0 !important;
  opacity: .62;
  background:
    linear-gradient(120deg, transparent 0 32%, rgba(231,185,123,.18) 33% 34%, transparent 35% 58%, rgba(255,255,255,.06) 59% 60%, transparent 61%),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 260px 260px, 62px 62px, 62px 62px;
  animation: identityTexture 13s ease-in-out infinite alternate;
}

.identity::after {
  z-index: 1 !important;
  inset: 20% 16% 16% 44% !important;
  border-radius: 50%;
  filter: blur(18px);
  opacity: .58;
  background:
    radial-gradient(circle, rgba(238,188,119,.36) 0%, rgba(181,118,64,.16) 36%, transparent 68%);
  animation: identityGlow 9s ease-in-out infinite alternate;
}

@keyframes mediaParticles {
  from { transform: translate3d(-8px, 10px, 0) scale(1); }
  to { transform: translate3d(14px, -12px, 0) scale(1.03); }
}

@keyframes mediaGlow {
  from { transform: translate3d(0, 0, 0) scale(.96); opacity: .58; }
  to { transform: translate3d(22px, -18px, 0) scale(1.05); opacity: .82; }
}

@keyframes techGrid {
  from { background-position: 0 0, 0 0, 0 0, 0 0, 0 0; }
  to { background-position: 54px 54px, 54px 54px, 34px 18px, -38px 24px, 28px -36px; }
}

@keyframes techLines {
  from { transform: translate3d(-12px, 10px, 0) scale(.98); opacity: .46; }
  to { transform: translate3d(18px, -8px, 0) scale(1.03); opacity: .68; }
}

@keyframes identityTexture {
  from { transform: translate3d(-10px, 0, 0); background-position: 0 0, 0 0, 0 0; }
  to { transform: translate3d(12px, -10px, 0); background-position: 36px -26px, 18px 18px, 18px 18px; }
}

@keyframes identityGlow {
  from { transform: translate3d(-18px, 16px, 0) scale(.94); opacity: .42; }
  to { transform: translate3d(16px, -18px, 0) scale(1.06); opacity: .64; }
}

@media (prefers-reduced-motion: reduce) {
  .css-motion-section::before,
  .css-motion-section::after {
    animation: none !important;
  }
}

@media (max-width: 760px) {
  .media::after {
    inset: auto auto -12% -30% !important;
    width: 420px;
    height: 420px;
  }

  .technology::after,
  .identity::after {
    inset: 20% -18% 18% 18% !important;
  }
}

/* v13 section video backgrounds: Media / Technology / Identity */
.media.video-section,
.technology.video-section,
.identity.video-section {
  color: #fff;
  background: #05070b;
}

.media.video-section .video-dim,
.technology.video-section .video-dim,
.identity.video-section .video-dim {
  background:
    radial-gradient(circle at 50% 48%, rgba(255,255,255,.06), transparent 42%),
    linear-gradient(90deg, rgba(5,7,12,.70), rgba(5,7,12,.42) 48%, rgba(5,7,12,.70)),
    rgba(5,7,12,.34);
}

.media.video-section::before,
.technology.video-section::before,
.identity.video-section::before {
  background-image:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px) !important;
  background-size: 48px 48px !important;
  animation: none !important;
}

.media.video-section::after,
.technology.video-section::after,
.identity.video-section::after {
  inset: 12% 7% 10% 34% !important;
  width: auto !important;
  height: auto !important;
  border-radius: 50% !important;
  filter: blur(10px) !important;
  opacity: .26 !important;
  background: radial-gradient(circle, rgba(255,255,255,.24) 0%, rgba(255,255,255,.12) 34%, transparent 64%) !important;
  animation: none !important;
}

.media.video-section .eyebrow,
.technology.video-section .eyebrow,
.identity.video-section .eyebrow,
.media.video-section .section-subtitle,
.technology.video-section .section-subtitle,
.identity.video-section .section-subtitle {
  color: rgba(255,255,255,.82);
}

/* v14 menu optical centering + Development video text contrast */
@media (min-width: 1201px) {
  .top-header {
    grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr) !important;
  }

  .top-header .brand {
    grid-column: 1;
    justify-self: start;
  }

  .top-header .top-menu {
    grid-column: 2;
    justify-self: center;
  }

  .top-header .top-actions {
    grid-column: 3;
    justify-self: end;
  }
}

.development.video-section h2,
.development.video-section .eyebrow,
.development.video-section .section-subtitle {
  color: rgba(255, 255, 255, .92) !important;
  text-shadow: 0 3px 22px rgba(0, 0, 0, .42);
}

.development.video-section .eyebrow {
  color: rgba(255, 255, 255, .66) !important;
}

.development.video-section .section-subtitle {
  color: rgba(255, 255, 255, .84) !important;
}

.development.video-section .video-dim {
  background:
    radial-gradient(circle at 50% 48%, rgba(255,255,255,.05), transparent 42%),
    linear-gradient(90deg, rgba(5,7,12,.72), rgba(5,7,12,.45) 48%, rgba(5,7,12,.72)),
    rgba(5,7,12,.34) !important;
}

/* v15 product-style detail page */
html.detail-html,
html.detail-html body {
  height: auto !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  scroll-snap-type: y mandatory !important;
}

html.detail-html body.menu-open {
  overflow: hidden !important;
}

.detail-page {
  background: #f3eee7;
  color: #111;
}

.detail-page .top-header {
  color: #111 !important;
  background: rgba(246, 242, 234, .58) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
}

.detail-page .hamburger span {
  background: #111 !important;
}

.detail-product {
  width: 100%;
}

.detail-panel {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, .98fr);
  align-items: center;
  gap: clamp(34px, 6vw, 96px);
  padding: clamp(108px, 13vh, 150px) clamp(28px, 7vw, 118px) clamp(60px, 9vh, 96px);
  overflow: hidden;
  background: #f3eee7;
}

.detail-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17,17,17,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17,17,17,.035) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: .58;
}

.detail-panel.reverse .detail-visual-block {
  order: 2;
}

.detail-panel.reverse .detail-text-block {
  order: 1;
}

.detail-hero-panel {
  background: #eee6dc;
}

.detail-text-block,
.detail-visual-block {
  position: relative;
  z-index: 2;
}

.detail-text-block {
  max-width: 660px;
}

.detail-text-block.full-width {
  max-width: 1180px;
  grid-column: 1 / -1;
}

.detail-eyebrow {
  margin: 0 0 18px;
  color: rgba(17,17,17,.48);
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.detail-text-block h1,
.detail-text-block h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(58px, 7.2vw, 116px);
  line-height: .88;
  letter-spacing: -.082em;
  font-weight: 950;
}

.detail-text-block h2 {
  font-size: clamp(52px, 6.4vw, 102px);
}

.detail-lead {
  margin: 28px 0 0;
  color: rgba(17,17,17,.78);
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.34;
  letter-spacing: -.055em;
  font-weight: 800;
}

.detail-body {
  margin: 22px 0 0;
  max-width: 600px;
  color: rgba(17,17,17,.58);
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.78;
  letter-spacing: -.025em;
  font-weight: 650;
}

.detail-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 34px;
}

.detail-meta-row span {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(17,17,17,.15);
  border-radius: 999px;
  color: rgba(17,17,17,.62);
  background: rgba(255,255,255,.28);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -.02em;
}

.detail-list {
  display: grid;
  gap: 9px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding-left: 19px;
  color: rgba(17,17,17,.72);
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: -.025em;
  font-weight: 850;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: .42;
}

.detail-visual-block {
  min-height: min(58vh, 560px);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 34px 80px rgba(0,0,0,.14);
  background: #d8d0c4;
}

.detail-visual-block span {
  position: absolute;
  left: 28px;
  bottom: 26px;
  z-index: 3;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .16em;
}

.detail-visual-block::before,
.detail-visual-block::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.detail-visual-block::before {
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 46px 46px;
  mix-blend-mode: overlay;
}

.detail-visual-block::after {
  width: 48%;
  height: 48%;
  right: -12%;
  bottom: -12%;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
  filter: blur(4px);
}

.visual-intro {
  background:
    radial-gradient(circle at 72% 28%, rgba(255,255,255,.42), transparent 24%),
    linear-gradient(135deg, #141823 0%, #435062 52%, #d7b47b 100%);
}

.visual-development {
  background:
    radial-gradient(circle at 35% 34%, rgba(255,255,255,.34), transparent 20%),
    linear-gradient(135deg, #0b1722 0%, #31536a 44%, #c18f56 100%);
}

.visual-media {
  background:
    radial-gradient(circle at 28% 52%, rgba(255,255,255,.88) 0 9%, transparent 10%),
    radial-gradient(circle at 52% 40%, rgba(255,255,255,.28), transparent 18%),
    linear-gradient(135deg, #ffce1f 0%, #ff9f2e 56%, #ef5d45 100%);
}

.visual-technology {
  background:
    radial-gradient(circle at 68% 35%, rgba(100,226,255,.32), transparent 24%),
    radial-gradient(circle at 22% 74%, rgba(98,255,213,.16), transparent 22%),
    linear-gradient(135deg, #050b13 0%, #102134 52%, #07111e 100%);
}

.visual-identity {
  background:
    radial-gradient(circle at 35% 46%, rgba(255,226,177,.25), transparent 26%),
    linear-gradient(135deg, #16100b 0%, #6d4730 48%, #d8b986 100%);
}

.detail-spec-panel {
  background: #111;
  color: #fff;
}

.detail-spec-panel::before {
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
}

.detail-spec-panel .detail-eyebrow,
.detail-spec-panel .detail-body {
  color: rgba(255,255,255,.54);
}

.detail-spec-panel .detail-lead {
  color: rgba(255,255,255,.78);
}

.detail-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.detail-spec-grid article {
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 26px;
  background: rgba(255,255,255,.06);
}

.detail-spec-grid span {
  display: block;
  margin-bottom: 38px;
  color: rgba(255,255,255,.42);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
}

.detail-spec-grid strong {
  display: block;
  color: #fff;
  font-size: clamp(26px, 2.5vw, 38px);
  line-height: 1;
  letter-spacing: -.055em;
  font-weight: 950;
}

.detail-spec-grid p {
  margin: 16px 0 0;
  color: rgba(255,255,255,.58);
  font-size: 14px;
  line-height: 1.62;
  font-weight: 650;
}

.detail-bottom-link {
  width: fit-content;
  min-width: 178px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  margin-top: 42px;
  padding: 0 24px;
  border: 1px solid rgba(255,255,255,.54);
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -.035em;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.detail-bottom-link:hover {
  color: #111;
  background: #fff;
  transform: translateY(-2px);
}

.detail-page .detail-footer {
  scroll-snap-align: start !important;
}

@media (max-width: 980px) {
  .detail-panel,
  .detail-panel.reverse {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 96px 24px 54px;
  }

  .detail-panel.reverse .detail-visual-block,
  .detail-panel.reverse .detail-text-block {
    order: initial;
  }

  .detail-text-block {
    max-width: 100%;
  }

  .detail-visual-block {
    min-height: 42vh;
    border-radius: 26px;
  }

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

@media (max-width: 760px) {
  .detail-page .top-header {
    grid-template-columns: auto 1fr auto;
  }

  .detail-text-block h1,
  .detail-text-block h2 {
    font-size: clamp(42px, 13vw, 68px);
  }

  .detail-lead {
    margin-top: 20px;
    font-size: clamp(19px, 5vw, 24px);
  }

  .detail-body {
    font-size: 15px;
    line-height: 1.7;
  }

  .detail-visual-block {
    min-height: 36vh;
  }

  .detail-spec-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .detail-spec-grid article {
    min-height: 160px;
  }
}

/* v16 separated service detail pages */
.service-page {
  background: #f4f0ea;
  color: #111;
}

.service-page .top-menu a.active {
  opacity: 1;
}

.service-wrap {
  background: #f4f0ea;
}

.service-page .snap-section::before,
.service-page .snap-section::after {
  content: none !important;
}

.service-section {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: grid;
  padding: clamp(96px, 12vh, 140px) clamp(40px, 7vw, 124px) clamp(54px, 8vh, 90px) clamp(160px, 12vw, 236px) !important;
  overflow: hidden;
  isolation: isolate;
}

.service-bg,
.service-bg img,
.service-shade {
  position: absolute;
  inset: 0;
}

.service-bg {
  z-index: 0;
  overflow: hidden;
}

.service-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
}

.service-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5,7,12,.70), rgba(5,7,12,.28) 48%, rgba(5,7,12,.72)),
    radial-gradient(circle at 50% 55%, rgba(255,255,255,.08), transparent 42%);
}

.service-shade.strong {
  background:
    linear-gradient(90deg, rgba(5,7,12,.80), rgba(5,7,12,.48) 50%, rgba(5,7,12,.84)),
    rgba(5,7,12,.22);
}

.service-hero {
  place-items: center;
  color: #fff;
}

.service-hero-copy,
.service-cta-copy {
  position: relative;
  z-index: 3;
  width: min(100%, 980px);
  text-align: center;
}

.service-eyebrow {
  margin: 0 0 16px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.service-hero-copy h1,
.service-cta-copy h2,
.service-text-panel h2 {
  margin: 0;
  color: inherit;
  font-size: clamp(52px, 7vw, 112px);
  line-height: .88;
  letter-spacing: -.082em;
  font-weight: 950;
}

.service-hero-copy p:not(.service-eyebrow),
.service-cta-copy p:not(.service-eyebrow) {
  max-width: 780px;
  margin: 26px auto 0;
  color: rgba(255,255,255,.84);
  font-size: clamp(18px, 1.7vw, 28px);
  line-height: 1.38;
  letter-spacing: -.045em;
  font-weight: 800;
}

.service-feature-strip {
  position: absolute;
  left: clamp(160px, 12vw, 236px);
  right: clamp(40px, 7vw, 124px);
  bottom: clamp(32px, 5vh, 56px);
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  color: #fff;
}

.service-feature-strip article {
  min-height: 86px;
  padding: 20px 22px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.service-feature-strip span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255,255,255,.44);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
}

.service-feature-strip strong {
  display: block;
  font-size: clamp(18px, 1.6vw, 26px);
  line-height: 1.05;
  letter-spacing: -.055em;
  font-weight: 950;
}

.service-split {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: center;
  gap: clamp(34px, 6vw, 92px);
  background: #f4f0ea;
}

.service-split.reverse {
  grid-template-columns: minmax(360px, .92fr) minmax(0, 1.08fr);
}

.service-split.reverse .service-image-card {
  order: 2;
}

.service-split.reverse .service-text-panel {
  order: 1;
}

.service-image-card,
.service-text-panel {
  position: relative;
  z-index: 2;
}

.service-image-card {
  width: 100%;
  min-height: min(62vh, 620px);
  overflow: hidden;
  background: #ddd5ca;
  box-shadow: 0 34px 80px rgba(0,0,0,.14);
}

.service-image-card.wide {
  min-height: min(58vh, 560px);
}

.service-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.service-text-panel {
  max-width: 620px;
}

.service-text-panel .service-eyebrow {
  color: rgba(17,17,17,.42);
}

.service-text-panel h2 {
  font-size: clamp(44px, 5.4vw, 82px);
}

.service-text-panel p {
  margin: 26px 0 0;
  color: rgba(17,17,17,.64);
  font-size: clamp(17px, 1.28vw, 21px);
  line-height: 1.74;
  letter-spacing: -.025em;
  font-weight: 650;
}

.service-point-list {
  display: grid;
  gap: 8px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.service-point-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(17,17,17,.74);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -.025em;
}

.service-point-list li::before {
  content: "";
  width: 18px;
  height: 1px;
  flex: 0 0 18px;
  background: currentColor;
  opacity: .44;
}

.service-cta {
  place-items: center;
  color: #fff;
}

.service-cta-copy h2 {
  font-size: clamp(46px, 6.2vw, 98px);
}

.service-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.service-actions a {
  min-width: 150px;
  height: 50px;
  display: inline-grid;
  place-items: center;
  padding: 0 24px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -.035em;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}

.service-actions a:hover {
  color: #111;
  background: #fff;
  transform: translateY(-2px);
}

.hub-section {
  background: #f4f0ea;
  display: grid;
  place-items: center;
}

.hub-grid {
  position: relative;
  z-index: 2;
  width: min(100%, 1040px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hub-grid a {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  border: 1px solid rgba(17,17,17,.12);
  background: rgba(255,255,255,.46);
  transition: transform .18s ease, background .18s ease;
}

.hub-grid a:hover {
  transform: translateY(-4px);
  background: #fff;
}

.hub-grid span {
  color: rgba(17,17,17,.44);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hub-grid strong {
  display: block;
  margin-top: 26px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: .95;
  letter-spacing: -.07em;
  font-weight: 950;
}

.hub-grid em {
  display: block;
  margin-top: 18px;
  color: rgba(17,17,17,.58);
  font-style: normal;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 650;
}

@media (max-width: 1200px) {
  .service-section {
    padding-left: clamp(32px, 6vw, 82px) !important;
    padding-right: clamp(32px, 6vw, 82px) !important;
  }

  .service-feature-strip {
    left: clamp(32px, 6vw, 82px);
    right: clamp(32px, 6vw, 82px);
  }
}

@media (max-width: 920px) {
  .service-section,
  .service-split,
  .service-split.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-split.reverse .service-image-card,
  .service-split.reverse .service-text-panel {
    order: initial;
  }

  .service-image-card,
  .service-image-card.wide {
    min-height: 42vh;
  }

  .service-feature-strip {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 38px;
  }

  .service-hero {
    align-content: center;
  }
}

@media (max-width: 760px) {
  .service-section {
    min-height: 100vh;
    min-height: 100svh;
    padding: 92px 22px 48px !important;
  }

  .service-hero-copy h1,
  .service-cta-copy h2 {
    font-size: clamp(44px, 14vw, 70px);
  }

  .service-hero-copy p:not(.service-eyebrow),
  .service-cta-copy p:not(.service-eyebrow) {
    font-size: 17px;
    line-height: 1.48;
  }

  .service-feature-strip {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 30px;
  }

  .service-feature-strip article {
    min-height: 64px;
    padding: 16px 18px;
  }

  .service-feature-strip span {
    margin-bottom: 8px;
  }

  .service-text-panel h2 {
    font-size: clamp(38px, 12vw, 60px);
  }

  .service-text-panel p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.68;
  }

  .service-image-card,
  .service-image-card.wide {
    min-height: 34vh;
  }

  .hub-grid {
    grid-template-columns: 1fr;
  }

  .hub-grid a {
    min-height: 180px;
    padding: 24px;
  }
}

/* v18 development detail page - Inshow-style independent service page */
.development-detail-page {
  background: #fff;
  color: #111;
}

.development-detail-page .top-header {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.development-detail-page .top-menu a.active {
  opacity: 1;
}

.development-detail-page .service-left-menu {
  color: rgba(255,255,255,.58);
  text-shadow: 0 1px 12px rgba(0,0,0,.38);
  font-size: 12px;
  gap: 10px;
}

.development-detail-page .service-left-menu a.active,
.development-detail-page .service-left-menu a:hover {
  color: #fff;
}

.development-detail-page .dev-detail-wrap {
  background: #fff;
}

.development-detail-page .dev-detail-section {
  min-height: 100vh;
  min-height: 100svh;
  padding: 0 !important;
  display: block;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: #fff;
}

.development-detail-page .dev-detail-section::before,
.development-detail-page .dev-detail-section::after {
  content: none !important;
}

.dev-bg,
.dev-dim {
  position: absolute;
  inset: 0;
}

.dev-bg {
  z-index: 0;
  overflow: hidden;
  background: #151515;
}

.dev-bg img,
.dev-large-image img,
.dev-side-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dev-bg img {
  transform: scale(1.02);
}

.dev-dim {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.48), rgba(0,0,0,.18) 45%, rgba(0,0,0,.42)),
    linear-gradient(0deg, rgba(0,0,0,.34), transparent 42%, rgba(0,0,0,.16));
}

.dev-hero-copy {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: min(860px, calc(100% - 48px));
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

.dev-hero-copy h1 {
  margin: 0;
  font-size: clamp(54px, 7vw, 106px);
  line-height: .9;
  letter-spacing: -.08em;
  font-weight: 950;
}

.dev-hero-copy p:not(.service-eyebrow) {
  width: min(760px, 100%);
  margin: 26px auto 0;
  color: rgba(255,255,255,.86);
  font-size: clamp(17px, 1.45vw, 24px);
  line-height: 1.55;
  letter-spacing: -.04em;
  font-weight: 700;
}

.dev-image-text.top-bottom {
  display: grid;
  grid-template-rows: minmax(0, 76vh) minmax(180px, 24vh);
}

.dev-large-image,
.dev-side-image {
  margin: 0;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: #ddd;
}

.dev-bottom-text {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  align-content: center;
  align-items: start;
  gap: clamp(30px, 6vw, 86px);
  padding: clamp(36px, 4.5vw, 62px) clamp(54px, 13vw, 230px);
  background: #fff;
}

.dev-bottom-text h2,
.dev-side-text h2 {
  margin: 0;
  color: #111;
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.16;
  letter-spacing: -.055em;
  font-weight: 950;
}

.dev-bottom-text p,
.dev-side-text p {
  margin: 0;
  max-width: 790px;
  color: rgba(17,17,17,.74);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.76;
  letter-spacing: -.03em;
  font-weight: 620;
}

.dev-image-text.side-layout {
  display: grid;
  grid-template-columns: minmax(0, 76vw) minmax(300px, 24vw);
  min-height: 100vh;
  min-height: 100svh;
}

.dev-side-text {
  display: grid;
  align-content: start;
  gap: 20px;
  padding: clamp(170px, 26vh, 260px) clamp(34px, 4vw, 72px) 80px;
  background: #fff;
}

.dev-contact-visual {
  min-height: 100vh;
  min-height: 100svh;
}

.dev-contact-visual .contact-dim {
  background:
    linear-gradient(90deg, rgba(0,0,0,.18), rgba(0,0,0,.08) 42%, rgba(0,0,0,.58) 78%, rgba(0,0,0,.72)),
    rgba(0,0,0,.08);
}

.dev-contact-box {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: clamp(78px, 12vw, 210px);
  width: min(380px, 32vw);
  transform: translateY(-50%);
  color: #111;
}

.dev-contact-box p {
  margin: 0 0 8px;
  color: rgba(17,17,17,.68);
  font-size: clamp(15px, 1.2vw, 20px);
  line-height: 1.2;
  letter-spacing: -.045em;
  font-weight: 760;
}

.dev-contact-box h2 {
  margin: 0 0 34px;
  color: #111;
  font-size: clamp(42px, 4.2vw, 70px);
  line-height: .94;
  letter-spacing: -.08em;
  font-weight: 950;
}

.dev-contact-box a {
  width: 100%;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #050505;
  color: #fff;
  font-size: 17px;
  font-weight: 950;
  letter-spacing: -.035em;
  transition: transform .18s ease, background .18s ease;
}

.dev-contact-box a:hover {
  transform: translateY(-2px);
  background: #222;
}

.development-detail-page .dev-company-footer {
  min-height: 44vh;
  min-height: 44svh;
  padding: clamp(60px, 8vh, 96px) clamp(40px, 11vw, 220px) clamp(54px, 7vh, 82px);
  display: grid;
  align-content: center;
  background: #fff;
  color: #111;
}

.development-detail-page .dev-company-footer .footer-inner {
  width: min(100%, 1160px);
  margin: 0 auto;
}

.development-detail-page .dev-company-footer .footer-logo,
.development-detail-page .dev-company-footer .brand-mark {
  color: #111;
}

.development-detail-page .dev-company-footer .footer-legal a,
.development-detail-page .dev-company-footer .footer-company,
.development-detail-page .dev-company-footer .footer-copyright {
  color: rgba(17,17,17,.48);
}

@media (max-width: 1200px) {
  .dev-bottom-text {
    padding-left: clamp(42px, 8vw, 110px);
    padding-right: clamp(42px, 8vw, 110px);
  }

  .dev-image-text.side-layout {
    grid-template-columns: minmax(0, 72vw) minmax(280px, 28vw);
  }

  .dev-contact-box {
    right: clamp(42px, 8vw, 96px);
    width: min(390px, 38vw);
  }
}

@media (max-width: 920px) {
  .development-detail-page .top-header {
    height: 64px;
  }

  .development-detail-page .dev-detail-section {
    min-height: auto;
    scroll-snap-align: start;
  }

  .development-detail-page .service-left-menu {
    display: none;
  }

  .development-detail-page .dev-hero-detail {
    min-height: 100svh;
  }

  .dev-hero-copy {
    width: calc(100% - 44px);
  }

  .dev-hero-copy h1 {
    font-size: clamp(48px, 14vw, 78px);
  }

  .dev-hero-copy p:not(.service-eyebrow) {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.62;
  }

  .dev-image-text.top-bottom {
    min-height: auto;
    display: block;
  }

  .dev-large-image {
    height: 68svh;
  }

  .dev-bottom-text {
    display: block;
    min-height: 26svh;
    padding: 34px 28px 42px;
  }

  .dev-bottom-text h2,
  .dev-side-text h2 {
    margin-bottom: 16px;
    font-size: clamp(23px, 7vw, 32px);
  }

  .dev-bottom-text p,
  .dev-side-text p {
    font-size: 15px;
    line-height: 1.68;
  }

  .dev-image-text.side-layout {
    display: block;
    min-height: auto;
  }

  .dev-side-image {
    height: 68svh;
  }

  .dev-side-text {
    min-height: 26svh;
    display: block;
    padding: 34px 28px 42px;
  }

  .dev-contact-visual {
    min-height: 100svh !important;
  }

  .dev-contact-box {
    top: 45%;
    left: 50%;
    right: auto;
    width: min(100% - 56px, 420px);
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .dev-contact-box h2 {
    margin-bottom: 26px;
    font-size: clamp(40px, 12vw, 62px);
  }

  .dev-contact-box a {
    height: 56px;
    font-size: 16px;
  }

  .development-detail-page .dev-company-footer {
    min-height: auto;
    padding: 54px 28px 74px;
  }
}

@media (max-width: 560px) {
  .dev-large-image,
  .dev-side-image {
    height: 66svh;
  }

  .dev-bg img,
  .dev-large-image img,
  .dev-side-image img {
    object-position: center center;
  }

  .dev-image-text.side-layout .dev-side-image img {
    object-position: 42% center;
  }

  .dev-contact-visual .dev-bg img {
    object-position: 58% center;
  }

  .dev-contact-visual .contact-dim {
    background: linear-gradient(0deg, rgba(0,0,0,.30), rgba(255,255,255,.10) 45%, rgba(0,0,0,.10));
  }
}

/* v18 footer color correction for detail pages */
.development-detail-page .dev-company-footer {
  padding: clamp(64px, 8vh, 96px) clamp(40px, 11vw, 220px) clamp(54px, 7vh, 82px) !important;
  background: #fff !important;
  color: #111 !important;
  scroll-snap-align: start !important;
}

.development-detail-page .dev-company-footer .footer-legal,
.development-detail-page .dev-company-footer .footer-copyright {
  border-color: rgba(17,17,17,.12) !important;
}

.development-detail-page .dev-company-footer .footer-logo {
  color: #111 !important;
}

.development-detail-page .dev-company-footer .footer-legal,
.development-detail-page .dev-company-footer .footer-legal a,
.development-detail-page .dev-company-footer .footer-company,
.development-detail-page .dev-company-footer .footer-copyright {
  color: rgba(17,17,17,.52) !important;
}

.development-detail-page .dev-company-footer .footer-legal a:hover {
  color: #111 !important;
}

/* v19 development detail refinements */
.development-detail-page .dev-hero-copy {
  width: min(760px, calc(100% - 48px));
}

.development-detail-page .dev-hero-copy h1 {
  font-size: clamp(38px, 4.8vw, 72px) !important;
  line-height: .98;
  letter-spacing: -.065em;
}

.development-detail-page .dev-hero-copy p:not(.service-eyebrow) {
  max-width: 680px;
  margin-top: 22px;
  font-size: clamp(15px, 1.18vw, 19px) !important;
  line-height: 1.68;
  font-weight: 680;
}

.development-detail-page .dev-image-text.top-bottom {
  grid-template-rows: minmax(0, calc(100svh - 190px)) 190px;
}

.development-detail-page .dev-large-image,
.development-detail-page .dev-side-image {
  position: relative;
  min-height: 0;
  height: 100%;
  box-shadow: none;
}

.development-detail-page .dev-image-text.side-layout {
  grid-template-columns: minmax(0, 76vw) minmax(300px, 24vw);
  height: 100svh;
}

.development-detail-page .dev-image-text.side-layout .dev-side-image {
  height: 100svh;
}

.development-detail-page .dev-fill {
  overflow: hidden;
  background: #d8d0c3;
}

.development-detail-page .dev-fill::before,
.development-detail-page .dev-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.development-detail-page .dev-fill::before {
  background:
    linear-gradient(120deg, rgba(255,255,255,.28), rgba(255,255,255,0) 40%),
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.26), transparent 34%),
    radial-gradient(circle at 74% 72%, rgba(0,0,0,.10), transparent 38%);
}

.development-detail-page .dev-fill::after {
  opacity: .38;
  background-image:
    linear-gradient(rgba(255,255,255,.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px);
  background-size: 160px 160px;
  mix-blend-mode: overlay;
}

.development-detail-page .dev-fill-planning {
  background:
    radial-gradient(circle at 18% 22%, rgba(255,255,255,.26), transparent 30%),
    linear-gradient(135deg, #b8956b 0%, #dcc2a0 44%, #8e6a47 100%);
}

.development-detail-page .dev-fill-pm {
  background:
    radial-gradient(circle at 78% 24%, rgba(255,255,255,.24), transparent 28%),
    linear-gradient(115deg, #7e8fa1 0%, #c2ced8 52%, #5f7288 100%);
}

.development-detail-page .dev-fill-marketing {
  background:
    radial-gradient(circle at 24% 28%, rgba(255,255,255,.22), transparent 26%),
    linear-gradient(135deg, #b98068 0%, #e4b39d 48%, #8c5d49 100%);
}

.development-detail-page .dev-fill-contact {
  background:
    linear-gradient(90deg, #8b8377 0%, #c9c0b3 48%, #2f2b28 100%);
}

.development-detail-page .dev-bottom-text {
  min-height: 190px;
  padding-top: 36px;
  padding-bottom: 36px;
}

.development-detail-page .dev-contact-box {
  color: #fff;
}

.development-detail-page .dev-contact-box p,
.development-detail-page .dev-contact-box h2 {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,.28);
}

.development-detail-page .dev-contact-box p {
  color: rgba(255,255,255,.72);
}

.development-detail-page .dev-contact-box a {
  background: transparent !important;
  border: 1px solid rgba(255,255,255,.72);
  color: #fff !important;
  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}

.development-detail-page .dev-contact-box a:hover {
  background: #fff !important;
  border-color: #fff;
  color: #111 !important;
  transform: translateY(-2px);
}

@media (max-width: 920px) {
  .development-detail-page .dev-hero-copy h1 {
    font-size: clamp(36px, 10vw, 54px) !important;
  }

  .development-detail-page .dev-hero-copy p:not(.service-eyebrow) {
    font-size: 15px !important;
  }

  .development-detail-page .dev-image-text.top-bottom,
  .development-detail-page .dev-image-text.side-layout {
    height: auto;
    display: block;
  }

  .development-detail-page .dev-large-image,
  .development-detail-page .dev-side-image,
  .development-detail-page .dev-image-text.side-layout .dev-side-image {
    height: 66svh;
  }

  .development-detail-page .dev-bottom-text,
  .development-detail-page .dev-side-text {
    min-height: auto;
    padding: 36px 28px 44px;
  }

  .development-detail-page .dev-contact-box a {
    background: transparent !important;
  }

  .development-detail-page .dev-contact-box a:hover {
    background: #fff !important;
  }
}

/* v21 development detail video backgrounds */
.development-detail-page .dev-bg .bg-video,
.development-detail-page .dev-fill .bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0 !important;
  display: block;
  pointer-events: none;
}

.development-detail-page .dev-bg .bg-video {
  transform: scale(1.02);
}

.development-detail-page .dev-fill {
  position: relative;
  isolation: isolate;
}

.development-detail-page .dev-fill::before,
.development-detail-page .dev-fill::after {
  z-index: 1;
}

.development-detail-page .dev-fill .bg-video + * {
  position: relative;
  z-index: 2;
}

.development-detail-page .dev-fill-planning::before,
.development-detail-page .dev-fill-pm::before {
  background:
    linear-gradient(120deg, rgba(255,255,255,.12), rgba(255,255,255,0) 42%),
    linear-gradient(0deg, rgba(0,0,0,.12), transparent 34%, rgba(0,0,0,.06));
}

.development-detail-page .dev-fill-planning::after,
.development-detail-page .dev-fill-pm::after {
  opacity: .16;
}


/* v25 development detail image replacement */
.development-detail-page .dev-photo::before,
.development-detail-page .dev-photo::after {
  content: none !important;
  display: none !important;
}

.development-detail-page .dev-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.development-detail-page .dev-bg.dev-photo img {
  position: absolute;
  inset: 0;
}


/* v26 contact background image fix */
.development-detail-page #dev-contact .dev-bg.dev-photo {
  background-image: url("../images/development-detail/devel_05.jpg") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.development-detail-page #dev-contact .dev-bg.dev-photo img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  opacity: 1 !important;
  z-index: 0 !important;
}

.development-detail-page #dev-contact .contact-dim {
  background:
    linear-gradient(90deg, rgba(0,0,0,.16), rgba(0,0,0,.08) 38%, rgba(0,0,0,.44) 72%, rgba(0,0,0,.58)),
    rgba(0,0,0,.04) !important;
}

@media (max-width: 560px) {
  .development-detail-page #dev-contact .dev-bg.dev-photo,
  .development-detail-page #dev-contact .dev-bg.dev-photo img {
    object-position: center center !important;
    background-position: center center !important;
  }

  .development-detail-page #dev-contact .contact-dim {
    background:
      linear-gradient(0deg, rgba(0,0,0,.24), rgba(0,0,0,.04) 45%, rgba(0,0,0,.12)) !important;
  }
}


/* v27 contact section image hard fix */
.development-detail-page #dev-contact {
  background: #111 !important;
}

.development-detail-page #dev-contact .dev-contact-bg-img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  z-index: 0 !important;
  display: block !important;
  opacity: 1 !important;
  transform: none !important;
}

.development-detail-page #dev-contact .contact-dim {
  z-index: 1 !important;
  background:
    linear-gradient(90deg, rgba(0,0,0,.12), rgba(0,0,0,.04) 40%, rgba(0,0,0,.42) 72%, rgba(0,0,0,.60)),
    rgba(0,0,0,.04) !important;
}

.development-detail-page #dev-contact .dev-contact-box {
  z-index: 3 !important;
}

@media (max-width: 560px) {
  .development-detail-page #dev-contact .dev-contact-bg-img {
    object-position: center center !important;
  }
}


/* v29 identity brand-list detail page */
.identity-detail-page .identity-detail-wrap {
  background: #f5f2ed;
}

.identity-detail-page .identity-hero-section,
.identity-detail-page .identity-brand-section {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.identity-hero-section {
  display: grid;
  place-items: center;
  padding: 120px 24px 80px;
  color: #111;
  background: #e7e0d6;
}

.identity-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 24%, rgba(115,94,72,.22), transparent 34%),
    radial-gradient(circle at 20% 78%, rgba(255,255,255,.42), transparent 30%),
    linear-gradient(135deg, #eee8df 0%, #d7cbbd 52%, #b4a290 100%);
}

.identity-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image:
    linear-gradient(rgba(255,255,255,.48) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.36) 1px, transparent 1px);
  background-size: 180px 180px;
}

.identity-hero-copy {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 48px));
  text-align: center;
}

.identity-hero-copy h1 {
  margin: 0;
  font-size: clamp(56px, 8vw, 118px);
  line-height: .9;
  letter-spacing: -.08em;
  font-weight: 950;
}

.identity-hero-copy p:not(.service-eyebrow) {
  margin: 24px auto 0;
  max-width: 720px;
  color: rgba(17,17,17,.68);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.72;
  letter-spacing: -.035em;
  font-weight: 650;
}

.identity-brand-section {
  display: grid;
  align-items: center;
  padding: clamp(92px, 12vh, 140px) clamp(36px, 10vw, 180px) clamp(70px, 9vh, 110px);
  background: #fff;
  color: #111;
}

.brand-list-wrap {
  width: min(100%, 1140px);
  margin: 0 auto;
}

.brand-list-head {
  display: grid;
  grid-template-columns: minmax(160px, .35fr) minmax(0, .7fr) minmax(280px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(28px, 5vh, 58px);
}

.brand-list-head span {
  color: rgba(17,17,17,.42);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.brand-list-head h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 72px);
  letter-spacing: -.075em;
  line-height: .95;
  font-weight: 950;
}

.brand-list-head p {
  margin: 0;
  color: rgba(17,17,17,.62);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: -.035em;
  font-weight: 620;
}

.identity-brand-list {
  display: grid;
  gap: 14px;
}

.identity-brand-card {
  min-height: 138px;
  display: grid;
  grid-template-columns: minmax(170px, 220px) minmax(0, 1fr) 44px;
  align-items: center;
  gap: clamp(20px, 4vw, 58px);
  padding: 24px clamp(24px, 4vw, 44px);
  border: 1px solid rgba(17,17,17,.10);
  border-radius: 24px;
  background: #f8f7f4;
  color: #111;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.identity-brand-card:hover {
  transform: translateY(-3px);
  background: #111;
  border-color: #111;
  color: #fff;
}

.brand-card-logo {
  height: 80px;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 0 18px;
  border-radius: 18px;
  background: #111;
  color: #fff;
  letter-spacing: -.04em;
}

.brand-card-logo strong {
  display: block;
  font-size: 24px;
  line-height: 1;
  font-weight: 950;
}

.brand-card-logo span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.yuksigyeong-logo { background: #3b2418; }
.lab-store-logo { background: #263238; }

.brand-card-text small {
  display: block;
  margin-bottom: 8px;
  color: rgba(17,17,17,.42);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.identity-brand-card:hover .brand-card-text small {
  color: rgba(255,255,255,.48);
}

.brand-card-text h3 {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 1;
  letter-spacing: -.055em;
  font-weight: 950;
}

.brand-card-text p {
  margin: 0;
  color: rgba(17,17,17,.62);
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: -.032em;
  font-weight: 620;
}

.identity-brand-card:hover .brand-card-text p {
  color: rgba(255,255,255,.68);
}

.identity-brand-card > i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(17,17,17,.18);
  font-style: normal;
  font-weight: 900;
}

.identity-brand-card:hover > i {
  border-color: rgba(255,255,255,.38);
}

@media (max-width: 920px) {
  .identity-hero-section {
    min-height: 86svh;
    padding: 104px 22px 56px;
  }

  .identity-hero-copy h1 {
    font-size: clamp(46px, 16vw, 80px);
  }

  .identity-brand-section {
    min-height: auto;
    padding: 76px 22px 88px;
  }

  .brand-list-head {
    display: block;
    margin-bottom: 28px;
  }

  .brand-list-head h2 {
    margin: 10px 0 14px;
  }

  .identity-brand-card {
    min-height: auto;
    grid-template-columns: 1fr 36px;
    gap: 18px;
    padding: 22px;
  }

  .brand-card-logo {
    grid-column: 1 / -1;
    width: 100%;
    height: 70px;
  }

  .brand-card-text p {
    font-size: 14px;
  }
}


/* v30 media/technology detail image replacement */
.development-detail-page .dev-contact-visual .dev-contact-bg-img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  z-index: 0 !important;
  display: block !important;
  opacity: 1 !important;
}

.media-detail-page .dev-bg.dev-photo img,
.technology-detail-page .dev-bg.dev-photo img {
  object-position: center center;
}

.media-detail-page #media-contact .contact-dim,
.technology-detail-page #tech-contact .contact-dim {
  z-index: 1 !important;
  background:
    linear-gradient(90deg, rgba(0,0,0,.16), rgba(0,0,0,.06) 40%, rgba(0,0,0,.46) 74%, rgba(0,0,0,.64)),
    rgba(0,0,0,.04) !important;
}

.media-detail-page #media-contact .dev-contact-box,
.technology-detail-page #tech-contact .dev-contact-box {
  z-index: 3 !important;
}

/* v31 identity simplified logo-list page */
.identity-brand-page,
.identity-detail-page {
  background: #f3f1ed;
}

.identity-detail-page .identity-left-menu {
  display: none !important;
}

.identity-detail-page .identity-brand-wrap {
  background: #f3f1ed;
}

.identity-detail-page .identity-logo-section {
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(110px, 12vh, 150px) clamp(28px, 8vw, 140px) clamp(60px, 8vh, 96px) !important;
  display: grid;
  align-items: center;
  background: #f3f1ed;
  scroll-snap-align: start;
}

.identity-detail-page .identity-logo-list {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  gap: clamp(16px, 2vw, 24px);
}

.identity-detail-page .identity-logo-row {
  position: relative;
  min-height: clamp(150px, 19vh, 220px);
  border: 1px solid transparent;
  border-radius: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease, filter .2s ease;
}

.identity-detail-page .identity-logo-row:hover {
  border-color: rgba(255,255,255,.86);
  transform: translateY(-2px);
}

.identity-detail-page .identity-logo-row img {
  display: block;
  max-width: min(62%, 560px);
  max-height: 72px;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.identity-detail-page .firsthouse-row {
  background: #111;
  color: #fff;
}

.identity-detail-page .firsthouse-wordmark {
  font-size: clamp(34px, 4.2vw, 64px);
  line-height: 1;
  letter-spacing: -.07em;
  font-weight: 900;
  color: #fff;
}

.identity-detail-page .yuksigyeong-row {
  background: #553016;
}

.identity-detail-page .yuksigyeong-row img {
  max-width: min(72%, 720px);
  max-height: 112px;
}

.identity-detail-page .jhlab-store-row {
  background: #fff;
  border-color: rgba(0,0,0,.06);
}

.identity-detail-page .jhlab-store-row:hover {
  border-color: #111;
}

.identity-detail-page .jhlab-store-row img {
  max-width: min(68%, 620px);
  max-height: 76px;
}

@media (max-width: 920px) {
  .identity-detail-page .identity-logo-section {
    min-height: auto;
    padding: 92px 22px 52px !important;
  }

  .identity-detail-page .identity-logo-row {
    min-height: 138px;
  }

  .identity-detail-page .identity-logo-row img {
    max-width: 82%;
  }

  .identity-detail-page .yuksigyeong-row img {
    max-height: 88px;
  }

  .identity-detail-page .jhlab-store-row img {
    max-height: 54px;
  }
}


/* v32 identity: keep hero + logo-only brand link section */
.identity-detail-page .identity-logo-section {
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(110px, 12vh, 150px) clamp(28px, 8vw, 140px) clamp(60px, 8vh, 96px) !important;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.55), transparent 28%),
    linear-gradient(135deg, #eee8df 0%, #d5cabd 100%);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.identity-detail-page .identity-logo-list {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  gap: clamp(16px, 2vw, 22px);
}

.identity-detail-page .identity-logo-row {
  position: relative;
  min-height: clamp(136px, 17vh, 190px);
  border: 2px solid rgba(255,255,255,0);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 16px 42px rgba(0,0,0,.06);
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.identity-detail-page .identity-logo-row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .48;
  background:
    linear-gradient(120deg, rgba(255,255,255,.16), transparent 42%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,.20), transparent 30%);
  transition: opacity .22s ease, transform .22s ease;
}

.identity-detail-page .identity-logo-row::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,0);
  pointer-events: none;
  transition: border-color .22s ease, inset .22s ease;
}

.identity-detail-page .identity-logo-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 58px rgba(0,0,0,.12);
}

.identity-detail-page .identity-logo-row:hover::before {
  opacity: .72;
  transform: scale(1.02);
}

.identity-detail-page .identity-logo-row:hover::after {
  inset: 8px;
  border-color: rgba(255,255,255,.72);
}

.identity-detail-page .identity-logo-row img {
  display: block;
  max-width: min(58%, 540px);
  max-height: 88px;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  transition: transform .22s ease, opacity .22s ease, filter .22s ease;
}

.identity-detail-page .identity-logo-row:hover img {
  transform: scale(1.025);
}

.identity-detail-page .firsthouse-row {
  background: #28313b;
}

.identity-detail-page .firsthouse-row img {
  max-width: min(70%, 620px);
  max-height: 112px;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,.18));
}

.identity-detail-page .firsthouse-row:hover {
  border-color: #e8b270;
}

.identity-detail-page .yuksigyeong-row {
  background: #f1e8dc;
}

.identity-detail-page .yuksigyeong-row:hover {
  border-color: #51301b;
}

.identity-detail-page .yuksigyeong-row::after {
  border-color: rgba(81,48,27,0);
}

.identity-detail-page .yuksigyeong-row:hover::after {
  border-color: rgba(81,48,27,.34);
}

.identity-detail-page .yuksigyeong-row img {
  max-width: min(70%, 680px);
  max-height: 116px;
}

.identity-detail-page .jhlab-store-row {
  background: #ffffff;
}

.identity-detail-page .jhlab-store-row:hover {
  border-color: #111;
}

.identity-detail-page .jhlab-store-row::after {
  border-color: rgba(17,17,17,0);
}

.identity-detail-page .jhlab-store-row:hover::after {
  border-color: rgba(17,17,17,.22);
}

.identity-detail-page .jhlab-store-row img {
  max-width: min(66%, 620px);
  max-height: 74px;
}

@media (max-width: 920px) {
  .identity-detail-page .identity-logo-section {
    min-height: auto;
    padding: 82px 20px 56px !important;
  }

  .identity-detail-page .identity-logo-row {
    min-height: 126px;
  }

  .identity-detail-page .identity-logo-row img {
    max-width: 80%;
    max-height: 76px;
  }

  .identity-detail-page .firsthouse-row img {
    max-width: 78%;
    max-height: 82px;
  }

  .identity-detail-page .yuksigyeong-row img {
    max-width: 82%;
    max-height: 88px;
  }

  .identity-detail-page .jhlab-store-row img {
    max-width: 78%;
    max-height: 54px;
  }
}


/* v34 global 정현LAB logo image replacement */
.brand {
  min-width: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: 30px;
  object-fit: contain;
}

.brand-logo-light {
  display: none;
}

body.dark-ui .brand-logo-dark {
  display: none;
}

body.dark-ui .brand-logo-light {
  display: block;
}

.footer-logo {
  min-width: 0;
}

.footer-logo-img {
  display: block;
  width: auto;
  height: 34px;
  object-fit: contain;
}

.footer-logo-light {
  display: none;
}

.site-footer:not(.dev-company-footer) .footer-logo-dark {
  display: none;
}

.site-footer:not(.dev-company-footer) .footer-logo-light {
  display: block;
}

.development-detail-page .dev-company-footer .footer-logo-dark {
  display: block;
}

.development-detail-page .dev-company-footer .footer-logo-light {
  display: none;
}

.identity-detail-page .firsthouse-row img {
  max-width: min(78%, 720px) !important;
  max-height: 118px !important;
}

@media (max-width: 920px) {
  .brand-logo { height: 26px; }
  .footer-logo-img { height: 30px; }
  .identity-detail-page .firsthouse-row img {
    max-width: 82% !important;
    max-height: 86px !important;
  }
}


/* v35 contact page */
.contact-page {
  background: #090b0e;
  color: #fff;
}

.contact-page .top-header {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.contact-page .contact-wrap {
  background: #090b0e;
}

.contact-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  padding: 132px clamp(28px, 7vw, 110px) 72px;
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(420px, 1.18fr);
  gap: clamp(42px, 7vw, 120px);
  align-items: center;
  overflow: hidden;
  background: #090b0e;
}

.contact-hero::before,
.contact-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(40px);
  opacity: .5;
}

.contact-hero::before {
  width: 42vw;
  height: 42vw;
  right: -14vw;
  top: 10vh;
  background: rgba(213, 169, 103, .24);
}

.contact-hero::after {
  width: 34vw;
  height: 34vw;
  left: -10vw;
  bottom: -8vw;
  background: rgba(95, 128, 160, .22);
}

.contact-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    radial-gradient(circle at 78% 22%, rgba(255,255,255,.08), transparent 30%),
    linear-gradient(135deg, #11161d 0%, #0b0d10 46%, #18130d 100%);
  background-size: 180px 180px, 180px 180px, auto, auto;
  z-index: 0;
}

.contact-copy,
.contact-card-grid {
  position: relative;
  z-index: 2;
}

.contact-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(54px, 7.2vw, 116px);
  line-height: .92;
  letter-spacing: -.085em;
  font-weight: 950;
}

.contact-copy p:not(.eyebrow) {
  width: min(520px, 100%);
  margin: 28px 0 0;
  color: rgba(255,255,255,.68);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.72;
  letter-spacing: -.035em;
  font-weight: 720;
}

.contact-card-grid {
  display: grid;
  gap: 16px;
}

.contact-method-card {
  min-height: 156px;
  padding: clamp(24px, 2.7vw, 36px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "icon title action"
    "icon value action";
  gap: 8px 22px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.contact-method-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.075);
  box-shadow: 0 26px 70px rgba(0,0,0,.28);
}

.contact-method-icon {
  grid-area: icon;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  color: #d8ad70;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -.04em;
}

.contact-method-title {
  grid-area: title;
  color: #fff;
  font-size: clamp(22px, 2.3vw, 36px);
  line-height: 1;
  letter-spacing: -.07em;
  font-weight: 950;
}

.contact-method-value {
  grid-area: value;
  color: rgba(255,255,255,.58);
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: -.025em;
  font-weight: 760;
}

.contact-method-card i {
  grid-area: action;
  align-self: center;
  justify-self: end;
  min-width: 132px;
  height: 42px;
  padding: 0 18px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.78);
  font-style: normal;
  font-size: 13px;
  letter-spacing: -.025em;
  font-weight: 900;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.contact-method-card:hover i {
  background: #fff;
  color: #111;
  border-color: #fff;
}

@media (max-width: 920px) {
  .contact-hero {
    min-height: auto;
    padding: 108px 24px 64px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-copy h1 {
    font-size: clamp(44px, 13vw, 72px);
  }

  .contact-copy p:not(.eyebrow) {
    margin-top: 20px;
    font-size: 15px;
  }

  .contact-method-card {
    min-height: 132px;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "icon title"
      "icon value"
      "action action";
    gap: 8px 16px;
    padding: 24px;
  }

  .contact-method-card i {
    justify-self: stretch;
    margin-top: 12px;
  }
}

@media (max-width: 520px) {
  .contact-hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-method-icon {
    width: 46px;
    height: 46px;
    font-size: 19px;
  }

  .contact-method-title {
    font-size: 24px;
  }
}


/* v38 detail page refinements */
.identity-hero-copy .service-eyebrow {
  color: rgba(17,17,17,.58) !important;
}

.contact-copy h1 {
  font-size: clamp(42px, 5.2vw, 76px) !important;
}

/* v39 contact page: long two-row cards */
.contact-card-grid {
  grid-template-columns: 1fr !important;
  width: min(760px, 100%);
  max-width: 760px;
}

.contact-method-card {
  min-height: 128px;
  grid-template-columns: auto minmax(0, 1fr) max-content;
}

.contact-method-title,
.contact-method-value {
  min-width: 0;
}

.contact-method-card i {
  white-space: nowrap;
}

@media (max-width: 920px) {
  .contact-card-grid {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .contact-method-card {
    grid-template-columns: auto 1fr;
  }
}

/* v39 legal pages */
.legal-page {
  background: #f4f1eb;
  color: #111;
}

.legal-page .top-header {
  background: rgba(244,241,235,.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.legal-page-wrap {
  background: #f4f1eb;
}

.legal-hero-section {
  min-height: 56vh;
  padding: 148px clamp(28px, 8vw, 140px) 70px;
  display: grid;
  align-content: end;
  background:
    radial-gradient(circle at 82% 20%, rgba(0,0,0,.08), transparent 28%),
    linear-gradient(135deg, #f7f4ef 0%, #e8e1d5 100%);
}

.legal-hero-section h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 108px);
  line-height: .95;
  letter-spacing: -.08em;
  font-weight: 950;
}

.legal-hero-section p:not(.eyebrow) {
  width: min(720px, 100%);
  margin: 24px 0 0;
  color: rgba(17,17,17,.68);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.75;
  letter-spacing: -.035em;
  font-weight: 650;
}

.legal-hero-section span {
  margin-top: 22px;
  color: rgba(17,17,17,.46);
  font-size: 13px;
  font-weight: 800;
}

.legal-content-section {
  padding: clamp(42px, 7vw, 96px) clamp(24px, 8vw, 140px);
  background: #fff;
}

.legal-content-inner {
  width: min(980px, 100%);
  margin: 0 auto;
}

.legal-section-card {
  padding: 34px 0;
  border-bottom: 1px solid rgba(17,17,17,.1);
}

.legal-section-card:first-child {
  border-top: 1px solid rgba(17,17,17,.1);
}

.legal-section-card h2 {
  margin: 0 0 14px;
  color: #111;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.22;
  letter-spacing: -.055em;
  font-weight: 950;
}

.legal-section-card p {
  margin: 0;
  color: rgba(17,17,17,.7);
  font-size: 16px;
  line-height: 1.82;
  letter-spacing: -.025em;
  font-weight: 560;
}

.legal-footer {
  background: #fff !important;
  color: #111 !important;
}

@media (max-width: 720px) {
  .legal-hero-section {
    min-height: 46vh;
    padding: 118px 24px 54px;
  }

  .legal-content-section {
    padding: 32px 24px 64px;
  }

  .legal-section-card {
    padding: 28px 0;
  }
}


/* v40 legal page scroll + compact hero / contact cleanup */
html.legal-html,
html.legal-html body {
  height: auto !important;
  min-height: 100% !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  scroll-snap-type: none !important;
}

html.legal-html body:not(.menu-open) {
  overflow-y: auto !important;
}

html.legal-html .legal-page-wrap {
  min-height: auto !important;
  overflow: visible !important;
  scroll-snap-type: none !important;
}

html.legal-html .top-header {
  color: #111 !important;
}

html.legal-html .brand-logo-dark {
  display: block !important;
}

html.legal-html .brand-logo-light {
  display: none !important;
}

html.legal-html .hamburger span {
  background: #111 !important;
}

html.legal-html .legal-hero-section {
  min-height: 38vh !important;
  padding-top: 112px !important;
  padding-bottom: 48px !important;
}

html.legal-html .legal-hero-section h1 {
  font-size: clamp(40px, 6vw, 88px) !important;
}

html.legal-html .legal-content-section {
  padding-top: clamp(34px, 5vw, 72px) !important;
}

.contact-card-grid {
  width: min(680px, 100%) !important;
  max-width: 680px !important;
}

.contact-method-card {
  min-height: 118px !important;
}

.contact-copy p:not(.eyebrow) {
  font-size: clamp(14px, 1vw, 17px) !important;
}

@media (max-width: 720px) {
  html.legal-html .legal-hero-section {
    min-height: 34vh !important;
    padding-top: 96px !important;
    padding-bottom: 38px !important;
  }
}


/* v41 legal footer visibility + inquiry label normalization */
html.legal-html .legal-footer {
  min-height: auto !important;
  padding: clamp(52px, 7vw, 86px) clamp(28px, 8vw, 140px) clamp(52px, 6vw, 72px) !important;
  background: #fff !important;
  color: #111 !important;
}

html.legal-html .legal-footer .footer-inner {
  width: min(980px, 100%) !important;
  margin: 0 auto !important;
}

html.legal-html .legal-footer .footer-logo,
html.legal-html .legal-footer .footer-logo-img,
html.legal-html .legal-footer .footer-logo-dark {
  color: #111 !important;
  opacity: 1 !important;
}

html.legal-html .legal-footer .footer-logo-dark {
  display: block !important;
}

html.legal-html .legal-footer .footer-logo-light {
  display: none !important;
}

html.legal-html .legal-footer .footer-legal {
  border-top-color: rgba(17,17,17,.14) !important;
  color: rgba(17,17,17,.72) !important;
}

html.legal-html .legal-footer .footer-legal a {
  color: rgba(17,17,17,.72) !important;
}

html.legal-html .legal-footer .footer-legal a:hover {
  color: #111 !important;
}

html.legal-html .legal-footer .footer-company {
  color: rgba(17,17,17,.56) !important;
}

html.legal-html .legal-footer .footer-copyright {
  border-top-color: rgba(17,17,17,.10) !important;
  color: rgba(17,17,17,.46) !important;
}

/* v42: force bright header on selected dark detail sections */
body.dark-ui.service-page .top-header .top-menu a,
body.dark-ui.service-page .top-header .top-menu a.active {
  color: rgba(255,255,255,.88) !important;
  text-shadow: 0 1px 10px rgba(0,0,0,.22);
}
body.dark-ui.service-page .top-header .hamburger span {
  background: rgba(255,255,255,.9) !important;
}
body.dark-ui.service-page .top-header .brand-logo-dark {
  display: none !important;
}
body.dark-ui.service-page .top-header .brand-logo-light {
  display: block !important;
}
