:root {
  --font-heading: "Fredoka", "Arial Rounded MT Bold", "Arial Rounded MT", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --dg-green: #406026;
  --dg-green-dark: #30491d;
  --dg-black: #231f20;
  --dg-sage: #839772;
  --dg-light: #e3e3e3;
  --dg-cream: #f7f7f2;
  --dg-white: #ffffff;
  --dg-line: rgba(64, 96, 38, 0.18);
  --dg-shadow: 0 18px 50px rgba(35, 31, 32, 0.08);
  --dg-radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--dg-cream);
  color: var(--dg-black);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

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

a:hover {
  color: var(--dg-green);
}

h1,
h2,
h3,
.dg-eyebrow,
.dg-age-badge,
.dg-nav-list a {
  font-family: var(--font-heading);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(46px, 9vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(32px, 6vw, 50px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: 0;
}

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

.dg-site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.dg-main {
  flex: 1;
}

.home .dg-main {
  background: var(--dg-white);
}

.dg-shell {
  width: min(100% - 32px, 1280px);
  margin-inline: auto;
}

.dg-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(64, 96, 38, 0.08);
  backdrop-filter: blur(16px);
}

.dg-header__inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 16px;
  padding-block: 10px;
}

.dg-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  color: var(--dg-green);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.dg-logo__mark {
  width: 34px;
  height: 42px;
  display: inline-block;
  overflow: hidden;
  flex: 0 0 auto;
}

.dg-logo__mark img {
  width: 54px;
  height: 54px;
  max-width: none;
  object-fit: cover;
  object-position: 50% 8%;
  transform: translate(-10px, -3px);
}

.dg-logo__text {
  display: inline-block;
}

.dg-menu-toggle {
  justify-self: end;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-content: center;
  gap: 5px;
  padding: 0;
  color: var(--dg-green);
  background: var(--dg-white);
  border: 1px solid var(--dg-line);
  border-radius: 999px;
  cursor: pointer;
}

.dg-menu-toggle span:not(.screen-reader-text) {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 999px;
}

.dg-nav {
  position: fixed;
  inset: 82px 16px auto;
  display: none;
  padding: 22px;
  background: var(--dg-white);
  border: 1px solid var(--dg-line);
  border-radius: var(--dg-radius);
  box-shadow: var(--dg-shadow);
}

.dg-nav.is-open {
  display: block;
}

