/* Deluxe Harvest — walnut paper + slate accent (wood trade) */
:root {
  --dh-paper: #f8f4ec;
  --dh-ink: #2b2118;
  --dh-muted: rgba(43, 33, 24, 0.72);
  --dh-walnut: #5c4033;
  --dh-walnut-dark: #3f2c22;
  --dh-slate: #3d5a6c;
  --dh-gold: #b0893c;
  --dh-line: rgba(92, 64, 51, 0.18);
  --dh-card: #fffdf8;
  --dh-shadow: 0 16px 36px rgba(43, 33, 24, 0.1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--dh-ink);
  background: var(--dh-paper);
  line-height: 1.55;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--dh-slate); }

.dh-wrap {
  width: min(1160px, calc(100% - 2.5rem));
  margin: 0 auto;
}

/* Top strip */
.dh-strip {
  background: var(--dh-walnut-dark);
  color: rgba(248, 244, 236, 0.88);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.dh-strip__inner {
  width: min(1160px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 0.45rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: space-between;
}
.dh-strip a { color: #e8dcc8; text-decoration: none; }
.dh-strip a:hover { text-decoration: underline; }

/* Header */
.dh-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--dh-paper);
  border-bottom: 2px solid var(--dh-walnut);
}
.dh-header__row {
  width: min(1160px, calc(100% - 2.5rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}
.dh-logo img { height: 44px; width: auto; }

.dh-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.75rem;
  align-items: center;
}
.dh-nav a {
  text-decoration: none;
  font-weight: 650;
  font-size: 0.92rem;
  color: var(--dh-ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.dh-nav a:hover,
.dh-nav a.is-active { color: var(--dh-slate); box-shadow: inset 0 -2px 0 var(--dh-gold); }

.dh-menu-btn {
  display: none;
  border: 2px solid var(--dh-walnut);
  background: var(--dh-card);
  border-radius: 8px;
  padding: 0.4rem 0.65rem;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--dh-walnut);
}

@media (max-width: 820px) {
  .dh-menu-btn { display: inline-flex; }
  .dh-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--dh-paper);
    border-bottom: 2px solid var(--dh-walnut);
    max-height: 0;
    overflow: hidden;
    transition: max-height 240ms ease;
  }
  .dh-nav.is-open { max-height: 300px; }
  .dh-nav ul { flex-direction: column; padding: 1rem 1.25rem 1.25rem; align-items: flex-start; gap: 0.85rem; }
}

/* Full-bleed hero */
.dh-hero {
  position: relative;
  min-height: min(78vh, 760px);
  overflow: hidden;
  background: var(--dh-walnut-dark);
}

.dh-hero__slides {
  position: absolute;
  inset: 0;
}

.dh-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 800ms ease;
}
.dh-hero__slide.is-active { opacity: 1; z-index: 3; }

.dh-hero__slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dh-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(43, 33, 24, 0.82) 0%, rgba(43, 33, 24, 0.45) 48%, rgba(61, 90, 108, 0.35) 100%);
}

.dh-hero__content {
  position: relative;
  z-index: 3;
  width: min(1160px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 10vw, 6.5rem) 0;
  color: #fff;
  max-width: 40rem;
}

.dh-hero__kicker {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.05rem;
  opacity: 0.92;
  margin: 0 0 0.75rem;
  color: #e8dcc8;
}

.dh-hero__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.dh-hero__lead {
  margin: 0 0 1.85rem;
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  opacity: 0.92;
  max-width: 36rem;
}

.dh-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.dh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.45rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
  cursor: pointer;
  font-family: inherit;
}

.dh-btn--solid {
  background: var(--dh-gold);
  color: var(--dh-walnut-dark);
  border-color: var(--dh-gold);
}
.dh-btn--solid:hover { filter: brightness(1.06); }

.dh-btn--line {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.dh-btn--line:hover { background: rgba(255, 255, 255, 0.08); }

.dh-hero__dots {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.5rem;
}

.dh-hero__dot {
  width: 36px;
  height: 4px;
  border-radius: 2px;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}
.dh-hero__dot.is-active { background: var(--dh-gold); }

/* Sections */
.dh-section { padding: clamp(3rem, 5vw, 4.75rem) 0; }
.dh-section__head { margin-bottom: 1.4rem; }
.dh-section__head--center { text-align: center; }
.dh-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--dh-muted);
}
.dh-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.5vw, 2.2rem);
  letter-spacing: -0.02em;
}

/* Product grid — 4 equal columns */
.dh-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.dh-card {
  background: var(--dh-card);
  border: 1px solid var(--dh-line);
  border-bottom: 4px solid var(--dh-slate);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: var(--dh-shadow);
}

.dh-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.dh-card__body {
  padding: 1rem 1.05rem 1.15rem;
  flex: 1;
  display: grid;
  gap: 0.35rem;
}

.dh-card__name { margin: 0; font-size: 1.02rem; font-weight: 700; }
.dh-card__desc { margin: 0; font-size: 0.9rem; color: var(--dh-muted); }

@media (max-width: 1080px) {
  .dh-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .dh-grid-4 { grid-template-columns: 1fr; }
}

/* About — image left, text right */
.dh-about {
  background: linear-gradient(180deg, rgba(61, 90, 108, 0.07), transparent);
}
.dh-about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  align-items: center;
}
.dh-about__media {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--dh-line);
  box-shadow: var(--dh-shadow);
}
.dh-about__media img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}
.dh-about__text p {
  margin: 0 0 1rem;
  color: var(--dh-muted);
  max-width: 50ch;
}

@media (max-width: 900px) {
  .dh-about__grid { grid-template-columns: 1fr; }
}

