/* 1970cam — Shopify-style brand site */

:root {
  --dc-bg: #faf7f2;
  --dc-bg-section: #f2ede3;
  --dc-bg-dark: #1c1a17;
  --dc-text: #1c1a17;
  --dc-muted: #6b645a;
  --dc-border: #e3dcce;
  --dc-accent: #2a2622;
  --dc-accent-hover: #3a352f;
  --dc-radius: 14px;
  --dc-radius-lg: 20px;
  --dc-header-h: 64px;
  --dc-announce-h: 36px;
  --dc-font: 'Plus Jakarta Sans', system-ui, sans-serif;
  --dc-serif: 'Lora', Georgia, serif;
}

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

.dc-site {
  margin: 0;
  font-family: var(--dc-font);
  background: var(--dc-bg);
  color: var(--dc-text);
  -webkit-font-smoothing: antialiased;
}

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

.dc-site a {
  color: inherit;
}

/* ── Announcement ── */

.dc-announce {
  background: var(--dc-bg-dark);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 10px 16px;
  line-height: 1.3;
}

/* ── Header / Nav ── */

.dc-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--dc-bg);
  border-bottom: 1px solid var(--dc-border);
}

.dc-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  height: var(--dc-header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.dc-nav__left,
.dc-nav__right {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dc-nav__right {
  justify-content: flex-end;
}

.dc-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--dc-text);
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.15s;
  font-family: inherit;
}

.dc-nav__link:hover,
.dc-nav__item--mega:hover > .dc-nav__link {
  background: var(--dc-bg-section);
}

.dc-nav__chevron {
  font-size: 10px;
  opacity: 0.6;
}

.dc-nav__logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  text-decoration: none;
  color: var(--dc-text);
  white-space: nowrap;
}

.dc-nav__cta {
  padding: 8px 14px;
  background: var(--dc-accent);
  color: #fff !important;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.dc-nav__cta:hover {
  background: var(--dc-accent-hover);
}

.dc-nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 8px;
}

.dc-nav__burger span {
  display: block;
  height: 2px;
  background: var(--dc-text);
  margin: 5px 0;
  border-radius: 1px;
}

/* ── Mega menu ── */

.dc-nav__item--mega {
  position: static;
}

.dc-mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--dc-bg);
  border-bottom: 1px solid var(--dc-border);
  box-shadow: 0 24px 48px rgba(28, 26, 23, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.dc-nav__item--mega:hover .dc-mega,
.dc-nav__item--mega.is-open .dc-mega,
.dc-header.is-mega-open .dc-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.dc-mega__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 20px 32px;
  display: grid;
  grid-template-columns: 1fr min(340px, 32%);
  gap: 28px;
  align-items: start;
}

.dc-mega__inner--single {
  display: flex;
  justify-content: center;
  padding: 24px 20px 28px;
}

.dc-mega__product {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  padding: 8px;
  border-radius: var(--dc-radius-lg);
  transition: background 0.15s;
}

.dc-mega__product:hover {
  background: var(--dc-bg-section);
}

.dc-mega__product-badge {
  margin: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dc-muted);
}

.dc-mega__product img {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

.dc-mega__product-title {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.dc-mega__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 20px;
}

.dc-mega__tile {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px;
  border-radius: var(--dc-radius);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}

.dc-mega__tile:hover {
  background: var(--dc-bg-section);
}

.dc-mega__thumb {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--dc-bg-section);
}

.dc-mega__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dc-mega__tile-title {
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dc-mega__badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: 4px;
  background: var(--dc-bg-section);
  color: var(--dc-muted);
}

.dc-mega__tile-desc {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--dc-muted);
}

.dc-mega__feature {
  position: relative;
  border-radius: var(--dc-radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  text-decoration: none;
  color: #fff;
  display: block;
}

.dc-mega__feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dc-mega__feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.dc-mega__feature-title {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 4px;
}

.dc-mega__feature-desc {
  margin: 0;
  font-size: 13px;
  opacity: 0.9;
  line-height: 1.4;
}

/* ── Mobile nav drawer ── */

.dc-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(28, 26, 23, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.dc-mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
}

.dc-mobile-nav__panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: var(--dc-bg);
  padding: 20px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
}

.dc-mobile-nav.is-open .dc-mobile-nav__panel {
  transform: translateX(0);
}

.dc-mobile-nav__close {
  border: none;
  background: none;
  font-size: 28px;
  cursor: pointer;
  padding: 4px 8px;
  margin-bottom: 16px;
  line-height: 1;
}

.dc-mobile-nav__product {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 8px 0 20px;
  margin-bottom: 4px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--dc-border);
}

.dc-mobile-nav__product-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dc-muted);
}

.dc-mobile-nav__product img {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

.dc-mobile-nav__product-title {
  font-size: 15px;
  font-weight: 800;
}

.dc-mobile-nav__link {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--dc-border);
}

.dc-mobile-nav__sub {
  padding-left: 12px;
}

.dc-mobile-nav__sub .dc-mobile-nav__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--dc-muted);
}

/* ── Hero ── */

.dc-hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.dc-hero__bg {
  position: absolute;
  inset: 0;
}

.dc-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 26, 23, 0.75) 0%, rgba(28, 26, 23, 0.2) 50%, rgba(28, 26, 23, 0.15) 100%);
}

.dc-hero__content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 20px 56px;
  color: #fff;
}

.dc-hero__title {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
  max-width: 12ch;
}

