@font-face {
  font-family: "Canva Sans";
  font-weight: 400;
  font-style: normal;
  src: url("_assets/fonts/canva-sans-regular.woff") format("woff");
}
@font-face {
  font-family: "Canva Sans";
  font-weight: 700;
  font-style: normal;
  src: url("_assets/fonts/canva-sans-bold.woff") format("woff");
}
@font-face {
  font-family: "Canva Sans Display";
  font-weight: 400;
  font-style: normal;
  src: url("_assets/fonts/canva-sans-display-regular.woff") format("woff");
}
@font-face {
  font-family: "Canva Sans Display";
  font-weight: 900;
  font-style: normal;
  src: url("_assets/fonts/canva-sans-display-black.woff") format("woff");
}

:root {
  --cream: #f5f5ef;
  --ink: #111111;
  --accent: #d9a86c;
  color-scheme: light;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Canva Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.5;
}

img { max-width: 100%; display: block; }

.btn {
  display: inline-block;
  padding: 0.9em 1.6em;
  border: 1.5px solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(0.78rem, 1.22vw, 0.92rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  background: transparent;
}
.btn:hover { background: var(--ink); color: var(--cream); }

.star {
  width: 1.6rem;
  height: 1.6rem;
  vertical-align: middle;
}

section, header, footer {
  padding: 4rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero */
.hero {
  display: grid;
  gap: 2rem;
  padding-top: 3rem;
}
.hero h1 {
  font-family: "Canva Sans Display", sans-serif;
  font-size: clamp(2.75rem, 10vw, 7.5rem);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 0 0 1.2rem;
}
.hero-tagline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(1.1rem, 2.4vw, 1.85rem);
  margin-bottom: 2rem;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 260px;
}
.hero-images img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

/* About */
.about h2 {
  font-size: clamp(1.4rem, 2.9vw, 2.2rem);
  font-weight: 400;
  margin: 0 0 1rem;
}
.about h2 .sub { display: block; font-weight: 700; }
.about p { max-width: 34ch; margin: 0 0 1rem; }
.about .star { margin-top: 2rem; }
.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  margin-top: 2rem;
}

/* Work galleries */
.work {
  display: grid;
  gap: 1.5rem;
}
.work-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  aspect-ratio: 4 / 3;
}
.work-gallery figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  height: 100%;
}
.work-gallery figure img { width: 100%; height: 100%; object-fit: cover; }
.work-gallery figcaption {
  position: absolute;
  bottom: 0.6rem;
  left: 0.7rem;
  font-weight: 700;
  font-size: 1.1rem;
}
.work-gallery figure:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 3; }
.work-gallery figure:nth-child(2) { grid-column: 2 / 3; grid-row: 1; }
.work-gallery figure:nth-child(3) { grid-column: 2 / 3; grid-row: 2; }
.work-gallery figure:nth-child(1) figcaption { color: #2f6fd1; }
.work-gallery figure:nth-child(2) figcaption { color: #e0b23d; }
.work-gallery figure:nth-child(3) figcaption { color: #c0503a; }
.work-info h2 { font-size: clamp(1.4rem, 2.9vw, 2.2rem); font-weight: 700; margin: 0 0 0.5rem; }
.work-info ul { list-style: none; margin: 0; padding: 0; font-size: 1rem; }
.work-info li { margin-bottom: 0.2rem; }

/* Quote */
.quote {
  max-width: none;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 5rem 1.5rem;
}
.quote blockquote {
  margin: 0 auto;
  max-width: 560px;
  font-size: clamp(1.4rem, 3.1vw, 2.35rem);
  font-style: normal;
  font-weight: 400;
}
.quote cite {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-size: clamp(0.85rem, 1.2vw, 0.92rem);
  opacity: 0.85;
}

/* Contact */
.contact {
  max-width: none;
  min-height: 60vh;
  background-size: cover;
  background-position: center;
  padding: 3rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.contact-card {
  background: var(--cream);
  padding: 2.5rem;
  max-width: 340px;
  width: 100%;
}
.contact-card h2 {
  font-size: clamp(1.45rem, 3.1vw, 2.35rem);
  font-weight: 400;
  margin: 0 0 1rem;
}
.contact-card h2 .sub { display: block; font-weight: 700; }
.contact-card p { margin: 0 0 1.5rem; }
.contact-card .hero-ctas { max-width: none; }

/* Footer */
footer {
  background: var(--ink);
  color: var(--cream);
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  font-size: 0.85rem;
}
footer a { color: var(--cream); text-decoration: none; margin-right: 1.5rem; }
footer a:hover { text-decoration: underline; }

@media (min-width: 800px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-top: 5rem;
  }
  .about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .work {
    grid-template-columns: 2fr 1fr;
    align-items: center;
  }
  .work.reverse { grid-template-columns: 1fr 2fr; }
  .work.reverse .work-gallery { order: 2; }
  .work.reverse .work-info { order: 1; }
}
