/* ── KATHEYA SITE — SHARED STYLES ── */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,400;0,600;0,700;0,900;1,700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --ink:          #1A1410;
  --ink-soft:     #4A3F30;
  --ink-muted:    #8A7D6A;
  --ink-faint:    #C0B5A4;
  --cream:        #FAF6EE;
  --linen:        #F2EBD8;
  --linen-dark:   #E5D9C0;
  --paper:        #FFFDF8;
  --terra:        #B84A22;
  --terra-light:  #D4694A;
  --terra-pale:   #F5E4DC;
  --saffron:      #C07E10;
  --saffron-pale: #FBF0D8;
  --sage:         #3D6138;
  --rule:         rgba(26,20,16,.1);
  --rule-med:     rgba(26,20,16,.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', 'Helvetica Neue', sans-serif; background: var(--cream); color: var(--ink); overflow-x: hidden; -webkit-font-smoothing: antialiased; }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px; height: 64px;
  background: rgba(26,20,16,.97);
  border-bottom: 1px solid rgba(250,246,238,.07);
}

.nav-logo {
  display: flex; align-items: baseline; gap: 9px;
  text-decoration: none;
}
.nav-logo-en {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--cream); letter-spacing: .05em; text-transform: uppercase;
}
.nav-logo-kn {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-style: italic; font-weight: 400;
  color: var(--terra);
}

.nav-links {
  display: flex; align-items: center; gap: 0;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 0 22px; height: 64px; line-height: 64px;
  font-size: 12px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(250,246,238,.5);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a.active { color: var(--cream); border-bottom-color: var(--terra); }

.nav-cta {
  background: var(--terra); color: white;
  border: none; border-radius: 2px;
  padding: 10px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer; transition: background .2s;
  text-decoration: none; display: inline-block;
}
.nav-cta:hover { background: var(--terra-light); }

.nav-hamburger {
  display: none; background: none; border: none;
  color: var(--cream); cursor: pointer; padding: 4px;
}

/* ── MOBILE NAV ── */
.nav-mobile {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--ink); z-index: 199;
  flex-direction: column;
  padding: 32px 32px 40px;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  color: rgba(250,246,238,.5);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(250,246,238,.07);
  transition: color .2s;
}
.nav-mobile a:hover, .nav-mobile a.active { color: var(--cream); }
.nav-mobile .nav-cta {
  margin-top: 20px; text-align: center;
  padding: 16px; font-size: 14px;
}

@media (max-width: 820px) {
  .site-nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-cta.desktop-only { display: none; }
  .nav-hamburger { display: block; }
}

/* ── SHARED SECTION PRIMITIVES ── */
.section-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--terra); margin-bottom: 20px;
}
.section-eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--terra); flex-shrink: 0;
}

.section-title-lg {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900; line-height: .95;
  letter-spacing: -.01em; text-transform: uppercase;
}
.section-title-md {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700; line-height: 1.0;
  letter-spacing: -.01em; text-transform: uppercase;
}
.section-title-serif {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 300; line-height: 1.1;
  letter-spacing: -.02em;
}
.section-title-serif em { font-style: italic; color: var(--terra); }

.body-text {
  font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--ink-soft);
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--terra); color: white;
  border: none; border-radius: 2px;
  padding: 16px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-primary:hover {
  background: var(--terra-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184,74,34,.25);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--rule-med); border-radius: 2px;
  padding: 15px 30px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: all .2s;
}
.btn-outline:hover { border-color: var(--terra); color: var(--terra); }

.btn-outline-light {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: rgba(250,246,238,.6);
  border: 1.5px solid rgba(250,246,238,.2); border-radius: 2px;
  padding: 15px 30px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: all .2s;
}
.btn-outline-light:hover { border-color: rgba(250,246,238,.5); color: var(--cream); }

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(250,246,238,.07);
  padding: 48px 56px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo { display: flex; align-items: baseline; gap: 9px; }
.footer-logo-en {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 700;
  color: rgba(250,246,238,.5); letter-spacing: .06em; text-transform: uppercase;
}
.footer-logo-kn {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px; font-style: italic;
  color: var(--terra); opacity: .7;
}
.footer-links {
  display: flex; gap: 32px; list-style: none; flex-wrap: wrap;
}
.footer-links a {
  font-size: 12px; font-weight: 400;
  letter-spacing: .06em; text-transform: uppercase;
  color: rgba(250,246,238,.3); text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: rgba(250,246,238,.7); }
.footer-copy { font-size: 12px; color: rgba(250,246,238,.2); letter-spacing: .03em; }

@media (max-width: 700px) {
  .site-footer { padding: 36px 24px; flex-direction: column; }
}

/* ── DIVIDER ── */
.h-rule {
  border: none; border-top: 1px solid var(--rule);
  margin: 0;
}
.h-rule-light { border-top-color: rgba(250,246,238,.08); }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.r-d1 { transition-delay: .1s; }
.r-d2 { transition-delay: .2s; }
.r-d3 { transition-delay: .3s; }
