/* ========================================================
   Katoo Website — Shared Stylesheet
   Domain : katoosocial.com
   Updated: 12 May 2026
   ======================================================== */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --green:        #1F6F5B;
  --green-deep:   #163F35;
  --green-mid:    #1A5C4A;
  --green-light:  #E5EFEA;
  --cream:        #F6F1E6;
  --cream-dark:   #EFE8D9;
  --text:         #1B2A24;
  --ink-soft:     #3F4F47;
  --muted:        #7B8881;
  --border:       #E8E0CE;
  --accent:       #D9A441;
  --accent-light: #F4E6C5;
  --white:        #ffffff;
  --shadow-green: rgba(22,63,53,.14);
  --radius-sm:    10px;
  --radius-md:    16px;
  --radius-lg:    24px;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img  { display: block; max-width: 100%; }
a    { color: inherit; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography helpers ────────────────────────────────── */
.serif { font-family: 'Fraunces', Georgia, serif; }

/* ── Shared nav ────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: var(--green-deep);
  box-shadow: 0 1px 0 rgba(255,255,255,.07), 0 4px 20px rgba(0,0,0,.18);
}
.header-inner {
  max-width: 1080px; margin: 0 auto;
  padding: 0 24px; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.site-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700; font-size: 22px;
  color: var(--white); text-decoration: none;
  letter-spacing: -.3px; white-space: nowrap; flex-shrink: 0;
}
.site-logo span { color: var(--accent); }

.site-nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.site-nav a {
  color: rgba(255,255,255,.68);
  text-decoration: none; font-size: 14px; font-weight: 500;
  padding: 6px 12px; border-radius: 8px;
  transition: background .15s, color .15s; white-space: nowrap;
}
.site-nav a:hover, .site-nav a.active {
  background: rgba(255,255,255,.11); color: var(--white);
}

/* ── Shared footer ─────────────────────────────────────── */
.site-footer {
  background: var(--green-deep); color: rgba(255,255,255,.5);
  padding: 40px 24px; font-size: 13px;
}
.footer-inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: flex-start;
  gap: 24px;
}
.footer-brand { display: flex; flex-direction: column; gap: 8px; }
.footer-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px; font-weight: 700; color: var(--white);
  text-decoration: none;
}
.footer-logo span { color: var(--accent); }
.footer-tagline { color: rgba(255,255,255,.42); font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.footer-links a { color: rgba(255,255,255,.6); text-decoration: none; font-size: 13px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1080px; margin: 24px auto 0;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.35); font-size: 12px;
}

/* ── Page wrapper (legal pages) ────────────────────────── */
.page-wrap {
  max-width: 760px; margin: 48px auto 88px; padding: 0 24px;
}
.breadcrumb {
  font-size: 13px; color: var(--muted); margin-bottom: 28px;
}
.breadcrumb a { color: var(--green); text-decoration: none; font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { margin: 0 6px; opacity: .5; }

.page-title-block { margin-bottom: 36px; }
.page-title-block h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 5vw, 38px); font-weight: 700;
  color: var(--green-deep); letter-spacing: -.5px; margin-bottom: 8px;
}
.page-meta { font-size: 13px; color: var(--muted); }
.page-meta a { color: var(--green); text-decoration: none; font-weight: 500; }

.page-lead {
  font-size: 17px; color: var(--ink-soft); line-height: 1.7;
  padding-bottom: 28px; margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

/* Legal sections */
.doc-section { margin-bottom: 36px; }
.doc-section h2 {
  font-size: 17px; font-weight: 700; color: var(--green-deep);
  margin-bottom: 12px; padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.doc-section h3 {
  font-size: 15px; font-weight: 600; color: var(--text);
  margin: 18px 0 6px;
}
.doc-section p  { color: var(--ink-soft); margin-bottom: 12px; font-size: 15px; line-height: 1.7; }
.doc-section p:last-child { margin-bottom: 0; }
.doc-section ul,
.doc-section ol { margin: 8px 0 14px 20px; color: var(--ink-soft); font-size: 15px; }
.doc-section li { margin-bottom: 6px; line-height: 1.65; }
.doc-section a  { color: var(--green); text-decoration: none; font-weight: 500; }
.doc-section a:hover { text-decoration: underline; }

.callout {
  background: var(--green-light); border-left: 3px solid var(--green);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 18px; margin: 14px 0;
}
.callout p { color: var(--text); margin: 0; font-size: 14.5px; }

.steps-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 22px 26px; margin: 10px 0;
}
.steps-card ol { margin-left: 20px; }
.steps-card li { color: var(--text); font-weight: 500; margin-bottom: 10px; font-size: 15px; }

.contact-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 26px 30px;
  display: flex; flex-direction: column; gap: 6px;
}
.contact-card .c-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--muted);
}
.contact-card .c-email {
  font-size: 19px; font-weight: 700; color: var(--green); text-decoration: none;
}
.contact-card .c-email:hover { text-decoration: underline; }

