:root {
  --bg: #e7b3c0;
  --surface: #f2cad3;
  --text: #2a1118;
  --muted: #6f3a48;
  --pink: #ef4f91;
  --red: #c72f4d;
  --cream: #fff3ee;
  --cyan: #7fd6d9;
  --border: rgba(42, 17, 24, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
}

a {
  color: inherit;
}

.site-shell {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
}

.eyebrow,
.section-label,
.project-type {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  h1 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
}
  font-size: clamp(4rem, 11vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  margin-bottom: 28px;
}

h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  max-width: 700px;
}

h3 {
  font-size: 1.5rem;
}

.intro,
.body-copy {
  max-width: 680px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
}

.hero-links,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-links a,
.contact-links a {
  text-decoration: none;
  border: 1px solid var(--text);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}

.hero-links a:hover,
.contact-links a:hover {
  background: var(--text);
  color: var(--cream);
}

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

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  min-height: 220px;
}

.project-card:nth-child(2) {
  transform: rotate(-1deg);
}

.project-card:nth-child(3) {
  transform: rotate(1deg);
}

.contact-section {
  padding-bottom: 140px;
}

@media (max-width: 760px) {
  .site-shell {
    width: min(100% - 22px, 1100px);
  }

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

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

  .project-card:nth-child(2),
  .project-card:nth-child(3) {
    transform: none;
  }

  .section {
    padding: 64px 0;
  }
}
.hero {
  position: relative;
  overflow: hidden;
}

.hero-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-stars span {
  position: absolute;
  color: var(--pink);
  opacity: 0.55;
}

.hero-stars span:nth-child(1) {
  top: 18%;
  right: 12%;
  font-size: 2rem;
}

.hero-stars span:nth-child(2) {
  top: 28%;
  right: 22%;
  font-size: 1.2rem;
  color: var(--red);
}

.hero-stars span:nth-child(3) {
  bottom: 18%;
  right: 8%;
  font-size: 1.5rem;
  color: var(--cyan);
}
.project-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px;
  min-height: 320px;

  display: flex;
  flex-direction: column;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(42, 17, 24, 0.12);
}

.project-accent {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;

  background: var(--pink);

  top: -70px;
  right: -50px;

  opacity: 0.18;
}

.project-card:nth-child(2) .project-accent {
  background: var(--red);
}

.project-card:nth-child(3) .project-accent {
  background: var(--cyan);
}

.project-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 8px;
}

.project-role {
  font-weight: 700;
  margin-bottom: 18px;
}

.project-description {
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 28px;
}

.project-link {
  margin-top: auto;
  text-decoration: none;
  font-weight: 700;
  color: var(--red);
}

.project-link:hover {
  text-decoration: underline;
}

.featured-card {
  background: var(--cream);
}