.dg-nav-list {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.dg-nav-list a {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: var(--dg-black);
}

.dg-language-switcher {
  grid-column: 1 / -1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  background: var(--dg-white);
  border: 1px solid rgba(64, 96, 38, 0.2);
  border-radius: 999px;
}

.dg-language-switcher a {
  min-width: 34px;
  min-height: 30px;
  display: inline-grid;
  place-items: center;
  padding-inline: 8px;
  color: var(--dg-green-dark);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.dg-language-switcher a:hover,
.dg-language-switcher a.is-active {
  color: var(--dg-white);
  background: var(--dg-green);
}

.dg-age-badge {
  grid-column: 1 / -1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 14px;
  color: var(--dg-black);
  background: var(--dg-white);
  border: 1px solid var(--dg-green);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.dg-age-badge span,
.dg-footer__age {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--dg-green);
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.dg-page-hero {
  padding-block: 58px;
  background: linear-gradient(135deg, var(--dg-cream), var(--dg-white));
}

.dg-page-hero__inner {
  padding: clamp(30px, 7vw, 72px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(64, 96, 38, 0.12);
  border-radius: 28px;
  box-shadow: var(--dg-shadow);
}

.dg-page-hero p:not(.dg-eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
  font-size: 18px;
}

.dg-eyebrow {
  margin-bottom: 16px;
  color: var(--dg-green);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dg-content-section {
  padding-block: 44px;
}

.dg-home-section {
  padding-block: 18px;
}

.dg-home-hero {
  padding-bottom: 22px;
  background: var(--dg-white);
}

.dg-home-hero__shell {
  position: relative;
}

.dg-home-hero__track {
  position: relative;
  overflow: hidden;
  min-height: 502px;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.95), rgba(247, 247, 242, 0.5) 38%, rgba(227, 227, 227, 0.56) 100%),
    linear-gradient(110deg, #f4f3ee, #ffffff 48%, #e6e6df);
  border: 1px solid rgba(64, 96, 38, 0.08);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.dg-home-hero__slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: clamp(22px, 5vw, 54px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.dg-home-hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.dg-home-hero__copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
}

.dg-home-hero__copy h1 {
  margin-bottom: 14px;
  font-size: clamp(38px, 6vw, 64px);
}

.dg-home-hero__copy p:not(.dg-pill) {
  max-width: 430px;
  margin-bottom: 22px;
  font-size: clamp(15px, 2.1vw, 19px);
  line-height: 1.5;
}

.dg-pill {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 7px 18px;
  margin-bottom: 22px;
  color: var(--dg-green);
  border: 1px solid var(--dg-green);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0;
}

.dg-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.dg-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 14px 26px;
  border: 1px solid var(--dg-green);
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.dg-button:hover {
  transform: translateY(-1px);
}

.dg-button--primary {
  color: var(--dg-white);
  background: linear-gradient(135deg, var(--dg-green), var(--dg-green-dark));
  box-shadow: 0 14px 28px rgba(64, 96, 38, 0.22);
}

.dg-button--primary:hover {
  color: var(--dg-white);
}

.dg-button--ghost,
.dg-button--small {
  color: var(--dg-green);
  background: var(--dg-white);
}

.dg-button--small {
  min-height: 44px;
  padding: 10px 24px;
  font-size: 15px;
}

.dg-home-hero__media {
  align-self: center;
  justify-self: center;
  width: min(100%, 590px);
  margin: 0;
}

.dg-home-hero__media img {
  width: 100%;
  max-height: 390px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 24px 26px rgba(35, 31, 32, 0.12));
}

.dg-home-hero__media--contain img {
  max-height: 360px;
}

@media (max-width: 759px) {
  .dg-home-hero__track {
    min-height: 610px;
  }

  .dg-home-hero__slide {
    grid-template-rows: auto 1fr;
    align-content: start;
    padding: 22px;
  }

  .dg-home-hero__copy h1 {
    font-size: 36px;
  }

  .dg-home-hero__copy p:not(.dg-pill) {
    margin-bottom: 16px;
  }

  .dg-pill {
    margin-bottom: 16px;
  }

  .dg-hero-actions {
    gap: 10px;
  }

  .dg-button {
    min-height: 48px;
    padding: 12px 18px;
    font-size: 15px;
  }

  .dg-home-hero__media {
    align-self: end;
    width: 100%;
  }

  .dg-home-hero__media img {
    max-height: 260px;
  }
}

.dg-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  padding: 0;
  color: var(--dg-black);
  background: var(--dg-white);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(35, 31, 32, 0.12);
  cursor: pointer;
}

.dg-slider-arrow span {
  display: block;
  margin-top: -3px;
  font-size: 42px;
  line-height: 1;
}

.dg-slider-arrow--prev {
  left: 14px;
}

.dg-slider-arrow--next {
  right: 14px;
}

.dg-slider-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 5;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.dg-slider-dots button {
  width: 14px;
  height: 14px;
  padding: 0;
  background: rgba(255, 255, 255, 0.9);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.dg-slider-dots button.is-active {
  background: var(--dg-green);
}

.dg-section-head {
  margin-bottom: 26px;
}

.dg-section-head h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 42px);
}

.dg-section-head--split {
  display: grid;
  gap: 18px;
}

.dg-section-head--split > p {
  max-width: 460px;
  margin-bottom: 0;
  font-size: 16px;
}

.dg-section-head--inline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.dg-section-head--inline > a,
.dg-category-card a {
  color: var(--dg-green);
  font-family: var(--font-heading);
  font-weight: 700;
}

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

.dg-category-card {
  min-height: 238px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 16px 20px;
  text-align: center;
  background: var(--dg-white);
  border: 1px solid rgba(64, 96, 38, 0.12);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(35, 31, 32, 0.04);
}

.dg-category-card svg {
  width: 72px;
  height: 72px;
  margin-bottom: 14px;
  fill: none;
  stroke: var(--dg-green);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.5;
}

.dg-category-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.dg-category-card p {
  flex: 1;
  margin-bottom: 14px;
  font-size: 13px;
  line-height: 1.45;
}

.dg-feature-grid {
  display: grid;
  gap: 18px;
}

.dg-feature-card {
  display: grid;
  grid-template-columns: minmax(120px, 40%) 1fr;
  align-items: center;
  gap: 18px;
  min-height: 220px;
  padding: 18px;
  background: var(--dg-white);
  border: 1px solid rgba(64, 96, 38, 0.14);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(35, 31, 32, 0.06);
}

.dg-feature-card figure {
  margin: 0;
  display: grid;
  place-items: center;
}

.dg-feature-card img {
  width: 100%;
  max-height: 190px;
  object-fit: contain;
}

.dg-feature-brand {
  margin-bottom: 4px;
  color: var(--dg-green);
  font-family: var(--font-heading);
  font-weight: 700;
}

.dg-feature-card h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.12;
}

.dg-feature-card p:not(.dg-feature-brand) {
  margin-bottom: 18px;
  font-size: 14px;
}

.dg-design-logic {
  padding-block: 18px;
  background: var(--dg-white);
}

.dg-design-logic__inner {
  display: grid;
  gap: 18px;
  padding: 20px;
  color: var(--dg-white);
  background:
    radial-gradient(circle at 5% 90%, rgba(131, 151, 114, 0.45), transparent 34%),
    linear-gradient(135deg, var(--dg-green), var(--dg-green-dark));
  border-radius: 22px;
}

.dg-design-logic__intro h2 {
  max-width: 300px;
  margin: 0;
  color: var(--dg-white);
  font-size: clamp(34px, 7vw, 44px);
}

.dg-design-logic .dg-eyebrow {
  color: var(--dg-white);
}

.dg-design-logic article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
  color: var(--dg-black);
  background: var(--dg-white);
  border-radius: 14px;
}

