@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&display=swap");

:root {
  --indigo: #1a233e;
  --indigo-mid: #232e50;
  --copper: #bc7c56;
  --green: #2d5a42;
  --white: #ffffff;
  --cream: #f7f5f1;
  --steel: #f4f5f7;
  --text-muted: rgba(26, 35, 62, 0.45);
  --border: rgba(26, 35, 62, 0.12);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --font-display: "Playfair Display", serif;
  --font-display-2: "Cormorant Garamond", serif;
  --font-alt: "Cormorant Garamond", serif;
  --font-body: 'DM Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--indigo);
  overflow-x: hidden;
}

/* ═══════════════════════════════════
   HERO
═══════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 900px;
  overflow: hidden;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.05);
  transition: transform 7s var(--ease);
}
body.loaded .hero__bg img {
  transform: scale(1);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 80% at 50% 48%,
    rgba(247, 245, 241, 0.92) 0%,
    rgba(247, 245, 241, 0.72) 40%,
    rgba(247, 245, 241, 0.28) 70%,
    transparent 100%
  );
}
.hero__bg::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to top, rgba(247, 245, 241, 0.82), transparent);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  max-width: 680px;
  width: 100%;
}
.hero__label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s 0.15s var(--ease-out) forwards;
}
.hero__label-line {
  width: 36px;
  height: 1.5px;
  background: var(--copper);
}
.hero__label-text {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--copper);
}
.hero__heading {
  font-family: var(--font-display-2);
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--indigo);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s var(--ease-out) forwards;
}
.hero__heading em {
  font-style: italic;
  color: var(--copper);
  font-weight: 300;
}
.hero__desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 380px;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.7s 0.45s var(--ease-out) forwards;
}
.hero__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s 0.6s var(--ease-out) forwards;
}
.hero__stats {
  z-index: 3;
  display: flex;
  align-items: flex-start;
  gap: 52px;
  opacity: 0;
  animation: fadeUp 0.7s 0.8s var(--ease-out) forwards;
  white-space: nowrap;
  margin-top: 100px;
}
.hero__stats .hero__stat {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.hero__stat-num {
  font-family: var(--font-display-2);
  font-size: 32px;
  font-weight: 300;
  color: var(--indigo);
  line-height: 1;
  margin-bottom: 4px;
  text-align: center;
}
.hero__stat-label {
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--indigo-mid);
  text-align: center;
}
.hero__stat + .hero__stat {
  padding-left: 52px;
  border-left: 1px solid var(--border);
  margin-left: -52px;
}

/* ═══════════════════════════════════
   SHARED BUTTONS
═══════════════════════════════════ */
.btn-dark {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--indigo);
  border: 1px solid var(--indigo);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}

.btn-dark:hover{
    background: transparent;
    color: var(--indigo);
    border-color: var(--indigo);
}

.btn-outline,
.btn-video {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  background: transparent;
  color: var(--indigo);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1px solid var(--indigo);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.btn-video {
  position: relative;
  padding-left: 40px;
}

.btn-outline:hover,
.btn-video:hover {
    background: var(--white);
    color: var(--indigo);
    border-color: var(--indigo);
}


@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════
   FEATURED COLLECTION
═══════════════════════════════════ */
.featured {
  background: var(--cream);
  padding: 96px 0 112px;
}
.featured__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}
.featured__header {
  text-align: center;
  margin-bottom: 64px;
}
.featured__kicker {
  display: block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}
