:root {
  --black: #080706;
  --espresso: #1b130f;
  --tobacco: #6f4a2f;
  --bone: #efe7d6;
  --ivory: #fbf7ee;
  --muted: #b7a58f;
  --line: rgba(251,247,238,.18);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black);
  color: var(--ivory);
}

a { color: inherit; text-decoration: none; }

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 42px;
  background: linear-gradient(to bottom, rgba(0,0,0,.82), rgba(0,0,0,.12));
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 11px;
}

.nav.solid {
  background: rgba(8,7,6,.96);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 18px;
  letter-spacing: .32em;
}

.nav-links a {
  margin-left: 26px;
  opacity: .84;
}

.nav-links a:hover { opacity: 1; }

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 140px 24px 80px;
  background:
    linear-gradient(rgba(6,5,4,.62), rgba(6,5,4,.78)),
    url('https://i.pinimg.com/736x/76/c1/75/76c17561a1865943142863276792ceba.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.hero:after, .about-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 4px 4px;
  opacity: .16;
  mix-blend-mode: screen;
}

.hero-inner, .about-hero-inner {
  position: relative;
  z-index: 2;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .42em;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 22px;
}

.center { text-align: center; }

h1, h2, h3, .price, .manifesto .line {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

h1 {
  font-weight: 500;
  font-size: clamp(48px, 8vw, 116px);
  line-height: .92;
  letter-spacing: -.035em;
  margin: 0 auto 28px;
  max-width: 1050px;
}

h2 {
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.025em;
  margin: 0 0 28px;
}

h3 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  margin: 0 0 16px;
}

p {
  line-height: 1.7;
}

.hero p {
  max-width: 690px;
  margin: 0 auto;
  font-size: 20px;
  color: rgba(251,247,238,.86);
}

.buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 42px;
}

.btn {
  border: 1px solid var(--ivory);
  padding: 15px 28px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 11px;
  transition: .25s ease;
  display: inline-block;
}

.btn.primary {
  background: var(--ivory);
  color: var(--black);
}

.btn.primary-dark {
  border-color: var(--black);
  background: var(--black);
  color: var(--ivory);
}

.btn.dark-outline {
  color: var(--black);
  border-color: var(--black);
  text-align: center;
}

.btn:hover,
.submit-btn:hover {
  transform: translateY(-2px);
}

section {
  padding: 110px 7vw;
}

.intro {
  background: var(--espresso);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.copy {
  font-size: 18px;
  line-height: 1.75;
  color: rgba(251,247,238,.78);
  max-width: 620px;
}

.image-card {
  border: 1px solid var(--line);
  overflow: hidden;
  border-radius: 28px;
  box-shadow: 0 40px 90px rgba(0,0,0,.38);
}

.image-card img {
  display: block;
  width: 100%;
  height: 620px;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
}

.manifesto {
  background: var(--black);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.manifesto .line {
  font-size: clamp(30px, 4vw, 62px);
  line-height: 1.12;
  max-width: 1050px;
  margin: 0 auto;
  letter-spacing: -.02em;
}

.packages {
  background: var(--bone);
  color: var(--black);
}

.packages .eyebrow { color: var(--tobacco); }

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.card {
  background: var(--ivory);
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 26px;
  padding: 30px;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: .25s ease;
}

.card:hover {
  transform: translateY(-7px);
  box-shadow: 0 30px 80px rgba(0,0,0,.16);
}

.price {
  font-size: 42px;
  margin-bottom: 26px;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
  color: rgba(8,7,6,.72);
  line-height: 1.75;
  font-size: 16px;
}

li:before {
  content: "— ";
  color: var(--tobacco);
}

.editorial {
  background:
    linear-gradient(rgba(8,7,6,.72), rgba(8,7,6,.72)),
    url('https://i.pinimg.com/736x/01/e2/ac/01e2acc2600c69da585ef4d665646ae9.jpg') center/cover no-repeat;
  min-height: 80vh;
  display: grid;
  align-items: end;
}

.editorial .copy {
  max-width: 760px;
  font-size: 24px;
}

.testimonials {
  background: var(--espresso);
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.quote {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 34px;
  color: rgba(251,247,238,.86);
  font-size: 19px;
  line-height: 1.55;
  min-height: 210px;
}

.cta {
  background: var(--bone);
  color: var(--black);
  text-align: center;
}

.cta .eyebrow { color: var(--tobacco); }

.cta p {
  max-width: 650px;
  margin: 0 auto 38px;
  color: rgba(8,7,6,.72);
  font-size: 18px;
}

footer {
  padding: 30px 7vw;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  background: var(--black);
  color: rgba(251,247,238,.55);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  border-top: 1px solid var(--line);
}

/* About Parker Page */

.about-hero {
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 160px 7vw 90px;
  background:
    linear-gradient(rgba(8,7,6,.25), rgba(8,7,6,.88)),
    url('parker-formal.jpg') center 28%/cover no-repeat;
  position: relative;
}

.about-hero h1 {
  margin-left: 0;
  max-width: 820px;
}

.about-hero p {
  max-width: 670px;
  font-size: 20px;
  color: rgba(251,247,238,.86);
}

.social-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.about-section {
  background: var(--espresso);
}

.about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.photo-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.photo-stack img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid var(--line);
  filter: grayscale(100%) contrast(1.06);
}

.photo-stack img:nth-child(2) {
  margin-top: 70px;
}

.stats {
  background: var(--black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.stat {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 34px;
}

.stat strong {
  display: block;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 10px;
}

.looks {
  background: var(--bone);
  color: var(--black);
}

.look-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 46px;
}

.look-card {
  background: var(--ivory);
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.12);
}

.look-card img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.04);
}

