:root {
  --da-primary: #3d4f36;
  --da-primary-dark: #2d3d28;
  --da-primary-soft: #5a6b52;
  --da-accent: #a3432b;
  --da-accent-dark: #8b3723;
  --da-surface: #f5f3ef;
  --da-surface-strong: #efe8dd;
  --da-card: #fffdf9;
  --da-ink: #2e2d2a;
  --da-muted: #6d6a64;
  --da-border: #e4dbcf;
  --da-shadow: 0 18px 40px rgba(46, 45, 42, 0.08);
  --da-radius-lg: 28px;
  --da-radius-md: 20px;
  --da-radius-sm: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.da-page {
  margin: 0;
  color: var(--da-ink);
  background: linear-gradient(180deg, #fbf8f3 0%, #f5f3ef 100%);
  font-family: "Inter", sans-serif;
}

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

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

.da-main {
  padding: 1.5rem 0 4rem;
}

.da-utility-bar {
  border-bottom: 1px solid rgba(228, 219, 207, 0.7);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
}

.da-utility-bar__inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.86rem;
  color: var(--da-muted);
}

.da-utility-bar__date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}

.da-utility-bar__tagline {
  max-width: 580px;
  text-align: right;
}

.da-brandbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
}

.da-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.da-brand__mark {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--da-primary) 0%, var(--da-primary-dark) 100%);
  box-shadow: var(--da-shadow);
  flex-shrink: 0;
}

.da-brand__logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.da-brand__fallback {
  color: white;
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.da-brand__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.da-brand__title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.65rem, 2.5vw, 2.4rem);
  line-height: 1;
  font-weight: 700;
  color: var(--da-primary-dark);
}

.da-brand__subtitle {
  margin-top: 0.35rem;
  color: var(--da-muted);
  font-size: 0.95rem;
}

.da-brandbar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.da-link-chip,
.da-nav-toggle {
  border: 1px solid rgba(61, 79, 54, 0.14);
  background: white;
  color: var(--da-primary-dark);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  font-weight: 600;
  transition: 0.2s ease;
}

.da-link-chip:hover,
.da-nav-toggle:hover,
.da-link-chip.is-active {
  background: var(--da-primary);
  color: white;
}

.da-nav-toggle {
  display: none;
}

.da-main-nav {
  border-top: 1px solid rgba(228, 219, 207, 0.9);
  border-bottom: 1px solid rgba(228, 219, 207, 0.9);
  background: rgba(245, 243, 239, 0.9);
}

.da-main-nav__inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.75rem 0;
  scrollbar-width: none;
}

.da-main-nav__inner::-webkit-scrollbar {
  display: none;
}

.da-main-nav__link {
  white-space: nowrap;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  color: var(--da-primary-dark);
  transition: 0.2s ease;
}

.da-main-nav__link:hover,
.da-main-nav__link.is-active {
  background: rgba(163, 67, 43, 0.12);
  color: var(--da-accent-dark);
}

.da-search-overlay[hidden] {
  display: none !important;
}

.da-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.da-search-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(25, 25, 25, 0.55);
}

.da-search-overlay__panel {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 10vh auto 0;
  background: var(--da-card);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.da-search-overlay__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 0;
  background: transparent;
  font-size: 1.15rem;
  color: var(--da-muted);
}

.da-search-overlay__eyebrow,
.da-section-eyebrow,
.da-panel__eyebrow,
.da-footer__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--da-accent);
  font-weight: 700;
}

.da-search-overlay__title,
.da-section-title,
.da-panel__title,
.da-footer__title,
.da-page-hero__title,
.da-article-card__title,
.da-panel--feature__title {
  font-family: "Playfair Display", serif;
  color: var(--da-primary-dark);
}

.da-search-overlay__title {
  margin: 0.55rem 0 1.25rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.da-search-overlay__form,
.da-search-form {
  display: flex;
  gap: 0.75rem;
}

.da-search-overlay__input,
.da-search-form__input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--da-border);
  border-radius: 999px;
  padding: 0.95rem 1.15rem;
  font-size: 1rem;
  background: white;
}