.featured__title {
  font-family: var(--font-display-2);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--indigo);
  line-height: 1.1;
}
.featured__title em {
  font-style: italic;
  color: var(--copper);
}
.featured__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.prod-card {
  cursor: pointer;
  position: relative;
}
.prod-card__img-wrap {
  position: relative;
  /*  aspect-ratio: 3 / 4; */
  overflow: hidden;
  background: #eeecea;
  margin-bottom: 16px;
}
.prod-card__img-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--copper);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s var(--ease);
  z-index: 2;
}
.prod-card:hover .prod-card__img-wrap::before {
  transform: scaleY(1);
}
.prod-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
  filter: saturate(0.88);
}
.prod-card:hover .prod-card__img-wrap img {
  transform: scale(1.05);
  filter: saturate(1);
}
.prod-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 10px;
  background: var(--indigo);
  color: var(--white);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  z-index: 3;
}
.prod-card__badge--edition {
  background: var(--copper);
}
.prod-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(
    to top,
    rgba(26, 35, 62, 0.72) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.prod-card:hover .prod-card__overlay {
  opacity: 1;
}
.prod-card__cta {
  width: 100%;
  padding: 11px 0;
  background: var(--white);
  color: var(--indigo);
  text-align: center;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.18s var(--ease), color 0.18s var(--ease);
  text-decoration: none;
}
.prod-card__cta:hover {
  background: var(--copper);
  color: var(--white);
}
.prod-card__price-overlay {
  font-family: var(--font-display-2);
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
  text-align: right;
}
.prod-card__body {
  padding: 0 2px;
}
.prod-card__name {
  font-family: var(--font-display-2);
  font-size: 19px;
  font-weight: 400;
  color: var(--indigo);
  margin-bottom: 4px;
  line-height: 1.3;
}
.prod-card__sub {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.prod-card__price-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.prod-card__price {
  font-family: var(--font-display-2);
  font-size: 20px;
  font-weight: 300;
  color: var(--indigo);
}
.prod-card__price--original {
  font-size: 16px;
  text-decoration: line-through;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 300;
}
.featured__footer {
  text-align: center;
  margin-top: 64px;
}

/* ═══════════════════════════════════
   STORY SECTION
═══════════════════════════════════ */
.story {
  background: var(--white);
  padding: 96px 0 112px;
}

.story__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── Image column ── */
.story__img-col {
  position: relative;
}

.story__img-wrap {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
}

.story__img-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: var(--copper);
  z-index: 2;
}

.story__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.88);
  transition: transform 8s var(--ease), filter 0.4s;
}

.story__img-wrap:hover img {
  filter: saturate(1);
}

/* Floating stat card */
.story__stat-card {
  position: absolute;
  bottom: -32px;
  right: -32px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-top: 2px solid var(--copper);
  padding: 28px 32px;
  min-width: 200px;
}

.story__stat-card-num {
  font-family: var(--font-display-2);
  font-size: 50px;
  font-weight: 300;
  color: var(--indigo);
  line-height: 1;
  margin-bottom: 6px;
}

.story__stat-card-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Copy column ── */
.story__copy {
  padding-left: 8px;
}

.story__kicker {
  display: block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 20px;
}

.story__title {
  font-family: var(--font-display-2);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 300;
  color: var(--indigo);
  line-height: 1.05;
  margin-bottom: 32px;
}

.story__title em {
  font-style: italic;
  color: var(--copper);
}

.story__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}

.story__body p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
}

/* ── USP pillars ── */
.story__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  margin-bottom: 40px;
}

.story__pillar {
}

.story__pillar-icon {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--copper);
  transition: background 0.2s var(--ease), border-color 0.2s;
}

.story__pillar:hover .story__pillar-icon {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--white);
}

.story__pillar-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.story__pillar-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--indigo);
  margin-bottom: 4px;
  letter-spacing: 0.03em;
}

.story__pillar-desc {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .featured__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .story__inner {
    gap: 48px;
  }
  .story__stat-card {
    right: -16px;
    bottom: -16px;
    padding: 20px 24px;
  }
}