/* Testimonials */
.dh-reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.dh-review {
  padding: 1.2rem 1.15rem 1.1rem;
  background: var(--dh-card);
  border: 1px solid var(--dh-line);
  border-radius: 6px;
  box-shadow: var(--dh-shadow);
}

.dh-review__top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.dh-review__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.dh-review__name { font-weight: 700; }
.dh-review__role { font-size: 0.86rem; color: var(--dh-muted); margin-top: 0.15rem; }

.dh-review__stars {
  color: var(--dh-gold);
  letter-spacing: 0.06em;
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
}

.dh-review__text { margin: 0; color: var(--dh-muted); font-size: 0.94rem; }

@media (max-width: 900px) {
  .dh-reviews { grid-template-columns: 1fr; }
}

/* Message split */
.dh-split {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 1.2rem;
  align-items: stretch;
}

.dh-split__pic {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--dh-line);
  box-shadow: var(--dh-shadow);
  min-height: 260px;
}
.dh-split__pic img { width: 100%; height: 100%; object-fit: cover; }

.dh-form {
  border-radius: 6px;
  padding: 1.25rem 1.2rem;
  background: var(--dh-card);
  border: 1px solid var(--dh-line);
  box-shadow: var(--dh-shadow);
  display: grid;
  gap: 0.85rem;
}

.dh-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.dh-field { display: grid; gap: 0.3rem; }
.dh-field span { font-size: 0.86rem; color: var(--dh-muted); }

.dh-field input,
.dh-field textarea {
  width: 100%;
  border-radius: 4px;
  border: 1px solid var(--dh-line);
  padding: 0.78rem 0.85rem;
  font: inherit;
  background: #fff;
  outline: none;
}
.dh-field textarea { resize: vertical; min-height: 140px; }

.dh-field input:focus,
.dh-field textarea:focus {
  border-color: var(--dh-slate);
  box-shadow: 0 0 0 2px rgba(61, 90, 108, 0.15);
}

.dh-form__note { margin: 0; font-size: 0.84rem; color: var(--dh-muted); }

@media (max-width: 980px) {
  .dh-split { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .dh-form__row { grid-template-columns: 1fr; }
}

/* Footer */
.dh-footer {
  border-top: 2px solid var(--dh-walnut);
  padding-top: 2.5rem;
  background: linear-gradient(180deg, transparent, rgba(92, 64, 51, 0.06));
}

.dh-footer__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 1.15fr;
  gap: 1.25rem;
  padding-bottom: 1.75rem;
}

.dh-footer__logo img { height: 40px; width: auto; margin-bottom: 0.55rem; }

.dh-footer__desc {
  margin: 0 0 0.9rem;
  color: var(--dh-muted);
  font-size: 0.94rem;
  max-width: 44ch;
}

.dh-footer h3 {
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.dh-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  color: var(--dh-muted);
  font-size: 0.93rem;
}

.dh-footer a {
  color: var(--dh-walnut);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.dh-footer a:hover { border-bottom-color: rgba(92, 64, 51, 0.35); }

.dh-socials { display: flex; gap: 0.5rem; margin-top: 0.35rem; }

.dh-soc {
  width: 38px;
  height: 38px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--dh-line);
  background: #fff;
  color: var(--dh-walnut);
  text-decoration: none;
}
.dh-soc svg { width: 18px; height: 18px; fill: currentColor; }
.dh-soc:hover { background: var(--dh-paper); }

.dh-footer__bar {
  padding: 0.9rem 0 1.15rem;
  background: rgba(92, 64, 51, 0.08);
  text-align: center;
  font-size: 0.86rem;
  color: var(--dh-muted);
}

@media (max-width: 900px) {
  .dh-footer__grid { grid-template-columns: 1fr; }
}

/* Contact page */
.dh-contact-banner {
  width: 100%;
  border-bottom: 3px solid var(--dh-walnut);
}
.dh-contact-banner img {
  width: 100%;
  height: min(380px, 48vw);
  object-fit: cover;
}

.dh-contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.35rem;
  padding: clamp(2.5rem, 4vw, 3.75rem) 0;
  width: min(1160px, calc(100% - 2.5rem));
  margin: 0 auto;
}

.dh-contact-split__img {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--dh-line);
  box-shadow: var(--dh-shadow);
}
.dh-contact-split__img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.dh-contact-card {
  border-radius: 6px;
  padding: 1.4rem 1.45rem;
  background: var(--dh-card);
  border: 1px solid var(--dh-line);
  box-shadow: var(--dh-shadow);
}

.dh-contact-card h2 {
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
}

.dh-contact-card dl { margin: 0; display: grid; gap: 1rem; }
.dh-contact-card dt {
  margin: 0;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dh-muted);
}
.dh-contact-card dd { margin: 0.35rem 0 0; font-size: 1rem; }
.dh-contact-card a { word-break: break-word; }

@media (max-width: 900px) {
  .dh-contact-split { grid-template-columns: 1fr; }
}

/* About page */
.dh-about-page__block {
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.dh-about-page__block:nth-child(even) {
  background: rgba(61, 90, 108, 0.06);
}

.dh-about-page__figure {
  margin: 0 0 1.2rem;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--dh-line);
  box-shadow: var(--dh-shadow);
}
.dh-about-page__figure img {
  width: 100%;
  max-height: min(520px, 72vh);
  object-fit: cover;
}

.dh-about-page__copy {
  max-width: 65ch;
  margin: 0 auto;
  color: var(--dh-muted);
}
.dh-about-page__copy p { margin: 0 0 1rem; }
.dh-about-page__copy p:last-child { margin-bottom: 0; }