.dg-design-logic article h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.dg-design-logic article p {
  margin: 0;
  font-size: 14px;
}

.dg-line-icon {
  width: 64px;
  height: 64px;
  display: inline-grid;
  place-items: center;
  color: var(--dg-green);
  border: 3px solid currentColor;
  border-radius: 18px;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
}

.dg-about-contact {
  padding-bottom: 22px;
}

.dg-about-contact__inner {
  display: grid;
  overflow: hidden;
  background: var(--dg-white);
  border: 1px solid rgba(64, 96, 38, 0.12);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(35, 31, 32, 0.05);
}

.dg-about-panel,
.dg-contact-panel {
  padding: clamp(24px, 5vw, 36px);
}

.dg-about-panel h2,
.dg-contact-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 5vw, 38px);
}

.dg-about-panel > p:not(.dg-eyebrow),
.dg-contact-panel > p:not(.dg-eyebrow) {
  max-width: 480px;
  margin-bottom: 22px;
}

.dg-about-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.dg-about-icons span {
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--dg-green);
  font-family: var(--font-heading);
  font-size: 30px;
  text-align: center;
}

.dg-about-icons small {
  color: var(--dg-black);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
}

.dg-contact-form {
  display: grid;
  gap: 12px;
}

.dg-form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.dg-contact-form input,
.dg-contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 16px;
  color: var(--dg-black);
  background: var(--dg-white);
  border: 1px solid rgba(64, 96, 38, 0.16);
  border-radius: 8px;
  font: inherit;
}

.dg-contact-form textarea {
  min-height: 88px;
  resize: vertical;
}

.dg-contact-form__product,
.dg-contact-form__message {
  grid-column: 1 / -1;
}

.dg-contact-form__product input[readonly] {
  color: rgba(35, 31, 32, 0.76);
  background: rgba(247, 247, 242, 0.74);
}

.dg-contact-form button {
  justify-self: start;
  min-height: 46px;
  padding-inline: 22px;
  border-radius: 8px;
  cursor: pointer;
}

.dg-form-notice {
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 600;
}

.dg-form-notice--success {
  color: var(--dg-green-dark);
  background: rgba(64, 96, 38, 0.1);
  border: 1px solid rgba(64, 96, 38, 0.22);
}

.dg-form-notice--error {
  color: #7a1f1f;
  background: #fff1f1;
  border: 1px solid #e9b8b8;
}

.dg-page-band {
  padding-block: clamp(28px, 6vw, 64px);
  background: var(--dg-white);
}