@media (max-width: 767px) {
  .story {
    padding: 64px 0 80px;
  }
  .story__inner {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 0 20px;
  }
  .story__stat-card {
    position: static;
    margin-top: 16px;
    display: inline-block;
  }
  .story__pillars {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .story__copy {
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  .featured {
    padding: 64px 0 80px;
  }
  .featured__inner {
    padding: 0 20px;
  }
  .featured__header {
    margin-bottom: 40px;
  }
  .featured__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .featured__footer {
    margin-top: 40px;
  }
  .prod-card__name {
    font-size: 17px;
  }

  .hero__stats {
    gap: 28px;
  }
  .hero__stat + .hero__stat {
    padding-left: 28px;
    margin-left: -28px;
  }
  .hero__heading {
    font-size: clamp(44px, 13vw, 64px);
  }

  .story__pillars {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .story__pillar {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  .story__pillar-icon {
    flex-shrink: 0;
    margin-bottom: 0;
  }
}

/* ═══════════════════════════════════
   HIGHLIGHTS — DH Edition Features
═══════════════════════════════════ */
.highlights {
  background: var(--indigo);
  padding: 96px 0 112px;
  position: relative;
  overflow: hidden;
}

/* Subtle texture — diagonal lines */
.highlights::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.015) 0px,
    rgba(255, 255, 255, 0.015) 1px,
    transparent 1px,
    transparent 40px
  );
  pointer-events: none;
}

.highlights__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Copy column ── */
.highlights__label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.highlights__label-line {
  width: 40px;
  height: 1px;
  background: var(--copper);
  opacity: 0.7;
}
.highlights__label-text {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.highlights__title {
  font-family: var(--font-display-2);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}
.highlights__title em {
  font-style: italic;
  color: var(--copper);
}

#kazoku-dennis .highlights__desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.55);
  max-width: 400px;
  margin-bottom: 40px;
}

/* Feature checklist */
.highlights__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 44px;
}

.highlights__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.highlights__check {
  width: 20px;
  height: 20px;
  border: 1px solid var(--copper);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  transition: background 0.2s var(--ease);
}

.highlights__item:hover .highlights__check {
  background: var(--copper);
}

.highlights__check svg {
  width: 10px;
  height: 10px;
  stroke: var(--copper);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s var(--ease);
}

.highlights__item:hover .highlights__check svg {
  stroke: var(--white);
}

.highlights__item-text {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.highlights__item-text strong {
  font-weight: 500;
  color: var(--white);
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}

/* CTA — copper on dark */
.btn-copper {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: var(--copper);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}
.btn-copper:hover {
  background: #a86b47;
}

/* ── Image column ── */
.highlights__img-col {
  position: relative;
}

.highlights__img-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
}

.highlights__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.75) brightness(0.9);
  transition: filter 0.5s var(--ease);
}
.highlights__img-wrap:hover img {
  filter: saturate(0.9) brightness(0.95);
}

/* Copper border frame */
.highlights__img-wrap::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  border: 1px solid rgba(188, 124, 86, 0.35);
  z-index: 0;
  pointer-events: none;
}

.highlights__img-wrap > img {
  position: relative;
  z-index: 1;
}

/* Floating number card */
.highlights__num-card {
  position: absolute;
  top: 50%;
  left: -32px;
  transform: translateY(-50%);
  background: var(--cream);
  border-top: 2px solid var(--copper);
  padding: 24px 28px;
  z-index: 3;
}

.highlights__num-card-num {
  font-family: var(--font-display-2);
  font-size: 54px;
  font-weight: 300;
  color: var(--indigo);
  line-height: 1;
  margin-bottom: 6px;
}

.highlights__num-card-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
  .highlights__inner {
    gap: 48px;
  }
  .highlights__num-card {
    left: -16px;
  }
}

@media (max-width: 767px) {
  .highlights {
    padding: 64px 0 80px;
  }
  .highlights__inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 20px;
  }
  .highlights__img-col {
    display: none;
  }
  .highlights__desc {
    max-width: 100%;
  }
}

/* ═══════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════ */
.testimonials {
  background: var(--cream);
  padding: 96px 0 112px;
}

.testimonials__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials__kicker {
  display: block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}