.da-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.85rem 1.35rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.da-btn--accent {
  background: var(--da-accent);
  color: white;
}

.da-btn--accent:hover {
  background: var(--da-accent-dark);
  color: white;
}

.da-btn--ghost {
  border-color: rgba(61, 79, 54, 0.18);
  background: rgba(255, 255, 255, 0.75);
  color: var(--da-primary-dark);
}

.da-btn--ghost:hover {
  background: white;
  color: var(--da-primary-dark);
}

.da-btn--dark {
  background: var(--da-primary-dark);
  color: white;
}

.da-btn--dark:hover {
  background: var(--da-primary);
  color: white;
}

.da-hero {
  padding: 1.25rem 0 2rem;
}

.da-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: stretch;
}

.da-hero__content,
.da-panel,
.da-feature-card,
.da-news-row--card,
.da-gallery-tile,
.da-article-card {
  background: var(--da-card);
  border: 1px solid rgba(228, 219, 207, 0.85);
  box-shadow: var(--da-shadow);
}

.da-hero__content {
  border-radius: var(--da-radius-lg);
  padding: clamp(1.75rem, 3vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.da-hero__title {
  margin: 0.75rem 0 1rem;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.04;
  color: var(--da-primary-dark);
}

.da-hero__summary,
.da-panel__text,
.da-panel--feature__summary,
.da-page-hero__summary {
  color: var(--da-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.da-meta-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  color: var(--da-muted);
  font-size: 0.9rem;
}

.da-meta-row--wrap span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.da-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  background: rgba(61, 79, 54, 0.1);
  color: var(--da-primary-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.da-pill--light {
  background: rgba(255, 255, 255, 0.18);
  color: white;
}

.da-hero__actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.da-hero__media {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: calc(var(--da-radius-lg) + 8px);
  background: linear-gradient(135deg, #d8d0c4 0%, #c7b7a3 100%);
  box-shadow: var(--da-shadow);
}

.da-hero__image,
.da-feature-card__media img,
.da-news-row__media img,
.da-gallery-card__image,
.da-panel--feature__image,
.da-related-card__media img,
.da-sidebar-list__thumb,
.da-gallery-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.da-hero__placeholder,
.da-feature-card__placeholder,
.da-news-row__placeholder,
.da-panel--feature__placeholder,
.da-related-card__placeholder,
.da-sidebar-list__thumb--placeholder {
  width: 100%;
  height: 100%;
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(61, 79, 54, 0.1);
  color: var(--da-primary);
  font-size: 2rem;
}

.da-section {
  padding: 1rem 0 2rem;
}

.da-section--soft {
  background: linear-gradient(180deg, rgba(239, 232, 221, 0.35) 0%, rgba(245, 243, 239, 0) 100%);
}

.da-section-heading {
  margin-bottom: 1.5rem;
}

.da-section-heading--center {
  text-align: center;
}

.da-section-title {
  margin: 0.6rem 0 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.da-feature-card,
.da-related-card,
.da-gallery-tile {
  border-radius: var(--da-radius-md);
  overflow: hidden;
  height: 100%;
}

.da-feature-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.da-feature-card__body,
.da-related-card__body,
.da-gallery-tile__body {
  padding: 1.35rem;
}

.da-feature-card__body h2,
.da-gallery-tile__body h2,
.da-related-card__body h3,
.da-news-row__content h3 {
  margin: 0.55rem 0;
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  line-height: 1.28;
  color: var(--da-primary-dark);
}

.da-feature-card__body p,
.da-related-card__body p,
.da-news-row__content p,
.da-gallery-tile__body p {
  margin: 0;
  color: var(--da-muted);
  line-height: 1.75;
}

.da-inline-link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--da-accent);
  font-weight: 700;
}

.da-news-list {
  display: grid;
  gap: 1.1rem;
}

.da-news-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 1.15rem;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(228, 219, 207, 0.75);
  border-radius: var(--da-radius-md);
  padding: 1rem;
}

.da-news-row--card {
  padding: 1rem;
}

.da-news-row__media {
  display: block;
  border-radius: var(--da-radius-sm);
  overflow: hidden;
  min-height: 164px;
}

.da-news-row__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.da-panel {
  border-radius: var(--da-radius-md);
  padding: 1.5rem;
}

.da-panel--sticky {
  position: sticky;
  top: 1.5rem;
}

.da-panel__header {
  margin-bottom: 1rem;
}

.da-panel__title {
  margin: 0.45rem 0 0;
  font-size: 1.7rem;
}

.da-checklist {
  margin: 1rem 0 1.4rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.da-checklist li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--da-muted);
}

.da-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: var(--da-accent);
}

.da-gallery-card,
.da-gallery-tile__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: var(--da-radius-md);
  overflow: hidden;
  box-shadow: var(--da-shadow);
}