.dg-page-band--quiet {
  background: var(--dg-cream);
}

.dg-brand-hero .dg-catalog-hero__inner,
.dg-contact-hero .dg-catalog-hero__inner {
  min-height: 320px;
  display: grid;
  align-content: center;
}

.dg-brand-hero__inner,
.dg-contact-hero__inner {
  gap: 24px;
  overflow: hidden;
}

.dg-page-hero-media {
  display: grid;
  place-items: center;
  margin: 0;
}

.dg-page-hero-media img {
  width: min(100%, 500px);
  max-height: 330px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 22px 28px rgba(35, 31, 32, 0.14));
}

.dg-page-hero-media--compact img {
  max-height: 300px;
}

.dg-story-grid {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.dg-story-grid h2,
.dg-contact-aside h2,
.dg-cta-strip h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 5vw, 44px);
}

.dg-story-grid p:not(.dg-eyebrow),
.dg-contact-aside p:not(.dg-eyebrow) {
  max-width: 680px;
}

.dg-story-note {
  padding: clamp(22px, 4vw, 34px);
  color: var(--dg-white);
  background: var(--dg-green);
  border-radius: 18px;
}

.dg-story-note h3 {
  margin-bottom: 10px;
  color: var(--dg-white);
  font-size: 24px;
}

.dg-story-note p {
  margin: 0;
}

.dg-values-grid,
.dg-contact-page-grid {
  display: grid;
  gap: 18px;
}

.dg-values-grid article {
  padding: 24px;
  background: var(--dg-white);
  border: 1px solid rgba(64, 96, 38, 0.12);
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(35, 31, 32, 0.05);
}

.dg-values-grid .dg-line-icon {
  margin-bottom: 18px;
}

.dg-values-grid h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.dg-cta-strip {
  display: grid;
  gap: 18px;
  align-items: center;
  padding: clamp(24px, 4vw, 36px);
  color: var(--dg-white);
  background: var(--dg-green-dark);
  border-radius: 18px;
}

.dg-cta-strip h2 {
  margin-bottom: 0;
  color: var(--dg-white);
}

.dg-cta-strip .dg-eyebrow {
  color: var(--dg-white);
}

.dg-cta-strip .dg-button {
  justify-self: start;
  background: var(--dg-white);
  color: var(--dg-green-dark);
}

.dg-contact-aside {
  padding: clamp(24px, 5vw, 40px);
  background: var(--dg-cream);
  border-radius: 18px;
}

.dg-contact-routes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.dg-contact-routes span,
.dg-age-badge {
  min-height: 38px;
  display: inline-grid;
  place-items: center;
  padding-inline: 14px;
  color: var(--dg-green-dark);
  background: var(--dg-white);
  border: 1px solid rgba(64, 96, 38, 0.24);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
}

.dg-contact-panel--page {
  border: 1px solid rgba(64, 96, 38, 0.12);
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(35, 31, 32, 0.05);
}

.dg-legal-layout {
  display: grid;
  justify-items: center;
}

.dg-legal-panel {
  width: min(100%, 860px);
  padding: clamp(24px, 5vw, 44px);
  background: var(--dg-white);
  border: 1px solid rgba(64, 96, 38, 0.12);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(35, 31, 32, 0.05);
}

.dg-legal-panel h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: clamp(24px, 4vw, 32px);
}

.dg-legal-panel h2:first-child {
  margin-top: 0;
}

.dg-legal-panel p:last-child {
  margin-bottom: 0;
}

.dg-catalog-hero {
  padding-block: 22px;
  background: var(--dg-white);
}

.dg-catalog-hero__inner {
  padding: clamp(30px, 6vw, 62px);
  background:
    radial-gradient(circle at 86% 20%, rgba(131, 151, 114, 0.16), transparent 28%),
    linear-gradient(135deg, var(--dg-cream), var(--dg-white));
  border: 1px solid rgba(64, 96, 38, 0.12);
  border-radius: 24px;
}

.dg-catalog-hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
}

.dg-catalog-hero p:not(.dg-eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 18px;
}

.dg-catalog-page {
  padding-bottom: 42px;
  background: var(--dg-white);
}

.dg-catalog-tabs {
  position: sticky;
  top: 82px;
  z-index: 10;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px 0;
  margin-bottom: 6px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
}

