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

/* ══════════════════════════════════════
   TOKENS  — mirror of site system
══════════════════════════════════════ */
:root {
  --font-display: 'Playfair Display', serif;
  --font-alt:     'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;
  --white:       #FFFFFF;
  --steel:       #F4F5F7;
  --indigo:      #1A233E;
  --indigo-soft: #2c3655;
  --copper:      #BC7C56;
  --green:       #2D5A42;
  --text-mid:    #5a6275;
  --text-muted:  #9099b0;
  --border:      #e8eaee;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

/* ══════════════════════════════════════
   BASE RESET
══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--steel);
  font-family: var(--font-body);
  color: var(--indigo);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ══════════════════════════════════════
   ATOMS
══════════════════════════════════════ */
.ab-kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 14px;
}
.ab-kicker--light { color: rgba(255,255,255,0.5); }

.ab-rule {
  width: 40px;
  height: 2px;
  background: var(--copper);
  margin: 20px 0 32px;
  flex-shrink: 0;
}

.ab-section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  color: var(--indigo);
  line-height: 1.1;
}
.ab-section-title em { font-style: italic; color: var(--copper); }

/* ══════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-reveal].is-visible   { opacity: 1; transform: translateY(0); }
[data-reveal][data-reveal-delay="1"] { transition-delay: 0.10s; }
[data-reveal][data-reveal-delay="2"] { transition-delay: 0.22s; }
[data-reveal][data-reveal-delay="3"] { transition-delay: 0.36s; }

/* ══════════════════════════════════════
   BREADCRUMB
══════════════════════════════════════ */
.kz-breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.kz-breadcrumb__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 12px 56px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.kz-breadcrumb__home {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.kz-breadcrumb__home:hover { color: var(--indigo); }
.kz-breadcrumb__sep    { font-size: 12px; color: var(--text-muted); }
.kz-breadcrumb__current { font-size: 11px; font-weight: 300; color: var(--text-muted); }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.ab-hero {
  background: var(--indigo);
  position: relative;
  overflow: hidden;
}
.ab-hero__bg-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    rgba(255,255,255,0.018) 0px, rgba(255,255,255,0.018) 1px,
    transparent 1px, transparent 28px
  );
  pointer-events: none;
}
.ab-hero__copper-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--copper);
}
.ab-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 56px 88px 72px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: end;
}
.ab-hero__text .ab-kicker { margin-bottom: 20px; }

.ab-hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 36px;
}
.ab-hero__title em { font-style: italic; color: rgba(255,255,255,0.45); }

.ab-hero__lead {
  font-family: var(--font-alt);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 300;
  color: rgba(255,255,255,0.62);
  line-height: 1.85;
  margin-bottom: 16px;
  max-width: 600px;
}
.ab-hero__sub {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.32);
}
.ab-hero__sub em { font-style: italic; color: rgba(255,255,255,0.48); }

.ab-hero__rule {
  width: 1px;
  height: 160px;
  background: linear-gradient(to bottom, transparent, rgba(188,124,86,0.45), transparent);
  justify-self: center;
  align-self: center;
}

.ab-br-lg { display: inline; }

/* ══════════════════════════════════════
   ORIGIN
══════════════════════════════════════ */
.ab-origin {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.ab-origin__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 88px 56px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}
.ab-origin__body p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 16px;
  max-width: 520px;
}
.ab-origin__body p:last-child { margin-bottom: 0; }
.ab-origin__body strong { color: var(--indigo); font-weight: 500; }

.ab-origin__callout {
  margin-top: 36px;
  padding: 22px 28px;
  border-left: 3px solid var(--copper);
  background: var(--steel);
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 520px;
}
.ab-origin__callout strong {
  font-size: 13px;
  font-weight: 500;
  color: var(--indigo);
}
.ab-origin__callout span {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
}

/* image */
.ab-origin__media { position: relative; }

