/* ============================================================
   HOLLOWAY MANAGEMENT
   A boutique talent representation agency · Est. 2019
   ============================================================
   Design system v1.0
   Type:  Cormorant Garamond (display) + Helvetica (body)
   Palette: B&W with antique-brass gold accent · 95/5 ratio
   ============================================================ */

:root {
  /* Surface */
  --white: #ffffff;
  --paper: #faf9f6;
  --paper-deep: #f4f1ea;
  --rule: #e8e6e1;
  --rule-mid: #d4d1c9;

  /* Ink */
  --black: #000000;
  --ink: #0c0c0c;
  --ink-soft: #1a1a1a;
  --text: #2a2a2a;
  --text-muted: #6b6b6b;
  --text-quiet: #999999;

  /* Accent · antique brass / charcoal gold */
  --gold: #b08d57;
  --gold-deep: #8c6f44;
  --gold-soft: #d4b582;
  --gold-pale: #ede0c8;

  /* Dark surface (footer / dark sections) */
  --dark: #0c0c0c;
  --dark-rule: rgba(255, 255, 255, 0.1);
}

/* ============================================================
   RESET & BASE
============================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--text);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* Display type · Cormorant Garamond */
.serif {
  font-family: 'Cormorant Garamond', 'Times New Roman', serif;
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ============================================================
   LAYOUT
============================================================ */
.wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}
.wrap-narrow {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 80px;
}

/* ============================================================
   NAV
============================================================ */
nav.top {
  padding: 28px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid var(--rule);
}
.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 0.95;
  text-decoration: none;
}
.brand-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.brand-sub {
  font-size: 9px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.36em;
  margin-top: 6px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  padding: 4px 0;
  transition: color 0.25s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-dark {
  display: inline-block;
  background: var(--ink);
  color: var(--white);
  padding: 17px 38px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  font-family: inherit;
}
.btn-dark:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--ink);
  padding: 16px 38px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  font-family: inherit;
}
.btn-ghost:hover { background: var(--ink); color: var(--white); }

.btn-ghost-light {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 16px 38px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.5);
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  font-family: inherit;
}
.btn-ghost-light:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }

.link-gold {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: color 0.25s, border-color 0.25s;
}
.link-gold:hover { color: var(--gold-deep); border-color: var(--gold-deep); }