.look-card div {
  padding: 26px;
}

.look-card p {
  color: rgba(8,7,6,.68);
}

/* Apply Page */

.apply-body {
  background:
    linear-gradient(rgba(8,7,6,.82), rgba(8,7,6,.92)),
    url('https://i.pinimg.com/736x/76/c1/75/76c17561a1865943142863276792ceba.jpg') center/cover fixed no-repeat;
}

.apply-page {
  padding-top: 120px;
}

.apply-hero {
  text-align: center;
  padding-bottom: 45px;
}

.apply-hero p {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(251,247,238,.78);
  font-size: 18px;
}

.form-shell {
  padding-top: 0;
  max-width: 980px;
  margin: 0 auto;
}

.application-form {
  background: rgba(251,247,238,.95);
  color: var(--black);
  border-radius: 30px;
  padding: 42px;
  box-shadow: 0 40px 100px rgba(0,0,0,.35);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(8,7,6,.72);
  margin-bottom: 18px;
}

input, textarea, select {
  margin-top: 8px;
  width: 100%;
  border: 1px solid rgba(8,7,6,.18);
  border-radius: 14px;
  padding: 14px 15px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  background: #fff;
  color: var(--black);
}

textarea { resize: vertical; }

.submit-btn {
  border: none;
  width: 100%;
  margin-top: 8px;
  background: var(--black);
  color: var(--ivory);
  border-radius: 999px;
  padding: 18px 28px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 11px;
  transition: .25s ease;
  cursor: pointer;
}

.form-note {
  text-align: center;
  color: rgba(8,7,6,.58);
  font-size: 13px;
  margin-top: 18px;
}

.thank-you {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 140px 24px;
}

.thank-you > * {
  max-width: 800px;
}

.thank-you p {
  font-size: 20px;
  color: rgba(251,247,238,.78);
  margin-bottom: 34px;
}

@media (max-width: 950px) {
  .intro, .grid, .quote-grid, .form-grid, .about-grid, .stats-grid, .look-grid {
    grid-template-columns: 1fr;
  }

  .nav { padding: 18px 22px; }

  .nav {
    position: static;
    flex-direction: column;
    gap: 14px;
    background: rgba(8,7,6,.98);
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .nav-links a {
    margin-left: 0;
    font-size: 10px;
  }

  .image-card img { height: 460px; }

  .application-form { padding: 28px; }

  .photo-stack img, .look-card img { height: 430px; }

  .photo-stack img:nth-child(2) { margin-top: 0; }

  footer { flex-direction: column; }
}
