/* ═══════════════════════════════════════════════════════
   AUSTIN NEWCOMB — MODEL PORTFOLIO
   Design: Exact Syngency/Veronica Medrano aesthetic
   Pure white · Cormorant serif name · Jost body · 
   Horizontal slider · Inline measurements bar
   ═══════════════════════════════════════════════════════ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: 'Jost', 'Helvetica Neue', sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
img { display: block; max-width: 100%; height: 100%; object-fit: cover; }
button, a { cursor: pointer; font: inherit; color: inherit; text-decoration: none; }
button { background: none; border: none; }
:focus-visible { outline: 1px solid #c8a2a2; outline-offset: 2px; }

/* ── Header ── */
.site-header {
  text-align: center;
  padding: 28px 20px 0;
  user-select: none;
}
.agency-line {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 10px;
}
.model-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 16px;
}

/* ── Tab Navigation ── */
.tab-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 0;
  flex-wrap: wrap;
}
.tab-btn {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #888;
  padding: 10px 18px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: color 150ms ease, border-color 150ms ease;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.tab-btn:hover { color: #1a1a1a; }
.tab-btn.active {
  color: #c0392b;
  border-bottom-color: #c0392b;
}
.tab-instagram {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #aaa;
  padding: 10px 14px;
  letter-spacing: 0.03em;
}

/* ── Tab Content ── */
.tab-content { display: flex; flex-direction: column; flex: 1; }
.tab-content[hidden] { display: none; }

/* ── Slider ── */
.slider-wrap {
  position: relative;
  overflow: hidden;
  height: 80vh;
  min-height: 480px;
  max-height: 860px;
}
.slider-track {
  display: flex;
  height: 100%;
  transition: transform 380ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.slide {
  flex: 0 0 50%;
  height: 100%;
  overflow: hidden;
  flex-shrink: 0;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}

/* Photo placeholder (shown until real images are added) */
.photo-slot {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background: #f2f2f0;
  border: 1.5px dashed #d8d8d4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
  padding: 20px;
  color: #bbb;
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.slot-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: #ddd;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.photo-slot small { font-size: 10px; color: #ccc; }

/* ── Slider arrows ── */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  background: rgba(255,255,255,0.85);
  border-radius: 0;
  z-index: 10;
  transition: color 150ms, background 150ms;
  padding: 0;
}
.slider-arrow:hover { color: #1a1a1a; }
.slider-prev { left: 8px; }
.slider-next { right: 8px; }
.slider-prev.hidden, .slider-next.hidden { opacity: 0; pointer-events: none; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ccc;
  transition: background 200ms;
}
.dot.active { background: #888; }

/* ── Measurements Bar ── */
.measurements-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 28px;
  padding: 20px 24px;
  border-top: 1px solid #ebebeb;
  background: #fff;
}
.meas-pair {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-size: 11px;
  white-space: nowrap;
}
.meas-label {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #aaa;
  font-size: 10px;
}
.meas-val {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #1a1a1a;
  font-size: 11px;
}

/* ── Footer ── */
.site-footer {
  text-align: center;
  padding: 28px 20px 24px;
  border-top: 1px solid #ebebeb;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.footer-social a {
  color: #aaa;
  transition: color 150ms;
  display: inline-flex;
}
.footer-social a:hover { color: #1a1a1a; }
.footer-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #888;
  text-transform: uppercase;
}
.footer-contact span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.footer-contact a { color: #888; }
.footer-contact a:hover { color: #1a1a1a; }
.footer-copy {
  font-size: 10px;
  color: #bbb;
  letter-spacing: 0.06em;
}

/* ── Share Modal ── */
.share-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.share-modal[hidden] { display: none; }
.share-modal-inner {
  background: #fff;
  padding: 32px;
  max-width: 420px;
  width: 100%;
  position: relative;
}
.share-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 22px;
  color: #aaa;
  line-height: 1;
}
.share-close:hover { color: #1a1a1a; }
.share-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 16px;
  color: #1a1a1a;
}
.share-url-wrap { display: flex; gap: 8px; }
.share-url-input {
  flex: 1;
  border: 1px solid #ddd;
  padding: 9px 12px;
  font-size: 12px;
  color: #555;
  letter-spacing: 0.02em;
  outline: none;
}
.share-copy-btn {
  background: #1a1a1a;
  color: #fff;
  padding: 9px 18px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 150ms;
}
.share-copy-btn:hover { background: #444; }

/* ── Responsive ── */
@media (max-width: 700px) {
  .slide { flex: 0 0 100%; }
  .slider-wrap { height: 70vh; max-height: 600px; }
  .measurements-bar { gap: 6px 16px; padding: 16px 16px; }
  .tab-btn { padding: 10px 12px; font-size: 11px; }
}

@media (max-width: 480px) {
  .model-name { font-size: 2rem; }
  .measurements-bar { gap: 6px 12px; }
  .meas-label, .meas-val { font-size: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  .slider-track { transition: none; }
}
