/*
Theme Name: DM Com Divi Child
Template: Divi
Version: 1.1
*/



:root {
  --dm-olive: #4d582c;
  --dm-olive-dark: #343c20;
  --dm-ivory: #f4f0e6;
  --dm-ivory-soft: #ebe5d8;
  --dm-ink: #292a24;
  --dm-muted: #6f6b5f;
  --dm-clay: #a65d38;
  --dm-white: #fffdf5;
  --dm-rule: rgba(41, 42, 36, 0.22);

  --dm-content-width: 1280px;
  --dm-reading-width: 760px;

  --dm-space-xs: 8px;
  --dm-space-sm: 16px;
  --dm-space-md: 24px;
  --dm-space-lg: 40px;
  --dm-space-xl: 64px;
  --dm-space-2xl: 96px;
}

/* Base page */
html {
  scroll-behavior: smooth;
}

body {
  background: var(--dm-ivory);
  color: var(--dm-ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--dm-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(46px, 5vw, 72px);
}

h2 {
  font-size: clamp(38px, 4vw, 56px);
}

h3 {
  font-size: clamp(27px, 2.6vw, 36px);
}

/* Body links */
.entry-content a {
  color: var(--dm-olive);
  text-decoration-color: rgba(77, 88, 44, 0.45);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.entry-content a:hover,
.entry-content a:focus {
  color: var(--dm-olive-dark);
  text-decoration-color: currentColor;
}

/* Comfortable paragraph rhythm */
.entry-content p {
  margin-bottom: 1.35em;
}

/* Keep reading copy from becoming too wide */
.dm-reading-width {
  max-width: var(--dm-reading-width);
}

/* Small section labels */
.dm-eyebrow {
  margin-bottom: 18px;
  color: var(--dm-clay);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Alternating section background */
.dm-soft-section {
  background: var(--dm-ivory-soft);
}

/* Captions and metadata */
.dm-caption,
.wp-caption-text,
.entry-meta {
  color: var(--dm-muted);
  font-size: 13px;
  line-height: 1.5;
}

/* Keyboard accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--dm-clay);
  outline-offset: 3px;
}

/* Images */
.entry-content img {
  height: auto;
}

/* Mobile adjustments */
@media (max-width: 767px) {
  body {
    font-size: 16px;
  }

  h1 {
    line-height: 1.06;
  }

  :root {
    --dm-space-xl: 48px;
    --dm-space-2xl: 64px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Homepage hero image */
.dm-home-hero .dm-hero-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* Homepage Photo Panel */
.dm-photo-panel,
.dm-photo-panel .et_pb_image_wrap {
  width: 100%;
  height: 100%;
}

.dm-photo-panel img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

@media (max-width: 767px) {
  .dm-photo-panel img {
    min-height: 360px;
  }
}