@font-face {
  font-family: "Muli";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/7Aulp_0qiz-aVz7u3PJLcUMYOFnOkEk30eg.woff2") format("woff2");
}

@font-face {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/6xKtdSZaM9iE8KbpRA_hK1QN.woff2") format("woff2");
}

@font-face {
  font-family: "Quicksand";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/6xKtdSZaM9iE8KbpRA_hK1QN.woff2") format("woff2");
}

:root {
  --ink: #252525;
  --muted: #626262;
  --charcoal: #303030;
  --blue: #c7d5f7;
  --blue-ink: #758fc9;
  --blush: #f9dedd;
  --paper: #ffffff;
  --line: rgba(37, 37, 37, 0.16);
  --page: 74rem;
  --header: 4.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Muli", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
}

body,
img {
  max-width: 100%;
}

img {
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:focus-visible,
summary:focus-visible {
  outline: 0.2rem solid var(--blue-ink);
  outline-offset: 0.25rem;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.7rem 1rem;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  min-height: var(--header);
  color: #efefef;
  background: var(--charcoal);
}

.header-inner {
  width: min(100% - 3rem, 90rem);
  min-height: var(--header);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  flex: 0 0 auto;
  font-family: "Quicksand", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  font-family: "Quicksand", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.desktop-nav > a,
.styles-menu > summary {
  position: relative;
  color: #d5d5d5;
  cursor: pointer;
  list-style: none;
  text-decoration: none;
}

.desktop-nav > a::before,
.styles-menu > summary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.9rem;
  width: 0.5rem;
  height: 0.08rem;
  background: currentColor;
  opacity: 0;
  transform: translateX(-0.25rem);
  transition: opacity 160ms ease, transform 160ms ease;
}

.desktop-nav > a:hover::before,
.desktop-nav > a[aria-current="page"]::before,
.styles-menu > summary:hover::before,
.styles-menu[open] > summary::before {
  opacity: 1;
  transform: translateX(0);
}

.styles-menu {
  position: relative;
}

.styles-menu > summary::-webkit-details-marker,
.mobile-menu > summary::-webkit-details-marker {
  display: none;
}

.styles-menu > summary::after {
  content: "+";
  margin-left: 0.5rem;
}

.styles-menu[open] > summary::after {
  content: "−";
}

.styles-list {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  width: 13rem;
  padding: 0.75rem 0;
  background: var(--charcoal);
  border-top: 0.12rem solid var(--blue);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.24);
  transform: translateX(-50%);
  animation: menu-in 160ms ease both;
}

.styles-list a {
  display: block;
  padding: 0.58rem 1.15rem;
  color: #efefef;
  letter-spacing: 0.1em;
  text-decoration: none;
}

.styles-list a:hover,
.styles-list a[aria-current="page"] {
  color: var(--charcoal);
  background: var(--blue);
}

.mobile-menu {
  display: none;
}

.mobile-menu > summary {
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  list-style: none;
}

.mobile-menu > summary span,
.mobile-menu > summary::before,
.mobile-menu > summary::after {
  content: "";
  display: block;
  width: 1.35rem;
  height: 0.1rem;
  margin: 0.3rem auto;
  background: #efefef;
  transition: transform 160ms ease, opacity 160ms ease;
}

.mobile-menu[open] > summary span {
  opacity: 0;
}

.mobile-menu[open] > summary::before {
  transform: translateY(0.4rem) rotate(45deg);
}

.mobile-menu[open] > summary::after {
  transform: translateY(-0.4rem) rotate(-45deg);
}

.mobile-panel {
  position: absolute;
  top: var(--header);
  right: 0;
  left: 0;
  max-height: calc(100svh - var(--header));
  padding: 1rem 1.5rem 1.5rem;
  overflow-y: auto;
  background: var(--charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  animation: mobile-menu-in 160ms ease both;
}

.mobile-panel a,
.mobile-panel strong {
  display: block;
  padding: 0.6rem 0;
  font-family: "Quicksand", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-panel strong {
  margin-top: 0.4rem;
  color: var(--blue);
}

.mobile-panel .mobile-style-link {
  padding-left: 1rem;
  color: #d9d9d9;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header));
  overflow: hidden;
  color: #ffffff;
  background-color: #8ba9aa;
  background-image: url("images/portrait_16.jpg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: contain;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(27, 27, 27, 0.68));
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(100% - 3rem, var(--page));
  min-height: calc(100svh - var(--header));
  margin-inline: auto;
  padding-block: clamp(24rem, 68svh, 44rem) 3rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero h1 {
  max-width: 52rem;
  margin: 0;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(2rem, 5vw, 4.75rem);
  font-weight: 400;
  line-height: 1.1;
}

.hero p {
  max-width: 38rem;
  margin: 1rem 0 0;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
}

.section {
  padding: clamp(4rem, 8vw, 7.5rem) 1.5rem;
}

.section-inner {
  width: min(100%, var(--page));
  margin-inline: auto;
}

.section-title {
  margin: 0 0 clamp(2rem, 5vw, 4rem);
  font-family: "Quicksand", sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
}

.about {
  background: var(--blush);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(15rem, 0.8fr) minmax(18rem, 1.2fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
}

.about-image {
  width: min(100%, 30rem);
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 0.9rem;
  font-family: "Quicksand", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about h2,
.contact h2,
.news h1 {
  margin: 0 0 1.25rem;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
}

.about h3,
.contact h3,
.news h2 {
  margin: 0 0 1rem;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.about p {
  max-width: 45rem;
  margin: 0;
  color: #494949;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.styles-section {
  background: var(--blue);
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 2rem);
}

.style-card {
  position: relative;
  min-height: clamp(18rem, 42vw, 34rem);
  overflow: hidden;
  color: #ffffff;
  background: var(--charcoal);
}

.style-card:first-child:nth-last-child(odd) {
  grid-column: 1 / -1;
}

.style-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms cubic-bezier(0.2, 0.7, 0.2, 1), opacity 250ms ease;
}

.style-card::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.72));
}

.style-card span {
  position: absolute;
  z-index: 1;
  right: 1.5rem;
  bottom: 1.15rem;
  left: 1.5rem;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(1.35rem, 3vw, 2.35rem);
}

.style-card:hover img {
  opacity: 0.9;
  transform: scale(1.025);
}

.contact {
  background: var(--blush);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 8vw, 8rem);
}

.contact p {
  max-width: 42rem;
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.contact-cta {
  margin-top: 1rem !important;
}

.button-link {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  color: #ffffff;
  background: var(--charcoal);
  font-family: "Quicksand", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity 200ms ease;
}

.button-link:hover {
  opacity: 0.82;
}

.news-home {
  background: #ffffff;
}

.news-home-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 6rem);
}

