* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family:
    "Pretendard",
    -apple-system,
    sans-serif;
  color: #1c1a17;
  background: #14120f;
  overflow-x: hidden;
}

::selection {
  background: #bf9b4f;
  color: #14120f;
}

input,
textarea,
select,
button {
  font-family: inherit;
}

a {
  color: inherit;
}

details summary::-webkit-details-marker {
  display: none;
}

@keyframes dwbob {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(9px);
    opacity: 0.4;
  }
}

@keyframes dwline {
  0% {
    transform: scaleY(0);
  }

  60%,
  100% {
    transform: scaleY(1);
  }
}

/* transform-only: if the compositor pauses these (unfocused tab) content stays at opacity 1 — never hidden */
@keyframes dwfadeup {
  from {
    transform: translateY(34px);
  }

  to {
    transform: translateY(0);
  }
}

@keyframes dwfadeleft {
  from {
    transform: translateX(-50px);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes dwfaderight {
  from {
    transform: translateX(50px);
  }

  to {
    transform: translateX(0);
  }
}

@keyframes dwdraw {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.dw-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.035);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition:
    opacity 1.1s ease,
    transform 5s ease;
}

.dw-hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.dw-hero-control {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 22px auto 0;
  color: #e7d4a8;
}

.dw-hero-toggle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(231, 212, 168, 0.55);
  background: rgba(20, 18, 15, 0.34);
  color: #e7d4a8;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.dw-hero-toggle:hover {
  background: #bf9b4f;
  border-color: #bf9b4f;
  color: #14120f;
}

.dw-hero-status {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: min(56vw, 260px);
}

.dw-hero-track {
  position: relative;
  width: min(42vw, 190px);
  height: 2px;
  overflow: hidden;
  background: rgba(231, 212, 168, 0.28);
}

.dw-hero-progress {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: #bf9b4f;
}

.dw-hero-count {
  min-width: 46px;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(243, 237, 224, 0.72);
}

@keyframes dwGoldTextShimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.dw-gold-shimmer {
  display: inline-block;
  background: linear-gradient(
    105deg,
    #bf9b4f 0%,
    #f6e3a0 22%,
    #fff5c7 34%,
    #d8b45d 48%,
    #9d7427 66%,
    #f2d98a 82%,
    #bf9b4f 100%
  );
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #e7d4a8;
  animation: dwGoldTextShimmer 4.8s ease-in-out infinite;
  filter: drop-shadow(0 8px 20px rgba(191, 155, 79, 0.24));
}

.dw-gold-strong {
  font-weight: 700;
}

button.dw-cta,
#dw-form button[type="submit"] {
  position: relative !important;
  z-index: 0;
  overflow: hidden;
  background-repeat: no-repeat;
  transition:
    color 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

button.dw-cta::before,
#dw-form button[type="submit"]::before {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(
    ellipse at center,
    rgba(231, 212, 168, 0.26),
    rgba(191, 155, 79, 0.1) 42%,
    transparent 74%
  );
  filter: blur(10px);
  opacity: 0.58;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

button.dw-cta::after,
#dw-form button[type="submit"]::after {
  content: none;
}

button.dw-cta:hover,
#dw-form button[type="submit"]:hover {
  color: #14120f !important;
  border-color: #d8b45d !important;
  background-image: linear-gradient(
    105deg,
    #bf9b4f 0%,
    #f6e3a0 22%,
    #fff5c7 34%,
    #d8b45d 48%,
    #9d7427 66%,
    #f2d98a 82%,
    #bf9b4f 100%
  ) !important;
  background-size: 260% 100% !important;
  animation: dwGoldTextShimmer 2.8s ease-in-out infinite;
  box-shadow: 0 16px 36px -22px rgba(191, 155, 79, 0.8);
}

@keyframes dwProcessGlow {
  0%,
  20% {
    background: rgba(191, 155, 79, 0.075);
    box-shadow: 0 18px 44px -34px rgba(191, 155, 79, 0.85);
  }

  30%,
  100% {
    background: transparent;
    box-shadow: none;
  }
}

@keyframes dwProcessLine {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }

  6%,
  22% {
    opacity: 1;
    transform: scaleX(1);
  }

  32%,
  100% {
    opacity: 0;
    transform: scaleX(1);
  }
}

.dw-process-card {
  position: relative !important;
  overflow: hidden;
  animation: dwProcessGlow 6.4s ease-in-out infinite;
  animation-delay: var(--process-delay, 0s);
}

.dw-process-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 2px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #bf9b4f 22%,
    #f6e3a0 50%,
    #bf9b4f 78%,
    transparent 100%
  );
  animation: dwProcessLine 6.4s ease-in-out infinite;
  animation-delay: var(--process-delay, 0s);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .dw-hero-slide {
    transition: none;
  }

  .dw-gold-shimmer,
  button.dw-cta:hover,
  #dw-form button[type="submit"]:hover {
    animation: none;
  }

  .dw-process-card,
  .dw-process-card::before {
    animation: none;
  }
}