.dg-catalog-tabs a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 16px;
  color: var(--dg-green);
  border: 1px solid rgba(64, 96, 38, 0.28);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 700;
  white-space: nowrap;
}

.dg-catalog-tabs a:hover {
  color: var(--dg-white);
  background: var(--dg-green);
}

.dg-catalog-group {
  scroll-margin-top: 150px;
  padding-block: 24px;
}

.dg-catalog-grid {
  display: grid;
  gap: 20px;
}

.dg-product-card {
  display: grid;
  overflow: hidden;
  min-height: 100%;
  background: var(--dg-white);
  border: 1px solid rgba(64, 96, 38, 0.13);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(35, 31, 32, 0.06);
}

.dg-product-card__media {
  display: grid;
  min-height: 210px;
  place-items: center;
  padding: 18px;
  background: linear-gradient(135deg, #fbfbf8, #f1f1ec);
}

.dg-product-card__media img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 200px;
  object-fit: contain;
}

.dg-product-card__body {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px;
}

.dg-product-card__body h3 {
  margin-bottom: 10px;
  line-height: 1.14;
}

.dg-product-card__body p:not(.dg-feature-brand) {
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 18px;
}

.dg-product-card__body .dg-button {
  margin-top: auto;
}

.dg-catalog-empty,
.dg-catalog-placeholder {
  padding: clamp(24px, 5vw, 42px);
  background: var(--dg-cream);
  border: 1px dashed rgba(64, 96, 38, 0.28);
  border-radius: 18px;
}

.dg-catalog-empty h3,
.dg-catalog-placeholder h3 {
  margin-bottom: 8px;
}

.dg-catalog-empty p,
.dg-catalog-placeholder p {
  max-width: 640px;
  margin-bottom: 0;
}

.dg-product-hero {
  padding-block: 28px;
  background: var(--dg-white);
}

.dg-product-hero__inner {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: clamp(26px, 6vw, 58px);
  background:
    radial-gradient(circle at 86% 18%, rgba(131, 151, 114, 0.18), transparent 30%),
    linear-gradient(135deg, var(--dg-cream), var(--dg-white));
  border: 1px solid rgba(64, 96, 38, 0.12);
  border-radius: 24px;
}

.dg-product-hero h1 {
  max-width: 720px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
}

.dg-product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.dg-product-badges span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 13px;
  color: var(--dg-green);
  background: var(--dg-white);
  border: 1px solid rgba(64, 96, 38, 0.24);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
}

.dg-product-hero__copy p:not(.dg-eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
  font-size: 18px;
}

.dg-product-hero__cta {
  margin-top: 22px;
}

.dg-product-hero__media {
  display: grid;
  height: clamp(360px, 42vw, 560px);
  min-height: 360px;
  place-items: center;
  margin: 0;
}

.dg-product-hero__media img {
  width: auto;
  height: clamp(360px, 42vw, 560px);
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 22px 28px rgba(35, 31, 32, 0.12));
}

.dg-product-layout {
  padding-bottom: 42px;
  background: var(--dg-white);
}

.dg-product-gallery {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.dg-product-gallery figure {
  display: grid;
  min-height: 190px;
  place-items: center;
  margin: 0;
  padding: 18px;
  background: var(--dg-cream);
  border: 1px solid rgba(64, 96, 38, 0.12);
  border-radius: 18px;
}

.dg-product-gallery__button {
  display: grid;
  width: 100%;
  min-height: 154px;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: zoom-in;
}

.dg-product-gallery img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.dg-lightbox[hidden] {
  display: none;
}

.dg-lightbox {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(18px, 5vw, 48px);
  background: rgba(35, 31, 32, 0.62);
}

.dg-lightbox figure {
  display: grid;
  width: min(920px, 100%);
  max-height: 86vh;
  place-items: center;
  margin: 0;
  padding: clamp(18px, 4vw, 32px);
  background: var(--dg-white);
  border-radius: 18px;
}

.dg-lightbox img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
}

.dg-lightbox__close {
  position: fixed;
  top: 18px;
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--dg-green);
  background: var(--dg-white);
  border: 1px solid rgba(64, 96, 38, 0.18);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(35, 31, 32, 0.18);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
}

body.dg-lightbox-open {
  overflow: hidden;
}

