@charset "UTF-8";

/* =========================================================
   W&D GROUP - Base / Variables
   ========================================================= */
:root {
  --color-bg: #050505;
  --color-bg-soft: #1b1b23;
  --color-surface: #202029;
  --color-text: #fff;
  --color-muted: #aaaab0;
  --color-accent: #f11356;
  --color-accent-light: #f11356;
  --color-border: rgba(255, 255, 255, 0.15);
  --font-sans: Inter, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  --font-serif: "Times New Roman", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", Georgia, serif;
  --header-height: 84px;
  --content-width: 1240px;
  --transition: 280ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

body.wd-menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--color-accent-light);
  outline-offset: 4px;
}

::selection {
  background: var(--color-accent);
  color: #fff;
}

.wd-container {
  width: min(calc(100% - 64px), var(--content-width));
  margin-inline: auto;
}

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

/* =========================================================
   Header / Navigation
   ========================================================= */
.wd-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid var(--color-border);
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(14px);
  transition: transform var(--transition), background var(--transition);
}

.wd-header::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 96px;
  height: 2px;
  background: var(--color-accent);
  content: "";
}

.wd-header--hidden {
  transform: translateY(-105%);
}

.wd-header__inner {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  padding-left: clamp(20px, 3vw, 48px);
}

.wd-logo {
  display: inline-flex;
  min-height: 58px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  line-height: 1;
}

.wd-logo__image {
  display: block;
  width: 112px;
  height: 48px;
  margin: -6px 0 3px;
  content: url("../img/DWG_logo.png");
  object-fit: contain;
}

.wd-logo__image[hidden] {
  display: none;
}

.wd-logo__text {
  display: block;
  color: var(--color-accent);
  font-size: 0;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
}

.wd-logo__text::after {
  content: "W&D GROUP LLC.";
  display: inline-block;
  padding-left: 0.5em;
  font-size: 0.38rem;
  letter-spacing: 0.5em;
}

.wd-logo__text > * {
  display: none;
}

.wd-logo__mark,
.wd-logo__group {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.015em;
}

.wd-logo__mark { color: var(--color-accent); }
.wd-logo__group {
  margin-left: 0.18em;
  color: #c5c5c9;
}

.wd-logo__company {
  margin-left: 14px;
  color: #a8a8ad;
  font-family: var(--font-serif);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.14em;
}

.wd-nav__list,
.wd-dropdown__list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.wd-nav__list {
  display: flex;
  height: 100%;
  align-items: center;
  gap: clamp(20px, 2.5vw, 42px);
}

.wd-nav {
  height: 100%;
}

.wd-nav__item {
  position: relative;
}

.wd-nav__link,
.wd-nav__toggle {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  transition: color var(--transition);
}

.wd-nav__link:hover,
.wd-nav__toggle:hover,
.wd-nav__toggle[aria-expanded="true"] {
  color: var(--color-accent-light);
}

/* Reference-style contact CTA: full-height red block at the far right. */
.wd-nav__item:last-child {
  height: 100%;
  margin-left: clamp(-6px, 0.5vw, 8px);
}

.wd-nav__item:last-child .wd-nav__link {
  min-width: clamp(170px, 14vw, 218px);
  height: 100%;
  justify-content: center;
  gap: 12px;
  padding: 0 28px;
  background: linear-gradient(115deg, #c90f47 0%, #f11356 52%, #b90d41 100%);
  box-shadow: inset 1px 0 rgba(255, 255, 255, 0.07);
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  transition: background var(--transition), box-shadow var(--transition);
}

.wd-nav__item:last-child .wd-nav__link::before {
  display: inline-flex;
  width: 20px;
  height: 15px;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  content: "";
  background:
    linear-gradient(32deg, transparent 47%, currentColor 48% 51%, transparent 52%) left / 50% 100% no-repeat,
    linear-gradient(-32deg, transparent 47%, currentColor 48% 51%, transparent 52%) right / 50% 100% no-repeat;
}

.wd-nav__item:last-child .wd-nav__link:hover,
.wd-nav__item:last-child .wd-nav__link:focus-visible {
  background: linear-gradient(115deg, #e51150 0%, #f11356 55%, #d10f49 100%);
  box-shadow: inset 1px 0 rgba(255, 255, 255, 0.12), 0 0 30px rgba(241, 19, 86, 0.24);
  color: #fff;
}

.wd-nav__toggle::after {
  width: 7px;
  height: 7px;
  margin: -4px 0 0 10px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform var(--transition);
}

.wd-nav__toggle[aria-expanded="true"]::after {
  margin-top: 3px;
  transform: rotate(225deg);
}

.wd-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: 280px;
  padding: 16px 20px;
  border: 1px solid var(--color-border);
  background: rgba(10, 10, 12, 0.98);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity var(--transition), transform var(--transition);
}

.wd-dropdown--open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.wd-dropdown__link {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-border);
  color: #dedee2;
  font-size: 0.83rem;
  transition: color var(--transition), padding var(--transition);
}

.wd-dropdown__link::after {
  color: var(--color-accent-light);
  content: "→";
}

.wd-dropdown__link:hover {
  padding-left: 6px;
  color: #fff;
}

.wd-menu-button {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid var(--color-border);
  background: transparent;
}

.wd-menu-button__lines,
.wd-menu-button__lines::before,
.wd-menu-button__lines::after {
  display: block;
  width: 21px;
  height: 1px;
  background: #fff;
  transition: transform var(--transition), opacity var(--transition);
}

.wd-menu-button__lines {
  position: relative;
}

.wd-menu-button__lines::before,
.wd-menu-button__lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.wd-menu-button__lines::before { top: -7px; }
.wd-menu-button__lines::after { top: 7px; }
.wd-menu-button[aria-expanded="true"] .wd-menu-button__lines { background: transparent; }
.wd-menu-button[aria-expanded="true"] .wd-menu-button__lines::before { top: 0; transform: rotate(45deg); }
.wd-menu-button[aria-expanded="true"] .wd-menu-button__lines::after { top: 0; transform: rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.wd-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #080808;
}

.wd-hero__panels {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.wd-hero__panel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-right: 0;
  background-color: #161619;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.5)), var(--wd-hero-image);
  background-position: center;
  background-size: cover, cover;
  animation: wd-hero-zoom 1.6s ease-out both;
}

.wd-hero__panel:nth-child(2) { animation-delay: 120ms; }
.wd-hero__panel:nth-child(3) { animation-delay: 240ms; }
.wd-hero__panel:nth-child(4) { animation-delay: 360ms; }
.wd-hero__panel:nth-child(5) { animation-delay: 480ms; }

.wd-hero__panel-label {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 28px;
  left: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: center;
}

