@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
:root{--bg:#fafaf8;--text-dark:#0a0a0a;--text-mid:#444;--text-muted:#888;--border:#e0e0e0;}
html{scroll-behavior:smooth;}
body{background:var(--bg);color:var(--text-dark);font-family:'DM Sans',sans-serif;font-weight:300;overflow-x:hidden;}

/* ── NAVBAR ── */
.navbar{position:fixed;top:0;left:0;right:0;z-index:100;display:flex;align-items:center;justify-content:space-between;padding:1.4rem 4%;background:rgba(250,250,248,0.93);backdrop-filter:blur(14px);border-bottom:1px solid var(--border);}
.logo-img{height:90px;width:auto;display:block;object-fit:contain;}
.logo{font-family:'DM Sans',sans-serif;font-size:1.7rem;font-weight:500;color:var(--text-dark);text-decoration:none;letter-spacing:-0.02em;}
.logo-o{display:inline-flex;align-items:center;justify-content:center;width:1.15rem;height:1.15rem;border:2px solid var(--text-dark);border-radius:50%;font-size:0;margin:0 0.04em;position:relative;top:-0.08em;}
.nav-links{display:flex;align-items:center;gap:2.2rem;list-style:none;}
.nav-links a{font-size:0.9rem;font-weight:400;color:var(--text-mid);text-decoration:none;transition:color .25s;}
.nav-links a:hover,.nav-links a.active{color:var(--text-dark);}
.btn-contact{background:var(--text-dark);color:#fff!important;padding:.55rem 1.5rem;border-radius:2px;transition:background .25s!important;}
.btn-contact:hover{background:#333!important;}

/* ── HERO ── */
.hero{display:flex;flex-direction:column;min-height:100vh;background:var(--bg);padding-top:72px;overflow:hidden;}
.hero-content{flex:1;display:flex;align-items:center;justify-content:space-between;padding:4% 6% 3% 6%;gap:5rem;}
.hero-left{flex:0 0 52%;}
.hero-right{flex:1;display:flex;flex-direction:column;justify-content:center;gap:2rem;padding-left:3rem;border-left:1px solid var(--border);}
.hero-eyebrow{font-size:.75rem;letter-spacing:.18em;text-transform:uppercase;color:var(--text-muted);margin-bottom:1.4rem;font-weight:400;}
.hero-headline{font-family:'Cormorant Garamond',serif;font-size:clamp(3rem,7vw,6.5rem);font-weight:400;line-height:1.05;letter-spacing:-0.02em;}
.hero-headline em{font-style:italic;font-weight:300;}
.hero-desc{font-size:.9rem;line-height:1.75;color:var(--text-muted);}
.btn-primary{display:inline-block;background:var(--text-dark);color:#fff;text-decoration:none;padding:.8rem 2rem;font-size:.88rem;letter-spacing:.04em;border-radius:2px;transition:background .25s,transform .2s;align-self:flex-start;}
.btn-primary:hover{background:#333;transform:translateY(-2px);}

/* ── ART STRIP ── */
.art-strip-wrapper{width:100%;overflow:hidden;position:relative;line-height:0;}
.art-strip-wrapper::before,.art-strip-wrapper::after{content:'';position:absolute;top:0;bottom:0;width:100px;z-index:2;pointer-events:none;}
.art-strip-wrapper::before{left:0;background:linear-gradient(to right,var(--bg),transparent);}
.art-strip-wrapper::after{right:0;background:linear-gradient(to left,var(--bg),transparent);}
.art-strip{display:flex;gap:.6rem;width:max-content;animation:scrollStrip 160s linear infinite;}
.art-strip:hover{animation-play-state:paused;}
@keyframes scrollStrip{0%{transform:translateX(0);}100%{transform:translateX(-50%);}}

/* Cards — zoom on hover/tap, no name tag */
.art-card{position:relative;width:300px;height:220px;flex-shrink:0;overflow:hidden;cursor:pointer;transition:transform .5s ease;z-index:1;}
.art-card:hover{transform:scale(1.1);z-index:10;}
.art-card img{width:100%;height:100%;object-fit:cover;display:block;}

/* ── STATEMENT ── */
.statement{background:var(--bg);padding:7rem 4%;display:flex;justify-content:center;}
.statement-inner{display:flex;align-items:center;gap:2.5rem;max-width:800px;width:100%;}
.statement-line{flex:1;height:1px;background:var(--border);}
.statement-text{flex:3;font-family:'Cormorant Garamond',serif;font-size:clamp(1.1rem,2vw,1.45rem);font-weight:400;line-height:1.8;text-align:center;letter-spacing:.01em;}

/* ── STATS ── */
.stats-section{display:flex;min-height:360px;background:var(--bg);}
.stats-image{flex:0 0 28%;position:relative;overflow:hidden;}
.stats-image img{width:100%;height:100%;object-fit:cover;display:block;filter:grayscale(60%);opacity:0.55;transition:transform .8s ease;}
.stats-section:hover .stats-image img{transform:scale(1.03);}
.stats-image-overlay{position:absolute;inset:0;background:linear-gradient(to right,rgba(250,250,248,0.25) 40%,var(--bg) 90%);}
.stats-content{flex:1;padding:3rem 6% 3rem 5%;display:flex;flex-direction:column;justify-content:center;border-top:1px solid var(--border);}
.stats-eyebrow{font-size:.72rem;letter-spacing:.2em;text-transform:uppercase;color:var(--text-muted);margin-bottom:0.8rem;}
.stats-heading{font-family:'Cormorant Garamond',serif;font-size:clamp(1.6rem,2.8vw,2.4rem);font-weight:400;line-height:1.15;margin-bottom:2rem;}
.stats-heading em{font-style:italic;font-weight:300;}
.stats-list{display:flex;flex-direction:column;}
.stat-item{padding:1.1rem 0;border-top:1px solid var(--border);display:flex;align-items:center;justify-content:space-between;transition:padding-left .3s ease;}
.stat-item:last-child{border-bottom:1px solid var(--border);}
.stat-item:hover{padding-left:.8rem;}
.stat-number{font-family:'Cormorant Garamond',serif;font-size:clamp(1.6rem,3vw,2.4rem);font-weight:300;letter-spacing:-0.02em;line-height:1;}
.stat-symbol{font-size:.6em;font-weight:300;vertical-align:super;color:var(--text-muted);}
.stat-label{font-size:.75rem;color:var(--text-dark);letter-spacing:.08em;text-transform:uppercase;font-weight:400;}

/* ── GALLERY PREVIEW ── */
.gallery-preview{background:#0a0a0a;padding:6rem 0 5rem 0;color:#f0ece0;}
.gallery-preview-header{text-align:center;padding:0 4% 4rem 4%;}
.gallery-preview-title{font-family:'Cormorant Garamond',serif;font-size:clamp(2.8rem,6vw,5rem);font-weight:300;color:#f0ece0;margin-bottom:1.5rem;}
.gallery-preview-desc{font-size:.88rem;color:#666;line-height:1.8;}
.gallery-preview-list{padding:0 5%;}
.gp-divider{height:1px;background:#222;}
.gp-row{display:flex;align-items:center;justify-content:space-between;gap:4%;padding:3.5rem 0;}
.gp-meta{flex:0 0 30%;display:flex;flex-direction:column;gap:1.2rem;}
.gp-number{font-size:.75rem;color:#444;letter-spacing:.1em;}
.gp-title{font-family:'Cormorant Garamond',serif;font-size:clamp(1.6rem,2.5vw,2.4rem);font-weight:400;color:#f0ece0;line-height:1.2;}
.gp-desc{font-size:.83rem;color:#555;line-height:1.75;max-width:320px;}
.gp-image{flex:0 0 62%;overflow:hidden;border-radius:2px;height:340px;}
.gp-image img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .7s ease;filter:brightness(.92);}
.gallery-preview-item:hover .gp-image img{transform:scale(1.03);filter:brightness(1);}
.gallery-preview-footer{display:flex;justify-content:center;padding:3.5rem 4% 0 4%;}
.btn-seemore{display:inline-flex;align-items:center;gap:.7rem;color:#f0ece0;text-decoration:none;font-size:.85rem;letter-spacing:.12em;text-transform:uppercase;border-bottom:1px solid #333;padding-bottom:.4rem;transition:color .3s,border-color .3s,gap .3s;}
.btn-seemore:hover{color:#c9a84c;border-color:#c9a84c;gap:1.1rem;}

/* ── ARTISTS PREVIEW ── */
.artists-preview {
  background: var(--bg);
  padding: 6rem 5%;
  border-top: 1px solid var(--border);
}

.ap-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.ap-header-left { display: flex; flex-direction: column; gap: 0.5rem; }

.ap-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.ap-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1;
  letter-spacing: -0.01em;
}

.ap-list { display: flex; flex-direction: column; }

.ap-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.25s, padding-left 0.3s;
  cursor: pointer;
}

.ap-item:first-child { border-top: 1px solid var(--border); }
.ap-item:hover { padding-left: 0.8rem; }

.ap-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border);
  flex-shrink: 0;
  background: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ap-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ap-avatar span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: #fafaf8;
  font-weight: 400;
}

.ap-info { flex: 1; display: flex; flex-direction: column; gap: 0.4rem; }

.ap-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1;
}

.ap-bio {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

.ap-count {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #bbb;
}

.ap-arrow {
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.25s, transform 0.25s;
}

.ap-item:hover .ap-arrow {
  color: var(--text-dark);
  transform: translateX(4px);
}

/* ── ARTISTS PREVIEW ── */
.artists-preview {
  background: var(--bg);
  padding: 6rem 5%;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.ap-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 3rem;
  flex-wrap: wrap;
}

.ap-left {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 480px;
}

.ap-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.ap-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1;
  letter-spacing: -0.01em;
}

.ap-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--text-dark);
  color: var(--bg);
  padding: 0.85rem 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  width: fit-content;
  transition: background 0.3s, color 0.3s;
}
.btn-primary:hover { background: #c9a84c; color: #fff; }

/* Right side — overlapping avatars */
.ap-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.ap-avatars {
  display: flex;
  align-items: center;
}

.ap-avatar-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--bg);
  margin-left: -20px;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.ap-avatars .ap-avatar-circle:first-child { margin-left: 0; }
.ap-avatar-circle:hover { transform: translateY(-6px); }

.ap-avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ap-avatar-circle span {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 400;
}

.ap-avatar-count {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f0ece0;
  border: 3px solid var(--bg);
  margin-left: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ap-avatar-count span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.ap-artists-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

/* ── FOOTER ── */
.footer{background:#050505;border-top:1px solid #1a1a1a;padding:5rem 5% 2rem 5%;color:#888;}
.footer-top{display:grid;grid-template-columns:2fr 1fr 1.4fr;gap:4rem;padding-bottom:4rem;border-bottom:1px solid #1a1a1a;}
.footer-logo{font-family:'DM Sans',sans-serif;font-size:1.6rem;font-weight:500;color:#f0ece0;text-decoration:none;letter-spacing:-0.02em;display:inline-block;margin-bottom:1rem;}
.footer-logo-o{display:inline-flex;align-items:center;justify-content:center;width:1.1rem;height:1.1rem;border:1.8px solid #f0ece0;border-radius:50%;font-size:0;margin:0 .04em;position:relative;top:-0.05em;}
.footer-tagline{font-size:.83rem;color:#555;line-height:1.75;max-width:280px;margin-bottom:1.8rem;}
.footer-socials{display:flex;gap:.9rem;align-items:center;}
.social-icon{width:36px;height:36px;border:1px solid #222;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#666;text-decoration:none;transition:border-color .3s,color .3s,transform .2s;}
.social-icon svg{width:15px;height:15px;}
.social-icon:hover{border-color:#c9a84c;color:#c9a84c;transform:translateY(-2px);}
.footer-col-title{font-size:.72rem;letter-spacing:.2em;text-transform:uppercase;color:#f0ece0;font-weight:400;margin-bottom:1.5rem;}
.footer-links{list-style:none;display:flex;flex-direction:column;gap:.75rem;}
.footer-links a{color:#555;text-decoration:none;font-size:.85rem;transition:color .25s,padding-left .25s;display:inline-block;}
.footer-links a:hover{color:#f0ece0;padding-left:4px;}
.footer-contact-list{list-style:none;display:flex;flex-direction:column;gap:1.2rem;}
.footer-contact-list li{display:flex;align-items:flex-start;gap:.8rem;font-size:.85rem;color:#555;line-height:1.65;}
.footer-contact-list svg{width:16px;height:16px;flex-shrink:0;color:#444;margin-top:2px;}
.footer-bottom{padding-top:2rem;display:flex;align-items:center;justify-content:space-between;position:relative;}
.footer-credit{font-size:.75rem;color:#333;text-decoration:none;letter-spacing:.08em;transition:color .3s;position:absolute;left:50%;transform:translateX(-50%);white-space:nowrap;}
.footer-credit:hover{color:#c9a84c;}
.footer-copy{font-size:.78rem;color:#333;}
.footer-bottom-links{display:flex;gap:1.8rem;}
.footer-bottom-links a{font-size:.78rem;color:#333;text-decoration:none;transition:color .25s;}
.footer-bottom-links a:hover{color:#888;}

/* ── RESPONSIVE ── */
/* ── HAMBURGER ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 300;
  position: relative;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-dark);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media(max-width:900px){
  /* Navbar */
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: #fafaf8;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 200;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: auto; text-align: center; }
  .nav-links a {
    font-size: 2rem !important;
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 400 !important;
    color: var(--text-dark) !important;
    text-decoration: none;
    letter-spacing: 0.02em;
    background: none !important;
    padding: 0 !important;
    border: none !important;
    display: block;
  }
  .nav-links .btn-contact {
    font-size: 1rem !important;
    font-family: 'DM Sans', sans-serif !important;
    letter-spacing: 0.1em !important;
    background: var(--text-dark) !important;
    color: #fafaf8 !important;
    padding: 0.8rem 2.5rem !important;
    margin-top: 0.5rem;
  }
  .nav-toggle { z-index: 300; }
  .logo-img { height: 52px !important; }
  .navbar { padding: 1rem 4%; z-index: 250; }

  /* Hero */
  .hero { padding-top: 80px; min-height: auto; }
  .hero-content { flex-direction: column; align-items: flex-start; padding: 3rem 5%; gap: 2rem; }
  .hero-left { max-width: 100%; }
  .hero-right { width: 100%; }
  .hero-divider { display: none; }

  /* Art strip */
  .art-card { width: 180px; height: 130px; }

  /* Stats */
  .stats-section { flex-direction: column; }
  .stats-image { flex: 0 0 220px; }

  /* Gallery preview */
  .gp-row { flex-direction: column; }
  .gp-image { flex: 1; width: 100%; height: 240px; }
  .gallery-preview { padding: 4rem 5%; }

  /* Artists preview */
  .ap-content { flex-direction: column; align-items: flex-start; gap: 2.5rem; }
  .ap-left { max-width: 100%; }
  .ap-right { width: 100%; align-items: flex-start; }
  .ap-avatars { flex-wrap: wrap; }

  /* Statement */
  .statement-inner { flex-direction: column; gap: 1.5rem; }
  .statement-line { width: 60px; height: 1px; flex: none; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .footer-credit { position: static; transform: none; }
}