/* ==============================================
   SCHNECKIS SKIN STUDIO – Shared Stylesheet
   ============================================== */

:root {
  --bg:      #181818;
  --bg2:     #212121;
  --bg3:     #2a2a2a;
  --accent:  #c9a96e;
  --text:    #f2f2f2;
  --muted:   #a8a8a8;
  --border:  rgba(255,255,255,0.13);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  background:var(--bg);
  color:var(--text);
  font-family:'Inter', -apple-system, sans-serif;
  font-size:16px;
  line-height:1.7;
  overflow-x:hidden;
}
img { max-width:100%; display:block; }
a   { color:inherit; text-decoration:none; }

/* ─── Typography ─────────────────────────────── */
h1,h2,h3 { font-family:'Cormorant Garamond',Georgia,serif; font-weight:300; line-height:1.15; }
h2 { font-size:clamp(2rem,4vw,3.5rem); }
h3 { font-size:1.4rem; font-weight:400; }

.section-eyebrow {
  font-family:'Inter',sans-serif;
  font-size:.72rem;
  font-weight:500;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--accent);
  margin-bottom:.9rem;
  display:block;
}
.section-title { margin-bottom:1.5rem; }
.section-intro  { color:var(--muted); max-width:600px; margin:0 auto 3rem; text-align:center; }

/* ─── Layout ─────────────────────────────────── */
.container { max-width:1200px; margin:0 auto; padding:0 2rem; }
.section   { padding:6rem 0; }