/* Layout and shared components */
:root {
  --dw-black: #14120f;
  --dw-ink: #1c1a17;
  --dw-gold: #bf9b4f;
  --dw-gold-soft: #e7d4a8;
  --dw-paper: #f7f4ee;
  --dw-line: #e7e1d4;
  --dw-muted: #7d7466;
  --dw-container: 1200px;
}

.dw-container {
  max-width: var(--dw-container);
  margin: 0 auto;
}

.dw-section {
  scroll-margin-top: 72px;
  padding: clamp(80px, 11vw, 160px) clamp(20px, 5vw, 72px);
}

.dw-section--overview,
.dw-section--location,
.dw-section--faq {
  background: #fff;
}

.dw-section--types,
.dw-section--process {
  background: var(--dw-paper);
}

.dw-section--location {
  overflow: hidden;
}

.dw-section-head {
  margin-bottom: clamp(48px, 6vw, 80px);
}

.dw-section-head--center {
  text-align: center;
}

.dw-section-head--spacious {
  margin-bottom: clamp(56px, 7vw, 96px);
}

.dw-section-head--dark {
  color: #fff;
}

.dw-section-kicker {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(13px, 2.4vw, 18px);
  letter-spacing: 0.2em;
  color: var(--dw-gold);
  margin-bottom: 16px;
}

.dw-section-kicker--large {
  font-size: clamp(18px, 2.4vw, 26px);
  letter-spacing: 0.3em;
}

.dw-section-title {
  margin: 0;
  font-weight: 300;
  font-size: clamp(28px, 4.4vw, 52px);
  letter-spacing: -0.02em;
}

.dw-title-accent,
.dw-contact-accent {
  color: var(--dw-gold);
  font-weight: 700;
}

.dw-section-lead {
  margin: 20px auto 0;
  max-width: 520px;
  color: var(--dw-muted);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.85;
  font-weight: 300;
}

.dw-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dw-parallax-fill {
  position: absolute;
  inset: -12% 0;
  overflow: hidden;
}

.dw-cta--gold,
.dw-cta--mobile,
.dw-cta--hero,
.dw-cta--contact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--dw-gold);
  border: none;
  color: var(--dw-black);
  font-weight: 700;
  border-radius: 2px;
  cursor: pointer;
}

.dw-cta--hero {
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 17px 36px;
}

.dw-cta--contact {
  gap: 10px;
  margin-top: 40px;
  font-size: 16px;
  padding: 18px 44px;
}

.dw-cta--text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  background: transparent;
  border: none;
  color: var(--dw-ink);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--dw-gold);
  padding: 0 0 6px;
  cursor: pointer;
}

.dw-is-hidden {
  display: none;
}

/* Loader */
.dw-loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--dw-black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  transition: opacity 0.8s ease;
}

.dw-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: var(--dw-gold);
}

.dw-loader-line {
  width: 1px;
  height: 30px;
  background: var(--dw-gold);
  transform-origin: top;
  animation: dwline 1.4s ease infinite;
}

.dw-loader-title {
  font-family: "Pretendard";
  color: #cfc7b8;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.28em;
  padding-left: 0.28em;
}

/* Navigation */
.dw-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 72px);
  transition:
    background 0.5s ease,
    box-shadow 0.5s ease,
    padding 0.5s ease;
}

.dw-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.dw-logo-mark {
  color: var(--dw-gold);
  display: flex;
  transition: color 0.5s ease;
}

.dw-logo-text {
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.01em;
  color: #fff;
  transition: color 0.5s ease;
}

.dw-menu {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 42px);
}

.dw-menu-link {
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.5s ease;
}

.dw-cta--nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(191, 155, 79, 0.7);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 2px;
  cursor: pointer;
}

.dw-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.dw-hamburger-line {
  display: block;
  width: 26px;
  height: 1.5px;
  background: #fff;
  transition: background 0.5s ease;
}

