/* ============================================
   ADI ·· COCO — Main Stylesheet
   adicoco.com
   ============================================ */

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

:root {
  --black:   #080808;
  --deep:    #0f0f0f;
  --surface: #161616;
  --border:  #252525;
  --muted:   #4a4a4a;
  --light:   #9a9a9a;
  --cream:   #e8e2d9;
  --gold:    #c9a96e;
  --gold2:   #e2c99a;
  --white:   #f4f1ec;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Montserrat', sans-serif;
  --ease:    cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* ---- CURSOR ---- */
.cursor {
  position: fixed; width: 7px; height: 7px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.08s, background 0.2s;
}
.cursor-ring {
  position: fixed; width: 28px; height: 28px;
  border: 1px solid rgba(201,169,110,0.45);
  border-radius: 50%; pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: all 0.14s var(--ease);
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring { transform: translate(-50%,-50%) scale(1.8); border-color: rgba(201,169,110,0.7); }

/* ---- NAV ---- */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 56px;
  background: linear-gradient(to bottom, rgba(8,8,8,0.97) 0%, rgba(8,8,8,0) 100%);
  transition: padding 0.3s, background 0.3s;
}
#nav.scrolled {
  padding: 16px 56px;
  background: rgba(8,8,8,0.97);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--serif); font-weight: 300; font-size: 20px;
  letter-spacing: 0.22em; color: var(--white); text-decoration: none; cursor: none;
}
.nav-logo .dots { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 10px; font-weight: 300; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--light); text-decoration: none;
  transition: color 0.3s; cursor: none; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-lang {
  display: flex; align-items: center; gap: 6px;
}
.lang-btn {
  background: none; border: none; font-family: var(--sans);
  font-size: 10px; font-weight: 300; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted); cursor: none;
  transition: color 0.3s; padding: 0;
}
.lang-btn.active { color: var(--gold); }
.lang-sep { color: var(--border); font-size: 9px; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1px;
  background: var(--light); transition: all 0.3s;
}

/* ---- MOBILE NAV ---- */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 190;
  background: rgba(8,8,8,0.98);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--serif); font-size: 32px; font-weight: 300;
  letter-spacing: 0.1em; color: var(--white); text-decoration: none;
  transition: color 0.3s; cursor: none;
}
.mobile-menu a:hover { color: var(--gold); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block; padding: 12px 36px;
  border: 1px solid var(--gold); color: var(--gold);
  font-family: var(--sans); font-size: 10px; font-weight: 300;
  letter-spacing: 0.28em; text-transform: uppercase; text-decoration: none;
  transition: all 0.35s var(--ease); cursor: none; background: none;
}
.btn:hover { background: var(--gold); color: var(--black); }
.btn-light {
  border-color: var(--white); color: var(--white);
}
.btn-light:hover { background: var(--white); color: var(--black); }
.btn-ghost {
  border: none; padding: 0; color: var(--light);
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  text-decoration: none; transition: color 0.3s; cursor: none;
}
.btn-ghost::after {
  content: ''; display: block; width: 40px; height: 1px;
  background: currentColor; transition: width 0.3s;
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost:hover::after { width: 64px; }

/* ---- SECTION LABELS ---- */
.section-tag {
  font-size: 9px; letter-spacing: 0.5em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px; display: block;
}
.section-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(34px, 5vw, 62px); line-height: 1.05;
  letter-spacing: 0.04em; color: var(--white);
}
.section-title em { font-style: italic; color: var(--cream); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  padding: 160px 56px 80px;
  border-bottom: 1px solid var(--border);
}

/* ---- SOCIAL BAR (visible, above footer) ---- */
.social-bar {
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.social-bar-label {
  font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--muted); margin-right: 8px;
}
.social-link {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 18px;
  border: 1px solid var(--border);
  color: var(--light); text-decoration: none; cursor: none;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  transition: all 0.3s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.social-link svg { width: 14px; height: 14px; fill: currentColor; flex-shrink: 0; }

/* ---- FOOTER ---- */
footer {
  background: var(--deep);
  border-top: 1px solid var(--border);
  padding: 40px 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.footer-logo {
  font-family: var(--serif); font-weight: 300;
  font-size: 17px; letter-spacing: 0.2em; color: var(--white);
}
.footer-logo .dots { color: var(--gold); }
.footer-copy {
  font-size: 10px; letter-spacing: 0.12em; color: var(--muted);
  text-align: center;
}
.footer-social {
  display: flex; justify-content: flex-end; gap: 20px;
}
.footer-social a {
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); text-decoration: none; transition: color 0.3s; cursor: none;
}
.footer-social a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .social-bar { padding: 16px 24px; flex-wrap: wrap; gap: 8px; }
  .social-bar-label { display: none; }
  .social-link { padding: 8px 14px; font-size: 9px; }
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes lineGrow { from { width: 0; } to { width: 100%; } }

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- FORMS ---- */
.form-group { margin-bottom: 28px; }
.form-label {
  display: block; font-size: 9px; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
}
.form-input, .form-textarea, .form-select {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid var(--border);
  color: var(--white); font-family: var(--sans); font-size: 14px;
  font-weight: 200; letter-spacing: 0.04em; padding: 10px 0;
  outline: none; transition: border-color 0.3s; -webkit-appearance: none;
}
.form-select option { background: var(--deep); }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--gold); }
.form-textarea { resize: none; height: 100px; }

/* ---- LIGHTBOX ---- */
#lightbox {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(4,4,4,0.96);
  align-items: center; justify-content: center;
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: 90vw; max-height: 88vh;
  object-fit: contain;
}
#lightbox-close {
  position: absolute; top: 28px; right: 36px;
  background: none; border: none; color: var(--light);
  font-size: 28px; cursor: none; transition: color 0.3s;
}
#lightbox-close:hover { color: var(--gold); }
#lightbox-prev, #lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: var(--light);
  font-size: 32px; cursor: none; transition: color 0.3s; padding: 20px;
}
#lightbox-prev { left: 20px; }
#lightbox-next { right: 20px; }
#lightbox-prev:hover, #lightbox-next:hover { color: var(--gold); }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  #nav { padding: 18px 24px; }
  #nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .page-hero { padding: 120px 24px 60px; }
  footer { grid-template-columns: 1fr; text-align: center; gap: 20px; }
  .footer-social { justify-content: center; }
}