.news-home h2 {
  margin: 0 0 1.25rem;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
}

.news-home p {
  max-width: 42rem;
  margin: 0 0 1rem;
  color: #494949;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.news-home-cta {
  margin-top: 1.5rem !important;
}

.news-home-image {
  width: 100%;
  height: auto;
  box-shadow: 0 1rem 2.4rem rgba(27, 27, 27, 0.18);
}

.go-home {
  padding: clamp(2.5rem, 5vw, 4rem) 1.5rem;
  background: var(--blush);
  text-align: center;
}

.gallery-intro {
  padding: clamp(3rem, 6vw, 5rem) 1.5rem;
  background: var(--blush);
  text-align: center;
}

.gallery-intro h1 {
  margin: 0;
  font-family: "Quicksand", sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.1rem);
  font-weight: 400;
  line-height: 1.15;
}

.gallery-intro p {
  margin: 1rem 0 0;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.gallery-page {
  padding: clamp(3rem, 6vw, 5rem) 1rem clamp(5rem, 9vw, 8rem);
}

.gallery-page h2 {
  margin: 0 0 clamp(2rem, 5vw, 4rem);
  color: var(--blue-ink);
  font-family: "Quicksand", sans-serif;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  text-align: center;
}

.masonry {
  width: min(100%, var(--page));
  margin-inline: auto;
  columns: 3 18rem;
  column-gap: 0.55rem;
}

.artwork {
  display: block;
  margin: 0 0 0.55rem;
  overflow: hidden;
  break-inside: avoid;
  background: #eeeeee;
}

.artwork img {
  width: 100%;
  transition: opacity 180ms ease, transform 350ms ease;
}

.artwork:hover img {
  opacity: 0.93;
  transform: scale(1.01);
}

.gallery-more {
  padding: clamp(4rem, 7vw, 6rem) 1rem;
}

.gallery-more .section-title {
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.gallery-more .style-card {
  min-height: clamp(14rem, 30vw, 24rem);
}

.news {
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
}

.news h1 {
  margin-bottom: 3rem;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.news-layout {
  width: min(100%, var(--page));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(14rem, 0.7fr);
  align-items: start;
  gap: clamp(2rem, 8vw, 7rem);
}

.news-copy p {
  margin: 0 0 1.5rem;
  color: var(--muted);
}

.news-copy .attribution {
  color: #555555;
  font-weight: 700;
}

.news-copy a {
  color: #6d83bc;
}

.news-image {
  width: 100%;
}

.site-footer {
  padding: 2.4rem 1.5rem;
  color: #d8d8d8;
  background: var(--charcoal);
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.82rem;
}

@keyframes menu-in {
  from {
    opacity: 0;
    transform: translate(-50%, -0.35rem);
  }
  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes mobile-menu-in {
  from {
    opacity: 0;
    transform: translateY(-0.35rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 62rem) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
    order: -1;
  }

  .header-inner {
    justify-content: flex-start;
  }

  .brand {
    margin-left: auto;
    margin-right: auto;
  }

  .about-layout,
  .contact-layout,
  .news-layout,
  .news-home-layout {
    grid-template-columns: 1fr;
  }

  .news-image {
    width: min(100%, 32rem);
  }
}

@media (max-width: 42rem) {
  :root {
    --header: 4.5rem;
  }

  .header-inner {
    width: min(100% - 2rem, 90rem);
    gap: 0.5rem;
  }

  .brand {
    font-size: 0.86rem;
    letter-spacing: 0.13em;
  }

  .hero {
    min-height: calc(88svh - var(--header));
  }

  .hero {
    background-position: 48% center;
    background-size: cover;
  }

  .hero-copy {
    min-height: calc(88svh - var(--header));
    padding-block: 22rem 2rem;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

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

  .style-card:first-child:nth-last-child(odd) {
    grid-column: auto;
  }

  .style-card {
    min-height: 19rem;
  }

  .gallery-more .style-card {
    min-height: 16rem;
  }

  .masonry {
    columns: 2 8rem;
    column-gap: 0.4rem;
  }

  .artwork {
    margin-bottom: 0.4rem;
  }
}

@media (max-width: 25rem) {
  .masonry {
    columns: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