.dw-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(20, 18, 15, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.dw-mobile-link {
  text-decoration: none;
  color: #f3ede0;
  font-size: 24px;
  font-weight: 300;
  padding: 14px;
}

.dw-cta--mobile {
  margin-top: 18px;
  gap: 8px;
  font-size: 16px;
  padding: 14px 36px;
}

/* Hero */
.dw-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.dw-hero-bg {
  position: absolute;
  inset: -3%;
  z-index: 0;
  will-change: transform;
  overflow: hidden;
}

.dw-hero-slide--one,
.dw-hero-slide--two,
.dw-hero-slide--three {
  background-image: var(--dw-hero-image);
}

.dw-hero-slide--one {
  --dw-hero-image:
    repeating-linear-gradient(
      50deg,
      rgba(255, 255, 255, 0.045) 0,
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px,
      transparent 18px
    ),
    linear-gradient(180deg, rgba(16, 14, 11, 0.12), rgba(16, 14, 11, 0.42)),
    url("../image/hero-ai-01.jpg");
}

.dw-hero-slide--two {
  --dw-hero-image:
    repeating-linear-gradient(
      50deg,
      rgba(255, 255, 255, 0.045) 0,
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px,
      transparent 18px
    ),
    linear-gradient(180deg, rgba(16, 14, 11, 0.12), rgba(16, 14, 11, 0.42)),
    url("../image/hero-ai-02.jpg");
}

.dw-hero-slide--three {
  --dw-hero-image:
    repeating-linear-gradient(
      50deg,
      rgba(255, 255, 255, 0.045) 0,
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px,
      transparent 18px
    ),
    linear-gradient(180deg, rgba(16, 14, 11, 0.12), rgba(16, 14, 11, 0.42)),
    url("../image/hero-ai-03.jpg");
}

.dw-hero-blob {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
}

.dw-hero-blob--primary {
  width: min(60vw, 560px);
  height: min(60vw, 560px);
  top: -12%;
  left: -8%;
  background: radial-gradient(
    circle,
    rgba(191, 155, 79, 0.22),
    transparent 68%
  );
  filter: blur(30px);
}

.dw-hero-blob--secondary {
  width: min(48vw, 440px);
  height: min(48vw, 440px);
  bottom: -10%;
  right: -6%;
  background: radial-gradient(
    circle,
    rgba(217, 194, 145, 0.16),
    transparent 70%
  );
  filter: blur(34px);
}

.dw-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(16, 14, 11, 0.24) 0%,
    rgba(16, 14, 11, 0.04) 42%,
    rgba(16, 14, 11, 0.48) 100%
  );
}

.dw-hero-content {
  position: relative;
  z-index: 3;
  padding: 120px clamp(20px, 5vw, 40px);
}

.dw-hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 30px;
}

.dw-hero-line {
  width: 38px;
  height: 1px;
  background: rgba(217, 194, 145, 0.7);
}

.dw-hero-line--left {
  transform-origin: right;
}

.dw-hero-line--right {
  transform-origin: left;
}

.dw-hero-brandline {
  font-size: 12px;
  letter-spacing: 0.42em;
  color: #d9c291;
  padding-left: 0.42em;
}

.dw-hero-title {
  margin: 0;
  font-weight: 300;
  color: #fff;
  font-size: clamp(38px, 7.5vw, 88px);
  line-height: 1.24;
  letter-spacing: -0.025em;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.36);
  transition: transform 0.72s cubic-bezier(0.16, 0.84, 0.44, 1);
}

.dw-hero-copy {
  margin: 34px auto 0;
  max-width: 520px;
  color: rgba(255, 250, 240, 0.9);
  font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.85;
  font-weight: 300;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
}

.dw-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 44px;
}

.dw-scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.dw-scroll-label {
  font-size: 10px;
  letter-spacing: 0.35em;
  color: rgba(243, 237, 224, 0.6);
  padding-left: 0.35em;
}

.dw-scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(#d9c291, transparent);
  animation: dwbob 2s ease-in-out infinite;
}

/* Intro */
.dw-intro {
  background: var(--dw-paper);
  padding: clamp(90px, 13vw, 180px) clamp(20px, 5vw, 72px);
  text-align: center;
}

.dw-intro-inner {
  max-width: 920px;
  margin: 0 auto;
}

.dw-intro-kicker {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(20px, 2.6vw, 28px);
  color: var(--dw-gold);
  margin-bottom: 26px;
}

.dw-intro-title {
  margin: 0;
  font-weight: 300;
  font-size: clamp(25px, 4.2vw, 48px);
  line-height: 1.5;
  letter-spacing: -0.02em;
  color: var(--dw-ink);
}

.dw-text-highlight {
  background-image: linear-gradient(
    rgba(191, 155, 79, 0.32),
    rgba(191, 155, 79, 0.32)
  );
  background-repeat: no-repeat;
  background-position: 0 92%;
  background-size: 0% 40%;
  padding: 0 4px;
  font-weight: 700;
}

.dw-intro-copy {
  margin: 34px auto 0;
  max-width: 560px;
  color: var(--dw-muted);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.9;
  font-weight: 300;
}

/* Premium */
.dw-premium {
  background: var(--dw-black);
  position: relative;
  overflow: hidden;
}

.dw-premium-bg-blob {
  position: absolute;
  z-index: 0;
  width: min(55vw, 620px);
  height: min(55vw, 620px);
  border-radius: 50%;
  top: 6%;
  right: -12%;
  background: radial-gradient(
    circle,
    rgba(191, 155, 79, 0.14),
    transparent 70%
  );
  filter: blur(40px);
  pointer-events: none;
}

.dw-premium-head {
  position: relative;
  z-index: 2;
  padding: clamp(80px, 11vw, 150px) clamp(20px, 5vw, 72px)
    clamp(50px, 7vw, 90px);
}

