:root {
  --black: #090909;
  --black-soft: #121212;
  --ink: #141414;
  --paper: #f7f4f2;
  --white: #ffffff;
  --hot: #ff2f72;
  --cherry: #d7194a;
  --silver: #d8d8de;
  --muted: #7a7a82;
  --line: rgba(20,20,20,.15);
  --line-dark: rgba(255,255,255,.14);
  --max: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.site-header {
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 34px;
  background: rgba(9,9,9,.96);
  color: white;
  border-bottom: 1px solid var(--line-dark);
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
}

.desktop-nav {
  display: flex;
  gap: 24px;
  font-size: 12px;
  color: #d0d0d4;
}

.header-cta {
  justify-self: end;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  background: var(--hot);
  color: white;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--cherry);
}

.eyebrow-light { color: #c8c8ce; }

.hero {
  min-height: 780px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  background: var(--black);
  color: white;
}

.hero-copy {
  padding: 100px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero h1,
.section h2,
.services-section h2,
.page-hero h1,
.service-detail-hero h1,
.booking-cta h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .93;
  margin: 0;
}

.hero h1 {
  margin-top: 18px;
  font-size: clamp(68px, 8vw, 126px);
  max-width: 880px;
}

.hero-copy > p {
  max-width: 680px;
  color: #aaaab1;
  font-size: 18px;
  margin: 28px 0 0;
}

.hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 36px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  background: var(--black);
  color: white;
  border: 1px solid var(--black);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.button-hot {
  background: var(--hot);
  border-color: var(--hot);
}

.button-light {
  background: white;
  color: var(--black);
  border-color: white;
}

.text-link {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  font-size: 11px;
  font-weight: 800;
}

.light-link { color: white; }

.hero-stats {
  display: flex;
  gap: 34px;
  margin-top: 58px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
}

.hero-stats div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-stats strong {
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
}

.hero-stats span {
  color: #777780;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.hero-visual {
  position: relative;
  min-height: 780px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stamp {
  position: absolute;
  right: 28px;
  bottom: 28px;
  padding: 12px 16px;
  background: var(--hot);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  transform: rotate(-4deg);
}

.ticker {
  display: flex;
  overflow: hidden;
  gap: 42px;
  padding: 18px 0;
  background: var(--hot);
  color: white;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .15em;
}

.ticker span { flex: 0 0 auto; }

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 108px 56px;
}

.codes-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.codes-section h2 {
  margin-top: 16px;
  font-size: clamp(48px, 5.5vw, 80px);
}

.code-list {
  border-top: 1px solid var(--line);
}

.code-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.code-list article > span {
  color: var(--hot);
  font-size: 10px;
}

.code-list h3 {
  margin: 0 0 7px;
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 400;
}

.code-list p {
  margin: 0;
  color: var(--muted);
}

.services-section {
  background: var(--black-soft);
  color: white;
  padding: 106px 6vw;
}

.section-heading {
  max-width: var(--max);
  margin: 0 auto 46px;
}

.section-heading h2 {
  margin-top: 14px;
  max-width: 840px;
  font-size: clamp(48px, 5.5vw, 80px);
}

.split-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
}

.service-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-card {
  background: var(--paper);
  color: var(--ink);
  padding: 18px;
  border: 1px solid rgba(255,255,255,.08);
}

.service-index {
  display: block;
  color: var(--hot);
  font-size: 10px;
  margin-bottom: 14px;
}

.service-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  margin-bottom: 22px;
}

.service-card h3 {
  font-family: Georgia, serif;
  font-size: 40px;
  font-weight: 400;
  margin: 8px 0 12px;
}

.service-card p { color: var(--muted); }

.service-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 22px;
  font-size: 11px;
}

.campaign-section {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  background: var(--cherry);
  color: white;
}

.campaign-section img {
  width: 100%;
  height: 100%;
  min-height: 660px;
  object-fit: cover;
}

.campaign-section > div {
  padding: 90px 7vw;
  align-self: center;
}

.campaign-section h2 {
  font-family: Georgia, serif;
  font-size: clamp(50px, 5.5vw, 80px);
  font-weight: 400;
  line-height: .97;
  margin: 16px 0 24px;
}

.campaign-section p {
  color: rgba(255,255,255,.8);
}

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

.process-grid article {
  min-height: 280px;
  background: white;
  border: 1px solid var(--line);
  padding: 28px;
}

.process-grid article > span {
  color: var(--hot);
  font-size: 10px;
}

.process-grid h3 {
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  margin: 58px 0 12px;
}

.process-grid p {
  color: var(--muted);
  font-size: 14px;
}

.studio-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  background: #171717;
  color: white;
}

.studio-section > div {
  padding: 90px 7vw;
  align-self: center;
}

.studio-section h2 {
  font-family: Georgia, serif;
  font-size: clamp(50px, 5vw, 76px);
  line-height: .97;
  font-weight: 400;
  margin: 16px 0 24px;
}

.studio-section p {
  color: #aaaab0;
}

.studio-section img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
}

