/*
 Theme Name:   David Loy — Paper & Ink
 Theme URI:    https://davidloy.org
 Description:  Custom child theme for davidloy.org based on D17 "Paper & Ink" design.
               Warm editorial aesthetic with cream, forest ink, and gold accents.
 Author:       Vince / Becoming Stillness
 Author URI:   https://becomingstillness.org
 Template:     hello-elementor
 Version:      1.1.0
 License:      GNU General Public License v2 or later
 License URI:  https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  davidloy-paper-ink
*/

/* ════════════════════════════════════════════════════════
   D17 DESIGN TOKENS — Paper & Ink
   Extracted from davidloy-light.html mockup
════════════════════════════════════════════════════════ */

:root {
  /* Core palette */
  --dl-ink:         #1C2B1E;
  --dl-forest:      #2D4A2F;
  --dl-moss:        #4A7050;
  --dl-sage:        #7A9E7A;
  --dl-brass: 	    #D2AE6D;   /* lifted gold, for use on dark grounds */
  --dl-gold:        #B07D3A;
  --dl-cream:       #F5F0E8;
  --dl-parchment:   #EDE6D6;
  --dl-rule:        rgba(44, 60, 44, 0.15);

  /* Typography stacks */
  --dl-font-display:  'Playfair Display', serif;
  --dl-font-body:     'Spectral', serif;
  --dl-font-ui:       'Josefin Sans', sans-serif;

  /* Spacing scale */
  --dl-space-xs:    8px;
  --dl-space-sm:    16px;
  --dl-space-md:    24px;
  --dl-space-lg:    40px;
  --dl-space-xl:    72px;
  --dl-space-2xl:   80px;

  /* Section rhythm */
  --dl-section-pad:   80px 72px;
  --dl-section-pad-m: 48px 24px;

  /* Transitions */
  --dl-ease:        0.3s ease;
}

/* ── Global overrides ────────────────────────────────── */
body {
  background-color: var(--dl-cream);
  color: var(--dl-ink);
  font-family: var(--dl-font-body);
  font-size: 1rem;
  line-height: 1.85;
}

/* ── Typography ──────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--dl-font-display);
  font-weight: 400;
  color: var(--dl-ink);
  line-height: 1.2;
}

h1 { font-size: clamp(3.2rem, 5.5vw, 5.8rem); letter-spacing: -0.02em; line-height: 1.0; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.2rem; line-height: 1.4; }

/* ── Kicker / eyebrow text ───────────────────────────── */
.dl-kicker {
  font-family: var(--dl-font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dl-gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.dl-kicker::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--dl-gold);
}

/* ── Section headers ─────────────────────────────────── */
.dl-section-hd {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--dl-space-lg);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--dl-rule);
}
.dl-section-hd a {
  font-family: var(--dl-font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dl-moss);
}

/* ── Buttons ─────────────────────────────────────────── */
.dl-btn-main {
  display: inline-block;
  background: var(--dl-forest);
  color: var(--dl-cream);
  font-family: var(--dl-font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 36px;
  transition: background var(--dl-ease);
  text-decoration: none;
}
.dl-btn-main:hover { background: var(--dl-ink); color: var(--dl-cream); }

.dl-btn-ghost {
  display: inline-block;
  font-family: var(--dl-font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dl-forest);
  border: 1px solid var(--dl-rule);
  padding: 13px 36px;
  transition: all var(--dl-ease);
  text-decoration: none;
}
.dl-btn-ghost:hover { color: var(--dl-ink); border-color: var(--dl-ink); }

/* ── Cards (Talks, Articles) ─────────────────────────── */
.dl-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.dl-card {
  background: #fff;
  overflow: hidden;
  border: 1px solid var(--dl-rule);
  transition: transform var(--dl-ease), box-shadow var(--dl-ease);
}
.dl-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(28, 43, 30, 0.1);
}

.dl-card__img-wrap {
  height: 180px;
  overflow: hidden;
}
.dl-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: saturate(0.7);
  transition: filter 0.4s, transform 0.5s;
}
.dl-card:hover .dl-card__img {
  filter: saturate(0.9);
  transform: scale(1.04);
}

.dl-card__body { padding: 24px 24px 28px; }

.dl-card__tag {
  font-family: var(--dl-font-ui);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dl-gold);
  margin-bottom: 10px;
}