/* ============================================================
   SECTION ANATOMY
============================================================ */
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.eyebrow-quiet {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.rule-thin {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 36px;
}
.rule-full {
  width: 100%;
  height: 1px;
  background: var(--rule);
}

/* ============================================================
   HERO · HOMEPAGE
============================================================ */
.hero {
  padding: 90px 0 0;
  background: var(--white);
  position: relative;
}
.hero-mark {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(72px, 14vw, 220px);
  line-height: 0.88;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-mark .ital { font-style: italic; font-weight: 300; color: var(--gold); }
.hero-tagline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 90px;
  display: flex;
  gap: 20px;
  align-items: center;
}
.hero-tagline span:not(:last-child)::after {
  content: '·';
  margin-left: 20px;
  color: var(--gold);
}
.hero-image {
  width: 100%;
  aspect-ratio: 21/9;
  position: relative;
  overflow: hidden;
}
.hero-image::after {
  content: 'EDITORIAL · 2026';
  position: absolute;
  bottom: 24px;
  right: 28px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.36em;
  color: rgba(255,255,255,0.65);
  z-index: 2;
}

/* ============================================================
   PHOTO TREATMENT · B&W → color hover
============================================================ */
.photo {
  filter: grayscale(100%) contrast(1.04);
  transition: filter 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.photo:hover, .photo-hover-target:hover .photo {
  filter: grayscale(0%) contrast(1);
}

/* Editorial color placeholder gradients · show subtle warmth on hover */
.p1 { background:
  radial-gradient(ellipse 65% 55% at 50% 35%, #c9a880 0%, transparent 60%),
  linear-gradient(165deg, #8a6d4c 0%, #4a3725 50%, #2a1f15 100%); }
.p2 { background:
  radial-gradient(ellipse 60% 55% at 45% 32%, #d4c5a8 0%, transparent 60%),
  linear-gradient(155deg, #6e6149 0%, #3d3528 50%, #1f1c14 100%); }
.p3 { background:
  radial-gradient(ellipse 65% 50% at 55% 30%, #b8a89a 0%, transparent 60%),
  linear-gradient(170deg, #5d4d40 0%, #382d24 50%, #1a1310 100%); }
.p4 { background:
  radial-gradient(ellipse 60% 55% at 50% 33%, #c0a085 0%, transparent 60%),
  linear-gradient(160deg, #7a5e44 0%, #443120 50%, #211710 100%); }
.p5 { background:
  radial-gradient(ellipse 65% 55% at 48% 30%, #b29588 0%, transparent 60%),
  linear-gradient(150deg, #6c4f44 0%, #3a2823 50%, #1c1310 100%); }
.p6 { background:
  radial-gradient(ellipse 60% 55% at 52% 32%, #a8a8b0 0%, transparent 60%),
  linear-gradient(170deg, #4d4f5a 0%, #2c2d36 50%, #14141a 100%); }
.p7 { background:
  radial-gradient(ellipse 65% 55% at 50% 30%, #ccb898 0%, transparent 60%),
  linear-gradient(160deg, #806640 0%, #4a3a23 50%, #251c12 100%); }
.p8 { background:
  radial-gradient(ellipse 60% 55% at 48% 33%, #a0a89a 0%, transparent 60%),
  linear-gradient(165deg, #4a5045 0%, #2a2e26 50%, #131611 100%); }
.p9 { background:
  radial-gradient(ellipse 65% 55% at 52% 30%, #b89878 0%, transparent 60%),
  linear-gradient(155deg, #735238 0%, #402c1d 50%, #20140d 100%); }
.p10 { background:
  radial-gradient(ellipse 60% 55% at 50% 32%, #c8b09e 0%, transparent 60%),
  linear-gradient(165deg, #6e574a 0%, #3d2f26 50%, #1d1612 100%); }
.p11 { background:
  radial-gradient(ellipse 60% 55% at 48% 30%, #a8a09a 0%, transparent 60%),
  linear-gradient(170deg, #524a45 0%, #302a26 50%, #181412 100%); }
.p12 { background:
  radial-gradient(ellipse 65% 55% at 52% 32%, #b8a88c 0%, transparent 60%),
  linear-gradient(160deg, #6a553c 0%, #3d3022 50%, #1f1810 100%); }

/* ============================================================
   FEATURED TALENT STRIP (homepage)
============================================================ */
.featured-strip { padding: 130px 0 100px; background: var(--white); }
.featured-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 60px;
  margin-bottom: 70px;
}
.featured-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 84px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.featured-title .ital { font-style: italic; font-weight: 300; }

/* Feature grid · uneven editorial layout */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-card {
  display: block;
  text-decoration: none;
  color: var(--ink);
}
.feature-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  margin-bottom: 18px;
}
.feature-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 4px;
}
.feature-meta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   STATEMENT · DARK
============================================================ */
.statement-dark {
  background: var(--dark);
  color: var(--white);
  padding: 160px 0;
}
.statement-dark .eyebrow { color: var(--gold-soft); }
.statement-dark h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 1100px;
}
.statement-dark h2 .ital { font-style: italic; font-weight: 300; color: var(--gold-soft); }
.statement-dark p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin-top: 36px;
}

/* ============================================================
   STATEMENT · LIGHT
============================================================ */
.statement-light {
  background: var(--paper);
  padding: 160px 0;
}
.statement-light h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 1100px;
}
.statement-light h2 .ital { font-style: italic; font-weight: 300; color: var(--gold); }

/* ============================================================
   PAGE HEADER (interior pages)
============================================================ */
.page-header {
  padding: 100px 0 80px;
  background: var(--white);
  border-bottom: 1px solid var(--rule);
}
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 9vw, 144px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 32px;
}
.page-header h1 .ital { font-style: italic; font-weight: 300; color: var(--gold); }
.page-header p.lead {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  max-width: 660px;
  font-weight: 400;
}

/* ============================================================
   FOOTER
============================================================ */
footer.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.78);
  padding: 110px 0 50px;
}
.footer-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(72px, 11vw, 168px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-mark .ital { font-style: italic; color: var(--gold-soft); }
.footer-est {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--dark-rule);
}
.footer-col h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.footer-col p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.02em;
  transition: color 0.25s;
}
.footer-col a:hover { color: var(--gold-soft); }
.footer-base {
  padding-top: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  .wrap, .wrap-narrow { padding: 0 40px; }
  nav.top { padding: 24px 40px; }
  .nav-links { gap: 26px; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .wrap, .wrap-narrow { padding: 0 24px; }
  nav.top { padding: 20px 24px; }
  .nav-links { display: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .featured-head { grid-template-columns: 1fr; gap: 28px; }
  .featured-strip, .statement-dark, .statement-light { padding: 90px 0; }
  .hero { padding: 50px 0 0; }
  .hero-tagline { margin-bottom: 50px; flex-wrap: wrap; gap: 12px; }
  .hero-tagline span:not(:last-child)::after { margin-left: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-base { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 480px) {
  .feature-grid { grid-template-columns: 1fr; }
}
