@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700&family=DM+Serif+Display&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #1a1a1a;
  --white: #f8f6f1;
  --grey: #b5b0a8;
  --accent: #e85d3a;
  --light-grey: #e8e4dd;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: var(--white);
  border-bottom: 1.5px solid var(--black);
}

nav .logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--black);
}

nav .nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav .nav-links a {
  text-decoration: none;
  color: var(--black);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

nav .nav-links a:hover {
  color: var(--accent);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
}

.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 900px;
}

.hero h1 span {
  display: inline-block;
  color: var(--accent);
}

.hero p {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--grey);
  max-width: 440px;
  line-height: 1.7;
}

.hero .scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--grey);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero .scroll-hint .arrow {
  width: 1px;
  height: 40px;
  background: var(--grey);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}

/* SECTIONS */
section {
  padding: 6rem 3rem;
  border-top: 1.5px solid var(--black);
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--grey);
  margin-bottom: 2rem;
}

/* ABOUT */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.about-text h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1rem;
}

.about-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
}

.detail-card {
  padding: 2rem;
  border: 1.5px solid var(--black);
  border-radius: 2px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.detail-card:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 var(--black);
}

.detail-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.detail-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
}

/* WORK */
.work {
  max-width: 1100px;
  margin: 0 auto;
}

.work h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.work-item {
  border: 1.5px solid var(--black);
  border-radius: 2px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.work-item:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 var(--black);
}

.work-item .number {
  font-family: 'DM Serif Display', serif;
  font-size: 4rem;
  color: var(--light-grey);
  line-height: 1;
  margin-bottom: 1rem;
}

.work-item h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.work-item p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
}

.work-item a {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 2px;
  transition: color 0.2s;
}

/* CONTACT */
.contact {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.contact p {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

.contact-row {
  display: flex;
  gap: 1rem;
  align-items: baseline;
}

.contact-row .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey);
  min-width: 80px;
}

.contact-row .value {
  font-size: 1rem;
}

.contact-row a {
  color: var(--black);
  text-decoration: none;
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 1px;
  transition: color 0.2s;
}

.contact-row a:hover {
  color: var(--accent);
}

/* FOOTER */
footer {
  border-top: 1.5px solid var(--black);
  padding: 2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--grey);
}

footer a {
  color: var(--grey);
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--black);
}

/* DOODLE DECORATIONS */
.doodle {
  position: absolute;
  pointer-events: none;
}

.hero .doodle-circle {
  width: 120px;
  height: 120px;
  border: 2px solid var(--light-grey);
  border-radius: 50%;
  position: absolute;
  top: 15%;
  right: 10%;
}

.hero .doodle-squiggle {
  position: absolute;
  bottom: 20%;
  left: 8%;
  width: 80px;
  height: 80px;
}

.hero .doodle-x {
  position: absolute;
  top: 30%;
  left: 15%;
  font-size: 2rem;
  color: var(--light-grey);
  font-family: 'DM Serif Display', serif;
}

.hero .doodle-dot {
  position: absolute;
  bottom: 30%;
  right: 15%;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  nav {
    padding: 1rem 1.5rem;
  }

  nav .nav-links {
    gap: 1rem;
  }

  nav .nav-links a {
    font-size: 0.75rem;
  }

  section {
    padding: 4rem 1.5rem;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero .doodle-circle,
  .hero .doodle-squiggle,
  .hero .doodle-x,
  .hero .doodle-dot {
    display: none;
  }

  footer {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding: 1.5rem;
  }
}

/* PRIVACY PAGE */
.privacy-page {
  max-width: 700px;
  margin: 0 auto;
  padding: 8rem 2rem 4rem;
}

.privacy-page h1 {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.privacy-page .updated {
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 3rem;
}

.privacy-page h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.privacy-page p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.privacy-page ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.privacy-page li {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.8;
}