.dl-card__title {
  font-family: var(--dl-font-display);
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--dl-ink);
  margin-bottom: 8px;
}
.dl-card__title a {
  color: inherit;
  text-decoration: none;
}
.dl-card__title a:hover {
  color: var(--dl-forest);
}

.dl-card__meta {
  font-family: var(--dl-font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--dl-sage);
}

.dl-card__text {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(28, 43, 30, 0.55);
  margin-top: 10px;
  font-family: var(--dl-font-body);
  font-style: italic;
}

/* ── Zoom callout ────────────────────────────────────── */
.dl-zoom {
  background: var(--dl-forest);
  color: var(--dl-cream);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 28px 72px;
}
.dl-zoom__left {
  display: flex;
  align-items: center;
  gap: 24px;
}
.dl-zoom__pulse {
  width: 10px;
  height: 10px;
  background: var(--dl-gold);
  border-radius: 50%;
  animation: dl-pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes dl-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.dl-zoom__label {
  font-family: var(--dl-font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
}
.dl-zoom__title {
  font-family: var(--dl-font-display);
  font-size: 1.2rem;
  margin-top: 4px;
}
.dl-zoom__detail {
  font-family: var(--dl-font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  opacity: 0.6;
  margin-top: 6px;
}
.dl-zoom__btn {
  font-family: var(--dl-font-ui);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(245, 240, 232, 0.3);
  color: var(--dl-cream);
  padding: 12px 28px;
  transition: all var(--dl-ease);
  text-decoration: none;
  white-space: nowrap;
}
.dl-zoom__btn:hover {
  background: rgba(245, 240, 232, 0.1);
  color: var(--dl-cream);
}

/* ── Quote band ──────────────────────────────────────── */
/* =========================================================================
   Quote band — output of [dl_quote]
   Designed against Forest #24402A (container bdd7f10).

   Markup:
     <figure class="dl-quote">
       <blockquote class="dl-quote__text">…</blockquote>
       <figcaption class="dl-quote__cite">
         <span class="dl-quote__name">David R. Loy</span>
         <cite class="dl-quote__source">
           <a class="dl-quote__link" href="…">Source</a>
         </cite>
       </figcaption>
     </figure>

   Retune the whole band from the four custom properties below.
   ====================================================================== */

.dl-quote {
	--dl-quote-text: var( --dl-cream, #F5F0E8 );
	--dl-quote-accent: #C8A465;                      /* 4.86:1 on Forest */
	--dl-quote-muted: rgba( 245, 240, 232, 0.6 );
	--dl-quote-rule: #89591D;                        /* decorative only */

	padding: 0;
	text-align: center;
}

/* Elementor resets `.elementor figure { margin: 0 }` at (0,1,1), which
   outranks a bare `.dl-quote` at (0,1,0). Match it and win. */
.elementor figure.dl-quote {
	width: 100%;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

@media ( max-width: 767px ) {

	.elementor figure.dl-quote {
		max-width: none%;
	}
}

/* -------------------------------------------------------------------------
   Quote text
   ---------------------------------------------------------------------- */

.dl-quote__text {
	margin: 0;
	padding: 0;
	border: 0;
	quotes: none;

	font-family: "Playfair Display", Georgia, serif;
	font-style: italic;
	font-weight: 400;
	font-size: 2rem;
	line-height: 1.6;
	letter-spacing: -0.01em;
	color: var( --dl-quote-text );
}

/* Typographic quotes live here, not in the stored content, so pasted
   text stays clean and straight quotes never sneak through. */
.dl-quote__text::before {
	content: "\201C";
}

.dl-quote__text::after {
	content: "\201D";
}

/* -------------------------------------------------------------------------
   Attribution
   ---------------------------------------------------------------------- */

.dl-quote__cite {
	display: block;
	margin-top: 32px;
	font-style: normal;
}

/* Short rule above the attribution. Decorative — conveys no information —
   so the deeper gold is fine here even though it fails text contrast. */
.dl-quote__cite::before {
	content: "";
	display: block;
	width: 32px;
	height: 1px;
	margin: 0 auto 18px;
	background: var( --dl-quote-rule );
}

/* Name and source share one line. */
.dl-quote__name,
.dl-quote__source {
	display: inline;
}

.dl-quote__name {
	font-family: "Josefin Sans", sans-serif;
	font-weight: 400;
	font-size: 0.65rem;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var( --dl-quote-accent );
}

.dl-quote__source {
	font-family: "Spectral", Georgia, serif;
	font-style: italic;
	font-weight: 400;
	font-size: 0.85rem;
	letter-spacing: 0;
	color: var( --dl-quote-muted );
}

.dl-quote__source::before {
	content: ",\00A0";
}

.dl-quote__link {
	color: inherit;
	text-decoration: none;
	border-bottom: 1px solid rgba( 245, 240, 232, 0.25 );
	transition: color 0.2s ease, border-color 0.2s ease;
}

.dl-quote__link:hover,
.dl-quote__link:focus-visible {
	color: var( --dl-quote-text );
	border-bottom-color: rgba( 245, 240, 232, 0.6 );
}

/* -------------------------------------------------------------------------
   Light-background variant — add class dl-quote--light on the <figure>
   if the band is ever moved onto Cream or Parchment.
   ---------------------------------------------------------------------- */

.dl-quote--light {
	--dl-quote-text: var( --dl-ink, #1C2B1E );
	--dl-quote-accent: #89591D;
	--dl-quote-muted: rgba( 28, 43, 30, 0.6 );
	--dl-quote-rule: #89591D;
}

.dl-quote--light .dl-quote__link {
	border-bottom-color: rgba( 28, 43, 30, 0.25 );
}

.dl-quote--light .dl-quote__link:hover,
.dl-quote--light .dl-quote__link:focus-visible {
	border-bottom-color: rgba( 28, 43, 30, 0.6 );
}

/* Dl-band for the teaching page */

/* -------------------------------------------------------------------------
   Teaching bands — full-width image with centered title, whole band links
   ---------------------------------------------------------------------- */

.elementor .dl-band {
	position: relative;
	overflow: hidden;
}

.dl-band img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 21 / 9;
	object-fit: cover;
	object-position: center;
	transition: transform 0.6s ease;
}

/* Scrim. This is what makes the title legible over unpredictable photos —
   it caps how light the backdrop behind the text can get. */
.dl-band::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(
		to bottom,
		rgba( 28, 43, 30, 0.12 ) 0%,
		rgba( 28, 43, 30, 0.52 ) 50%,
		rgba( 28, 43, 30, 0.12 ) 100%
	);
}

/* Elementor puts your CSS class on the widget wrapper, not the h2. */
.elementor .dl-band__title {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: auto;
	max-width: none;
	margin: 0;
	padding: 0 24px;
	pointer-events: none;
}


.dl-band__title .elementor-widget-container {
	width: 100%;
}

.dl-band__title .elementor-heading-title {
	margin: 0;
	text-align: center;
	font-family: "Playfair Display", Georgia, serif;
	font-weight: 400;
	font-size: clamp( 1.6rem, 1.1rem + 2vw, 3rem );
	line-height: 1.2;
	letter-spacing: 0.02em;
	color: rgba( 245, 240, 232, 0.88 );
	text-shadow: 0 1px 28px rgba( 28, 43, 30, 0.5 );
	transition: color 0.3s ease;
}

.dl-band:hover img {
	transform: scale( 1.03 );
}

.dl-band:hover .dl-band__title .elementor-heading-title {
	color: rgba( 245, 240, 232, 1 );
}

.dl-band:focus-visible {
	outline: 2px solid var( --dl-cream, #F5F0E8 );
	outline-offset: -4px;
}

@media ( prefers-reduced-motion: reduce ) {

	.dl-band img,
	.dl-band:hover img {
		transition: none;
		transform: none;
	}
}

@media ( max-width: 767px ) {

	.dl-band img {
		aspect-ratio: 3 / 2;
	}

	.dl-band__title .elementor-heading-title {
		text-shadow: 0 1px 20px rgba( 28, 43, 30, 0.6 );
	}
}

/* Menu Highlighting */

/* Menu Highlighting */

body.page-id-984 .e-n-menu-title-container[href$="/teaching/"] .e-n-menu-title-text,
body.page-id-383 .e-n-menu-title-container[href$="/talks/"]    .e-n-menu-title-text,
body.page-id-462 .e-n-menu-title-container[href$="/articles/"] .e-n-menu-title-text,
body.page-id-484 .e-n-menu-title-container[href$="/books/"]    .e-n-menu-title-text,
body.page-id-568 .e-n-menu-title-container[href$="/schedule/"] .e-n-menu-title-text,
body.page-id-666 .e-n-menu-title-container[href$="/donate/"]   .e-n-menu-title-text,
body.page-id-742 .e-n-menu-title-container[href$="/about/"]    .e-n-menu-title-text {
        color: #C8A465 !important;
        text-decoration: underline;
        text-decoration-color: #C8A465;
        text-decoration-thickness: 1px;
        text-underline-offset: 6px;
}

@media ( max-width: 767px ) {

        .e-n-menu-title-text {
                text-underline-offset: 3px;
        }
}

body.home .elementor-element-06dd44a .elementor-icon {
	position: relative;
}

body.home .elementor-element-06dd44a .elementor-icon::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -6px;
	height: 1px;
	background: #C8A465;
}

/* -------------------------------------------------------------------------
   Responsive — breakpoints match Elementor (tablet ≤1024, phone ≤767)
   ---------------------------------------------------------------------- */

@media ( max-width: 1024px ) {

	.dl-quote__text {
		font-size: 1.8rem;
	}
}

@media ( max-width: 767px ) {

	.dl-quote__text {
		font-size: 1.6rem;
		line-height: 1.5;
	}

	.dl-quote__cite {
		margin-top: 24px;
	}

	.dl-quote__cite::before {
		margin-bottom: 14px;
	}

	.dl-quote__source {
		font-size: 0.8rem;
	}
}

/* ── Books shelf ─────────────────────────────────────── */
.dl-shelf {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  margin-top: var(--dl-space-lg);
}
.dl-book { cursor: pointer; }

.dl-book__cover {
  height: 300px;
  overflow: hidden;
}
.dl-book__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.elementor-widget.dl-book__cover img,
.elementor-widget.dl-book__cover a img {
  display: block;
  width: 100%;
  max-width: 200px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  margin-inline: auto;
  border-radius: 2px;
  box-shadow: 3px 6px 16px rgba(0, 0, 0, 0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.elementor-widget.dl-book__cover a {
  display: block;
}

.elementor-widget.dl-book__cover img:hover,
.elementor-widget.dl-book__cover a:hover img {
    transform: scale(1.06);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
}

.elementor-widget.dl-books-carousel .swiper {
  overflow-x: clip;
  overflow-y: visible;
  padding-top: 8px;
  margin-top: -8px;
  margin-bottom: 0;
}

.dl-book__title {
  font-family: var(--dl-font-body);
  font-size: 0.78rem;
  margin-top: 10px;
  color: var(--dl-ink);
  line-height: 1.4;
  font-style: italic;
}

/* ── Schedule ────────────────────────────────────────── */
.dl-schedule__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--dl-space-lg);
}
.dl-schedule__item {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--dl-rule);
}
.dl-schedule__item:first-child { border-top: 1px solid var(--dl-rule); }
.dl-schedule__date {
  font-family: var(--dl-font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dl-gold);
}
.dl-schedule__title {
  font-family: var(--dl-font-display);
  font-size: 1.15rem;
  color: var(--dl-ink);
  line-height: 1.4;
}
.dl-schedule__location {
  font-family: var(--dl-font-body);
  font-size: 0.88rem;
  font-style: italic;
  color: var(--dl-sage);
  margin-top: 4px;
}
.dl-schedule__type {
  font-family: var(--dl-font-ui);
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dl-moss);
  margin-top: 6px;
}
.dl-schedule__btn {
  font-family: var(--dl-font-ui);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--dl-rule);
  color: var(--dl-forest);
  padding: 10px 24px;
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.dl-schedule__btn:hover { background: var(--dl-forest); color: var(--dl-cream); }

/* ── About section ───────────────────────────────────── */
.dl-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  border-top: 1px solid var(--dl-rule);
}
.dl-about__img-wrap { overflow: hidden; }
.dl-about__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.65);
}
.dl-about__content {
  padding: var(--dl-section-pad);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--dl-parchment);
}
.dl-about__title {
  font-family: var(--dl-font-display);
  font-size: 2.4rem;
  line-height: 1.2;
  color: var(--dl-ink);
  margin-bottom: 24px;
}
.dl-about__title em { font-style: italic; color: var(--dl-forest); }
.dl-about__text {
  font-family: var(--dl-font-body);
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(28, 43, 30, 0.65);
  max-width: 440px;
  margin-bottom: 32px;
}