.dg-product-content-grid {
  display: grid;
  gap: 18px;
}

.dg-product-panel {
  padding: clamp(22px, 4vw, 34px);
  background: var(--dg-white);
  border: 1px solid rgba(64, 96, 38, 0.14);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(35, 31, 32, 0.05);
}

.dg-product-panel p:last-child,
.dg-entry-content p:last-child {
  margin-bottom: 0;
}

.dg-variant-grid {
  display: grid;
  gap: 16px;
}

.dg-variant-card {
  display: grid;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: var(--dg-cream);
  border: 1px solid rgba(64, 96, 38, 0.12);
  border-radius: 16px;
}

.dg-variant-card figure {
  display: grid;
  min-height: 150px;
  place-items: center;
  margin: 0;
  padding: 12px;
  background: var(--dg-white);
  border-radius: 14px;
}

.dg-variant-card img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 12px 18px rgba(35, 31, 32, 0.12));
}

.dg-variant-card h2 {
  margin-bottom: 6px;
  font-size: clamp(22px, 4vw, 28px);
  line-height: 1.05;
}

.dg-variant-card p {
  margin-bottom: 10px;
}

.dg-variant-card__meta,
.dg-variant-card__detail {
  color: var(--dg-green);
  font-size: 14px;
  font-weight: 700;
}

.dg-check-list,
.dg-detail-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.dg-check-list {
  display: grid;
  gap: 12px;
}

.dg-check-list li {
  position: relative;
  padding-left: 30px;
}

.dg-check-list li::before {
  content: "OK";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--dg-green);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
}

.dg-detail-list {
  display: grid;
  gap: 12px;
}

.dg-detail-list div {
  display: grid;
  grid-template-columns: minmax(110px, 0.8fr) 1fr;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(64, 96, 38, 0.12);
}

.dg-detail-list dt {
  color: var(--dg-green);
  font-weight: 700;
}

.dg-detail-list dd {
  margin: 0;
}

.dg-product-contact {
  display: grid;
  gap: 24px;
  margin-top: 24px;
  padding: clamp(24px, 5vw, 40px);
  background:
    radial-gradient(circle at 0% 100%, rgba(131, 151, 114, 0.18), transparent 30%),
    var(--dg-cream);
  border: 1px solid rgba(64, 96, 38, 0.14);
  border-radius: 22px;
}

.dg-product-contact__copy h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 5vw, 42px);
}

.dg-product-contact__copy p:not(.dg-eyebrow) {
  max-width: 620px;
}

.dg-product-legal {
  color: rgba(35, 31, 32, 0.72);
  font-size: 13px;
}

.dg-standard-content {
  max-width: 820px;
  padding: clamp(24px, 5vw, 42px);
  background: var(--dg-white);
  border: 1px solid rgba(64, 96, 38, 0.12);
  border-radius: 18px;
}

.dg-post-list {
  display: grid;
  gap: 20px;
}

.dg-card {
  padding: 24px;
  background: var(--dg-white);
  border: 1px solid rgba(64, 96, 38, 0.14);
  border-radius: var(--dg-radius);
  box-shadow: 0 12px 34px rgba(35, 31, 32, 0.06);
}

.dg-post-card h2 {
  margin-bottom: 12px;
  font-size: 28px;
}

.dg-entry-summary p:last-child {
  margin-bottom: 0;
}

.dg-footer {
  border-top: 1px solid rgba(64, 96, 38, 0.1);
  background: var(--dg-white);
}

.dg-footer__inner {
  display: grid;
  gap: 14px;
  align-items: center;
  padding-block: 18px;
  color: rgba(35, 31, 32, 0.78);
  font-size: 14px;
}

.dg-logo--footer {
  width: auto;
  font-size: 22px;
}

.dg-logo--footer .dg-logo__mark {
  width: 30px;
  height: 38px;
}

.dg-logo--footer .dg-logo__mark img {
  width: 48px;
  height: 48px;
  transform: translate(-9px, -3px);
}

.dg-footer__copy,
.dg-footer__disclaimer {
  margin: 0;
}

.dg-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
}

.dg-footer__links a {
  color: rgba(35, 31, 32, 0.78);
  font-size: 13px;
  font-weight: 600;
}

.dg-footer__age {
  width: 32px;
  height: 32px;
  font-size: 12px;
}

