/* ─── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=DM+Sans:ital,opsz,wght@0,9..40,300..700;1,9..40,300..400&display=swap');

/* ─── Tokens ────────────────────────────────────────────────── */
:root {
  --ink:    #0a0a0a;
  --paper:  #fafafa;
  --pink:   #ff13a3;
  --blue:   #06cbff;
  --yellow: #fffc00;
  --font-display: 'Fraunces', serif;
  --font-body:    'DM Sans', sans-serif;
}

/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--ink); border-radius: 2px; }

/* ─── Utility ────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ═══════════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════════ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--ink);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.15s;
}
.nav__links a:hover { color: var(--pink); }
.nav__phone { font-size: 13px; color: #666; }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.2s, opacity 0.2s;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 20px;
  background: var(--ink);
  padding: 24px;
}
.nav__mobile a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--paper);
}
.nav__mobile .nav__phone-mobile { font-size: 13px; color: #888; }
.nav__mobile.is-open { display: flex; }

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 60px;
}
.hero__tagline {
  border-bottom: 1px solid var(--ink);
  padding-bottom: 48px;
  margin-bottom: 48px;
}
.hero__tagline p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 300;
  color: #444;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.hero__tagline h1 {
  font-family: var(--font-display);
  font-size: clamp(64px, 12vw, 128px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.hero__accent-bar {
  margin-top: 24px;
  width: 60px;
  height: 4px;
  background: var(--pink);
}
.hero__body {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.6fr);
  gap: 64px;
  align-items: start;
}
/* Photo + quote */
.hero__photo-wrap {
  position: relative;
  overflow: hidden;
  background: #e8e8e8;
}
.hero__photo-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.4s;
}
.hero__photo-wrap:hover img { filter: grayscale(20%); }
.hero__quote {
  margin-top: 24px;
  padding-left: 16px;
  border-left: 3px solid var(--pink);
}
.hero__quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 8px;
}
.hero__quote cite {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888;
  font-style: normal;
}
/* Copy */
.hero__copy { padding-top: 8px; }
.hero__copy .lead {
  font-size: clamp(14px, 1.8vw, 17px);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 20px;
}
.hero__copy p {
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.75;
  color: #333;
  margin-bottom: 20px;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  transition: all 0.15s;
  cursor: pointer;
  border: none;
}
.btn--pink {
  background: var(--pink);
  color: #fff;
}
.btn--pink:hover { background: var(--ink); color: #fff; }
.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--paper); }
.btn--pink-outline {
  background: transparent;
  color: var(--pink);
  border: 2px solid var(--pink);
}
.btn--pink-outline:hover { background: var(--pink); color: #fff; }

/* ═══════════════════════════════════════════════════════════════
   MEET MICHELE
═══════════════════════════════════════════════════════════════ */
.michele {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 24px;
}
.michele__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 0;
  align-items: start;
}
.michele__photo-col { padding-top: 83px; }
.michele__photo-offset {
  position: relative;
  padding-top: 12px;
  padding-left: 12px;
}
.michele__photo-offset::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  background: var(--blue);
}
.michele__photo-offset img {
  position: relative;
  width: 100%;
  height: auto;
}
.michele__text {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
}
.michele__text h2 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 68px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin-bottom: 36px;
}
.michele__text p {
  font-size: 15px;
  line-height: 1.8;
  color: #aaa;
  margin-bottom: 20px;
}
.michele__text p:last-of-type { margin-bottom: 36px; }
.michele__pull {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.6;
  color: var(--paper);
  font-weight: 600;
  border-left: 3px solid var(--pink);
  padding-left: 20px;
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS STRIP
═══════════════════════════════════════════════════════════════ */
.testimonials {
  background: var(--pink);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.testimonial {
  padding: 40px;
  border-right: 1px solid rgba(255,255,255,0.25);
}
.testimonial:last-child { border-right: none; }
.testimonial__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.6;
  color: #fff;
  margin-bottom: 16px;
}
.testimonial__name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT THE STUDIO
═══════════════════════════════════════════════════════════════ */
.about {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__eyebrow { margin-bottom: 20px; }
.about__text h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 32px;
}
.about__text p {
  font-size: 15px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}
.about__text p:last-child { margin-bottom: 0; }
/* Yellow offset photo */
.about__photo-wrap {
  position: relative;
  padding-bottom: 12px;
  padding-right: 12px;
}
.about__photo-wrap::before {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  background: var(--yellow);
}
.about__photo-wrap img {
  position: relative;
  width: 100%;
  height: 520px;
  object-fit: cover;
  filter: grayscale(100%);
}

/* ═══════════════════════════════════════════════════════════════
   NEWSLETTER
═══════════════════════════════════════════════════════════════ */
.newsletter {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 24px;
}
.newsletter__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.newsletter__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--paper);
}
.newsletter__inner p {
  font-size: 15px;
  line-height: 1.7;
  color: #888;
  margin-bottom: 48px;
}
.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.newsletter__names {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin-bottom: 1px;
  background: #333;
}
.newsletter__form input {
  background: #111;
  border: none;
  color: var(--paper);
  padding: 18px 20px;
  font-size: 14px;
  font-family: var(--font-body);
  outline: none;
  width: 100%;
  margin-bottom: 1px;
}
.newsletter__form input::placeholder { color: #555; }
.newsletter__form input:focus { background: #161616; }
.newsletter__names input { margin-bottom: 0; }
.newsletter__form .btn--pink {
  width: 100%;
  padding: 20px;
  font-family: var(--font-body);
  margin-bottom: 0;
}
.newsletter__form .btn--pink:hover { background: var(--paper); color: var(--ink); }
.newsletter__success {
  display: none;
  border: 2px solid var(--pink);
  padding: 40px;
}
.newsletter__success.is-visible { display: block; }
.newsletter__success p:first-child {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 8px;
}
.newsletter__success p:last-child { font-size: 14px; color: #888; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--paper);
  border-top: 1px solid #e8e8e8;
  padding: 40px 24px;
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__brand p:first-child {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.footer__brand p:last-child { font-size: 13px; color: #888; }
.footer__links {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
}
.footer__links a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #888;
  transition: color 0.15s;
}
.footer__links a:hover { color: var(--pink); }
.footer__phone { font-size: 13px; color: #888; }

/* ═══════════════════════════════════════════════════════════════
   MARQUEE (kept in case you want it back)
═══════════════════════════════════════════════════════════════ */
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

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

  .michele__inner { grid-template-columns: 1fr; }
  .michele__photo-col { padding-top: 0; }
  .michele__text { padding: 40px 24px; }

  .testimonials { grid-template-columns: 1fr; }
  .testimonial { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.25); }
  .testimonial:last-child { border-bottom: none; }

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

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

  .footer__inner { flex-direction: column; align-items: flex-start; }
}