.dw-premium-panel {
  position: relative;
  min-height: clamp(540px, 90vh, 880px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.dw-premium-panel--copy-left .dw-premium-title {
  max-width: 640px;
}

.dw-premium-panel--copy-right .dw-premium-copy {
  display: flex;
  justify-content: flex-end;
}

.dw-premium-media {
  position: absolute;
  inset: -10% 0;
  z-index: 0;
  overflow: hidden;
}

.dw-premium-panel-blob {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
}

.dw-premium-panel-blob--bottom-left {
  width: 420px;
  height: 420px;
  bottom: -14%;
  left: -8%;
  background: radial-gradient(
    circle,
    rgba(217, 194, 145, 0.18),
    transparent 68%
  );
  filter: blur(30px);
}

.dw-premium-panel-blob--top-right {
  width: 460px;
  height: 460px;
  top: -16%;
  right: -10%;
  background: radial-gradient(
    circle,
    rgba(191, 155, 79, 0.16),
    transparent 68%
  );
  filter: blur(34px);
}

.dw-premium-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.dw-premium-shade--left {
  background: linear-gradient(
    90deg,
    rgba(16, 14, 11, 0.88) 0%,
    rgba(16, 14, 11, 0.5) 45%,
    rgba(16, 14, 11, 0.12) 100%
  );
}

.dw-premium-shade--right {
  background: linear-gradient(
    90deg,
    rgba(16, 14, 11, 0.12) 0%,
    rgba(16, 14, 11, 0.5) 55%,
    rgba(16, 14, 11, 0.9) 100%
  );
}

.dw-premium-number {
  position: absolute;
  top: clamp(30px, 6vw, 80px);
  z-index: 2;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: clamp(120px, 20vw, 320px);
  line-height: 0.8;
  color: rgba(217, 194, 145, 0.12);
}

.dw-premium-number--right {
  right: clamp(20px, 5vw, 72px);
}

.dw-premium-number--left {
  left: clamp(20px, 5vw, 72px);
}

.dw-premium-copy {
  position: relative;
  z-index: 3;
  max-width: var(--dw-container);
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 72px) clamp(56px, 8vw, 110px);
}

.dw-premium-copy-inner {
  max-width: 640px;
}

.dw-premium-copy-inner--right {
  text-align: right;
}

.dw-premium-icon {
  display: inline-flex;
  color: var(--dw-gold);
  margin-bottom: 18px;
}

.dw-premium-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: #d9c291;
  margin-bottom: 14px;
}

.dw-premium-title {
  margin: 0;
  max-width: 640px;
  font-weight: 400;
  color: #fff;
  font-size: clamp(27px, 4.4vw, 54px);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.dw-premium-text {
  margin: 22px 0 0;
  max-width: 580px;
  color: rgba(243, 237, 224, 0.75);
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.85;
  font-weight: 300;
}

.dw-premium-copy-inner--right .dw-premium-text,
.dw-premium-copy-inner--right .dw-premium-title {
  margin-left: auto;
}

/* Overview */
.dw-overview-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
}

.dw-overview-media {
  position: relative;
  aspect-ratio: 4 / 3.3;
  overflow: hidden;
  background: #f3ede0;
}

.dw-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.dw-info-cell {
  position: relative;
  padding: 24px 0;
}

.dw-info-cell--bordered {
  border-top: 1px solid var(--dw-line);
}

.dw-info-cell--padded {
  padding-left: clamp(16px, 2vw, 28px);
}

.dw-info-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--dw-ink);
  transform-origin: left;
}

.dw-info-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #a99f8c;
  text-transform: uppercase;
}

.dw-info-value {
  margin-top: 10px;
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 600;
}

/* Unit */
.dw-unit-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 70px);
  align-items: center;
  margin-bottom: clamp(48px, 7vw, 100px);
}

.dw-unit-row--last {
  margin-bottom: 0;
}

.dw-unit-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #fff;
  border: 1px solid var(--dw-line);
  overflow: hidden;
}

.dw-unit-media--best {
  border-color: var(--dw-gold);
}

.dw-unit-media--right {
  order: 2;
}

.dw-unit-copy--left {
  order: 1;
}

.dw-unit-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 3vw, 36px);
  background: #fff;
}

.dw-unit-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.dw-unit-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: var(--dw-gold);
  color: var(--dw-black);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 6px 14px;
}

.dw-unit-letter {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(56px, 8vw, 110px);
  line-height: 0.9;
  font-weight: 300;
  color: var(--dw-gold);
}

.dw-unit-size {
  margin-top: 14px;
  font-size: clamp(23px, 3vw, 36px);
  font-weight: 300;
}

.dw-unit-size-note {
  font-size: 0.5em;
  color: #a99f8c;
  font-weight: 400;
}

.dw-unit-label {
  margin-top: 8px;
  color: var(--dw-gold);
  font-weight: 600;
}

.dw-unit-text {
  margin: 20px 0 0;
  max-width: 380px;
  color: #5b5347;
  font-size: 15px;
  line-height: 1.85;
  font-weight: 300;
}