.wd-hero__panel-label small {
  display: block;
  margin-top: 5px;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.wd-hero__overlay {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.7));
  pointer-events: none;
}

.wd-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100svh;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + 60px) 24px 110px;
  pointer-events: none;
  text-align: center;
}

.wd-hero__content > div {
  position: relative;
  isolation: isolate;
  width: min(100%, 1080px);
  padding: 40px 30px;
}

.wd-hero__eyebrow {
  margin: 0 0 18px;
  color: var(--color-accent-light);
  font-size: clamp(0.74rem, 1vw, 0.9rem);
  font-weight: 800;
  letter-spacing: 0.45em;
}

.wd-hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  font-size: clamp(3rem, 7.8vw, 8.2rem);
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.9;
  color: #fff;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.95), 0 16px 44px rgba(0, 0, 0, 0.75);
}

.wd-hero__logo {
  width: clamp(210px, 32vw, 430px);
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 8px 20px rgba(0, 0, 0, 0.7));
}

.wd-hero__logo-caption {
  margin-top: 8px;
  padding-left: 0.5em;
  color: #fff;
  font-family: var(--font-sans);
  font-size: clamp(0.62rem, 1vw, 0.86rem);
  font-weight: 700;
  letter-spacing: 0.5em;
  line-height: 1;
  text-shadow: 0 2px 10px #000;
}

.wd-hero__tagline {
  margin: 24px 0 0;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.7vw, 1.42rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.45;
  text-shadow: 0 2px 14px #000;
  white-space: nowrap;
}

.wd-hero__lead {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.7;
  text-shadow: 0 2px 14px #000;
  white-space: nowrap;
}

.wd-hero__lead::before {
  display: block;
  width: 44px;
  height: 1px;
  margin: 0 auto 18px;
  background: var(--color-accent-light);
  content: "";
}

@keyframes wd-hero-zoom {
  from { opacity: 0.78; transform: scale(1.06); }
  to { opacity: 1; transform: scale(1); }
}

.wd-hero__mobile-links {
  display: none;
}

/* =========================================================
   Common Sections / Typography
   ========================================================= */
.wd-section {
  position: relative;
  padding: clamp(90px, 11vw, 160px) 0;
  border-top: 1px solid var(--color-border);
  background: #0d0d12;
}

.wd-section--soft {
  background: linear-gradient(135deg, #202029 0%, var(--color-bg-soft) 55%, #16161d 100%);
}

#business {
  border-color: #dedee3;
  background: #fff;
  color: #1b1b20;
}

#business .wd-section__intro {
  color: #55555e;
}

#business .wd-business-grid {
  border-color: #dedee3;
}

#business .wd-business-card {
  border-color: #dedee3;
  background: #f7f7f9;
  color: #1b1b20;
  transition: filter var(--transition), transform var(--transition), box-shadow var(--transition);
}

#business .wd-business-card:hover {
  z-index: 2;
  background: #050505;
  color: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  transform: translateY(-4px);
}

#business .wd-business-card__text {
  color: #66666e;
  transition: color var(--transition);
}

#business .wd-business-card:hover .wd-business-card__text {
  color: #cfcfd4;
}

.wd-section--image {
  background-color: #0c0c0e;
  background-image: linear-gradient(90deg, rgba(5, 5, 5, 0.97) 0%, rgba(5, 5, 5, 0.77) 60%, rgba(5, 5, 5, 0.6) 100%), var(--wd-section-image);
  background-position: center;
  background-size: cover;
}

/* Contact uses a restrained solid background instead of photography. */
#contact.wd-section--image {
  border-color: #dedee3;
  background-color: #fff;
  background-image: none !important;
  color: #1b1b20;
}

#contact .wd-section__jp {
  color: #66666e;
}

#contact .wd-contact__lead,
#contact .wd-privacy__content {
  color: #55555e;
}

#contact .wd-privacy,
#contact .wd-privacy__content {
  border-color: #d8d8de;
}

#contact .wd-privacy__content h3 {
  color: #1b1b20;
}

#contact .wd-privacy__toggle {
  color: #1b1b20;
}

#contact .wd-privacy__toggle:hover,
#contact .wd-privacy__toggle:focus-visible {
  color: #fff;
}

#contact .wd-button--solid {
  color: #fff;
}

#contact .wd-form__input,
#contact .wd-form__select,
#contact .wd-form__textarea {
  background-color: #fff;
}

.wd-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(42px, 6vw, 80px);
}

