/* ── Scoped Reset & Base ─────────────────────────────────── */
.wdm-landing *,
.wdm-landing *::before,
.wdm-landing *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: hsl(0 0% 88%);
}

.wdm-landing {
  font-family: 'Open Sans', sans-serif;
  color: hsl(0 0% 20%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;

  /* ── Color Tokens ─────────────────────────────────── */
  --wdm-background: hsl(0 0% 100%);
  --wdm-foreground: hsl(0 0% 20%);
  --wdm-primary: hsl(0 72% 45%);
  --wdm-primary-fg: hsl(0 0% 100%);
  --wdm-accent: hsl(45 100% 51%);
  --wdm-accent-fg: hsl(0 0% 10%);
  --wdm-muted-fg: hsl(0 0% 45%);
  --wdm-border: hsl(0 0% 88%);
  --wdm-hero-bg: hsl(0 0% 96%);
  --wdm-card-bg: hsl(0 0% 97%);
  --wdm-footer-bg: hsl(0 0% 30%);
  --wdm-footer-fg: hsl(0 0% 90%);
  --wdm-ring: hsl(0 72% 45%);
  --wdm-radius: 0.375rem;
}

.wdm-landing h1,
.wdm-landing h2,
.wdm-landing h3 {
  font-family: 'Playfair Display', serif;
}

.wdm-landing img {
  display: block;
  max-width: 100%;
  height: auto;
}

.wdm-landing a {
  color: inherit;
  text-decoration: none;
}

.wdm-landing a:hover {
  text-decoration: underline;
}

/* ── Layout ────────────────────────────────────────── */
.wdm-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.wdm-max-w-5xl { max-width: 64rem; }
.wdm-max-w-3xl { max-width: 48rem; }

/* ── Hero Section ─────────────────────────────────── */
.wdm-hero {
  background: var(--wdm-hero-bg);
  padding: 3rem 0;
}

.wdm-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.wdm-hero-image {
  flex-shrink: 0;
  width: 16rem;
}

.wdm-hero-image img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, .15));
}

.wdm-hero-content {
  flex: 1;
  text-align: center;
}

.wdm-hero-intro {
  color: var(--wdm-muted-fg);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.wdm-hero-intro strong {
  color: var(--wdm-foreground);
}

.wdm-hero-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--wdm-primary);
  margin-bottom: 0.5rem;
  line-height: 1.15;
}

.wdm-hero-subtitle {
  font-size: 1.125rem;
  color: var(--wdm-primary);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.wdm-hero-desc {
  color: var(--wdm-foreground);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.75;
}

/* ── Form ──────────────────────────────────────────── */
.wdm-form {
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.wdm-form-group {
  margin-bottom: 1rem;
}

.wdm-form-label {
  display: block;
  font-size: 0.875rem;
  color: var(--wdm-muted-fg);
  margin-bottom: 0.25rem;
}

.wdm-form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--wdm-border);
  border-radius: var(--wdm-radius);
  background: var(--wdm-background);
  color: var(--wdm-foreground);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: box-shadow 0.15s;
}

.wdm-form-input:focus {
  box-shadow: 0 0 0 2px var(--wdm-ring);
}

.wdm-btn-primary {
  display: block;
  width: 100%;
  background: var(--wdm-primary);
  color: var(--wdm-primary-fg);
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1rem;
  border: none;
  border-radius: var(--wdm-radius);
  cursor: pointer;
  letter-spacing: 0.025em;
  font-family: inherit;
  transition: opacity 0.15s;
}

.wdm-btn-primary:hover { opacity: 0.9; }

.wdm-form-disclaimer {
  font-size: 0.75rem;
  color: var(--wdm-muted-fg);
  text-align: center;
  line-height: 1.75;
  margin-top: 1rem;
}

/* ── Benefits Section ─────────────────────────────── */
.wdm-benefits {
  background: var(--wdm-background);
  padding: 4rem 0;
}

.wdm-benefits-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: var(--wdm-foreground);
  margin-bottom: 3rem;
}

.wdm-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.wdm-benefit-card {
  border: 1px solid var(--wdm-border);
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  background: var(--wdm-background);
  transition: box-shadow 0.2s;
}

.wdm-benefit-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
}

.wdm-benefit-card h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--wdm-foreground);
  margin-bottom: 0.75rem;
}

.wdm-benefit-card p {
  font-size: 0.875rem;
  color: var(--wdm-muted-fg);
  line-height: 1.75;
}

/* ── About Section ────────────────────────────────── */
.wdm-about {
  background: var(--wdm-card-bg);
  padding: 4rem 0;
}

.wdm-about-inner {
  text-align: center;
}

.wdm-portrait-wrapper {
  width: 9rem;
  height: 9rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--wdm-accent);
}

.wdm-portrait-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wdm-about-name {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--wdm-foreground);
  margin-bottom: 0.5rem;
}

.wdm-about-bio {
  text-align: left;
  margin-top: 2rem;
}

.wdm-about-bio p {
  color: var(--wdm-foreground);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.wdm-about-bio p:last-child {
  margin-bottom: 0;
}

.wdm-btn-accent {
  display: inline-block;
  margin-top: 2.5rem;
  background: var(--wdm-accent);
  color: var(--wdm-accent-fg);
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: var(--wdm-radius);
  cursor: pointer;
  letter-spacing: 0.025em;
  font-family: inherit;
  transition: opacity 0.15s;
}

.wdm-btn-accent:hover { opacity: 0.9; }

.wdm-about-disclaimer {
  font-size: 0.75rem;
  color: var(--wdm-muted-fg);
  margin-top: 1rem;
  line-height: 1.75;
}

/* ── Landing Page Footer ──────────────────────────── */
.wdm-footer {
  background: var(--wdm-footer-bg);
  color: var(--wdm-footer-fg);
  padding: 2rem 0;
  text-align: center;
}

.wdm-footer p {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.wdm-footer a {
  color: var(--wdm-footer-fg);
}

.wdm-footer .wdm-sep {
  margin: 0 0.75rem;
}

/* ── Responsive (md: 768px) ───────────────────────── */
@media (min-width: 768px) {
  .wdm-hero { padding: 5rem 0; }

  .wdm-hero-inner {
    flex-direction: row;
    gap: 4rem;
  }

  .wdm-hero-image { width: 20rem; }

  .wdm-hero-content { text-align: left; }

  .wdm-hero-title { font-size: 2.25rem; }

  .wdm-hero-subtitle { font-size: 1.25rem; }

  .wdm-hero-desc { font-size: 1.125rem; }

  .wdm-form {
    margin-left: 0;
    margin-right: 0;
  }

  .wdm-benefits { padding: 6rem 0; }

  .wdm-benefits-title { font-size: 1.875rem; }

  .wdm-benefits-grid { grid-template-columns: repeat(3, 1fr); }

  .wdm-about { padding: 6rem 0; }

  .wdm-about-name { font-size: 2.25rem; }
}