.dw-unit-note {
  margin: clamp(40px, 5vw, 64px) 0 0;
  text-align: center;
  color: #a99f8c;
  font-size: 12.5px;
}

/* Monument */
.dw-monument {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.dw-monument-bg {
  position: absolute;
  inset: -10%;
  z-index: 0;
  will-change: transform;
  background:
    linear-gradient(180deg, rgba(16, 14, 11, 0.25), rgba(16, 14, 11, 0.72)),
    url("../image/monument-ai.jpg") center / cover no-repeat;
}

.dw-monument-blob {
  position: absolute;
  z-index: 1;
  width: min(60vw, 560px);
  height: min(60vw, 560px);
  border-radius: 50%;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(
    circle,
    rgba(191, 155, 79, 0.18),
    transparent 68%
  );
  filter: blur(40px);
  pointer-events: none;
}

.dw-monument-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(16, 14, 11, 0.66);
}

.dw-monument-content {
  position: relative;
  z-index: 2;
  padding: 90px clamp(20px, 5vw, 40px);
}

.dw-monument-kicker {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: clamp(16px, 3.2vw, 30px);
  color: #d9c291;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.dw-monument-title {
  margin: 0;
  font-weight: 200;
  color: #fff;
  font-size: clamp(28px, 5vw, 62px);
  line-height: 1.4;
  letter-spacing: -0.02em;
}

.dw-monument-accent {
  font-weight: 600;
  color: var(--dw-gold-soft);
}

/* Location */
.dw-location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.dw-location-title {
  margin: 0 0 30px;
  font-weight: 300;
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.dw-location-list {
  display: flex;
  flex-direction: column;
}

.dw-location-item {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--dw-line);
}

.dw-location-item--first {
  position: relative;
  border-top: none;
}

.dw-location-item--last {
  border-bottom: 1px solid var(--dw-line);
}

.dw-location-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--dw-ink);
  transform-origin: left;
}

.dw-location-icon {
  color: var(--dw-gold);
  flex: none;
}

.dw-location-item-title {
  font-weight: 600;
  font-size: 17px;
}

.dw-location-item-text {
  margin-top: 5px;
  color: var(--dw-muted);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
}

.dw-location-media {
  position: relative;
  aspect-ratio: 4 / 3.5;
  overflow: hidden;
  background: #f3ede0;
}

.dw-location-parallax {
  position: absolute;
  inset: 0 -8%;
  overflow: hidden;
}

/* Process */
.dw-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.dw-process-step {
  padding: clamp(28px, 3vw, 40px) clamp(18px, 2vw, 30px);
  border-top: 1px solid #d8d0c0;
}

.dw-process-step--first {
  --process-delay: 0s;
  position: relative;
  border-top: none;
}

.dw-process-step--second {
  --process-delay: 1.6s;
}

.dw-process-step--third {
  --process-delay: 3.2s;
}

.dw-process-step--fourth {
  --process-delay: 4.8s;
}

.dw-process-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--dw-gold);
  transform-origin: left;
}

.dw-process-head {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #cdbf9c;
}

.dw-process-step--first .dw-process-head {
  color: var(--dw-gold);
}

.dw-process-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 300;
  line-height: 1;
}

.dw-process-title {
  margin: 18px 0 10px;
  font-size: 18px;
  font-weight: 600;
}

.dw-process-text {
  margin: 0;
  color: var(--dw-muted);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
}

/* FAQ */
.dw-faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.dw-faq-list {
  display: flex;
  flex-direction: column;
}

.dw-faq-item {
  border-top: 1px solid var(--dw-line);
}

.dw-faq-item--last {
  border-bottom: 1px solid var(--dw-line);
}

.dw-faq-summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 4px;
  font-weight: 600;
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.dw-faq-toggle {
  color: var(--dw-gold);
  font-weight: 300;
  font-size: 22px;
  line-height: 1;
}

.dw-faq-answer {
  margin: 0;
  padding: 0 4px 26px;
  color: #5b5347;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
}

/* Contact */
.dw-contact {
  position: relative;
  background: var(--dw-black);
  padding: clamp(90px, 12vw, 170px) clamp(20px, 5vw, 72px);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.dw-contact-blob {
  position: absolute;
  z-index: 0;
  width: min(60vw, 560px);
  height: min(60vw, 560px);
  border-radius: 50%;
  top: -18%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(
    circle,
    rgba(191, 155, 79, 0.16),
    transparent 68%
  );
  filter: blur(40px);
  pointer-events: none;
}

.dw-contact-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.dw-contact-title {
  margin: 0;
  font-weight: 300;
  font-size: clamp(28px, 4.6vw, 52px);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.dw-contact-copy {
  margin: 24px auto 0;
  max-width: 480px;
  color: rgba(243, 237, 224, 0.72);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.85;
  font-weight: 300;
}

/* Footer */
.dw-footer {
  background: #0e0c0a;
  color: #9b9182;
  padding: clamp(56px, 7vw, 90px) clamp(20px, 5vw, 72px) 44px;
}

.dw-footer-inner {
  max-width: var(--dw-container);
  margin: 0 auto;
}

.dw-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.dw-footer-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
  color: var(--dw-gold);
}

.dw-footer-logo-text {
  font-weight: 600;
  font-size: 18px;
  color: #e7dfd0;
}

.dw-footer-copy {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #8a8273;
  max-width: 340px;
  font-weight: 300;
}

.dw-cta--footer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  background: transparent;
  border: 1px solid var(--dw-gold);
  color: var(--dw-gold);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 12px 26px;
  border-radius: 2px;
  cursor: pointer;
}