.wd-section__number {
  display: block;
  margin-bottom: 10px;
  color: var(--color-accent-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.25em;
}

.wd-section__title {
  margin: 0;
  font-size: clamp(2.25rem, 5.6vw, 5.5rem);
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
}

.wd-section__title--medium {
  font-size: clamp(2rem, 4.2vw, 4.3rem);
}

.wd-section__jp {
  margin: 16px 0 0;
  color: var(--color-muted);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.wd-section__intro {
  max-width: 620px;
  margin: 0;
  color: #d3d3d7;
}

.wd-kicker {
  margin: 0 0 18px;
  color: var(--color-accent-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.25em;
}

.wd-display-copy {
  max-width: 960px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.wd-button {
  display: inline-flex;
  min-width: 210px;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 20px 12px 24px;
  border: 1px solid var(--color-border);
  background: transparent;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
}

.wd-button::after {
  color: var(--color-accent-light);
  font-size: 1.15rem;
  content: "→";
  transition: transform var(--transition);
}

.wd-button:hover {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-2px);
}

.wd-button:hover::after {
  color: #fff;
  transform: translateX(5px);
}

.wd-button--solid {
  border-color: var(--color-accent);
  background: var(--color-accent);
}

/* =========================================================
   Business Overview Cards
   ========================================================= */
.wd-business-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
}

.wd-business-card {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 26px 22px;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: linear-gradient(145deg, #151519 0%, #0a0a0c 100%);
}

.wd-business-card__number,
.wd-business-card__icon,
.wd-business-card__title,
.wd-business-card__text,
.wd-business-card__arrow {
  position: relative;
  z-index: 1;
}

.wd-business-card__number {
  color: var(--color-accent-light);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 800;
  line-height: 1;
}

.wd-business-card__icon {
  display: block;
  flex: 0 0 auto;
  width: clamp(58px, 5vw, 76px);
  height: clamp(58px, 5vw, 76px);
  margin: auto auto 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.wd-business-card__icon--01 { background-image: url("../img/icon_01.png"); }
.wd-business-card__icon--02 { background-image: url("../img/icon_02.png"); }
.wd-business-card__icon--03 { background-image: url("../img/icon_03.png"); }
.wd-business-card__icon--04 { background-image: url("../img/icon_04.png"); }
.wd-business-card__icon--05 { background-image: url("../img/icon_05.png"); }

.wd-business-card__title {
  display: flex;
  width: 100%;
  min-height: 2.7em;
  max-width: 100%;
  align-self: center;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(0.76rem, 1vw, 0.94rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-align: center;
  white-space: normal;
}

.wd-business-card__text {
  width: 100%;
  min-height: 2em;
  max-width: 100%;
  align-self: center;
  margin: 6px 0 0;
  color: #bcbcc1;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-align: center;
  white-space: normal;
}

.wd-business-card__arrow {
  align-self: flex-end;
  margin-top: 22px;
  color: var(--color-accent-light);
  font-size: 1.3rem;
}

/* =========================================================
   Featured Business Sections
   ========================================================= */
.wd-feature {
  display: grid;
  min-height: 650px;
  grid-template-columns: 55% 45%;
  border-top: 1px solid var(--color-border);
}

.wd-feature--reverse {
  grid-template-columns: 45% 55%;
}

.wd-feature__visual {
  min-height: 520px;
  overflow: hidden;
  background-color: #151518;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.46)), var(--wd-feature-image);
  background-position: center;
  background-size: cover, cover;
  transition: background-size 1s ease;
}

.wd-feature:hover .wd-feature__visual {
  background-size: cover, auto 108%;
}

.wd-feature--reverse .wd-feature__visual {
  order: 2;
}

.wd-feature__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 110px);
  background: linear-gradient(145deg, #191920 0%, #111117 100%);
}

.wd-feature__index {
  margin-bottom: 24px;
  color: var(--color-accent-light);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.wd-feature__title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.6rem);
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.wd-feature__copy {
  margin: 20px 0 0;
  color: var(--color-accent-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.wd-feature__services {
  margin: 30px 0 40px;
  color: #c4c4c9;
  font-size: 0.9rem;
}

/* =========================================================
   About / Global Expansion / Company
   ========================================================= */
.wd-dual-about {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: #050505;
}

.wd-dual-about__panel {
  position: relative;
  display: flex;
  min-height: clamp(410px, 36vw, 560px);
  align-items: center;
  overflow: hidden;
  padding: clamp(46px, 5vw, 82px);
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  background-color: #0a0c0f;
  background-position: center;
  background-size: cover, cover;
  transition: background-size 900ms ease, filter var(--transition);
}

.wd-dual-about__panel:last-child { border-right: 0; }

.wd-dual-about__panel:hover {
  background-size: cover, auto 106%;
}

.wd-dual-about__content {
  position: relative;
  z-index: 1;
  width: min(100%, 590px);
}

.wd-dual-about__eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--color-accent-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.wd-dual-about__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.98;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.8);
}

.wd-dual-about__jp {
  margin: 18px 0 0;
  color: var(--color-accent-light);
  font-size: clamp(0.76rem, 1vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.14em;
}

.wd-dual-about__text {
  margin: clamp(24px, 3vw, 38px) 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.84rem, 1.15vw, 1rem);
  line-height: 2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.95);
}

.wd-dual-about__button {
  min-width: 180px;
  background: rgba(2, 2, 3, 0.54);
  backdrop-filter: blur(5px);
}

.wd-company {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(48px, 10vw, 140px);
}

.wd-company__list {
  margin: 0;
  border-top: 1px solid var(--color-border);
}

.wd-company__row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}

.wd-company__term {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.wd-company__icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--color-accent-light);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wd-company__description {
  margin: 0;
}

.wd-company__description--pending {
  color: var(--color-muted);
}

/* =========================================================
   News
   ========================================================= */
.wd-news__list {
  margin: 0;
  border-top: 1px solid var(--color-border);
}

.wd-news__item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}

.wd-news__date {
  color: var(--color-accent-light);
  font-size: 0.8rem;
  font-weight: 700;
}

.wd-news__title {
  margin: 0;
}

#news {
  border-color: #dedee3;
  background: #f7f7f9;
  color: #1b1b20;
}

#news .wd-section__jp {
  color: #66666e;
}

#news .wd-news__list,
#news .wd-news__item {
  border-color: #d6d6dc;
}

.wd-news__past[hidden],
.wd-privacy__content[hidden] {
  display: none;
}

.wd-news__toggle,
.wd-privacy__toggle {
  margin-top: 34px;
}

.wd-news__toggle[aria-expanded="true"]::after,
.wd-privacy__toggle[aria-expanded="true"]::after {
  content: "−";
}

/* =========================================================
   Contact / Form
   ========================================================= */
.wd-contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(50px, 10vw, 140px);
}

.wd-contact__lead {
  max-width: 420px;
  color: #d2d2d6;
}

.wd-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 24px;
}

.wd-form__field--full {
  grid-column: 1 / -1;
}

.wd-form__label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 9px;
  font-size: 0.82rem;
  font-weight: 700;
}

.wd-form__required {
  color: var(--color-accent-light);
  font-size: 0.65rem;
}

.wd-form__input,
.wd-form__select,
.wd-form__textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 15px;
  border: 1px solid #d8d8de;
  border-radius: 0;
  background-color: #fff;
  color: #1b1b20;
  transition: border-color var(--transition), background var(--transition);
}

.wd-form__input::placeholder,
.wd-form__textarea::placeholder {
  color: #777780;
  opacity: 1;
}

.wd-form__textarea {
  min-height: 180px;
  resize: vertical;
}

.wd-form__input:focus,
.wd-form__select:focus,
.wd-form__textarea:focus {
  border-color: var(--color-accent-light);
  background-color: #fff;
  box-shadow: 0 0 0 2px rgba(241, 19, 86, 0.18);
  outline: none;
}