@media (min-width: 760px) {
  .dg-shell {
    width: min(100% - 56px, 1280px);
  }

  .dg-header__inner {
    grid-template-columns: auto 1fr auto auto;
  }

  .dg-menu-toggle {
    display: none;
  }

  .dg-nav {
    position: static;
    display: block;
    justify-self: center;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .dg-nav-list {
    display: flex;
    align-items: center;
    gap: clamp(28px, 5vw, 64px);
  }

  .dg-nav-list a {
    font-size: 16px;
  }

  .dg-age-badge {
    grid-column: auto;
    justify-self: end;
  }

  .dg-language-switcher {
    grid-column: auto;
    justify-self: end;
  }

  .dg-post-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dg-home-hero__track {
    min-height: 500px;
    border-radius: 16px;
  }

  .dg-home-hero__slide {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .dg-home-hero__media {
    justify-self: end;
  }

  .dg-slider-arrow {
    display: grid;
  }

  .dg-section-head--split {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }

  .dg-category-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .dg-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dg-feature-card {
    grid-template-columns: minmax(110px, 42%) 1fr;
  }

  .dg-design-logic__inner {
    grid-template-columns: 1.05fr repeat(3, 1fr);
    align-items: stretch;
  }

  .dg-about-contact__inner {
    grid-template-columns: 1fr 1fr;
  }

  .dg-about-panel {
    border-right: 1px solid rgba(64, 96, 38, 0.12);
  }

  .dg-contact-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dg-story-grid {
    grid-template-columns: 1.25fr 0.75fr;
  }

  .dg-brand-hero__inner,
  .dg-contact-hero__inner {
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
  }

  .dg-values-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dg-contact-page-grid {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: start;
  }

  .dg-cta-strip {
    grid-template-columns: 1fr auto;
  }

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

  .dg-product-hero__inner {
    grid-template-columns: 1fr 0.9fr;
  }

  .dg-product-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dg-product-content-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dg-product-panel--wide {
    grid-column: 1 / -1;
  }

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

  .dg-variant-card {
    grid-template-columns: minmax(132px, 0.42fr) minmax(0, 1fr);
  }

  .dg-product-contact {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }

  .dg-footer__inner {
    grid-template-columns: auto 1fr auto auto auto;
  }

  .dg-footer__copy {
    justify-self: center;
  }
}

@media (min-width: 1040px) {
  .dg-post-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .dg-home-section {
    padding-block: 24px;
  }

  .dg-home-hero__track {
    min-height: 560px;
  }

  .dg-home-hero__copy {
    padding-left: 48px;
  }

  .dg-catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 760px) and (max-width: 1039px) {
  .dg-header__inner {
    grid-template-columns: auto auto;
  }

  .dg-menu-toggle {
    display: inline-grid;
  }

  .dg-nav {
    position: fixed;
    inset: 82px 28px auto;
    display: none;
    justify-self: auto;
    padding: 22px;
    background: var(--dg-white);
    border: 1px solid var(--dg-line);
    border-radius: var(--dg-radius);
    box-shadow: var(--dg-shadow);
  }

  .dg-nav.is-open {
    display: block;
  }

  .dg-nav-list {
    display: grid;
    gap: 18px;
  }

  .dg-nav-list a {
    font-size: 18px;
  }

  .dg-language-switcher,
  .dg-age-badge {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .dg-home-hero__track {
    min-height: 760px;
  }

  .dg-home-hero__slide {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    align-content: start;
    padding: 34px 42px 28px;
  }

  .dg-home-hero__copy {
    max-width: 600px;
  }

  .dg-home-hero__copy h1 {
    font-size: clamp(44px, 7vw, 58px);
  }

  .dg-home-hero__copy p:not(.dg-pill) {
    max-width: 560px;
  }

  .dg-home-hero__media {
    align-self: end;
    justify-self: center;
    width: min(100%, 500px);
  }

  .dg-home-hero__media img {
    max-height: 330px;
  }

  .dg-section-head--split {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .dg-design-logic__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dg-design-logic__intro {
    grid-column: 1 / -1;
  }

  .dg-design-logic__intro h2 {
    max-width: 620px;
  }

  .dg-design-logic article {
    min-width: 0;
  }
}