.testimonial-section {
  background: var(--silver);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

blockquote {
  margin: 0;
  padding: 78px 7vw;
  border-right: 1px solid rgba(0,0,0,.12);
}

blockquote:last-child { border-right: 0; }

blockquote p {
  font-family: Georgia, serif;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.15;
}

blockquote footer {
  margin-top: 22px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.journal-grid,
.journal-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.journal-grid article,
.journal-page-grid article {
  border-top: 2px solid var(--black);
  padding-top: 18px;
}

.article-index {
  display: block;
  font-family: Georgia, serif;
  font-size: 36px;
  color: #a0a0a8;
  margin-bottom: 32px;
}

.journal-grid h3,
.journal-page-grid h2 {
  font-family: Georgia, serif;
  font-weight: 400;
  line-height: 1.1;
}

.journal-grid h3 { font-size: 29px; }
.journal-page-grid h2 { font-size: 36px; }

.journal-grid p,
.journal-page-grid p {
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-family: Georgia, serif;
  font-size: 24px;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list p {
  max-width: 760px;
  color: var(--muted);
}

.booking-cta {
  min-height: 620px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--hot);
  color: white;
}

.booking-cta > div {
  padding: 90px 7vw;
  align-self: center;
}

.booking-cta h2 {
  margin-top: 16px;
  font-size: clamp(54px, 6vw, 90px);
}

.booking-cta p {
  color: rgba(255,255,255,.82);
  margin: 24px 0 30px;
}

.booking-cta img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero {
  max-width: none;
  padding: 110px 7vw 88px;
}

.dark-page {
  background: var(--black);
  color: white;
}

.page-hero h1 {
  margin-top: 16px;
  max-width: 1040px;
  font-size: clamp(62px, 7vw, 110px);
}

.page-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  margin-top: 26px;
}

.dark-page p { color: #aaaab1; }

.service-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-page-card {
  background: white;
  border: 1px solid var(--line);
  padding: 20px;
}

.service-page-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  margin: 18px 0 22px;
}

.service-page-card h2 {
  margin: 10px 0 14px;
  font-size: 44px;
}

.service-page-card p { color: var(--muted); }

.service-page-card > div:last-child {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-top: 22px;
  font-size: 11px;
}

.service-detail-hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1fr .9fr;
  background: var(--black);
  color: white;
}

.service-detail-hero > div {
  padding: 90px 7vw;
  align-self: center;
}

.service-detail-hero h1 {
  margin-top: 16px;
  font-size: clamp(60px, 7vw, 104px);
}

.service-detail-hero p {
  max-width: 650px;
  color: #aaaab1;
  font-size: 18px;
  margin: 26px 0;
}

.detail-meta {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-bottom: 28px;
  font-size: 12px;
}

.service-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.service-detail-content h2 {
  margin-top: 14px;
  font-size: 54px;
}

.service-detail-content p { color: var(--muted); }

.article-detail {
  max-width: 960px;
  margin: 0 auto;
  padding: 108px 40px 120px;
}

.article-detail h1 {
  font-family: Georgia, serif;
  font-weight: 400;
  font-size: clamp(58px, 7vw, 96px);
  line-height: .98;
  letter-spacing: -.05em;
  margin: 20px 0 28px;
}

.article-detail .lead {
  color: var(--muted);
  font-size: 21px;
}

.article-body {
  max-width: 740px;
  margin-top: 68px;
}

.article-body p {
  font-size: 18px;
  margin-bottom: 28px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-grid img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-grid h2 {
  margin-top: 14px;
  font-size: 54px;
}

.about-grid p { color: var(--muted); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 90px;
}

.contact-grid h2 {
  margin-top: 14px;
  font-size: 58px;
}

.contact-info {
  border-left: 1px solid var(--line);
  padding-left: 40px;
}

.contact-info > div {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.contact-info p { color: var(--muted); }

.footer {
  background: #050505;
  color: white;
  padding: 70px 6vw 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-brand {
  font-family: Georgia, serif;
  font-size: 40px;
}

.footer p { color: #92929a; }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
  color: #b9b9c0;
  font-size: 13px;
}

.footer-bottom {
  margin-top: 46px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #66666e;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 20px;
  }

  .desktop-nav { display: none; }

  .hero,
  .codes-section,
  .campaign-section,
  .studio-section,
  .booking-cta,
  .service-detail-hero,
  .service-detail-content,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .service-page-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .journal-grid,
  .journal-page-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-section {
    grid-template-columns: 1fr;
  }

  blockquote {
    border-right: 0;
    border-bottom: 1px solid rgba(0,0,0,.12);
  }
}

@media (max-width: 680px) {
  .brand span { display: none; }
  .header-cta { font-size: 9px; }

  .hero-copy { padding: 78px 24px 58px; }
  .hero h1 { font-size: clamp(60px, 19vw, 86px); }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero-visual { min-height: 520px; }

  .section,
  .page-hero {
    padding: 80px 24px;
  }

  .services-section,
  .campaign-section > div,
  .studio-section > div,
  .booking-cta > div,
  .service-detail-hero > div {
    padding-left: 24px;
    padding-right: 24px;
  }

  .split-heading { display: block; }
  .split-heading .text-link { margin-top: 22px; }

  .process-grid { grid-template-columns: 1fr; }

  .article-detail {
    padding-left: 24px;
    padding-right: 24px;
  }

  .contact-info {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 36px 0 0;
  }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