.dw-footer-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  letter-spacing: 0.2em;
  color: var(--dw-gold);
  margin-bottom: 18px;
}

.dw-footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.dw-footer-link {
  text-decoration: none;
  color: #9b9182;
}

.dw-footer-meta {
  padding-top: 30px;
  font-size: 12.5px;
  line-height: 1.9;
  color: #6a6356;
}

.dw-footer-notice {
  margin-top: 10px;
  color: #564f44;
}

.dw-footer-copyright {
  margin-top: 14px;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.08em;
  color: #7d7568;
}

/* Floating and modal */
.dw-floating-actions {
  position: fixed;
  right: clamp(12px, 1.8vw, 26px);
  bottom: clamp(14px, 2.4vw, 30px);
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.dw-floating-button {
  width: clamp(58px, 7vw, 72px);
  height: clamp(58px, 7vw, 72px);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  box-shadow: 0 10px 26px -10px rgba(0, 0, 0, 0.5);
  transition:
    transform 0.2s ease,
    background 0.3s ease;
}

.dw-floating-button--consult {
  background: var(--dw-gold);
  color: var(--dw-black);
  border: none;
}

.dw-floating-button--top {
  background: #fff;
  color: var(--dw-black);
  border: 1px solid var(--dw-gold);
}

.dw-floating-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.dw-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.dw-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 14, 11, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dw-modal-panel {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: #fff;
  padding: clamp(28px, 5vw, 42px);
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}

.dw-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #847b6b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dw-modal-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 26px;
}

.dw-modal-mark {
  color: var(--dw-gold);
  display: flex;
  margin-bottom: 14px;
}

.dw-modal-title {
  margin: 0;
  font-size: 23px;
  font-weight: 600;
}

.dw-modal-copy {
  margin: 10px 0 0;
  color: #847b6b;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 300;
}

.dw-consult-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.dw-form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.dw-form-input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #d8d0c0;
  padding: 11px 2px;
  font-size: 15px;
  outline: none;
  background: transparent;
}

.dw-agree {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: var(--dw-muted);
  line-height: 1.5;
  cursor: pointer;
}

.dw-agree-input {
  margin-top: 2px;
  accent-color: var(--dw-gold);
  width: 16px;
  height: 16px;
}

.dw-policy-link {
  color: #a07e33;
  text-decoration: underline;
}

.dw-modal-submit {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--dw-black);
  color: #fff;
  border: none;
  font-weight: 600;
  font-size: 15px;
  padding: 16px;
  border-radius: 2px;
  cursor: pointer;
}

.dw-form-success {
  display: none;
  text-align: center;
  padding: 24px 6px 10px;
}

.dw-success-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--dw-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dw-success-title {
  margin: 22px 0 8px;
  font-size: 21px;
  font-weight: 600;
}

.dw-success-text {
  margin: 0;
  color: var(--dw-muted);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
}

@media (max-width: 920px) {
  .dw-section,
  .dw-contact {
    padding-left: 20px;
    padding-right: 20px;
  }

  .dw-premium-panel {
    min-height: 620px;
  }

  .dw-premium-copy,
  .dw-premium-copy--right {
    display: block;
    padding-bottom: 64px;
  }

  .dw-premium-copy-inner,
  .dw-premium-copy-inner--right {
    max-width: 100%;
    text-align: left;
  }

  .dw-premium-copy-inner--right .dw-premium-title,
  .dw-premium-copy-inner--right .dw-premium-text {
    margin-left: 0;
  }

  .dw-info-grid,
  .dw-process-grid,
  .dw-footer-grid {
    grid-template-columns: 1fr;
  }

  .dw-info-cell--padded {
    padding-left: 0;
  }

  .dw-unit-media--right,
  .dw-unit-copy--left {
    order: initial;
  }
}

@media (max-width: 640px) {
  .dw-hero-content {
    padding-top: 104px;
    padding-bottom: 110px;
  }

  .dw-hero-eyebrow {
    gap: 10px;
  }

  .dw-hero-line {
    width: 26px;
  }

  .dw-hero-brandline {
    font-size: 10px;
    letter-spacing: 0.3em;
  }

  .dw-floating-actions {
    right: 10px;
    bottom: 12px;
  }
}