.da-gallery-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.25rem;
  background: linear-gradient(180deg, transparent 0%, rgba(21, 25, 20, 0.8) 100%);
  color: white;
}

.da-gallery-card__overlay strong {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  line-height: 1.35;
}

.da-section-cta {
  margin-top: 2rem;
  text-align: center;
}

.da-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  color: var(--da-muted);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.da-breadcrumb a {
  color: var(--da-accent);
}

.da-page-hero {
  margin-bottom: 1.75rem;
}

.da-page-hero__title {
  margin: 0.5rem 0 0.65rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.da-panel--feature__image,
.da-panel--feature__placeholder {
  border-radius: var(--da-radius-md);
  min-height: 290px;
}

.da-panel--feature__title {
  margin: 0.65rem 0 0.8rem;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.da-article-card {
  border-radius: var(--da-radius-lg);
  padding: clamp(1.3rem, 3vw, 2.4rem);
}

.da-article-card__title {
  margin: 0.6rem 0 1rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
}

.da-summary-box,
.da-entity-box {
  background: linear-gradient(180deg, #fff 0%, #faf6ef 100%);
  border: 1px solid var(--da-border);
  border-radius: var(--da-radius-md);
  padding: 1.2rem 1.25rem;
  margin: 1.4rem 0;
  color: var(--da-muted);
}

.da-summary-box > *:last-child,
.da-article-card__body > *:last-child {
  margin-bottom: 0;
}

.da-article-card__figure {
  margin: 1.6rem 0 1.4rem;
}

.da-article-card__image {
  border-radius: var(--da-radius-md);
  width: 100%;
  max-height: 520px;
  object-fit: cover;
}

.da-article-card__figure figcaption {
  margin-top: 0.6rem;
  color: var(--da-muted);
  font-size: 0.85rem;
  font-style: italic;
}

.da-article-card__body,
.da-summary-box {
  font-size: 1rem;
  line-height: 1.85;
}

.da-article-card__body h1,
.da-article-card__body h2,
.da-article-card__body h3,
.da-article-card__body h4 {
  margin-top: 1.8rem;
  margin-bottom: 0.85rem;
  color: var(--da-primary-dark);
  font-family: "Playfair Display", serif;
}

.da-article-card__body p,
.da-article-card__body ul,
.da-article-card__body ol,
.da-summary-box p {
  color: var(--da-ink);
}

.da-article-card__body ul,
.da-article-card__body ol {
  padding-left: 1.2rem;
}

.da-tag-group {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.da-tag-group__label {
  font-weight: 700;
  color: var(--da-primary-dark);
}

.da-entity-box h2 {
  margin: 0 0 0.85rem;
  font-size: 1.2rem;
}

.da-share-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1.6rem;
  font-weight: 600;
}

.da-share-row a {
  color: var(--da-accent);
}

.da-related-card__media {
  display: block;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.da-related-card__placeholder {
  min-height: 190px;
}

.da-sidebar-list {
  display: grid;
  gap: 1rem;
}

.da-sidebar-list__item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.da-sidebar-list__thumb {
  width: 88px;
  height: 72px;
  object-fit: cover;
  border-radius: 14px;
  flex-shrink: 0;
}

.da-sidebar-list__thumb--placeholder {
  width: 88px;
  min-height: 72px;
  border-radius: 14px;
}

.da-sidebar-list__content {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.da-sidebar-list__content strong {
  font-size: 0.95rem;
  line-height: 1.45;
}

.da-sidebar-list__content small {
  color: var(--da-muted);
}

.da-category-links {
  display: grid;
  gap: 0.65rem;
}

.da-category-links a {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(61, 79, 54, 0.06);
  color: var(--da-primary-dark);
  font-weight: 600;
  transition: 0.2s ease;
}

.da-category-links a:hover,
.da-category-links a.is-active {
  background: var(--da-primary);
  color: white;
}

.da-search-result-count {
  margin: 1rem 0 0;
  color: var(--da-muted);
}

.da-empty-state {
  padding: 3rem 1.5rem;
  text-align: center;
  border-radius: var(--da-radius-md);
  border: 1px dashed rgba(61, 79, 54, 0.24);
  color: var(--da-muted);
  background: rgba(255, 255, 255, 0.55);
}

.da-empty-state i {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 2rem;
  color: var(--da-primary-soft);
}

.da-pagination-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.da-footer {
  margin-top: 3rem;
  padding: 3rem 0 2rem;
  background: var(--da-primary-dark);
  color: rgba(255, 255, 255, 0.86);
}

.da-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 0.8fr));
  gap: 2rem;
}

.da-footer__title {
  margin: 0.55rem 0 0.8rem;
  font-size: 2rem;
  color: white;
}

.da-footer__text {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

.da-footer__links {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.da-footer__links a {
  color: rgba(255, 255, 255, 0.88);
}

.da-footer__bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
}

body.da-nav-open {
  overflow: hidden;
}

@media (max-width: 991.98px) {
  .da-hero__grid,
  .da-footer__grid {
    grid-template-columns: 1fr;
  }

  .da-hero__media {
    min-height: 320px;
  }

  .da-panel--sticky {
    position: static;
  }

  .da-main-nav {
    display: none;
  }

  .da-main-nav.is-open {
    display: block;
  }

  .da-main-nav__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .da-main-nav__link {
    width: 100%;
  }

  .da-nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 767.98px) {
  .da-brandbar,
  .da-utility-bar__inner,
  .da-search-overlay__form,
  .da-search-form,
  .da-footer__bottom,
  .da-news-row {
    flex-direction: column;
    align-items: stretch;
  }

  .da-brandbar__actions {
    width: 100%;
    justify-content: space-between;
  }

  .da-link-chip span {
    display: none;
  }

  .da-news-row {
    grid-template-columns: 1fr;
  }

  .da-search-overlay__panel {
    margin: 6vh 1rem 0;
    padding: 1.5rem;
  }

  .da-brand__subtitle,
  .da-utility-bar__tagline {
    display: none;
  }
}

/* Reference-like adjustments */
.da-header {
  background: #fff;
  border-bottom: 1px solid #d7cec3;
}

.da-header__accent {
  height: 4px;
  width: 100%;
  background: var(--da-accent);
}

.da-brandbar--reference {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.5rem;
  padding: 0.95rem 0;
}

.da-brand__mark--reference {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.da-brand__fallback--reference {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 54px;
  max-width: 210px;
  max-height: 60px;
  overflow: hidden;
  color: var(--da-primary-dark);
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
}

.da-brand__fallback--reference .da-brand__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}

.da-brand__subtitle--reference {
  display: none;
}

.da-main-nav--desktop {
  display: flex;
  justify-content: flex-start;
  justify-self: center;
  min-width: 0;
  width: min(560px, 100%);
  border: 0;
  background: transparent;
}

.da-main-nav__desktop-frame {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
}

.da-main-nav__strip-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
}

.da-main-nav__scroll-btn {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(92, 74, 66, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #5c4a42;
  font-size: 0.72rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.da-main-nav__scroll-btn:hover:not(:disabled) {
  background: #5c4a42;
  border-color: #5c4a42;
  color: #fff;
}

.da-main-nav__scroll-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.da-main-nav__strip {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.da-main-nav__strip::before,
.da-main-nav__strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 18px;
  pointer-events: none;
  z-index: 1;
}

.da-main-nav__strip::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.da-main-nav__strip::after {
  right: 0;
  background: linear-gradient(270deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.da-main-nav__inner--desktop {
  gap: 0.9rem;
  justify-content: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 1rem;
  max-width: 100%;
  white-space: nowrap;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.da-main-nav__inner--desktop::-webkit-scrollbar {
  display: none;
}

.da-main-nav--desktop .da-main-nav__link {
  flex: 0 0 auto;
  padding: 0;
  border-radius: 0;
  background: transparent !important;
  font-size: 13px;
  font-weight: 600;
  color: var(--da-ink);
  scroll-snap-align: start;
}

.da-main-nav__link--fixed {
  position: relative;
  z-index: 2;
}

.da-main-nav--desktop .da-main-nav__link:hover,
.da-main-nav--desktop .da-main-nav__link.is-active {
  color: var(--da-accent-dark);
}

.da-brandbar__actions--reference {
  gap: 0.85rem;
  flex-shrink: 0;
}

.da-socials {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.da-socials__link,
.da-search-trigger {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #5c4a42;
  color: #fff;
  border: 0;
  transition: background 0.2s ease;
}

.da-socials__link:hover,
.da-search-trigger:hover {
  background: #4a3c36;
  color: #fff;
}

.da-main-nav--mobile {
  display: none;
  border-top: 1px solid #e5ddd3;
  background: #fff;
}

.da-hero--reference {
  position: relative;
  overflow: hidden;
  border-top: 1px solid #b9a895;
  border-bottom: 1px solid #b9a895;
  min-height: 560px;
  padding: 0;
  background: #d8c5b2;
}

.da-hero__backdrop,
.da-hero__overlay {
  position: absolute;
  inset: 0;
}

.da-hero--reference .da-hero__image,
.da-hero--reference .da-hero__placeholder {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.da-hero__overlay {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.24) 48%, rgba(0, 0, 0, 0.05) 100%);
}

.da-hero__container {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 560px;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.da-hero__content--reference {
  max-width: 28rem;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.da-hero--reference .da-hero__title,
.da-hero--reference .da-hero__summary {
  color: #fff;
}

.da-hero--reference .da-hero__title {
  font-size: clamp(2.15rem, 5vw, 3.45rem);
  line-height: 1.08;
}

.da-hero--reference .da-hero__summary {
  max-width: 32rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.da-featured-reference {
  padding-top: 3rem;
}

.da-section-heading--line {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.da-section-heading--line::after {
  content: "";
  height: 1px;
  flex: 1;
  background: #d1c7ba;
}

.da-section-title--italic {
  margin: 0;
  color: var(--da-accent);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.1rem);
}

.da-section-title--with-lines {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
}

.da-section-title--with-lines::before,
.da-section-title--with-lines::after {
  content: "";
  display: inline-block;
  width: clamp(48px, 12vw, 180px);
  height: 1px;
  background: #d1c7ba;
}

.da-feature-card {
  border-radius: 2px;
}

.da-feature-card--family {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.da-feature-card--family .da-feature-card__media {
  aspect-ratio: 4 / 3;
  background: #e5ddd3;
}

.da-feature-card__body--family {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: rgba(250, 241, 222, 0.92);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.da-feature-card__body--family h2 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1f1f1f;
}

.da-feature-card--inspiring {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 520px;
}

.da-feature-card__media--overlay {
  position: relative;
  height: 100%;
  aspect-ratio: 4 / 5;
}

.da-feature-card__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.35) 45%, rgba(0, 0, 0, 0.85) 100%);
}

.da-feature-card__headline {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  max-width: 90%;
  text-align: right;
  color: white;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.35;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.da-section--soft {
  background: transparent;
}

.da-news-list {
  gap: 0;
}

.da-news-row {
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  border: 0;
  border-bottom: 1px solid #e5ddd3;
  border-radius: 0;
  background: transparent;
}

.da-news-row:last-child {
  border-bottom: 0;
}

.da-news-row__media {
  min-height: 96px;
  border-radius: 2px;
}

.da-news-row__content h3 {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1f1f1f;
}

.da-news-row__content h3 a:hover {
  color: var(--da-accent);
}

.da-news-row__content p {
  display: none;
}

.da-meta-row {
  gap: 0.45rem;
  font-size: 0.78rem;
}

.da-panel--tips {
  border-radius: 12px;
  border-color: rgba(226, 199, 152, 0.9);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.da-panel--tips__icon {
  position: relative;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(61, 79, 54, 0.1);
  color: var(--da-primary);
  font-size: 1.2rem;
}

.da-panel--tips__icon span {
  position: absolute;
  right: 2px;
  top: 2px;
  color: var(--da-accent);
  font-size: 0.65rem;
}

.da-panel--tips .da-panel__title {
  font-size: 1.35rem;
}

.da-gallery-card {
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.da-gallery-card__overlay {
  align-items: flex-end;
  justify-content: flex-end;
  padding-top: 4rem;
}

.da-gallery-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 11rem;
  padding: 0.7rem 1.1rem;
  border-radius: 8px;
  background: var(--da-accent);
  color: white;
  font-size: 0.92rem;
  font-weight: 700;
}

.da-footer {
  margin-top: 2.5rem;
  padding: 2rem 0;
  border-top: 1px solid #e5ddd3;
  background: rgba(61, 79, 54, 0.06);
  color: #5f5f5f;
}

.da-footer__simple {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: center;
  font-size: 0.92rem;
}

.da-footer__brand {
  font-weight: 700;
  color: var(--da-primary);
}

.da-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.da-footer__nav a:hover {
  color: var(--da-accent);
}

@media (max-width: 991.98px) {
  .da-main-nav--desktop {
    display: none;
  }

  .da-brandbar--reference {
    grid-template-columns: auto auto;
  }

  .da-main-nav--mobile.is-open {
    display: block;
  }

  .da-main-nav__strip::before,
  .da-main-nav__strip::after {
    display: none;
  }

  .da-main-nav__scroll-btn {
    display: none;
  }

  .da-hero--reference,
  .da-hero--reference .da-hero__image,
  .da-hero--reference .da-hero__placeholder,
  .da-hero__container {
    min-height: 460px;
  }

  .da-feature-card--inspiring {
    max-height: none;
  }
}

@media (max-width: 767.98px) {
  .da-brandbar--reference {
    display: flex;
    padding: 0.9rem 0;
  }

  .da-socials {
    display: none;
  }

  .da-search-trigger {
    width: 40px;
    height: 40px;
  }

  .da-brand__fallback--reference {
    min-width: 0;
    max-width: 170px;
    max-height: 54px;
    font-size: 1.7rem;
  }

  .da-hero--reference,
  .da-hero--reference .da-hero__image,
  .da-hero--reference .da-hero__placeholder,
  .da-hero__container {
    min-height: 360px;
  }

  .da-hero--reference .da-hero__title {
    font-size: 2.25rem;
  }

  .da-section-title--with-lines::before,
  .da-section-title--with-lines::after {
    width: 40px;
  }

  .da-news-row {
    grid-template-columns: 80px minmax(0, 1fr);
  }

  .da-footer__simple {
    flex-direction: column;
  }
}