/* ─── Buttons ────────────────────────────────── */
.btn {
  display:inline-block;
  padding:.85rem 2.1rem;
  font-family:'Inter',sans-serif;
  font-size:.78rem;
  font-weight:500;
  letter-spacing:.12em;
  text-transform:uppercase;
  border-radius:1px;
  transition:all .3s ease;
  cursor:pointer;
  border:none;
}
.btn-primary { background:var(--accent); color:#0a0a0a; }
.btn-primary:hover { background:#ddb97c; transform:translateY(-2px); box-shadow:0 10px 28px rgba(201,169,110,.25); }
.btn-ghost   { background:transparent; color:var(--text); border:1px solid var(--border); }
.btn-ghost:hover { border-color:var(--accent); color:var(--accent); transform:translateY(-2px); }

/* ─── Navigation ─────────────────────────────── */
.nav {
  position:fixed; top:0; left:0; right:0;
  z-index:100;
  padding:1.3rem 0;
  transition:background .4s, box-shadow .4s;
}
.nav.scrolled {
  background:rgba(10,10,10,.96);
  backdrop-filter:blur(14px);
  box-shadow:0 1px 0 var(--border);
}
.nav-container {
  max-width:1200px; margin:0 auto; padding:0 2rem;
  display:flex; align-items:center; justify-content:space-between;
}
.nav-logo { display:flex; flex-direction:column; line-height:1.1; }
.logo-main {
  font-family:'Bebas Neue',sans-serif;
  font-size:1.55rem; letter-spacing:.06em; color:var(--text);
}
.logo-sub {
  font-family:'Inter',sans-serif;
  font-size:.58rem; letter-spacing:.28em; text-transform:uppercase; color:var(--accent);
}
.nav-links { display:flex; gap:2.5rem; list-style:none; }
.nav-links a {
  font-size:.75rem; letter-spacing:.16em; text-transform:uppercase;
  color:var(--muted); transition:color .3s; position:relative;
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0; right:0;
  height:1px; background:var(--accent); transform:scaleX(0); transition:transform .3s;
}
.nav-links a:hover, .nav-links a.active { color:var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { transform:scaleX(1); }

.nav-toggle {
  display:none; flex-direction:column; gap:5px;
  background:none; border:none; cursor:pointer; padding:.5rem;
}
.nav-toggle span { display:block; width:24px; height:2px; background:var(--text); transition:all .3s; }
.nav-toggle.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity:0; }
.nav-toggle.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* ─── Hero ───────────────────────────────────── */
.hero {
  min-height:100vh;
  display:flex; align-items:center; justify-content:center; text-align:center;
  position:relative; overflow:hidden; padding:8rem 2rem 5rem;
}
.hero-bg {
  position:absolute; inset:0;
  background:
    radial-gradient(ellipse 80% 70% at 50% -5%, rgba(201,169,110,.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 85% 100%, rgba(201,169,110,.08) 0%, transparent 55%);
}
.hero-bg::after {
  content:''; position:absolute; inset:0;
  background:repeating-linear-gradient(0deg,transparent,transparent 3px,rgba(255,255,255,.006) 3px,rgba(255,255,255,.006) 4px);
}
.hero-content { position:relative; z-index:1; max-width:850px; }
.hero-eyebrow {
  font-family:'Inter',sans-serif; font-size:.72rem; letter-spacing:.3em;
  text-transform:uppercase; color:var(--accent); margin-bottom:1.5rem; display:block;
}
.hero-title {
  font-family:'Bebas Neue',sans-serif;
  font-size:clamp(4.5rem,13vw,11rem);
  letter-spacing:.03em; line-height:.92; color:var(--text); margin-bottom:1.5rem;
}
.hero-subtitle { font-size:.95rem; color:var(--muted); margin-bottom:2.8rem; line-height:1.9; }
.hero-actions { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

.hero-scroll { position:absolute; bottom:2.5rem; left:50%; transform:translateX(-50%); }
.hero-scroll span {
  display:block; width:1px; height:48px;
  background:linear-gradient(to bottom, var(--accent), transparent);
  margin:0 auto; animation:scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform:scaleY(0); transform-origin:top; }
  50%  { transform:scaleY(1); transform-origin:top; }
  50.01% { transform-origin:bottom; }
  100% { transform:scaleY(0); transform-origin:bottom; }
}

/* ─── Ticker ─────────────────────────────────── */
.ticker {
  overflow:hidden;
  border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  padding:.85rem 0; background:var(--bg2);
}
.ticker-track {
  display:flex; gap:2.5rem; white-space:nowrap;
  animation:ticker 22s linear infinite;
  font-family:'Bebas Neue',sans-serif; font-size:.95rem; letter-spacing:.22em; color:var(--muted);
}
.ticker-track span:nth-child(even) { color:var(--accent); }
@keyframes ticker { from { transform:translateX(0); } to { transform:translateX(-50%); } }

/* ─── About ──────────────────────────────────── */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:start; }
.about-text p { color:var(--muted); margin-bottom:1rem; }
.highlight-box {
  border-left:2px solid var(--accent); padding:1.3rem 1.6rem;
  background:rgba(201,169,110,.09); margin:2rem 0;
}
.highlight-box p { color:var(--text) !important; margin:0; }
.about-features { display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--border); }
.feature-card { padding:2rem; background:var(--bg3); transition:background .3s; }
.feature-card:hover { background:#323232; }
.feature-icon { font-size:1.4rem; color:var(--accent); margin-bottom:.9rem; }
.feature-card h3 { font-size:1.05rem; margin-bottom:.4rem; }
.feature-card p  { font-size:.88rem; color:var(--muted); }

/* ─── Gallery Preview (style cards) ─────────── */
.gallery-preview { background:var(--bg2); text-align:center; }
.gallery-preview .section-title { text-align:center; }

.style-grid {
  display:grid; grid-template-columns:repeat(5,1fr);
  gap:0; margin-top:3rem; overflow:hidden;
}
.style-card {
  position:relative; aspect-ratio:3/4; overflow:hidden;
  display:flex; align-items:flex-end;
}
.style-card-bg { position:absolute; inset:0; transition:transform .6s ease; }
.style-bg-1 { background:linear-gradient(150deg,#252525 0%,#303030 50%,#222 100%); }
.style-bg-2 { background:linear-gradient(150deg,#1c1c28 0%,#282838 50%,#1a1a24 100%); }
.style-bg-3 { background:linear-gradient(150deg,#221810 0%,#2e2016 50%,#1c1410 100%); }
.style-bg-4 { background:linear-gradient(150deg,#1e1e1e 0%,#2c2c2c 50%,#1a1a1a 100%); }
.style-bg-5 { background:linear-gradient(150deg,#1e1e14 0%,#2c2c1c 50%,#1a1a10 100%); }
.style-card:hover .style-card-bg { transform:scale(1.06); }
.style-card::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.88) 0%,rgba(0,0,0,.05) 60%);
  z-index:1;
}
.style-card-content { position:relative; z-index:2; padding:1.5rem; text-align:left; }
.style-card-content h3 {
  font-family:'Cormorant Garamond',serif; font-size:1.15rem; color:#fff; margin-bottom:.2rem;
}
.style-card-content p { font-size:.72rem; color:rgba(255,255,255,.45); margin-bottom:.6rem; }
.style-cta {
  font-size:.68rem; letter-spacing:.15em; text-transform:uppercase; color:var(--accent);
  opacity:0; transform:translateY(6px); transition:all .3s; display:block;
}
.style-card:hover .style-cta { opacity:1; transform:translateY(0); }

/* ─── CTA Section ────────────────────────────── */
.cta-section {
  padding:6rem 0; text-align:center;
  background:#2e2e2e; border-top:1px solid var(--border);
}
.cta-section h2  { margin-bottom:1rem; }
.cta-section p   { color:var(--muted); max-width:500px; margin:0 auto .75rem; }
.cta-sig {
  font-family:'Cormorant Garamond',serif; font-style:italic;
  font-size:1.1rem; color:var(--accent) !important; margin-bottom:2.5rem !important;
}
.cta-actions { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

/* ─── Footer ─────────────────────────────────── */
.footer { background:#141414; padding:4rem 0 2rem; border-top:1px solid var(--border); }
.footer-grid {
  display:grid; grid-template-columns:2fr 1fr 1fr; gap:3rem; margin-bottom:3rem;
}
.footer-brand .logo-main { font-family:'Bebas Neue',sans-serif; font-size:1.8rem; display:block; }
.footer-brand .logo-sub  { display:block; margin-bottom:1rem; }
.footer-brand p          { font-size:.85rem; color:var(--muted); }
.footer-links { display:flex; flex-direction:column; gap:.75rem; }
.footer-links a, .footer-contact p, .footer-contact a { font-size:.85rem; color:var(--muted); }
.footer-links a:hover, .footer-contact a:hover { color:var(--accent); }
.footer-contact { display:flex; flex-direction:column; gap:.5rem; }
.footer-bottom {
  border-top:1px solid var(--border); padding-top:2rem;
  text-align:center; font-size:.72rem; color:var(--muted);
}

/* ─── Page Header (inner pages) ─────────────── */
.page-header {
  padding:10rem 2rem 4rem; text-align:center;
  background:radial-gradient(ellipse 60% 70% at 50% -10%,rgba(201,169,110,.14) 0%,transparent 65%);
  border-bottom:1px solid var(--border);
}
.page-header h1 {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.5rem,6vw,5rem); font-weight:300;
}

/* ─── Info Page ──────────────────────────────── */
.info-content { max-width:800px; margin:0 auto; }
.info-section { padding:4rem 0; border-bottom:1px solid var(--border); }
.info-section:last-child { border-bottom:none; }
.info-section h2 { margin-bottom:1.5rem; }
.info-section p  { color:var(--muted); margin-bottom:1rem; }
.info-section strong { color:var(--text); }
.info-list { list-style:none; margin:.5rem 0 1.5rem; display:flex; flex-direction:column; gap:.5rem; }
.info-list li {
  padding:.4rem 0 .4rem 1.5rem; position:relative;
  color:var(--muted); font-size:.93rem;
}
.info-list li::before { content:'—'; position:absolute; left:0; color:var(--accent); }
.info-download {
  display:inline-flex; align-items:center; gap:.5rem;
  padding:.6rem 1.25rem; border:1px solid var(--accent); color:var(--accent);
  font-size:.75rem; letter-spacing:.12em; text-transform:uppercase; border-radius:1px;
  transition:all .3s; margin:.5rem 0;
}
.info-download:hover { background:var(--accent); color:#0a0a0a; }

/* ─── Gallery Page ───────────────────────────── */
.image-strip { overflow:hidden; background:var(--bg2); border-bottom:1px solid var(--border); }
.image-strip-track {
  display:flex; gap:4px;
  animation:stripScroll 35s linear infinite;
}
.image-strip-track:hover { animation-play-state:paused; }
.image-strip-item {
  flex:none; width:240px; height:240px;
  background:var(--bg3); overflow:hidden; position:relative;
}
.image-strip-item img { width:100%; height:100%; object-fit:cover; transition:transform .4s; }
.image-strip-item:hover img { transform:scale(1.06); }
.strip-placeholder {
  width:100%; height:100%; display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:.4rem;
  color:rgba(255,255,255,.12); font-size:.65rem; letter-spacing:.15em; text-transform:uppercase;
}
.strip-placeholder-icon { font-size:1.6rem; opacity:.2; }
@keyframes stripScroll { from { transform:translateX(0); } to { transform:translateX(-50%); } }

.gallery-filter {
  display:flex; gap:.6rem; flex-wrap:wrap; justify-content:center; margin-bottom:3rem;
}
.filter-btn {
  padding:.5rem 1.25rem; font-family:'Inter',sans-serif;
  font-size:.72rem; letter-spacing:.16em; text-transform:uppercase;
  background:transparent; border:1px solid var(--border); color:var(--muted);
  cursor:pointer; border-radius:1px; transition:all .3s;
}
.filter-btn:hover, .filter-btn.active { border-color:var(--accent); color:var(--accent); background:rgba(201,169,110,.05); }

.gallery-section { margin-bottom:4.5rem; }
.gallery-section-title { font-family:'Cormorant Garamond',serif; font-size:2rem; font-weight:300; margin-bottom:.2rem; }
.gallery-section-sub {
  font-size:.72rem; color:var(--muted); letter-spacing:.18em;
  text-transform:uppercase; margin-bottom:1.8rem; display:block;
}
.photo-grid {
  display:grid; grid-template-columns:repeat(auto-fill,minmax(270px,1fr)); gap:3px;
}
.photo-item {
  aspect-ratio:1; background:var(--bg3);
  overflow:hidden; position:relative; cursor:pointer;
}
.photo-item img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.photo-item:hover img { transform:scale(1.05); }
.photo-overlay {
  position:absolute; inset:0; background:rgba(0,0,0,.5);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transition:opacity .3s;
}
.photo-item:hover .photo-overlay { opacity:1; }
.photo-overlay-icon { font-size:1.5rem; color:rgba(255,255,255,.7); }
.photo-placeholder {
  width:100%; height:100%; display:flex; flex-direction:column;
  align-items:center; justify-content:center; gap:.5rem;
  color:rgba(255,255,255,.1); font-size:.65rem; letter-spacing:.12em; text-transform:uppercase;
  border:1px dashed rgba(255,255,255,.06); transition:all .3s;
}
.photo-item:hover .photo-placeholder { border-color:rgba(201,169,110,.18); color:rgba(201,169,110,.25); }
.photo-placeholder-icon { font-size:1.8rem; opacity:.25; }

/* ─── Lightbox ───────────────────────────────── */
.lightbox {
  position:fixed; inset:0; background:rgba(0,0,0,.95); z-index:999;
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transition:opacity .3s;
}
.lightbox.open { opacity:1; pointer-events:all; }
.lightbox img { max-width:90vw; max-height:90vh; object-fit:contain; border-radius:2px; }
.lightbox-close {
  position:absolute; top:1.5rem; right:2rem;
  background:none; border:none; color:var(--muted); font-size:2rem; cursor:pointer;
  transition:color .3s;
}
.lightbox-close:hover { color:var(--text); }

/* ─── Contact Page ───────────────────────────── */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:start; }
.contact-info h3 { font-size:1.6rem; margin-bottom:2rem; }
.contact-detail  { display:flex; flex-direction:column; gap:1.25rem; margin-bottom:2.5rem; }
.contact-label {
  font-size:.68rem; letter-spacing:.22em; text-transform:uppercase;
  color:var(--accent); margin-bottom:.2rem; display:block;
}
.contact-item p, .contact-item a { color:var(--muted); font-size:.9rem; line-height:1.7; }
.contact-item a:hover { color:var(--accent); }
.contact-social { display:flex; gap:.75rem; flex-wrap:wrap; }
.social-link {
  display:inline-flex; align-items:center; gap:.4rem;
  padding:.5rem 1rem; border:1px solid var(--border); color:var(--muted);
  font-size:.75rem; letter-spacing:.1em; text-transform:uppercase; border-radius:1px;
  transition:all .3s;
}
.social-link:hover { border-color:var(--accent); color:var(--accent); }

.contact-form { display:flex; flex-direction:column; gap:1.2rem; }
.form-group   { display:flex; flex-direction:column; gap:.35rem; }
.form-group label {
  font-size:.7rem; letter-spacing:.12em; text-transform:uppercase; color:var(--muted);
}
.form-group input,
.form-group textarea {
  background:var(--bg3); border:1px solid var(--border); color:var(--text);
  padding:.8rem 1rem; font-family:'Inter',sans-serif; font-size:.9rem;
  border-radius:1px; outline:none; transition:border-color .3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color:rgba(255,255,255,.18); }
.form-group input:focus,
.form-group textarea:focus { border-color:var(--accent); }
.form-group textarea { resize:vertical; min-height:150px; }
.form-note { font-size:.72rem; color:var(--muted); margin-top:.1rem; }

.map-wrap {
  margin-top:5rem;
  height:420px; overflow:hidden;
  border-radius:1px; border:1px solid var(--border);
}
.map-wrap iframe { width:100%; height:100%; border:none; }

/* ─── Responsive ─────────────────────────────── */
@media (max-width:1000px) {
  .about-grid { grid-template-columns:1fr; gap:3rem; }
  .style-grid { grid-template-columns:repeat(3,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .contact-grid { grid-template-columns:1fr; gap:3rem; }
}
@media (max-width:680px) {
  .style-grid {
    display:flex; overflow-x:auto; scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
  }
  .style-grid::-webkit-scrollbar { display:none; }
  .style-card { flex:none; width:70vw; scroll-snap-align:start; }
  .about-features { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; gap:2rem; }
  .nav-links {
    display:none; position:fixed; inset:0;
    background:rgba(8,8,8,.97); flex-direction:column;
    align-items:center; justify-content:center; gap:2.5rem;
    backdrop-filter:blur(16px);
  }
  .nav-links.open { display:flex; }
  .nav-links a { font-size:1rem; }
  .nav-toggle { display:flex; }
  .photo-grid { grid-template-columns:repeat(2,1fr); }
  .image-strip-item { width:180px; height:180px; }
}