/* ── Mailing list band ───────────────────────────────────────── */

.dl-subscribe {
  background: var(--dl-forest);
  padding: 36px 72px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: center;
}

/* ── Left: intro text ── */

.dl-subscribe__kicker {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.72);
  margin-bottom: 10px;
}

.dl-subscribe__title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--dl-cream);
  margin: 0;
}

.dl-subscribe__note {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: rgba(245, 240, 232, 0.6);
  max-width: 340px;
  margin: 8px 0 0;
}

/* ── Right: form ── */

.dl-subscribe__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.dl-subscribe__row {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(245, 240, 232, 0.28);
  transition: border-color 0.25s ease;
}

.dl-subscribe__row:focus-within {
  border-bottom-color: var(--dl-brass);
}

.dl-subscribe__input {
  flex: 1;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 11px 4px;
  font-family: 'Spectral', serif;
  font-size: 0.95rem;
  color: var(--dl-cream);
  outline: none;
  -webkit-appearance: none;
}

.dl-subscribe__input::placeholder {
  color: rgba(245, 240, 232, 0.35);
}

.dl-subscribe__input:-webkit-autofill {
  -webkit-text-fill-color: var(--dl-cream);
  transition: background-color 9999s ease-in-out 0s;
}

.dl-subscribe__btn {
  flex: 0 0 auto;
  background: transparent;
  color: var(--dl-brass);
  border: 1px solid var(--dl-brass);
  border-radius: 0;
  padding: 11px 28px;
  margin-bottom: -1px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.dl-subscribe__btn:hover,
.dl-subscribe__btn:focus-visible {
  background: var(--dl-brass);
  color: var(--dl-ink);
  border-color: var(--dl-brass);
  outline: none;
}

.dl-subscribe__btn:active {
  background: #BF9A56;
  border-color: #BF9A56;
  color: var(--dl-ink);
}

.dl-subscribe__btn:disabled {
  opacity: 0.45;
  cursor: default;
  background: transparent;
  color: var(--dl-brass);
}

.dl-subscribe__response {
  font-family: 'Spectral', serif;
  font-style: italic;
  font-size: 0.8rem;
  line-height: 1.6;
  margin: 10px 0 0;
  min-height: 1.3em;
}

.dl-subscribe__response.is-success {
  color: rgba(245, 240, 232, 0.85);
}

.dl-subscribe__response.is-error {
  color: #C98B6B;
}

/* ── Responsive ── */

@media (max-width: 1024px) {
  .dl-subscribe {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 40px;
  }
}

@media (max-width: 768px) {
  .dl-subscribe {
    padding: 36px 24px;
  }

  .dl-subscribe__title {
    font-size: 1.35rem;
  }

  .dl-subscribe__row {
    flex-wrap: wrap;
    border-bottom: 0;
  }

  .dl-subscribe__input {
    flex: 1 0 100%;
    border-bottom: 1px solid rgba(245, 240, 232, 0.28);
    padding: 12px 2px;
  }

  .dl-subscribe__row:focus-within {
    border-bottom-color: transparent;
  }

  .dl-subscribe__input:focus {
    border-bottom-color: var(--dl-brass);
  }

  .dl-subscribe__btn {
    color: #D2AE6D;
    border-color: #D2AE6D;
    flex: 1 0 100%;
    margin: 16px 0 0;
    padding: 13px 0;
  }
}


/* ── Sections ────────────────────────────────────────── */
.dl-section {
  padding: var(--dl-section-pad);
  border-bottom: 1px solid var(--dl-rule);
}
.dl-section--alt {
  background: var(--dl-parchment);
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — Mobile
════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .dl-cards { grid-template-columns: 1fr; gap: 24px; }
  .dl-section { padding: var(--dl-section-pad-m); }
  .dl-section-hd { flex-direction: column; gap: 8px; margin-bottom: 28px; }
  .dl-zoom { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
  .dl-zoom__btn { align-self: flex-start; }
  .dl-shelf { grid-template-columns: repeat(4, 1fr); gap: 12px; }
  .dl-schedule__item { grid-template-columns: 1fr; gap: 8px; }
  .dl-schedule__btn { justify-self: start; margin-top: 8px; }
  .dl-about { grid-template-columns: 1fr; }
  .dl-about__img-wrap { height: 56vw; min-height: 240px; }
  .dl-about__content { padding: 40px 24px; }
  .dl-about__title { font-size: 1.8rem; }
  .dl-quote-band { padding: 60px 24px; }
  .dl-quote-band blockquote { font-size: 1.2rem; }
}

@media (max-width: 480px) {
  .dl-shelf { grid-template-columns: repeat(3, 1fr); }
}
