
:root {
  --bg: #fff;
  --text: #151515;
  --muted: #6f6f6a;
  --line: #dcdcd6;
  --surface: #f5f5f2;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
      text-decoration: underline;
    cursor: pointer;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

p {    font-size: 14px;
    letter-spacing: 0.3px;
    color: var(--muted);}


/* =========================================
   LAYOUT
========================================= */

.wrap {
  width: min(calc(100% - 48px), var(--max));
  margin: auto;
}


/* =========================================
   NAVIGATION
========================================= */

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
  font-size: 14px;
}

nav .links {
  display: flex;
  gap: 24px;
}


/* =========================================
   HERO
========================================= */

.hero {
  min-height: 62vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

h1 {
  max-width: 29ch;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 9vw, 52px);
  line-height: 1.1;
  letter-spacing: 0.2px;
  font-weight: 600;
}

.intro {
  max-width: 620px;
  margin-top: 34px;
  font-size: clamp(19px, 2.2vw, 27px);
  line-height: 1.3;
}


/* =========================================
   SECTIONS
========================================= */

section {
  padding: 80px 0;
  border-top: 1px solid var(--line);
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 42px;
}

.section-head-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 42px;
}

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

h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 600;
}


/* =========================================
   TAGS
========================================= */

.tags {
  display: inline-flex;
  align-items: center;
  padding: 2px 6px;
  margin-right: 6px;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  background: #fff;
  color: #000;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.6px;
  cursor: default;
}

.tags.brand {
  font-weight: 600;
}


/* =========================================
   WORK / PROJECT CARDS
========================================= */

.work {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.work .card:nth-child(3n + 1) {
  grid-column: 1 / -1;
}

.card {
  width: 100%;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  text-decoration: none;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 30px;
  letter-spacing: -0.03em;
}

.card p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
}

.arrow {
  align-self: flex-end;
  font-size: 24px;
}

.sephora-card {
  background: #000;
}


/* =========================================
   BUTTON
========================================= */

.button {
  display: inline-block;
  width: 95%;
  padding: 6px 0 4px;
  border: 2px solid #000 !important;
  border-radius: 8px;
  background: #fff;
  color: #000;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  white-space: nowrap;
}


/* =========================================
   TIMELINE / EXPERIENCE
========================================= */

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

.role {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.role .dates {
  color: var(--muted);
}

.role h3 {
  margin: 0;
  font-size: 24px;
}

.role p {
  margin: 5px 0 0;
  color: var(--muted);
}


/* =========================================
   ABOUT / CONTACT
========================================= */

.about,
.contact {
  max-width: 780px;
  font-size: clamp(22px, 3vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

#contact > p > a {
  margin-right: 20px;
}

 .about-intro.beyond {margin-bottom:40px;}

/* =========================================
   FOOTER
========================================= */

footer {
  display: flex;
  justify-content: space-between;
  padding: 30px 0 60px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}


/* =========================================
   PHOTO GRID
========================================= */

.photo-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 16px;
  align-items: start;
}

.photo-item {
  grid-column: span 4;
  min-width: 0;
  margin: 0;
}

.photo-item:nth-child(3n + 1) {
  grid-column: span 4;
}


/* =========================================
   PHOTO IMAGE
========================================= */

.photo-image {
  width: 100%;
  overflow: hidden;
}

.photo-image img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.photo-item:hover .photo-image img {
  transform: scale(1.02);
}


/* =========================================
   PHOTO CAPTION
========================================= */

.photo-item--caption {
  display: grid;
  grid-template-columns: 7fr 1fr;
  gap: 16px;
  align-items: start;
}

.photo-item--caption .photo-image {
  grid-column: 1;
}

.photo-item--caption figcaption {
  grid-column: 2;
}

.photo-number {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.photo-item--caption figcaption p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}


/* =========================================
   PHOTO PROPORTIONS
========================================= */

.photo-item:nth-child(2) .photo-image {
  aspect-ratio: 4 / 5;
}

.photo-item:nth-child(3) .photo-image {
  aspect-ratio: 3 / 4;
}

.photo-item:nth-child(4) .photo-image {
  aspect-ratio: 4 / 3;
}

.photo-item:nth-child(5) .photo-image {
  aspect-ratio: 1 / 1;
}

.photo-item:nth-child(6) .photo-image {
  aspect-ratio: 3 / 4;
}


/* =========================================
   POLAROID GRID
========================================= */

.polaroid-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.polaroid {
  padding: 10px 10px 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.polaroid-image {
  aspect-ratio: 1 / 1.15;
  overflow: hidden;
}

.polaroid-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.polaroid-caption {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  height: 120px;
  padding: 14px 4px 0;
}

.polaroid-caption h3 {
  margin: 0 0 4px;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.polaroid-caption p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

  .photo-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .photo-item {
    grid-column: span 2;
  }

  .photo-item:nth-child(3n + 1) {
    grid-column: span 4;
  }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

  .wrap {
    width: min(calc(100% - 32px), var(--max));
  }

  nav .links {
    gap: 12px;
  }

  .hero {
    min-height: 70vh;
    padding: 70px 0 60px;
  }

  h1 {
    max-width: 16ch;
    font-size: clamp(42px, 9vw, 48px);
  }

  .section-head,
  .role {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  section {
    padding: 60px 0;
  }

  footer {
    display: block;
  }

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

  .about-life {
    padding: 120px 40px;
  }

  .about-intro {
    max-width: 600px;
    margin-bottom: 56px;
  }

 

  .about-intro h2 {
    margin: 0;
    font-size: clamp(36px, 4vw, 64px);
    line-height: 0.95;
    letter-spacing: -0.04em;
  }

}


/* =========================================
   SMALL MOBILE PHOTO GRID
========================================= */

@media (max-width: 600px) {

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .photo-item,
  .photo-item:nth-child(3n + 1) {
    grid-column: span 2;
  }

  .photo-item--caption {
    display: block;
  }

  .photo-item--caption figcaption {
    display: flex;
    gap: 12px;
    margin-top: 10px;
  }

  .photo-number {
    flex-shrink: 0;
    margin: 0;
  }

  .photo-item--caption figcaption p {
    max-width: 250px;
  }

}