.testimonials__title {
  font-family: var(--font-display-2);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 300;
  color: var(--indigo);
  line-height: 1.1;
}

.testimonials__title em {
  font-style: italic;
  color: var(--copper);
}

/* Rating summary bar */
.testimonials__summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.testimonials__summary-stars {
  display: flex;
  gap: 3px;
}

.testimonials__summary-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--copper);
}

.testimonials__summary-score {
  font-family: var(--font-display-2);
  font-size: 24px;
  font-weight: 300;
  color: var(--indigo);
}

.testimonials__summary-label {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  display: none;
}

/* Grid */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

/* Card */
.testi-card {
  background: var(--white);
  padding: 32px;
  position: relative;
  border-top: 2px solid transparent;
  transition: border-color 0.25s var(--ease);
  cursor: default;
}

.testi-card:hover {
  border-top-color: var(--copper);
}

/* Opening quote mark */
.testi-card__quote {
  font-family: var(--font-display-2);
  font-size: 74px;
  font-weight: 300;
  color: var(--copper);
  opacity: 0.18;
  line-height: 0.7;
  margin-bottom: 20px;
  display: block;
  user-select: none;
}

/* Stars */
.testi-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}

.testi-card__stars svg {
  width: 13px;
  height: 13px;
  fill: var(--copper);
}

/* Review text */
.testi-card__text {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-style: italic;
}

/* Product tag */
.testi-card__tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(188, 124, 86, 0.08);
  border: 1px solid rgba(188, 124, 86, 0.25);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 20px;
}

/* Author row */
.testi-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testi-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  filter: saturate(0.7);
  flex-shrink: 0;
  border: 2px solid var(--border);
}

.testi-card__name {
  font-size: 15px;
  font-weight: 500;
  color: var(--indigo);
  margin-bottom: 2px;
}

.testi-card__role {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 900px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}

@media (max-width: 640px) {
  .testimonials {
    padding: 64px 0 80px;
  }
  .testimonials__inner {
    padding: 0 20px;
  }
  .testimonials__header {
    margin-bottom: 40px;
  }
  .testi-card {
    padding: 24px;
  }
}

/* ═══════════════════════════════════
   FAQ
═══════════════════════════════════ */
.faq {
  background: var(--white);
  padding: 96px 0 112px;
}

.faq__inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 40px;
}

.faq__header {
  text-align: center;
  margin-bottom: 64px;
}

.faq__kicker {
  display: block;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 16px;
}

.faq__title {
  font-family: var(--font-display-2);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 300;
  color: var(--indigo);
  line-height: 1.1;
}

.faq__title em {
  font-style: italic;
  color: var(--copper);
}

/* List */
.faq__list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

/* Item */
.faq__item {
  border-bottom: 1px solid var(--border);
}

/* Trigger button */
.faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: opacity 0.18s;
}

.faq__trigger:hover {
  opacity: 0.7;
}

.faq__question {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: var(--indigo);
  line-height: 1.4;
  flex: 1;
}

/* Icon — copper +/× */
.faq__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  background: var(--copper);
  border-radius: 1px;
  transition: transform 0.28s var(--ease), opacity 0.28s var(--ease);
}

.faq__icon::before {
  width: 12px;
  height: 1.5px;
}

.faq__icon::after {
  width: 1.5px;
  height: 12px;
}

/* Open state — rotate to × */
.faq__item.is-open .faq__icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq__item.is-open .faq__question {
  color: var(--copper);
}

/* Body — collapse/expand */
.faq__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s var(--ease);
}

.faq__item.is-open .faq__body {
  grid-template-rows: 1fr;
}

.faq__body-inner {
  overflow: hidden;
}

.faq__body p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-muted);
  padding-bottom: 24px;
  max-width: 680px;
}