.ab-origin__img-wrap {
  position: relative;
}
.ab-origin__img-wrap::before {
  content: '';
  position: absolute;
  top: -12px; right: -12px;
  width: 80%; height: 80%;
  border: 1px solid var(--border);
  z-index: 0;
}
.ab-origin__img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  object-fit: cover;
}
.ab-origin__img-wrap figcaption {
  margin-top: 12px;
  font-size: 11px;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

/* ══════════════════════════════════════
   WHY KAZOKU EXISTS
══════════════════════════════════════ */
.ab-why {
  background: var(--indigo);
  position: relative;
  overflow: hidden;
}
.ab-why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    rgba(255,255,255,0.015) 0px, rgba(255,255,255,0.015) 1px,
    transparent 1px, transparent 28px
  );
  pointer-events: none;
}
.ab-why__inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 88px 56px;
}
.ab-why__head { margin-bottom: 64px; }
.ab-why__head .ab-kicker  { color: rgba(255,255,255,0.45); }
.ab-why__head .ab-section-title { color: var(--white); }
.ab-why__head .ab-section-title em { color: rgba(255,255,255,0.35); }
.ab-why__head .ab-rule { margin-bottom: 0; }

.ab-why__cols {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 64px;
  align-items: start;
}
.ab-why__divider {
  background: rgba(255,255,255,0.1);
  height: 100%;
  min-height: 120px;
}
.ab-why__col-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  margin-bottom: 20px;
}
.ab-why__col p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  margin-bottom: 16px;
}
.ab-why__col p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════
   COOKING
══════════════════════════════════════ */
.ab-cooking {
  background: var(--green);
  position: relative;
  overflow: hidden;
}
.ab-cooking::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px,
    transparent 1px, transparent 28px
  );
  pointer-events: none;
}
.ab-cooking::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--copper);
}
.ab-cooking__inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 96px 56px 96px 72px;
}
.ab-cooking__text { max-width: 680px; }

.ab-cooking__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.08;
}
.ab-cooking__title em { font-style: italic; color: rgba(255,255,255,0.38); }

.ab-cooking__body p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
  margin-bottom: 16px;
}
.ab-cooking__body p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════
   FAMILY
══════════════════════════════════════ */
.ab-family {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.ab-family__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 88px 56px;
}
.ab-family__head { margin-bottom: 64px; }

.ab-family__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
}

.ab-person {
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: background 0.25s var(--ease);
}
.ab-person:hover { background: var(--steel); }

.ab-person__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.ab-person__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s var(--ease);
}
.ab-person:hover .ab-person__img-wrap img { transform: scale(1.04); }

.ab-person__num {
  position: absolute;
  bottom: 12px; right: 16px;
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 400;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  user-select: none;
}
.ab-person__body { padding: 28px 28px 32px; flex: 1; }

.ab-person__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--indigo);
}
.ab-person__rule {
  width: 24px; height: 2px;
  background: var(--copper);
  margin: 14px 0 16px;
}
.ab-person__desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ══════════════════════════════════════
   CTA
══════════════════════════════════════ */
.ab-cta {
  background: var(--indigo);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.ab-cta__bg-lines {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    rgba(255,255,255,0.018) 0px, rgba(255,255,255,0.018) 1px,
    transparent 1px, transparent 28px
  );
  pointer-events: none;
}
.ab-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 56px 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ab-cta__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
}
.ab-cta__title em { font-style: italic; color: rgba(255,255,255,0.38); }

.ab-cta__sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  margin-bottom: 44px;
}
.ab-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 36px;
  background: var(--copper);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: background 0.25s var(--ease), gap 0.25s var(--ease);
}
.ab-cta__btn:hover { background: #a86c47; gap: 16px; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .ab-hero__inner { grid-template-columns: 1fr; }
  .ab-hero__rule  { display: none; }

  .ab-origin__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 64px 40px;
  }
  .ab-origin__media { max-width: 480px; }

  .ab-why__cols { grid-template-columns: 1fr; gap: 40px; }
  .ab-why__divider { display: none; }
}

@media (max-width: 860px) {
  .kz-breadcrumb__inner,
  .ab-why__inner,
  .ab-family__inner,
  .ab-cta__inner { padding-left: 20px; padding-right: 20px; }

  .ab-hero__inner  { padding: 56px 20px 64px 28px; }
  .ab-origin__inner { padding: 56px 20px; }
  .ab-cooking__inner { padding: 72px 20px 72px 28px; }

  .ab-hero__title { font-size: clamp(38px, 9vw, 60px); }
  .ab-br-lg { display: none; }

  .ab-family__grid { grid-template-columns: 1fr; }
  .ab-person__img-wrap { aspect-ratio: 3 / 2; }
}

@media (max-width: 600px) {
  .ab-family__grid { grid-template-columns: 1fr 1fr; }
  .ab-person__img-wrap { aspect-ratio: 1 / 1; }
  .ab-cta__btn { width: 100%; justify-content: center; }
}
