/* =============================================
   ARKIEE STUDIO — Main Stylesheet
   ============================================= */

:root {
  --ink:     #1a1714;
  --warm:    #f5f2ed;
  --clay:    #c8a882;
  --stone:   #8a8278;
  --line:    #e2ddd8;
  --white:   #ffffff;
  --serif:   'Cormorant', Georgia, serif;
  --sans:    'Jost', sans-serif;
  --nav-h:   72px;
  --ease:    cubic-bezier(0.76, 0, 0.24, 1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--sans); font-weight: 300; background: var(--warm); color: var(--ink); overflow-x: hidden; cursor: none; -webkit-font-smoothing: antialiased; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; font-family: inherit; cursor: none; }

/* Custom cursor */
.cur-dot { width: 7px; height: 7px; background: var(--ink); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: width 0.3s, height 0.3s, background 0.3s; will-change: width, height; }
.cur-ring { width: 34px; height: 34px; border: 1px solid var(--ink); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); opacity: 0.35; transition: width 0.25s var(--ease), height 0.25s var(--ease), opacity 0.3s; will-change: width, height; }
body.link-hover .cur-dot { width: 14px; height: 14px; background: var(--clay); }
body.link-hover .cur-ring { width: 50px; height: 50px; opacity: 0.2; }

/* Navigation */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; padding: 0 60px; transition: background 0.4s, box-shadow 0.4s; }
nav.solid { background: rgba(245,242,237,0.96); backdrop-filter: blur(16px); box-shadow: 0 1px 0 var(--line); }
.nav-logo { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; letter-spacing: 0.1em; color: var(--ink); }
.nav-logo span { color: var(--clay); }
.nav-links { display: flex; gap: 36px; }
.nav-links a { font-size: 0.72rem; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); opacity: 0.65; position: relative; transition: opacity 0.2s; }
.nav-links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1px; background: var(--clay); transition: width 0.3s; }
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); background: var(--ink); padding: 10px 26px; transition: background 0.3s; }
.nav-cta:hover { background: var(--clay); }
.nav-ham { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-ham span { display: block; width: 22px; height: 1px; background: var(--ink); transition: all 0.3s; }
.mobile-menu { position: fixed; inset: 0; background: var(--ink); z-index: 99; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 32px; opacity: 0; pointer-events: none; transition: opacity 0.4s; }
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a { font-family: var(--serif); font-size: 2.5rem; font-weight: 300; color: var(--warm); letter-spacing: 0.04em; opacity: 0.8; transition: opacity 0.2s, color 0.2s; }
.mobile-menu a:hover { opacity: 1; color: var(--clay); }
.mobile-menu-close { position: absolute; top: 24px; right: 32px; font-size: 1.5rem; color: var(--warm); opacity: 0.6; transition: opacity 0.2s; }
.mobile-menu-close:hover { opacity: 1; }

/* Utility */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-l { opacity: 0; transform: translateX(-28px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal-l.in { opacity: 1; transform: translateX(0); }
.section-eyebrow { display: flex; align-items: center; gap: 12px; font-size: 0.68rem; font-weight: 400; letter-spacing: 0.22em; text-transform: uppercase; color: var(--clay); margin-bottom: 16px; }
.section-eyebrow::before { content: ''; width: 20px; height: 1px; background: var(--clay); }
.section-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 300; line-height: 1.12; letter-spacing: -0.01em; }
.section-title em { font-style: italic; color: var(--clay); }
.section-body { font-size: 0.9rem; font-weight: 300; line-height: 1.85; color: var(--stone); max-width: 480px; }
.btn-dark { display: inline-block; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); background: var(--ink); padding: 13px 30px; transition: background 0.3s, transform 0.2s; }
.btn-dark:hover { background: var(--clay); transform: translateY(-1px); }
.btn-ghost { display: inline-block; font-size: 0.72rem; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); border-bottom: 1px solid var(--line); padding-bottom: 2px; transition: border-color 0.3s, color 0.3s; }
.btn-ghost:hover { border-color: var(--clay); color: var(--clay); }

/* Page hero */
.page-hero { min-height: 48vh; display: flex; align-items: flex-end; padding: calc(var(--nav-h) + 80px) 60px 80px; background: var(--ink); position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 50%, rgba(184, 149, 106, 0.12), transparent 60%); pointer-events: none; }
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 300; color: var(--warm); line-height: 1.05; }
.page-hero h1 em { font-style: italic; color: var(--clay); }
.page-hero p { font-size: 0.9rem; font-weight: 300; color: rgba(245,242,237,0.5); margin-top: 16px; max-width: 480px; line-height: 1.75; }

/* Footer */
footer { background: var(--ink); padding: 80px 60px 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .logo { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; letter-spacing: 0.1em; color: var(--warm); margin-bottom: 16px; }
.footer-brand .logo span { color: var(--clay); }
.footer-logo { height: 72px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.82rem; font-weight: 300; line-height: 1.7; color: rgba(245,242,237,0.4); max-width: 220px; }
.footer-col h4 { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,242,237,0.3); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.82rem; font-weight: 300; color: rgba(245,242,237,0.5); transition: color 0.2s; }
.footer-col a:hover { color: var(--clay); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; }
.footer-bottom p { font-size: 0.72rem; font-weight: 300; color: rgba(245,242,237,0.25); letter-spacing: 0.04em; }
.footer-social { display: flex; gap: 20px; }
.footer-social a { font-size: 0.68rem; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,242,237,0.3); border-bottom: 1px solid rgba(245,242,237,0.1); padding-bottom: 1px; transition: color 0.2s, border-color 0.2s; }
.footer-social a:hover { color: var(--clay); border-color: var(--clay); }

/* Skip link */
.skip-link { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; z-index: 999999; }
.skip-link:focus { position: fixed; top: 0; left: 0; width: auto; height: auto; background: var(--ink); color: var(--warm); padding: 12px; text-decoration: none; z-index: 100000; }

/* Responsive */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-ham { display: flex; }
  .page-hero { padding: calc(var(--nav-h) + 48px) 24px 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  footer { padding: 60px 24px 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}