.wd-form__select {
  appearance: none;
  height: 54px;
  padding-right: 48px;
  background-image:
    linear-gradient(45deg, transparent 50%, #55555e 50%),
    linear-gradient(135deg, #55555e 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  color-scheme: light;
}

.wd-confirm {
  width: min(calc(100% - 40px), 760px);
  max-height: min(86vh, 820px);
  padding: 0;
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #15151b;
  color: var(--color-text);
}

.wd-confirm::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(5px);
}

.wd-confirm__inner { padding: clamp(28px, 5vw, 54px); }

.wd-confirm__eyebrow {
  margin: 0 0 10px;
  color: var(--color-accent-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.wd-confirm__title {
  margin: 0 0 30px;
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
}

.wd-confirm__list {
  margin: 0;
  border-top: 1px solid var(--color-border);
}

.wd-confirm__list > div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}

.wd-confirm__list dt { color: var(--color-muted); font-size: 0.8rem; }
.wd-confirm__list dd { margin: 0; white-space: pre-wrap; overflow-wrap: anywhere; }
.wd-confirm__actions { display: flex; gap: 14px; justify-content: flex-end; margin-top: 30px; }
.wd-confirm__actions .wd-button { min-width: 190px; }

.wd-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 30px 0;
  cursor: pointer;
}

.wd-form__checkbox {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 4px;
  accent-color: var(--color-accent);
}

.wd-form__status {
  min-height: 1.5em;
  margin: 0 0 14px;
  color: #ff7181;
  font-size: 0.84rem;
}

.wd-form__honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.wd-privacy {
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.wd-privacy__toggle {
  width: 100%;
  min-height: 72px;
  justify-content: space-between;
  margin: 0;
  padding: 20px clamp(20px, 3vw, 32px);
  border: 0;
  background: transparent;
  text-align: left;
}

.wd-privacy__content {
  padding: 24px 0 4px;
  color: #c2c2c7;
  font-size: 0.88rem;
}

.wd-privacy__content h3 {
  margin: 20px 0 4px;
  color: #fff;
  font-size: 0.95rem;
}

.wd-privacy__content h3:first-child { margin-top: 0; }
.wd-privacy__content p { margin: 0; }

/* =========================================================
   Lower Pages
   ========================================================= */
.wd-business-page--construction .wd-service-list__item:nth-child(1) { --wd-service-image: url("../img/service-construction-interior.jpg"); }
.wd-business-page--construction .wd-service-list__item:nth-child(2) { --wd-service-image: url("../img/service-construction-new-build.jpg"); }
.wd-business-page--construction .wd-service-list__item:nth-child(3) { --wd-service-image: url("../img/service-construction-renovation.jpg"); }
.wd-business-page--construction .wd-service-list__item:nth-child(4) { --wd-service-image: url("../img/service-construction-restoration.jpg"); }

.wd-business-page--building .wd-service-list__item:nth-child(1) { --wd-service-image: url("../img/service-building-maintenance.jpg"); }
.wd-business-page--building .wd-service-list__item:nth-child(2) { --wd-service-image: url("../img/service-building-cleaning.jpg"); }
.wd-business-page--building .wd-service-list__item:nth-child(3) { --wd-service-image: url("../img/service-building-equipment.jpg"); }
.wd-business-page--building .wd-service-list__item:nth-child(4) { --wd-service-image: url("../img/service-building-scheduled.jpg"); }

.wd-business-page--logistics .wd-service-list__item:nth-child(1) { --wd-service-image: url("../img/service-logistics-corporate.jpg"); }
.wd-business-page--logistics .wd-service-list__item:nth-child(2) { --wd-service-image: url("../img/service-logistics-regular.jpg"); }
.wd-business-page--logistics .wd-service-list__item:nth-child(3) { --wd-service-image: url("../img/service-logistics-spot.jpg"); }
.wd-business-page--logistics .wd-service-list__item:nth-child(4) { --wd-service-image: url("../img/service-logistics-charter.jpg"); }
.wd-business-page--logistics .wd-service-list__item:nth-child(5) { --wd-service-image: url("../img/service-logistics-last-mile.jpg"); }

.wd-business-page--apparel .wd-service-list__item:nth-child(1) { --wd-service-image: url("../img/service-apparel-planning.jpg"); }
.wd-business-page--apparel .wd-service-list__item:nth-child(2) { --wd-service-image: url("../img/service-apparel-development.jpg"); }
.wd-business-page--apparel .wd-service-list__item:nth-child(3) { --wd-service-image: url("../img/service-apparel-ec.jpg"); }

main > .wd-section[aria-labelledby="overview-title"],
main > .wd-section[aria-labelledby="strength-title"] {
  border-color: #dedee3;
  background: #fff;
  color: #1b1b20;
}

main > .wd-section[aria-labelledby="overview-title"] .wd-section__number,
main > .wd-section[aria-labelledby="strength-title"] .wd-section__number {
  color: var(--color-accent);
}

main > .wd-section[aria-labelledby="overview-title"] .wd-overview__text {
  color: #606068;
}

main > .wd-section[aria-labelledby="overview-title"] .wd-overview__lead {
  position: relative;
  padding-top: 28px;
}

main > .wd-section[aria-labelledby="overview-title"] .wd-overview__lead::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 2px;
  background: var(--color-accent);
  content: "";
}

main > .wd-section--soft[aria-labelledby="service-title"] {
  border-color: var(--color-border);
  background: #0d0d12;
  color: #fff;
}

main > .wd-section--soft[aria-labelledby="service-title"] .wd-section__number {
  color: var(--color-accent);
}

main > .wd-section--soft[aria-labelledby="service-title"] > .wd-container {
  display: grid;
  grid-template-columns: minmax(210px, 0.3fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(36px, 5vw, 72px);
}

main > .wd-section--soft[aria-labelledby="service-title"] .wd-section__head {
  margin: 0;
}

main > .wd-section--soft[aria-labelledby="service-title"] .wd-service-list {
  display: flex;
  border-color: var(--color-border);
}

main > .wd-section--soft[aria-labelledby="service-title"] .wd-service-list__item {
  display: flex;
  min-width: 0;
  min-height: 280px;
  flex: 1 1 0;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  gap: 28px;
  padding: 26px 24px 24px;
  border-color: var(--color-border);
  background-color: #101014;
  background-image: linear-gradient(180deg, rgba(5, 5, 7, 0.42), rgba(5, 5, 7, 0.86)), var(--wd-service-image);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

main > .wd-section--soft[aria-labelledby="service-title"] .wd-service-list__item::after {
  position: absolute;
  right: 24px;
  bottom: 20px;
  color: var(--color-accent);
  font-size: 1.25rem;
  line-height: 1;
  content: "→";
  transition: transform var(--transition);
}

main > .wd-section--soft[aria-labelledby="service-title"] .wd-service-list__number {
  display: block;
  width: auto;
  height: auto;
  color: var(--color-accent);
  font-size: 1rem;
}

main > .wd-section--soft[aria-labelledby="service-title"] .wd-service-list__title {
  margin: auto 0 34px;
  font-size: clamp(0.88rem, 1.2vw, 1.08rem);
  line-height: 1.55;
  text-align: center;
}

main > .wd-section--soft[aria-labelledby="service-title"] .wd-service-list__item:hover {
  z-index: 1;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  filter: brightness(1.2);
  transform: translateY(-4px);
}

main > .wd-section--soft[aria-labelledby="service-title"] .wd-service-list__item:hover::after {
  transform: translateX(5px);
}

main > .wd-section[aria-labelledby="strength-title"] .wd-strength-card {
  position: relative;
  display: flex;
  min-height: 230px;
  flex-direction: column;
  padding: 30px 28px 28px;
  border-color: #dedee3;
  background: #f7f7f9;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

main > .wd-section[aria-labelledby="strength-title"] .wd-strength-card__number {
  color: var(--color-accent);
  font-family: var(--font-serif);
  font-size: 2.3rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

main > .wd-section[aria-labelledby="strength-title"] .wd-strength-card__text {
  max-width: 32em;
  margin-top: 12px;
  color: #66666e;
  line-height: 1.85;
  transition: color var(--transition);
}

main > .wd-section[aria-labelledby="strength-title"] .wd-strength-card__title {
  margin: auto 0 0;
  padding-top: 32px;
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
}

main > .wd-section[aria-labelledby="strength-title"] .wd-strength-card::after {
  position: absolute;
  top: 0;
  right: 28px;
  width: 34px;
  height: 3px;
  background: var(--color-accent);
  content: "";
}

main > .wd-section[aria-labelledby="strength-title"] .wd-strength-card:hover {
  background: #050505;
  color: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
}

main > .wd-section[aria-labelledby="strength-title"] .wd-strength-card:hover .wd-strength-card__text {
  color: #cfcfd4;
}

.wd-apparel-collection {
  padding: clamp(90px, 11vw, 150px) 0;
  border-top: 1px solid var(--color-border);
  background: #08080a;
}

.wd-apparel-collection__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 48px;
  margin-bottom: clamp(42px, 6vw, 72px);
}

.wd-apparel-collection__head .wd-section__number {
  grid-column: 1 / -1;
  margin-bottom: -30px;
}

.wd-apparel-collection__head p {
  margin: 0;
  color: #bcbcc2;
  line-height: 1.9;
}

.wd-apparel-gallery {
  display: grid;
  min-height: 680px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.wd-apparel-gallery__item {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #151519;
}

.wd-apparel-gallery__item--main {
  grid-column: 1 / 9;
  grid-row: 1 / 3;
}

.wd-apparel-gallery__item:nth-child(2) {
  grid-column: 9 / 13;
}

.wd-apparel-gallery__item:nth-child(3) {
  grid-column: 9 / 11;
}

.wd-apparel-gallery__item:nth-child(4) {
  grid-column: 11 / 13;
}

.wd-apparel-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 600ms ease, transform 900ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.wd-apparel-gallery__item:hover img {
  filter: brightness(1.08);
  transform: scale(1.035);
}

.wd-page-hero {
  position: relative;
  display: flex;
  min-height: 72svh;
  align-items: flex-end;
  overflow: hidden;
  padding: calc(var(--header-height) + 80px) 0 90px;
  background-color: #111114;
  background-image: linear-gradient(90deg, rgba(5, 5, 5, 0.86), rgba(5, 5, 5, 0.36)), var(--wd-page-image);
  background-position: center;
  background-size: cover;
}

.wd-page-hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--color-accent) 0 18%, var(--color-border) 18%);
  content: "";
}

.wd-page-hero__inner {
  position: relative;
  z-index: 1;
}

.wd-page-hero__eyebrow {
  color: var(--color-accent-light);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.25em;
}

.wd-page-hero__title {
  max-width: 1100px;
  margin: 12px 0 0;
  font-size: clamp(3rem, 8vw, 8rem);
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.wd-page-hero__copy {
  margin: 14px 0 0;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.15em;
}

.wd-page-hero__services {
  max-width: 860px;
  margin: 24px 0 0;
  color: #d0d0d4;
  font-size: clamp(0.84rem, 1.15vw, 1rem);
  letter-spacing: 0.04em;
  line-height: 1.9;
}

.wd-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px 0;
  color: var(--color-muted);
  font-size: 0.75rem;
}

.wd-breadcrumb a:hover { color: #fff; }

.wd-coming-soon {
  padding: calc(var(--header-height) + clamp(52px, 7vw, 96px)) 0 clamp(52px, 7vw, 96px);
  background: #fff;
}

.wd-coming-soon__panel {
  position: relative;
  display: grid;
  min-height: 280px;
  grid-template-columns: minmax(100px, 0.28fr) 1fr;
  align-items: center;
  overflow: hidden;
  padding: clamp(36px, 6vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, #191920, #101014);
}

.wd-coming-soon__panel::after {
  position: absolute;
  right: -60px;
  bottom: -125px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.wd-coming-soon__number {
  color: rgba(255, 255, 255, 0.16);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.wd-coming-soon__content {
  position: relative;
  z-index: 1;
  padding-left: clamp(24px, 5vw, 72px);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.wd-coming-soon__eyebrow {
  margin: 0 0 10px;
  color: var(--color-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
}

.wd-coming-soon__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 7vw, 6rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
}

.wd-coming-soon__jp {
  margin: 22px 0 0;
  color: #c8c8cd;
  font-size: 0.95rem;
}

.wd-coming-soon__line {
  display: block;
  width: 72px;
  height: 2px;
  margin-top: 28px;
  background: var(--color-accent-light);
}

.wd-overview {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(50px, 9vw, 130px);
}

.wd-overview__lead {
  margin: 0 0 28px;
  font-size: clamp(1.45rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.55;
}

.wd-overview__text {
  color: #c5c5ca;
}

.wd-service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--color-border);
  border-left: 1px solid var(--color-border);
}

.wd-service-list__item {
  position: relative;
  min-height: 180px;
  padding: 30px;
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.025);
}

.wd-service-list__number {
  color: var(--color-accent-light);
  font-size: 0.7rem;
  font-weight: 800;
}

.wd-service-list__title {
  margin: 42px 0 0;
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.wd-strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.wd-strength-card {
  min-height: 300px;
  padding: 38px 30px;
  border: 1px solid var(--color-border);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015));
}

.wd-strength-card__number {
  color: var(--color-accent-light);
  font-size: 0.75rem;
  font-weight: 800;
}

.wd-strength-card__title {
  margin: 68px 0 14px;
  font-size: 1.35rem;
}

.wd-strength-card__text {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.wd-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 140px) 0;
  background-color: #111114;
  background-image: linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.54)), var(--wd-cta-image);
  background-position: center;
  background-size: cover;
}

.wd-cta {
  background-color: #09090b;
  background-image: linear-gradient(135deg, #09090b 0%, #111114 100%) !important;
}

.wd-cta__title {
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 6vw, 6rem);
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1;
}

.wd-cta__text {
  margin: 0 0 36px;
  color: #d2d2d6;
}

/* =========================================================
   Thanks / Error
   ========================================================= */
.wd-message-page {
  display: flex;
  min-height: 100svh;
  align-items: center;
  padding: calc(var(--header-height) + 60px) 0 80px;
  background: linear-gradient(145deg, #111116, #070709);
  text-align: center;
}

.wd-message-page__panel {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
}

.wd-message-page__code {
  color: var(--color-accent-light);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.wd-message-page__title {
  max-width: none;
  margin: 16px 0 24px;
  font-size: clamp(2.2rem, 4.5vw, 4.2rem);
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.15;
  white-space: nowrap;
}

.wd-message-page__text {
  margin: 0 0 36px;
  color: #c8c8cd;
}

.wd-message-page .wd-button { margin-inline: auto; }

/* =========================================================
   Footer / Back to Top
   ========================================================= */
.wd-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 130px) 0 28px;
  border-top: 1px solid var(--color-border);
  background: linear-gradient(145deg, #0d0d11, #030304);
}

.wd-footer::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 22%;
  height: 3px;
  background: var(--color-accent);
  content: "";
}

.wd-footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  padding: 54px 0 64px;
}