/* Responsive */
@media (max-width: 640px) {
  .faq {
    padding: 64px 0 80px;
  }
  .faq__inner {
    padding: 0 20px;
  }
  .faq__header {
    margin-bottom: 40px;
  }
  .faq__question {
    font-size: 14px;
  }
}

/* ═══════════════════════════════════
   CTA BAND
═══════════════════════════════════ */
.cta-band {
  background: var(--indigo);
  padding: 96px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle grain texture overlay */
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.012) 0px,
    rgba(255, 255, 255, 0.012) 1px,
    transparent 1px,
    transparent 48px
  );
  pointer-events: none;
}

/* Copper glow — centred radial */
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 50% 50%,
    rgba(188, 124, 86, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.cta-band__kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 28px;
}

.cta-band__kicker::before,
.cta-band__kicker::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--copper);
  opacity: 0.5;
}

.cta-band__title {
  font-family: var(--font-display-2);
  font-size: clamp(38px, 5vw, 70px);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.cta-band__title em {
  font-style: italic;
  color: var(--copper);
}

#kazoku-dennis .cta-band__desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.5);
  max-width: 480px;
  margin: 0 auto 44px;
}

/* Buttons row */
.cta-band__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Primary CTA — copper */
.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: var(--copper);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s var(--ease), transform 0.12s;
}

.btn-cta-primary:hover {
  background: #a86b47;
}
.btn-cta-primary:active {
  transform: translateY(1px);
}

.btn-cta-primary svg {
  width: 14px;
  height: 10px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s var(--ease);
}
.btn-cta-primary:hover svg {
  transform: translateX(4px);
}

/* Secondary — ghost white */
.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.btn-cta-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

/* Trust note below buttons */
.cta-band__trust {
  margin-top: 28px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.28);
  text-transform: uppercase;
}

.cta-band__trust span {
  color: rgba(188, 124, 86, 0.6);
  margin: 0 6px;
}

@media (max-width: 640px) {
  .cta-band {
    padding: 72px 24px;
  }
  .cta-band__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-cta-primary,
  .btn-cta-ghost {
    justify-content: center;
  }
}

#kazoku-dennis .video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

#kazoku-dennis .video-modal.open {
  opacity: 1;
  pointer-events: all;
}

#kazoku-dennis .video-modal__inner {
  position: relative;
  width: 90%;
  max-width: 900px;
}

#kazoku-dennis .video-modal video {
  width: 100%;
  border: 1px solid rgba(188, 124, 86, 0.2);
}

#kazoku-dennis .video-modal__close {
  position: absolute;
  top: -36px;
  right: 0;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green);
  background: none;
  border: none;
}

#kazoku-dennis .btn-video__icon {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(26, 35, 62, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  transition: border-color 0.3s, background 0.3s;
  position: absolute;
  left: 5px;
}


/* ═══════════════════════════════════
   CRAFT HERO — unique rules only
   Not present in kz-dennis-v3.css
═══════════════════════════════════ */
#kazoku-dennis .craft-hero {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

#kazoku-dennis .craft-hero__img-col {
  position: relative;
  overflow: hidden;
}

#kazoku-dennis .craft-hero__bg {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block;
  filter: saturate(0.75) brightness(0.82);
  transform: scale(1.04);
  transition: transform 8s var(--ease);
}

body.loaded #kazoku-dennis .craft-hero__bg { transform: scale(1); }

#kazoku-dennis .craft-hero__img-col::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 55%, rgba(26,35,62,0.92) 100%);
  pointer-events: none;
}

#kazoku-dennis .craft-hero__img-col::before {
  content: ''; position: absolute;
  top: 10%; bottom: 10%; right: 0; width: 2px;
  background: linear-gradient(to bottom, transparent, var(--copper) 30%, var(--copper) 70%, transparent);
  z-index: 2; opacity: 0;
  animation: fadeIn 1s 0.8s var(--ease) forwards;
}

#kazoku-dennis .craft-hero__copy {
  background: var(--indigo);
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px 80px 56px;
  position: relative; overflow: hidden;
}

