:root{
  --neon-ice: #81F0E5;
  --frozen-water:#E0FCF9;
  --off-white: #FAF7F2;
  --deep-mocoa: #493D39;
  --white: #ffffff;
  --pastel-petal: #FFCFE0;
  --bubblegum: #FE87B1;
  --wild-strawberry: #FD3E81;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

body {
  margin: 0;
  /*font-family: Arial, sans-serif;*/
  font-family: Georgia, serif;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
}

.hero-content h1 {
 font-size: 4rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero {
  min-height: 100vh;
  background-color: var(--off-white);
  color: var(--deep-mocoa);
  padding: 30px;
}

.hero img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 26px;
  object-position: 60% 30%;
}

.hero-motto {
  font-size: 1.5rem;
}

.hero-traits {
  letter-spacing: 0.15rem;
  font-size: 0.85rem;
  font-family: Arial, sans-serif;
}

.hero-cta,
.contact-cta {
  text-decoration: none;
  color: var(--deep-mocoa);
  display: inline-block;
  align-self: flex-start;
  padding: 0.8rem 1.4rem;
  background-color: var(--pastel-petal);
  border-radius: 18px;
  transition: 0.3s;
}

.hero-cta:hover,
.contact-cta:hover {
  background-color: var(--bubblegum);
  color: var(--white);
  transform: translateY(-3px);
}

.contact-cta {
    cursor: default;
}

.featured-header {
    display: flex;
    flex-direction: column;
    gap: 0.9em;
    margin-bottom: 2rem;
}

.featured {
  padding: 5rem 30px;
  background-color: var(--white);
}

.featured-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.featured h2 {
  font-size: 2rem;
  color: var(--deep-mocoa);
  margin: 0;
}

.featured-intro {
  font-size: 1.1rem;
  color: var(--deep-mocoa);
  margin: 0;
}

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

.feature-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 18px;
  object-position: 50% 50%;
  transition: 0.3s;
}

.feature-card img:hover {
  transform: translateY(-5px) scale(1.02);
}

.feature-card h3 {
  font-family: Arial, sans-serif;
  font-size: 1.2rem;
  color: var(--deep-mocoa);
  margin: 0.75rem 0 0.5rem;
  text-align: center;
}

.feature-card p {
  font-size: 1.05rem;
  color: var(--deep-mocoa);
  margin: 1.5rem 0 0.5rem;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
  grid-auto-rows: 400px;
 /* grid-auto-flow: dense;*/
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 22px;
  transition: 0.5s;
}

.gallery-item img:hover {
  transform: translateY(-10px) scale(1.03);
}

.collections {
  padding: 3rem 20px;
  background-color: var(--off-white);
}

.collections-inner {
  max-width: 1800px;
  margin: 0 auto;
}

.collections-header {
    display: flex;
    flex-direction: column;
    gap: 0.09em;
    margin-bottom: 2rem;
}

.collections h2 {
  font-size: 2rem;
  color: var(--deep-mocoa);
  margin: 0;
}

.collections-intro {
  font-size: 1.1rem;
  color: var(--deep-mocoa);
  margin: 0;
}

.about-inner {
    display: flex;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
}

.about-content {
    flex: 1.65;
}

.about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 22px;
} 

.about {
  padding: 4rem 30px;
  background-color: var(--white);
}

.about-content h2 {
  font-size: 2rem;
  color: var(--deep-mocoa);
  margin: 0;
  text-align: center;
}

.about-content p {
  font-size: 1.05rem;
  color: var(--deep-mocoa);
  margin: 1.5rem 0 0.5rem;
  line-height: 1.2;
  text-align: center;
}

.site-footer {
  padding: 20px;
  background-color: var(--pastel-petal);
  color: var(--deep-mocoa);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand,
.footer-tagline {
    margin: 0;
}

.footer-brand {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  letter-spacing: 0.5rem;
}

.footer-tagline {
  letter-spacing: 0.15rem;
  font-size: 0.85rem;
  font-family: Arial, sans-serif;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-nav a {
  color: var(--deep-mocoa);
  text-decoration: none;
  transition: 0.3s;
}

.site-nav {
  padding: 20px;
  background-color: var(--pastel-petal);

  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-links {
  display: flex;
}

.nav-links a {
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
}

.nav-inner > a {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.5rem;
}

.site-nav a:hover {
  background-color: var(--bubblegum);
  color: var(--white);
  gap: 0 auto;
}

#gallery {
  scroll-margin-top: 40px;
}

.contact {
  padding: 4rem 30px;
  background-color: var(--frozen-water);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner h2 {
  font-size: 1.4rem;
  color: var(--deep-mocoa);
  margin: 0;
}

.contact-inner p {
  font-size: 1.2rem;
  color: var(--deep-mocoa);
  margin: 1.5rem 0 0.5rem;
}

.gallery-viewer {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.viewer-content img {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
}

.viewer-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    color: var(--neon-ice);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    transition: 0.3s;
}

.viewer-close:hover {
  color: var(--wild-strawberry)
}

@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero img {
        height: 400px;
    }

    .hero-content h1 {
      font-size: 2.5rem;
    }
  
    .artwork {
      grid-template-columns: 1fr;
    }
  
    .feature-card img {
      height: auto;
    }
  
    .gallery-grid {
      grid-template-columns: 1fr 1fr;
    }

    .gallery-wide {
      grid-column: span 2;
    }
    .about-inner {
      flex-direction: column;
      align-self: stretch;
      gap: 2rem;
  }
}
 
@media (max-width: 700px) {
    .gallery-grid {
      grid-template-columns: 1fr;
    }
    .gallery-wide {
      grid-column: span 1;
    }
}