.wd-footer__logo {
  margin-bottom: 18px;
}

.wd-footer__logo::before {
  width: 150px;
  height: 66px;
  margin: -8px 0 5px;
  background: url("../img/DWG_logo.png") center / contain no-repeat;
  content: "";
}

.wd-footer__logo .wd-logo__text::after { font-size: 0.54rem; }
.wd-footer__logo .wd-logo__mark,
.wd-footer__logo .wd-logo__group { font-size: clamp(1.55rem, 2.4vw, 2.15rem); }

.wd-footer__address {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.8rem;
  font-style: normal;
  line-height: 2;
}

.wd-footer__address a { color: #fff; text-decoration: underline; text-decoration-color: #555; text-underline-offset: 5px; }

.wd-footer__tagline { max-width: 330px; margin: 0 0 26px; color: #aaaab0; font-size: 0.78rem; }

.wd-footer__heading {
  margin: 0 0 16px;
  color: #737378;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
}

.wd-footer__links {
  display: grid;
  padding: 0;
  margin: 0;
  gap: 10px;
  list-style: none;
}

.wd-footer__link {
  display: inline-flex;
  gap: 12px;
  color: #c7c7cc;
  font-size: 0.8rem;
  transition: color var(--transition);
}

.wd-footer__links--business .wd-footer__link span { color: var(--color-accent-light); font-size: 0.62rem; }

.wd-footer__link:hover { color: var(--color-accent-light); }

.wd-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 24px;
  color: #717176;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-align: center;
}

.wd-back-to-top {
  position: fixed;
  z-index: 900;
  right: 24px;
  bottom: 24px;
  display: flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  background: rgba(5, 5, 5, 0.9);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
}

.wd-back-to-top::before {
  width: 9px;
  height: 9px;
  margin-top: 5px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  content: "";
  transform: rotate(45deg);
}

.wd-back-to-top--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.wd-back-to-top:hover { background: var(--color-accent); }

/* =========================================================
   Reveal Animation
   ========================================================= */
.wd-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

/* =========================================================
   Responsive
   ========================================================= */
@media (min-width: 901px) {
  :root { --header-height: 72px; }

  .wd-nav__list { gap: clamp(22px, 2.3vw, 38px); }
  .wd-nav__link,
  .wd-nav__toggle { font-size: 0.72rem; }

  .wd-dropdown { top: calc(100% + 14px); }

  .wd-dropdown::before {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    height: 15px;
    content: "";
  }

  .wd-hero {
    min-height: clamp(570px, 55vw, 780px);
    margin-top: var(--header-height);
  }

  .wd-hero__panels {
    display: flex;
    grid-template-columns: none;
  }

  .wd-hero__panel {
    flex: 0 0 24%;
    margin-left: -5%;
    border-right: 0;
    clip-path: polygon(22% 0, 100% 0, 78% 100%, 0 100%);
    transition: flex-basis 700ms cubic-bezier(0.2, 0.75, 0.2, 1),
                filter 500ms ease,
                background-position 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
  }

  .wd-hero__panel:first-child {
    margin-left: 0;
    clip-path: polygon(0 0, 100% 0, 75% 100%, 0 100%);
  }

  .wd-hero__panel:nth-child(even) {
    clip-path: polygon(16% 0, 100% 0, 84% 100%, 0 100%);
  }

  .wd-hero__panel:last-child {
    clip-path: polygon(24% 0, 100% 0, 100% 100%, 0 100%);
  }

  @media (hover: hover) and (pointer: fine) {
    .wd-hero__panels:hover .wd-hero__panel {
      flex-basis: 18%;
      filter: brightness(0.58) saturate(0.7);
    }

    .wd-hero__panels:hover .wd-hero__panel:hover {
      z-index: 2;
      flex-basis: 48%;
      filter: brightness(1) saturate(1.05);
      background-position: center;
    }

    .wd-hero__panel-label {
      transition: opacity 400ms ease, transform 600ms cubic-bezier(0.2, 0.75, 0.2, 1);
    }

    .wd-hero__panels:hover .wd-hero__panel:not(:hover) .wd-hero__panel-label {
      opacity: 0.5;
      transform: scale(0.9);
    }

    .wd-hero__panels:hover .wd-hero__panel:hover .wd-hero__panel-label {
      transform: scale(1.08);
    }
  }

  .wd-hero__overlay {
    background: rgba(0, 0, 0, 0.16);
  }

  .wd-hero__content {
    min-height: clamp(570px, 55vw, 780px);
    padding: 55px 24px 118px;
  }

  .wd-hero__content > div { padding-block: 44px; }

  .wd-hero__title {
    font-size: clamp(4.5rem, 8.1vw, 7.7rem);
    letter-spacing: -0.035em;
    line-height: 0.9;
  }

  .wd-hero__tagline {
    font-size: clamp(1rem, 1.65vw, 1.35rem);
    letter-spacing: 0.08em;
  }

  .wd-hero__lead { margin-top: 20px; }

  .wd-hero__tagline { margin-top: 22px; }
  .wd-hero__lead { margin-top: 12px; font-family: var(--font-sans); }

  .wd-hero__panel-label {
    right: 10px;
    bottom: 24px;
    left: 10px;
    padding: 28px 10px 18px;
    border: 0;
    background: transparent;
    color: #fff;
    font-family: var(--font-sans);
    font-size: clamp(0.72rem, 1.12vw, 0.98rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1.3;
    text-shadow: 0 2px 16px #000;
    backdrop-filter: none;
  }

  .wd-hero__panel-label::before {
    position: absolute;
    top: 9px;
    left: 50%;
    color: var(--color-accent-light);
    font-family: var(--font-sans);
    font-size: 0.56rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    transform: translateX(-50%);
  }

  .wd-hero__panel:nth-child(1) .wd-hero__panel-label::before { content: "01"; }
  .wd-hero__panel:nth-child(2) .wd-hero__panel-label::before { content: "02"; }
  .wd-hero__panel:nth-child(3) .wd-hero__panel-label::before { content: "03"; }
  .wd-hero__panel:nth-child(4) .wd-hero__panel-label::before { content: "04"; }
  .wd-hero__panel:nth-child(5) .wd-hero__panel-label::before { content: "05"; }

  .wd-hero__panel-label small {
    margin-top: 9px;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--font-sans);
    font-size: clamp(0.52rem, 0.68vw, 0.64rem);
    letter-spacing: 0.12em;
  }

  .wd-hero__panel-label small::before {
    display: block;
    width: 28px;
    height: 1px;
    margin: 0 auto 9px;
    background: var(--color-accent);
    content: "";
  }

  .wd-section { padding-block: clamp(82px, 8vw, 120px); }

  #business .wd-container {
    display: grid;
    grid-template-columns: minmax(180px, 0.27fr) minmax(0, 1fr);
    align-items: stretch;
    gap: clamp(28px, 4vw, 54px);
  }

  #business .wd-section__head {
    display: block;
    margin: 0;
  }

  #business .wd-section__title {
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.25;
  }

  #business .wd-section__jp {
    margin-top: 34px;
    color: var(--color-accent-light);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    line-height: 2;
  }

  #business .wd-section__intro {
    margin-top: 20px;
    font-family: var(--font-sans);
    font-size: 0.87rem;
    line-height: 2;
  }

  .wd-business-card {
    min-height: 300px;
    padding: 22px 14px;
  }

  .wd-business-card__title {
    font-family: var(--font-sans);
    font-size: clamp(0.76rem, 1vw, 0.94rem);
    font-weight: 700;
    text-align: center;
  }

  .wd-business-card__text { text-align: center; }
  .wd-business-card__arrow { align-self: center; }

  .wd-feature { min-height: 560px; }

  #news .wd-container {
    display: grid;
    grid-template-columns: minmax(180px, 0.27fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 54px);
  }

  #news .wd-section__head {
    display: block;
    margin: 0;
  }

  #news .wd-section__title { font-size: clamp(2.2rem, 4vw, 3.6rem); }
}