.dc-hero__subtitle {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  opacity: 0.95;
}

.dc-hero__body {
  font-size: 16px;
  line-height: 1.55;
  max-width: 420px;
  margin: 0 0 24px;
  opacity: 0.9;
}

.dc-hero__cta {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: #fff;
  color: var(--dc-text);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.dc-hero__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.dc-hero__rating {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  opacity: 0.85;
}

/* ── Products row ── */

.dc-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 20px;
}

.dc-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.dc-section__title {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
}

.dc-section__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--dc-muted);
  text-decoration: none;
}

.dc-section__link:hover {
  color: var(--dc-text);
}

.dc-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.dc-product-card {
  text-decoration: none;
  color: inherit;
}

.dc-product-card__img-wrap {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--dc-radius-lg);
  overflow: hidden;
  background: var(--dc-bg-section);
  margin-bottom: 12px;
}

.dc-product-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.dc-product-card:hover .dc-product-card__img-wrap img {
  transform: scale(1.03);
}

.dc-product-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--dc-bg);
  color: var(--dc-text);
}

.dc-product-card__name {
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 2px;
}

.dc-product-card__variant {
  font-size: 13px;
  color: var(--dc-muted);
  margin: 0 0 4px;
}

.dc-product-card__price {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
}

/* ── Moments grid ── */

.dc-moments-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.dc-moment-card {
  position: relative;
  border-radius: var(--dc-radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  text-decoration: none;
  color: #fff;
}

.dc-moment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.dc-moment-card:hover img {
  transform: scale(1.04);
}

.dc-moment-card__label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  font-size: 16px;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* ── Quote band ── */

.dc-quote-band {
  padding: 80px 20px;
  text-align: center;
}

.dc-quote-band__text {
  max-width: 640px;
  margin: 0 auto;
  font-family: var(--dc-serif);
  font-style: italic;
  font-size: clamp(17px, 2.5vw, 21px);
  line-height: 1.75;
  color: var(--dc-text);
}

.dc-quote-band__tagline {
  margin-top: 28px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dc-muted);
}

/* ── About page ── */

.dc-about-hero {
  padding: 64px 20px 48px;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.dc-about-hero__title {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}

.dc-about-hero__intro {
  font-family: var(--dc-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.7;
  color: var(--dc-text);
  margin: 0;
}

.dc-about-sections {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 20px 64px;
}

.dc-about-block {
  margin-bottom: 40px;
}

.dc-about-block h2 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 10px;
}

.dc-about-block p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--dc-muted);
  margin: 0;
}

.dc-founder-block {
  max-width: 560px;
  margin: 48px auto 64px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.dc-founder-block__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--dc-border);
  flex-shrink: 0;
}

.dc-founder-block__text {
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.dc-founder-block__author {
  margin: 10px 0 0;
  font-size: 13px;
  color: var(--dc-muted);
}

/* ── Site footer ── */

.dc-site-footer {
  border-top: 1px solid var(--dc-border);
  padding: 48px 20px 32px;
  background: var(--dc-bg-section);
}

.dc-site-footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.dc-site-footer__brand p {
  margin: 0 0 6px;
  font-size: 14px;
}

.dc-site-footer__brand-copy {
  font-weight: 800;
}

.dc-site-footer__brand-meta {
  color: var(--dc-muted);
  font-size: 13px;
}

.dc-site-footer__brand-meta a {
  color: var(--dc-muted);
  text-decoration: none;
}

.dc-site-footer__links {
  text-align: right;
}

.dc-site-footer__links nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
  margin-bottom: 12px;
}

.dc-site-footer__links a {
  font-size: 13px;
  color: var(--dc-muted);
  text-decoration: none;
}

.dc-site-footer__links a:hover {
  color: var(--dc-text);
}

.dc-site-footer__copy {
  font-size: 12px;
  color: var(--dc-muted);
  margin: 0;
  text-align: right;
}

/* ── Checkout integration ── */

.dc-site--checkout .dtc-discount-bar,
.dc-site--checkout .dtc-pre-header {
  display: none !important;
}

.dc-site--checkout #dtc-footer {
  display: none;
}

.dc-site--checkout .dtc-page {
  padding-top: 0;
}

.dc-site--checkout .dtc-mobile-cta {
  bottom: 0;
}

/* ── Responsive ── */

@media (max-width: 960px) {
  .dc-mega__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dc-mega__inner {
    grid-template-columns: 1fr;
  }

  .dc-mega__feature {
    aspect-ratio: 16 / 9;
    max-height: 240px;
  }
}

@media (max-width: 768px) {
  .dc-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .dc-nav__logo {
    order: 1;
    font-size: 20px;
  }

  .dc-nav__left {
    order: 2;
    margin-left: auto;
    gap: 0;
  }

  .dc-nav__left .dc-nav__link,
  .dc-nav__left .dc-nav__item--mega {
    display: none;
  }

  .dc-nav__right {
    display: none;
  }

  .dc-nav__burger {
    display: block;
  }

  .dc-mega {
    display: none;
  }

  .dc-moments-grid {
    grid-template-columns: 1fr;
  }

  .dc-moment-card {
    aspect-ratio: 16 / 10;
  }

  .dc-site-footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .dc-site-footer__links {
    text-align: center;
  }

  .dc-site-footer__links nav {
    justify-content: center;
  }

  .dc-site-footer__copy {
    text-align: center;
  }

  .dc-mobile-nav {
    display: block;
  }
}