.cta-block {
  background: var(--green-deep); border-radius: var(--radius-lg);
  padding: 30px 34px; margin-top: 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.cta-block-text h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.cta-block-text p  { font-size: 14px; color: rgba(255,255,255,.6); margin: 0; }
.cta-block-btn {
  display: inline-block; background: var(--accent); color: var(--green-deep);
  font-weight: 700; font-size: 15px; padding: 12px 26px;
  border-radius: var(--radius-sm); text-decoration: none;
  white-space: nowrap; transition: opacity .15s; flex-shrink: 0;
}
.cta-block-btn:hover { opacity: .88; }

/* ── Landing page specific ─────────────────────────────── */

/* Hero */
.hero {
  background: var(--green-deep);
  padding: 80px 24px 88px;
  text-align: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 0%, rgba(31,111,91,.5) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 100%, rgba(217,164,65,.12) 0%, transparent 55%);
  pointer-events: none;
}
.hero-inner { max-width: 680px; margin: 0 auto; position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
  padding: 6px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,.8);
  margin-bottom: 28px; letter-spacing: .2px;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}
.hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(36px, 7vw, 58px);
  font-weight: 700; line-height: 1.1; letter-spacing: -.8px;
  color: var(--white); margin-bottom: 12px;
}
.hero h1 em { color: var(--accent); font-style: italic; }
.hero-sub {
  font-size: clamp(16px, 2.5vw, 19px);
  color: rgba(255,255,255,.62); line-height: 1.6;
  max-width: 500px; margin: 0 auto 36px;
}
.hero-actions {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 12px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--green-deep);
  font-weight: 700; font-size: 15px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  text-decoration: none; transition: opacity .15s, transform .15s;
  box-shadow: 0 4px 18px rgba(217,164,65,.4);
}
.btn-primary:hover { opacity: .9; transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); color: var(--white);
  font-weight: 600; font-size: 15px;
  padding: 14px 28px; border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.2);
  text-decoration: none; transition: background .15s;
}
.btn-secondary:hover { background: rgba(255,255,255,.18); }

/* Features */
.features {
  max-width: 1080px; margin: 0 auto;
  padding: 80px 24px;
}
.features-header { text-align: center; margin-bottom: 52px; }
.section-label {
  display: inline-block;
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.2px; color: var(--green);
  margin-bottom: 12px;
}
.features-header h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(26px, 4vw, 36px); font-weight: 700;
  color: var(--green-deep); letter-spacing: -.4px; margin-bottom: 14px;
}
.features-header p { font-size: 17px; color: var(--muted); max-width: 500px; margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover {
  box-shadow: 0 8px 32px var(--shadow-green);
  transform: translateY(-3px);
}
.feature-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--green-light); display: flex;
  align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.feature-card h3 { font-size: 17px; font-weight: 700; color: var(--green-deep); }
.feature-card p  { font-size: 14.5px; color: var(--muted); line-height: 1.6; margin: 0; }

/* Privacy strip */
.privacy-strip {
  background: var(--green-deep);
  padding: 64px 24px;
}
.privacy-strip-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
}
.privacy-strip h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(26px, 4vw, 36px); font-weight: 700;
  color: var(--white); letter-spacing: -.4px; margin-bottom: 16px;
}
.privacy-strip p { font-size: 16px; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 12px; }
.privacy-strip p:last-child { margin-bottom: 0; }
.privacy-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.85); font-size: 14px; font-weight: 500;
  padding: 8px 16px; border-radius: 999px;
}
.pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }

/* CTA / Download section */
.download-section {
  padding: 80px 24px;
  text-align: center;
}
.download-inner { max-width: 560px; margin: 0 auto; }
.download-inner h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(26px, 4vw, 38px); font-weight: 700;
  color: var(--green-deep); letter-spacing: -.4px; margin-bottom: 14px;
}
.download-inner p { font-size: 17px; color: var(--muted); margin-bottom: 32px; line-height: 1.6; }
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--green-deep); color: var(--white);
  padding: 14px 28px; border-radius: var(--radius-sm);
  text-decoration: none; font-weight: 600; font-size: 15px;
  transition: opacity .15s; box-shadow: 0 4px 20px var(--shadow-green);
}
.store-badge:hover { opacity: .88; }
.store-badge svg { flex-shrink: 0; }

/* ── Language toggle ─────────────────────────────────────── */
.lang-toggle {
  display: flex; align-items: center; gap: 2px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px; padding: 3px; flex-shrink: 0; margin-left: 8px;
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,.5); padding: 4px 10px; border-radius: 6px;
  letter-spacing: .6px; transition: background .15s, color .15s;
}
.lang-btn:hover { color: rgba(255,255,255,.85); }
.lang-btn.lang-btn-active {
  background: rgba(255,255,255,.18); color: var(--white);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 720px) {
  .header-inner { height: auto; padding: 12px 20px; flex-wrap: wrap; gap: 10px; }
  .privacy-strip-inner { grid-template-columns: 1fr; gap: 28px; }
  .cta-block { flex-direction: column; }
  .footer-inner { flex-direction: column; gap: 20px; }
}
@media (max-width: 480px) {
  .hero { padding: 60px 20px 72px; }
  .features, .download-section { padding: 60px 20px; }
}