@media (max-width: 900px) {
  :root { --header-height: 74px; }

  .wd-menu-button { display: inline-flex; }

  .wd-header__inner {
    width: calc(100% - 32px);
    margin-inline: auto;
    padding-left: 0;
  }

  .wd-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: auto;
    left: 0;
    display: block;
    width: 100%;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    max-height: calc(100vh - var(--header-height));
    max-height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 28px 32px 60px;
    background: rgba(5, 5, 5, 0.99);
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity var(--transition), transform var(--transition);
  }

  .wd-nav--open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .wd-nav__list {
    display: block;
    width: 100%;
    height: auto;
    max-width: 620px;
    margin-inline: auto;
  }

  .wd-nav__item {
    display: block;
    width: 100%;
    height: auto;
    border-bottom: 1px solid var(--color-border);
    opacity: 1;
    visibility: visible;
  }
  .wd-nav__link,
  .wd-nav__toggle { width: 100%; min-height: 62px; justify-content: space-between; font-size: 0.9rem; }

  .wd-nav__item:last-child {
    height: auto;
    margin: 24px 0 0;
    border-bottom: 0;
  }

  .wd-nav__item:last-child .wd-nav__link {
    width: 100%;
    min-height: 62px;
    justify-content: center;
  }

  .wd-dropdown {
    position: static;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    border: 0;
    background: #0b0b0d;
    box-shadow: none;
    opacity: 1;
    pointer-events: none;
    transform: none;
    transition: max-height var(--transition), padding var(--transition);
  }

  .wd-dropdown--open { max-height: 360px; padding-block: 10px; pointer-events: auto; transform: none; }
  .wd-dropdown__link { min-height: 48px; }

  .wd-business-grid { grid-template-columns: repeat(3, 1fr); }
  .wd-business-card { min-height: 320px; }
  .wd-feature, .wd-feature--reverse { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .wd-container { width: min(calc(100% - 40px), var(--content-width)); }
  .wd-header__inner { width: calc(100% - 40px); }
  .wd-logo { min-height: 52px; }
  .wd-logo__image { width: 96px; height: 42px; margin: -5px 0 3px; }
  .wd-logo__text::after { font-size: 0.33rem; }
  .wd-logo__company { display: none; }
  .wd-logo__mark,
  .wd-logo__group { font-size: 1.35rem; }

  .wd-hero { min-height: 620px; }
  .wd-hero__content { min-height: 620px; padding: calc(var(--header-height) + 30px) 20px 88px; }
  .wd-hero__panels {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    filter: saturate(0.75);
  }
  .wd-hero__panel { border: 0; background-position: center; }
  .wd-hero__panel-label { display: none; }
  .wd-hero__overlay { background: linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.38) 45%, rgba(0, 0, 0, 0.84)); }
  .wd-hero__title { font-size: clamp(2.75rem, 15vw, 5.2rem); line-height: 0.94; }
  .wd-hero__content > div { padding: 36px 8px; }
  .wd-hero__content > div::before {
    inset: -40px -28px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.28) 54%, transparent 82%);
  }
  .wd-hero__tagline { margin-top: 18px; font-size: clamp(0.76rem, 3.4vw, 0.92rem); letter-spacing: 0.02em; }
  .wd-hero__lead { max-width: none; margin-inline: auto; font-size: clamp(0.8rem, 3.6vw, 1rem); letter-spacing: 0.05em; line-height: 1.8; }
  .wd-hero__mobile-links {
    position: absolute;
    z-index: 3;
    right: 20px;
    bottom: 24px;
    left: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 14px;
  }
  .wd-hero__mobile-link {
    display: inline-flex;
    min-height: 36px;
    align-items: center;
    color: #c8c8cd;
    font-size: 0.7rem;
    font-weight: 700;
  }
  .wd-hero__mobile-link::before { margin-right: 6px; color: var(--color-accent-light); content: "/"; }

  .wd-section__head { display: block; }
  .wd-section { padding-block: 64px; }
  .wd-section__head { margin-bottom: 36px; }
  .wd-section__intro { margin-top: 18px; font-size: 1rem; line-height: 1.8; }
  .wd-section__jp { color: var(--color-accent-light); font-size: 0.9rem; }
  .wd-section__title,
  .wd-dual-about__title,
  .wd-page-hero__title,
  .wd-business-card__title {
    overflow-wrap: normal;
    word-break: keep-all;
  }
  .wd-business-grid { grid-template-columns: 1fr; }
  .wd-business-card {
    display: grid;
    min-height: 150px;
    grid-template-columns: 58px minmax(0, 1fr) 28px;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 16px;
    padding: 20px;
  }
  .wd-business-card__number {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    font-size: 1rem;
  }
  .wd-business-card__icon {
    width: 52px;
    height: 52px;
    grid-column: 1;
    grid-row: 2;
    margin: 8px 0 0;
  }
  .wd-business-card__title {
    min-height: 0;
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    justify-content: flex-start;
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: left;
  }
  .wd-business-card__text {
    min-height: 0;
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    margin-top: 8px;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: left;
  }
  .wd-business-card__arrow {
    grid-column: 3;
    grid-row: 1 / 3;
    align-self: center;
    margin: 0;
    font-size: 1.5rem;
  }

  .wd-feature,
  .wd-feature--reverse { display: block; min-height: 0; }
  .wd-feature--reverse .wd-feature__visual { order: initial; }
  .wd-feature__visual { min-height: 48vw; }
  .wd-feature__content { padding: 42px 24px 50px; }

  .wd-company,
  .wd-contact-layout,
  .wd-overview { grid-template-columns: 1fr; }

  .wd-dual-about { grid-template-columns: 1fr; }
  .wd-dual-about__panel {
    min-height: 390px;
    padding: 40px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }
  .wd-dual-about__panel:last-child { border-bottom: 0; }
  .wd-dual-about__text { font-size: 1rem; line-height: 1.9; }
  .wd-dual-about__text br { display: none; }

  .wd-company__row { grid-template-columns: 110px 1fr; }
  .wd-form__grid { grid-template-columns: 1fr; }
  .wd-form__field--full { grid-column: auto; }
  .wd-confirm__list > div { grid-template-columns: 1fr; gap: 5px; }
  .wd-confirm__actions { flex-direction: column-reverse; }
  .wd-confirm__actions .wd-button { width: 100%; }
  .wd-message-page__title { white-space: normal; }

  .wd-page-hero { min-height: 500px; padding-bottom: 52px; }
  .wd-page-hero__services { margin-top: 18px; font-size: 0.86rem; line-height: 1.75; }
  .wd-page-hero__copy { margin-top: 10px; font-size: 0.9rem; }
  .wd-coming-soon { padding: calc(var(--header-height) + 40px) 0 40px; }
  .wd-coming-soon__panel {
    min-height: 250px;
    grid-template-columns: 64px 1fr;
    padding: 30px 24px;
  }
  .wd-coming-soon__number { font-size: 3.3rem; }
  .wd-coming-soon__content { padding-left: 20px; }
  .wd-coming-soon__title { font-size: clamp(2rem, 10vw, 3.4rem); }
  .wd-coming-soon__jp { margin-top: 16px; font-size: 0.9rem; line-height: 1.8; }
  .wd-apparel-collection__head {
    display: block;
  }
  .wd-apparel-collection__head .wd-section__number {
    margin-bottom: 10px;
  }
  .wd-apparel-collection__head p {
    margin-top: 24px;
  }
  .wd-apparel-gallery {
    min-height: 760px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 2fr 1fr 1fr;
  }
  .wd-apparel-gallery__item--main {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .wd-apparel-gallery__item:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .wd-apparel-gallery__item:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
  }
  .wd-apparel-gallery__item:nth-child(4) {
    grid-column: 2;
    grid-row: 3;
  }
  main > .wd-section--soft[aria-labelledby="service-title"] > .wd-container {
    display: block;
  }
  main > .wd-section--soft[aria-labelledby="service-title"] .wd-section__head {
    margin-bottom: 36px;
  }
  main > .wd-section--soft[aria-labelledby="service-title"] .wd-service-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  main > .wd-section--soft[aria-labelledby="service-title"] .wd-service-list__item {
    min-height: 210px;
  }
  .wd-service-list { grid-template-columns: 1fr; }
  .wd-strength-grid { grid-template-columns: 1fr; }
  .wd-strength-card { min-height: 210px; }
  main > .wd-section[aria-labelledby="strength-title"] .wd-strength-card {
    min-height: 200px;
  }

  .wd-footer__grid { grid-template-columns: 1fr 1fr; }
  .wd-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  body { font-size: 16px; line-height: 1.8; }
  .wd-container { width: calc(100% - 32px); }
  .wd-nav { padding-inline: 20px; }
  .wd-hero { min-height: 520px; }
  .wd-hero__content {
    min-height: 520px;
    padding-top: calc(var(--header-height) + 18px);
    padding-bottom: 72px;
  }
  .wd-hero__content > div { transform: translateY(60px); }
  .wd-hero__mobile-links { bottom: 14px; }
  .wd-hero__eyebrow { letter-spacing: 0.25em; }
  .wd-section { padding-block: 56px; }
  .wd-section__title { font-size: clamp(2rem, 10.5vw, 3rem); }
  .wd-section__title--medium { font-size: clamp(1.85rem, 9.5vw, 2.7rem); }
  .wd-business-card { min-height: 142px; column-gap: 12px; padding: 18px 16px; }
  .wd-business-card__title { font-size: 0.84rem; letter-spacing: 0.04em; }
  .wd-business-card__text { font-size: 0.88rem; }
  main > .wd-section--soft[aria-labelledby="service-title"] .wd-service-list {
    grid-template-columns: 1fr;
  }
  main > .wd-section--soft[aria-labelledby="service-title"] .wd-service-list__item {
    min-height: 180px;
  }
  .wd-feature__content,
  .wd-dual-about__panel { padding-inline: 20px; }
  .wd-company__row,
  .wd-news__item { grid-template-columns: 1fr; gap: 4px; }
  .wd-form__input, .wd-form__select { min-height: 56px; }
  .wd-form__select { height: 56px; }
  .wd-button { width: 100%; min-height: 56px; }
  .wd-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 20px;
  }
  .wd-footer__brand { grid-column: 1 / -1; text-align: center; }
  .wd-footer__logo { display: flex; width: fit-content; margin: 0 auto 18px; }
  .wd-footer__tagline { margin: 0 auto 26px; text-align: center; }
  .wd-footer__address { text-align: left; }
  .wd-footer__links { gap: 7px; }
  .wd-footer__link { font-size: 0.74rem; line-height: 1.55; }
  .wd-footer__logo .wd-logo__company { display: none; }
  .wd-footer__grid { row-gap: 30px; padding: 36px 0; }
  .wd-footer__bottom { display: grid; gap: 10px; }
  .wd-back-to-top { right: 16px; bottom: 16px; }
}

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