@media (max-width: 768px) {
  html {
    scroll-behavior: auto;
  }

  body {
    background: var(--dw-paper);
  }

  .dw-site-header {
    padding: 14px 16px;
  }

  .dw-logo {
    gap: 8px;
  }

  .dw-logo-mark svg {
    width: 24px;
    height: 24px;
  }

  .dw-logo-text {
    font-size: 15px;
  }

  .dw-hamburger {
    padding: 6px;
  }

  .dw-mobile-link {
    font-size: 20px;
    padding: 11px;
  }

  .dw-cta--mobile {
    margin-top: 14px;
    font-size: 14px;
    padding: 12px 24px;
  }

  .dw-loader-title {
    font-size: 12px;
  }

  .dw-hero {
    min-height: 82vh;
  }

  .dw-hero-content {
    padding: 92px 18px 92px;
  }

  .dw-hero-eyebrow {
    gap: 8px;
    margin-bottom: 18px;
  }

  .dw-hero-line {
    width: 24px;
  }

  .dw-hero-brandline {
    font-size: 9px;
    letter-spacing: 0.24em;
    padding-left: 0.24em;
  }

  .dw-hero-title {
    font-size: clamp(27px, 9vw, 38px);
    line-height: 1.26;
  }

  .dw-hero-copy {
    margin-top: 18px;
    max-width: 320px;
    font-size: 13px;
    line-height: 1.65;
  }

  .dw-hero-actions {
    margin-top: 24px;
  }

  .dw-cta--hero,
  .dw-cta--contact {
    font-size: 13px;
    padding: 13px 22px;
  }

  .dw-hero-control {
    gap: 10px;
    margin-top: 14px;
  }

  .dw-hero-toggle {
    width: 34px;
    height: 34px;
  }

  .dw-hero-status {
    min-width: 180px;
  }

  .dw-hero-track {
    width: 124px;
  }

  .dw-hero-count {
    min-width: 40px;
    font-size: 10px;
  }

  .dw-scroll-cue {
    bottom: 16px;
  }

  .dw-scroll-label {
    font-size: 9px;
  }

  .dw-scroll-line {
    height: 30px;
  }

  .dw-intro {
    padding: 52px 18px;
  }

  .dw-intro-kicker {
    font-size: 17px;
    margin-bottom: 14px;
  }

  .dw-intro-title {
    max-width: 340px;
    margin: 0 auto;
    font-size: 19px;
    line-height: 1.42;
    overflow-wrap: break-word;
  }

  .dw-intro-copy {
    margin-top: 20px;
    max-width: 320px;
    font-size: 13px;
    line-height: 1.7;
  }

  .dw-section,
  .dw-contact {
    padding: 52px 18px;
  }

  .dw-section-head,
  .dw-section-head--spacious {
    margin-bottom: 28px;
  }

  .dw-section-kicker,
  .dw-section-kicker--large {
    font-size: 12px;
    letter-spacing: 0.16em;
    margin-bottom: 10px;
  }

  .dw-section-title {
    font-size: 24px;
    line-height: 1.28;
  }

  .dw-section-lead {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.65;
  }

  .dw-premium {
    padding-bottom: 52px;
  }

  .dw-premium-head {
    padding: 52px 18px 24px;
  }

  .dw-mobile-slider-ready .dw-mobile-slide {
    display: none;
  }

  .dw-mobile-slider-ready .dw-mobile-slide.is-mobile-active {
    display: block;
  }

  .dw-mobile-slider-ready .dw-unit-row.is-mobile-active {
    display: grid;
  }

  .dw-premium-panel {
    min-height: auto;
    margin: 0 18px;
    background: #171511;
    border: 1px solid rgba(231, 212, 168, 0.16);
    border-radius: 8px;
    box-shadow: 0 18px 44px -30px rgba(0, 0, 0, 0.65);
  }

  .dw-premium-media {
    position: relative;
    inset: auto;
    height: 188px;
  }

  .dw-premium-shade,
  .dw-premium-number,
  .dw-premium-panel-blob,
  .dw-premium-bg-blob {
    display: none;
  }

  .dw-premium-copy,
  .dw-premium-copy--right {
    display: block;
    padding: 18px 18px 20px;
  }

  .dw-premium-copy-inner,
  .dw-premium-copy-inner--right {
    max-width: 100%;
    text-align: left;
  }

  .dw-premium-icon {
    margin-bottom: 10px;
  }

  .dw-premium-icon svg {
    width: 24px;
    height: 24px;
  }

  .dw-premium-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    margin-bottom: 8px;
  }

  .dw-premium-title {
    max-width: 100%;
    font-size: 22px;
    line-height: 1.34;
  }

  .dw-premium-text {
    max-width: 100%;
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.65;
  }

  .dw-overview-grid,
  .dw-location-grid {
    gap: 24px;
  }

  .dw-overview-media,
  .dw-location-media {
    aspect-ratio: 1.24 / 1;
    border-radius: 8px;
  }

  .dw-info-cell {
    padding: 15px 0;
  }

  .dw-info-label {
    font-size: 10px;
  }

  .dw-info-value {
    margin-top: 6px;
    font-size: 16px;
  }

  .dw-unit-row {
    margin: 0;
    padding: 16px;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--dw-line);
    border-radius: 8px;
    box-shadow: 0 16px 36px -30px rgba(20, 18, 15, 0.35);
  }

  .dw-unit-media {
    aspect-ratio: 1.35 / 1;
    border-radius: 8px;
  }

  .dw-unit-art {
    padding: 14px;
  }

  .dw-unit-badge {
    top: 12px;
    left: 12px;
    font-size: 10px;
    padding: 5px 10px;
  }

  .dw-unit-letter {
    font-size: 44px;
  }

  .dw-unit-size {
    margin-top: 8px;
    font-size: 21px;
  }

  .dw-unit-label {
    margin-top: 5px;
    font-size: 13px;
  }

  .dw-unit-text {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.65;
  }

  .dw-cta--text {
    margin-top: 16px;
    font-size: 12px;
  }

  .dw-unit-note {
    margin-top: 24px;
    font-size: 11.5px;
    line-height: 1.5;
  }

  .dw-monument {
    min-height: 420px;
  }

  .dw-monument-content {
    padding: 64px 18px;
  }

  .dw-monument-kicker {
    font-size: 17px;
    margin-bottom: 14px;
  }

  .dw-monument-title {
    font-size: 27px;
    line-height: 1.35;
  }

  .dw-location-title {
    margin-bottom: 18px;
    font-size: 24px;
  }

  .dw-location-item {
    gap: 12px;
    padding: 15px 0;
  }

  .dw-location-icon svg {
    width: 21px;
    height: 21px;
  }

  .dw-location-item-title {
    font-size: 14px;
  }

  .dw-location-item-text {
    font-size: 12.5px;
    line-height: 1.55;
  }

  .dw-process-grid {
    gap: 10px;
  }

  .dw-process-step {
    padding: 16px 14px;
    background: #fff;
    border: 1px solid #e3dccc;
    border-radius: 8px;
  }

  .dw-process-line {
    display: none;
  }

  .dw-process-head {
    gap: 9px;
  }

  .dw-process-head svg {
    width: 19px;
    height: 19px;
  }

  .dw-process-number {
    font-size: 30px;
  }

  .dw-process-title {
    margin: 10px 0 5px;
    font-size: 15px;
  }

  .dw-process-text {
    font-size: 12.5px;
    line-height: 1.55;
  }

  .dw-faq-summary {
    padding: 17px 2px;
    font-size: 14px;
  }

  .dw-faq-toggle {
    font-size: 19px;
  }

  .dw-faq-answer {
    padding: 0 2px 18px;
    font-size: 13px;
    line-height: 1.65;
  }

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

  .dw-contact-copy {
    margin-top: 14px;
    font-size: 13px;
    line-height: 1.65;
  }

  .dw-footer {
    padding: 38px 18px 28px;
  }

  .dw-footer-grid {
    gap: 24px;
    padding-bottom: 28px;
  }

  .dw-footer-brand {
    margin-bottom: 12px;
  }

  .dw-footer-copy,
  .dw-footer-links {
    font-size: 12.5px;
  }

  .dw-cta--footer {
    display: none;
  }

  .dw-footer-sitemap {
    display: none;
  }

  .dw-footer-meta {
    padding-top: 20px;
    font-size: 11px;
  }

  .dw-floating-actions {
    right: 10px;
    bottom: 12px;
    gap: 7px;
  }

  .dw-floating-button {
    width: 54px;
    height: 54px;
  }

  .dw-floating-label {
    font-size: 9.5px;
  }

  .dw-modal-panel {
    max-width: calc(100vw - 32px);
    border-radius: 8px;
    padding: 28px 22px;
  }

  .dw-modal-title {
    font-size: 20px;
  }

  .dw-modal-copy,
  .dw-form-label,
  .dw-agree,
  .dw-success-text {
    font-size: 12.5px;
  }

  .dw-form-input,
  .dw-modal-submit {
    font-size: 14px;
  }

  .dw-mobile-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 16px auto 0;
  }

  .dw-mobile-slider-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(191, 155, 79, 0.34);
    background: rgba(255, 255, 255, 0.88);
    color: var(--dw-ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 22px -18px rgba(20, 18, 15, 0.5);
  }

  .dw-premium .dw-mobile-slider-arrow {
    background: rgba(243, 237, 224, 0.12);
    color: #f3ede0;
    border-color: rgba(231, 212, 168, 0.26);
  }

  .dw-mobile-slider-dots {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .dw-mobile-slider-dot {
    width: 6px;
    height: 6px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(191, 155, 79, 0.28);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
  }

  .dw-mobile-slider-dot.is-active {
    width: 18px;
    background: var(--dw-gold);
  }
}

.dw-mobile-slider-controls[hidden] {
  display: none !important;
}
