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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f5f3ef;
  color: #151515;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}


/* ---------- Navigation ---------- */

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 6%;
  position: sticky;
  top: 0;
  background: rgba(245, 243, 239, 0.95);
  z-index: 100;
}

.logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  font-size: 0.9rem;
}

nav a:hover {
  opacity: 0.55;
}


/* ---------- Hero ---------- */

.hero {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
}

.hero-content {
  padding: 8%;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 20px;
}

h1 {
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.95;
  font-weight: 500;
  margin-bottom: 35px;
}

.hero-text {
  max-width: 500px;
  font-size: 1.15rem;
  margin-bottom: 35px;
}

.hero-art {
  height: 88vh;
}

.art-placeholder {
  width: 100%;
  height: 100%;
  background: #d8d4ce;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


/* ---------- Buttons ---------- */

.button {
  display: inline-block;
  background: #151515;
  color: white;
  padding: 14px 26px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: 0.25s ease;
}

.button:hover {
  opacity: 0.75;
}


/* ---------- General sections ---------- */

.section {
  padding: 110px 6%;
}

.section-heading {
  margin-bottom: 55px;
}

h2 {
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.05;
}


/* ---------- Portfolio ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 25px;
}

.image-placeholder {
  aspect-ratio: 4 / 5;
  background: #ddd9d2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #777;
  margin-bottom: 18px;
}

.artwork h3 {
  font-size: 1rem;
  font-weight: 600;
}

.artwork p {
  color: #6a6a6a;
  font-size: 0.9rem;
}


/* ---------- About ---------- */

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  border-top: 1px solid #ccc7bf;
}

.text-column {
  max-width: 650px;
  font-size: 1.35rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.45;
}

.text-column p + p {
  margin-top: 25px;
}

.about-intro {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.25;
}
/* ---------- Commissions ---------- */

.commissions {
  background: #171717;
  color: white;
}

.commissions .large-text {
  font-size: clamp(1.7rem, 3vw, 3rem);
  max-width: 1000px;
  line-height: 1.25;
  margin: 40px 0;
}

.button-light {
  background: white;
  color: #171717;
}


/* ---------- Contact ---------- */

.contact {
  max-width: 1000px;
}

.contact h2 {
  margin-bottom: 35px;
}

.contact > p:not(.eyebrow):not(.social) {
  max-width: 650px;
  margin-bottom: 35px;
  font-size: 1.1rem;
}

.social {
  margin-top: 35px;
  text-decoration: underline;
}


/* ---------- Footer ---------- */

footer {
  padding: 35px 6%;
  border-top: 1px solid #ccc7bf;
  font-size: 0.8rem;
  color: #666;
}


/* ---------- Mobile ---------- */

@media (max-width: 800px) {

  .site-header {
    padding: 20px 5%;
  }

  nav {
    gap: 14px;
  }

  nav a {
    font-size: 0.72rem;
  }

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

  .hero-content {
    padding: 80px 6%;
  }

  .hero-art {
    height: 65vh;
  }

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

  .split-section {
    grid-template-columns: 1fr;
    gap: 35px;
  }

}


@media (max-width: 520px) {

  .site-header {
    align-items: flex-start;
  }

  nav {
    display: none;
  }

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

  .section {
    padding: 75px 6%;
  }

}

/* ---------- About photo ---------- */

.about-photo {
  width: 100%;
  max-width: 520px;
  margin-top: 40px;
  display: block;
  object-fit: cover;
}

.about-left {
  align-self: start;
  transform: translateY(-75px);
}

#about h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
}

.about-intro {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.25;
}
