/* ═══════════════════════════════════════════
   CIRKEL — Shared Stylesheet
   Brand: Cormorant Garamond + Jost
   Palette: Charcoal / Sand / Brass / Blue
   ═══════════════════════════════════════════ */

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

/* ── RESET ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--ink); color: var(--linen); font-family: 'Jost', sans-serif; font-weight: 300; cursor: none; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { border: none; background: none; cursor: none; font-family: inherit; }

/* ── TOKENS ─────────────────────────────── */
:root {
  --ink:      #0E0F10;
  --charcoal: #2C2E30;
  --mid:      #1C1D1F;
  --stone:    #9B9590;
  --linen:    #F5F0EB;
  --sand:     #E8DFD3;
  --brass:    #B09470;
  --blue:     #3A6B8C;
  --sage:     #7A8C73;
  --warm:     #DDD5C8;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
}

/* ── CURSOR ─────────────────────────────── */
.cursor {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  mix-blend-mode: difference;
}
.cursor__dot {
  width: 6px; height: 6px; background: var(--linen); border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s var(--ease), opacity 0.2s;
}
.cursor__ring {
  width: 32px; height: 32px;
  border: 1px solid rgba(245,240,235,0.4); border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease), opacity 0.3s;
}
body.cursor-hover .cursor__dot { transform: translate(-50%, -50%) scale(2.5); }
body.cursor-hover .cursor__ring { width: 56px; height: 56px; opacity: 0.5; }

/* ── PROGRESS BAR ───────────────────────── */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 1px;
  background: var(--brass); width: 0%; z-index: 200;
  transition: width 0.1s linear;
}

/* ── NAVIGATION ─────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  transition: background 0.4s var(--ease), height 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(14,15,16,0.92);
  backdrop-filter: blur(12px);
  height: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
}
.nav__mark svg { width: 28px; height: 28px; }
.nav__wordmark {
  font-family: var(--font-body); font-weight: 300;
  font-size: 13px; letter-spacing: 5px;
  color: var(--linen);
}
.nav__links {
  display: flex; gap: 40px; list-style: none;
}
.nav__links a {
  font-size: 10px; letter-spacing: 3px; font-weight: 300;
  color: var(--stone); text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--brass);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover, .nav__links a.active { color: var(--linen); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__cta {
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  border: 1px solid rgba(176,148,112,0.4); color: var(--brass);
  padding: 10px 22px;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.nav__cta:hover { background: var(--brass); color: var(--ink); border-color: var(--brass); }

/* ── FOOTER ─────────────────────────────── */
.footer {
  background: var(--ink); border-top: 1px solid rgba(255,255,255,0.06);
  padding: 72px 48px 40px;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 64px;
}
.footer__brand-mark svg { width: 36px; height: 36px; margin-bottom: 16px; }
.footer__tagline {
  font-family: var(--font-display); font-style: italic;
  font-size: 18px; color: var(--stone); line-height: 1.5;
  margin-top: 8px;
}
.footer__col-title {
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--brass); margin-bottom: 20px;
}
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul li a {
  font-size: 12px; color: var(--stone);
  transition: color 0.2s;
}
.footer__col ul li a:hover { color: var(--linen); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer__legal { font-size: 10px; color: var(--charcoal); letter-spacing: 0.5px; }

/* ── SECTION BASE ───────────────────────── */
section { position: relative; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section-tag {
  font-size: 9px; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--brass); display: block; margin-bottom: 20px;
}
.section-rule {
  width: 40px; height: 1px; background: var(--brass);
  margin-bottom: 32px;
}

/* ── REVEAL ANIMATIONS ──────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── BUTTONS ────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 300; transition: all 0.3s var(--ease);
}
.btn--primary {
  background: var(--brass); color: var(--ink);
  padding: 16px 32px;
}
.btn--primary:hover { background: var(--linen); }
.btn--outline {
  border: 1px solid rgba(176,148,112,0.4); color: var(--brass);
  padding: 15px 31px;
}
.btn--outline:hover { background: var(--brass); color: var(--ink); border-color: var(--brass); }
.btn--ghost {
  color: var(--stone); padding: 15px 0;
  border-bottom: 1px solid rgba(155,149,144,0.2);
}
.btn--ghost:hover { color: var(--linen); border-color: var(--linen); }
.btn svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

/* ── PAGE HERO (inner pages) ────────────── */
.page-hero {
  padding: 160px 48px 100px;
  background: var(--ink);
  position: relative; overflow: hidden;
}
.page-hero__bg-mark {
  position: absolute; right: -60px; top: 50%;
  transform: translateY(-50%);
  opacity: 0.04;
}
.page-hero__tag { font-size: 9px; letter-spacing: 3px; color: var(--brass); text-transform: uppercase; }
.page-hero__rule { width: 40px; height: 1px; background: var(--brass); margin: 16px 0 32px; }
.page-hero__title {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.05; color: var(--linen);
  max-width: 700px;
}
.page-hero__title em { font-style: italic; color: var(--stone); }
.page-hero__subtitle {
  margin-top: 24px; font-size: 14px; color: var(--stone);
  max-width: 480px; line-height: 1.7;
}

/* ── WHATSAPP FLOAT ─────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 90;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
}
.whatsapp-float svg { width: 26px; height: 26px; fill: white; }

/* ── FOOTER SOCIAL ICONS ────────────────── */
.footer-social-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.06);
  margin-right: 6px; margin-top: 4px;
  transition: border-color 0.2s, background 0.2s;
}
.footer-social-icon:hover { border-color: var(--brass); background: rgba(176,148,112,0.08); }
.footer-social-icon:hover svg { fill: var(--brass); stroke: var(--brass); }
.footer-social-icon svg { transition: fill 0.2s, stroke 0.2s; }

/* ── GRID LINE TEXTURE ──────────────────── */
.grid-texture {
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
}

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 0 24px; }
  .nav__links { display: none; }
  .container { padding: 0 24px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .page-hero { padding: 120px 24px 72px; }
}
@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer { padding: 48px 24px 32px; }
}