#kazoku-dennis .craft-hero__copy::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.012) 0px, rgba(255,255,255,0.012) 1px,
    transparent 1px, transparent 40px
  );
  pointer-events: none;
}

#kazoku-dennis .craft-hero__copy::after {
  content: ''; position: absolute; top: -20%; right: -20%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(188,124,86,0.07) 0%, transparent 65%);
  pointer-events: none;
}

#kazoku-dennis .craft-hero__inner {
  position: relative; z-index: 1; max-width: 530px;
}

#kazoku-dennis .craft-hero__title {
  font-family: var(--font-alt);
  font-size: clamp(48px, 5.5vw, 80px); font-weight: 300;
  line-height: 0.95; letter-spacing: -0.01em; color: var(--white);
  margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.8s 0.35s var(--ease-out) forwards;
}

#kazoku-dennis .craft-hero__title em {
  font-style: italic; color: var(--copper); display: block;
}

#kazoku-dennis .craft-hero__body {
  display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px;
  opacity: 0; animation: fadeUp 0.7s 0.5s var(--ease-out) forwards;
}

#kazoku-dennis .craft-hero__body p {
  font-size: 14px; font-weight: 300; line-height: 1.85;
  color: rgba(255,255,255,0.5);
}

#kazoku-dennis .craft-hero__body strong {
  font-weight: 500; color: var(--cream);
}

#kazoku-dennis .craft-hero__quote {
  border-left: 2px solid var(--copper);
  padding: 4px 0 4px 20px; margin-bottom: 44px;
  opacity: 0; animation: fadeUp 0.7s 0.65s var(--ease-out) forwards;
}

#kazoku-dennis .craft-hero__quote p {
  font-family: var(--font-alt); font-size: 20px;
  font-style: italic; font-weight: 300;
  color: rgba(255,255,255,0.6); line-height: 1.5;
}

#kazoku-dennis .craft-hero__quote cite {
  display: block; font-family: var(--font-body);
  font-size: 12px; font-style: normal; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--copper); margin-top: 10px; opacity: 0.7;
}

#kazoku-dennis .craft-hero__cta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.7s 0.8s var(--ease-out) forwards;
}

/* btn-video override for dark bg */
#kazoku-dennis .craft-hero .btn-video {
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.18);
}
#kazoku-dennis .craft-hero .btn-video:hover {
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}

#kazoku-dennis .craft-hero .btn-video__icon {
  width: 26px; height: 26px;
  border: 1px solid rgba(255,255,255,0.25); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; position: absolute; left: 5px;
  color: var(--copper);
  transition: border-color 0.2s, background 0.2s;
}
#kazoku-dennis .craft-hero .btn-video:hover .btn-video__icon {
  border-color: var(--copper);
  background: rgba(188,124,86,0.12);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  #kazoku-dennis .craft-hero {
    grid-template-columns: 1fr;
    grid-template-rows: 45vh auto;
    min-height: auto;
  }
  #kazoku-dennis .craft-hero__img-col { min-height: 45vh; }
  #kazoku-dennis .craft-hero__img-col::after {
    background: linear-gradient(to bottom, transparent 40%, rgba(26,35,62,0.92) 100%);
  }
  #kazoku-dennis .craft-hero__img-col::before { display: none; }
  #kazoku-dennis .craft-hero__copy { padding: 48px 28px 60px; }
  #kazoku-dennis .craft-hero__inner { max-width: 100%; }
  #kazoku-dennis .craft-hero__title { font-size: clamp(40px, 10vw, 60px); }
}

@media (max-width: 480px) {
  #kazoku-dennis .craft-hero__copy { padding: 40px 20px 52px; }
  #kazoku-dennis .craft-hero__cta { flex-direction: column; align-items: flex-start; }
}


#kazoku-dennis .highlights__copy blockquote {
    font-family: var(--font-alt) !important;
}
