@font-face {
  font-family: "Space Mono Peach";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./assets/fonts/SpaceMono-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Open Sans Peach";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("./assets/fonts/OpenSans-Light.ttf") format("truetype");
}

@font-face {
  font-family: "Open Sans Peach";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./assets/fonts/OpenSans-SemiBold.ttf") format("truetype");
}

:root {
  --page: #fef7ef;
  --ink: #484442;
  --muted: #77706d;
  --peach: #df7464;
  --blue: #a6b8e1;
  --nav-blue-rgb: 173 187 218;
  --nav-blue: rgb(var(--nav-blue-rgb));
  --line: #353333;
  --masthead-panel: rgba(254, 247, 239, 0.75);
  --overlay: rgba(254, 247, 239, 0.74);
  --mono: "Space Mono Peach", "Courier New", Courier, monospace;
  --sans: "Open Sans Peach", "Helvetica Neue", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--page);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: 0;
  margin: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

.header-hero {
  border-bottom: 2px solid var(--line);
  height: clamp(620px, 56.27vw, 844px);
  isolation: isolate;
  overflow: hidden;
  position: relative;
}

.header-slideshow {
  background: var(--page);
  inset: 0;
  position: absolute;
  z-index: 0;
}

.header-slide {
  height: 100%;
  inset: 0;
  opacity: 0;
  position: absolute;
  transition: opacity 1400ms ease-in-out;
  width: 100%;
}

.header-slide.is-active {
  opacity: 1;
}

.header-slide img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  width: 100%;
}

.header-slideshow::after {
  background: rgba(254, 247, 239, 0.02);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.site-header {
  background: transparent;
  position: relative;
  z-index: 1;
}

.masthead {
  background: var(--masthead-panel);
  display: grid;
  height: 256px;
  place-items: center;
}

.brand {
  display: block;
  line-height: 0;
  text-decoration: none;
  width: min(507px, 51vw);
}

.brand-logo {
  height: auto;
  width: 100%;
}

.header-nav {
  align-items: center;
  background: var(--nav-blue);
  border-bottom: 2px solid var(--line);
  border-top: 2px solid var(--line);
  display: flex;
  font-family: var(--mono);
  font-size: clamp(1.08rem, 1.55vw, 1.95rem);
  font-weight: 400;
  gap: clamp(44px, 11.72vw, 176px);
  height: 55px;
  justify-content: center;
  line-height: 1;
  padding: 0 32px;
}

.footer-panel {
  align-items: center;
  background: var(--nav-blue);
  border-bottom: 2px solid var(--line);
  border-top: 2px solid var(--line);
  display: flex;
  font-family: var(--sans);
  font-size: clamp(0.6rem, 0.78vw, 0.87rem);
  font-weight: 300;
  height: 55px;
  justify-content: center;
  line-height: 1;
  margin: 0;
  padding: 0 32px;
  text-align: center;
}

.header-nav__links {
  display: contents;
}

.nav-menu-toggle {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  color: #2f3034;
  cursor: pointer;
  display: none;
  height: 44px;
  justify-content: center;
  margin: 0;
  padding: 0;
  width: 44px;
}

.nav-menu-toggle svg {
  fill: none;
  height: 26px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2.1;
  width: 26px;
}

.header-nav a {
  color: #2f3034;
  text-decoration: none;
}

.header-nav a:hover,
.header-nav a:focus-visible,
.intro-chat-link:hover,
.intro-chat-link:focus-visible,
.service-cta:hover,
.service-cta:focus-visible,
.return-link:hover,
.return-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.instagram-link {
  align-items: center;
  display: grid;
  height: 30px;
  place-items: center;
  width: 30px;
}

.instagram-link svg {
  fill: none;
  height: 24px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 24px;
}

.section-inner {
  margin: 0 auto;
  max-width: 1250px;
  width: calc(100% - 250px);
}

.intro-section {
  border-bottom: 2px solid var(--line);
  min-height: 886px;
  overflow: hidden;
}

.intro-inner {
  height: 884px;
  margin: 0 auto;
  max-width: 1330px;
  position: relative;
  width: calc(100% - 170px);
}

.hello-backdrop {
  aspect-ratio: 939 / 555;
  background: rgb(var(--nav-blue-rgb) / 0.28);
  display: block;
  left: auto;
  margin: 0 0 -68px -80px;
  -webkit-mask: url("./assets/hello-backdrop.png?v=20260624-uncropped1") center / contain no-repeat;
  mask: url("./assets/hello-backdrop.png?v=20260624-uncropped1") center / contain no-repeat;
  pointer-events: none;
  position: relative;
  top: auto;
  width: min(620px, calc(100% + 130px));
  z-index: 0;
}

.intro-copy {
  left: 110px;
  max-width: 650px;
  position: absolute;
  right: 570px;
  top: 130px;
  width: auto;
  z-index: 1;
}

.intro-copy h1 {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.intro-copy p {
  color: #56504d;
  font-size: 1.03rem;
  line-height: 1.36;
  margin: 0;
  position: relative;
  z-index: 1;
}

.intro-copy p + p {
  margin-top: 12px;
}

.intro-chat-link {
  color: var(--peach);
  display: inline-block;
  font-family: var(--mono);
  font-size: 1.34rem;
  line-height: 1;
  margin-top: 38px;
  position: relative;
  text-decoration: underline;
  text-underline-offset: 0.24em;
  z-index: 1;
}

.intro-portrait {
  border: 2px solid var(--line);
  border-radius: 18px;
  height: 505px;
  object-fit: cover;
  position: absolute;
  right: 127px;
  top: 154px;
  width: 354px;
}

.section-heading-bar {
  align-items: center;
  border-bottom: 2px solid var(--line);
  display: flex;
  height: 70px;
}

.section-heading-bar h2,
.services-section h2,
.contact-section h2 {
  color: var(--peach);
  font-family: var(--mono);
  font-size: 2.12rem;
  font-weight: 400;
  line-height: 1;
  margin: 0;
}

.galleries-section {
  border-bottom: 2px solid var(--line);
}

.gallery-stage {
  --gallery-stage-pad-top: 75px;
  --gallery-stage-pad-bottom: 156px;
  margin: 0 auto;
  max-width: 1460px;
  overflow: hidden;
  padding: var(--gallery-stage-pad-top) 0 var(--gallery-stage-pad-bottom);
  position: relative;
  width: calc(100% - 40px);
}

.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  transition:
    opacity 320ms ease,
    transform 360ms ease;
}

.gallery-card {
  aspect-ratio: 5 / 7;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: block;
  font: inherit;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: left;
}

.gallery-card img {
  height: 100%;
  object-fit: contain;
  transform-origin: center;
  transition: transform 420ms ease;
  width: 100%;
}

.gallery-card:hover img {
  transform: scale(1.045);
}

.gallery-card:nth-child(1) img {
  object-position: 50% 50%;
}

.gallery-card:nth-child(2) img {
  object-position: 50% 48%;
}

.gallery-card:nth-child(3) img {
  object-position: 50% 48%;
}

.gallery-card h3 {
  background: var(--overlay);
  color: #4c4847;
  font-family: var(--mono);
  font-size: clamp(1.4rem, 2.18vw, 2.05rem);
  font-weight: 400;
  left: 0;
  line-height: 1.07;
  margin: 0;
  padding: 16px 10px 18px;
  position: absolute;
  text-align: center;
  top: 55.7%;
  transform: translateY(-50%);
  width: 100%;
}

.galleries-section.is-gallery-open .gallery-grid {
  bottom: var(--gallery-stage-pad-bottom);
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: var(--gallery-stage-pad-top);
  transform: translateX(-22px);
}

.gallery-card[hidden],
.gallery-detail[hidden] {
  display: none;
}

.gallery-detail {
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  scroll-margin-top: 88px;
  top: var(--gallery-stage-pad-top);
  transform: translateX(22px);
  transition:
    opacity 320ms ease,
    transform 360ms ease;
}

.galleries-section.is-gallery-open .gallery-detail {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  top: auto;
  transform: none;
}

.gallery-detail__header {
  align-content: end;
  align-items: end;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  height: var(--gallery-stage-pad-top);
  left: 0;
  padding: 0 0 16px;
  position: absolute;
  right: 0;
  top: calc(-1 * var(--gallery-stage-pad-top));
  z-index: 2;
}

.gallery-detail__title {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 1.56rem;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  text-align: center;
}

.gallery-detail__header > .gallery-detail__title {
  grid-column: 2;
  justify-self: center;
}

.gallery-detail__close,
.gallery-detail__top-link {
  background: transparent;
  border: 0;
  color: var(--nav-blue);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 1rem;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 0.24em;
}

.gallery-detail__header > .gallery-detail__close {
  grid-column: 3;
  justify-self: end;
}

.gallery-detail__grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  outline: none;
}

.gallery-detail__footer {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.gallery-detail__row {
  align-items: flex-start;
  display: flex;
  gap: 16px;
  width: 100%;
}

.gallery-detail__item {
  flex: 0 0 var(--photo-width, auto);
  height: var(--photo-height, auto);
  margin: 0;
  max-width: 100%;
  overflow: hidden;
}

.gallery-detail__item--landscape {
  flex-basis: var(--photo-width, auto);
}

.gallery-detail__item--wide {
  flex-basis: var(--photo-width, auto);
}

.gallery-detail__item--square {
  flex-basis: var(--photo-width, auto);
}

.gallery-detail__item img {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.gallery-detail__close:hover,
.gallery-detail__close:focus-visible,
.gallery-detail__top-link:hover,
.gallery-detail__top-link:focus-visible {
  color: var(--nav-blue);
}

.gallery-detail__footer-link {
  line-height: 1.2;
}

.services-section {
  background: var(--blue);
  border-bottom: 2px solid var(--line);
  min-height: 1114px;
  padding: 47px 0 72px;
}

.services-inner {
  margin: 0 auto;
  max-width: 1210px;
  position: relative;
  width: calc(100% - 290px);
}

.services-section h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 45px;
}

.services-grid {
  display: grid;
  gap: 52px 52px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  align-items: center;
  background: var(--page);
  border: 2px solid var(--line);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 426px;
  min-width: 0;
  padding: 58px 66px 44px;
  text-align: center;
}

.service-card h3 {
  color: #4b4645;
  font-family: var(--mono);
  font-size: clamp(1.55rem, 2.08vw, 2rem);
  font-weight: 400;
  line-height: 1.05;
  margin: 0;
}

.service-price {
  color: #8a817c;
  font-size: 1.06rem;
  line-height: 1;
  margin: 27px 0 22px;
}

.service-price::after {
  background: var(--line);
  content: "";
  display: block;
  height: 2px;
  margin: 22px auto 0;
  width: 366px;
  max-width: 100%;
}

.service-card p:not(.service-price) {
  color: #5f5a57;
  font-size: 1.02rem;
  line-height: 1.34;
  margin: 0;
}

.service-cta {
  align-items: center;
  background: #da705f;
  border: 2px solid var(--line);
  border-radius: 50%;
  color: #fff;
  display: flex;
  flex-direction: column;
  font-family: var(--mono);
  font-size: 0.86rem;
  font-weight: 400;
  gap: 3px;
  height: 99px;
  justify-content: center;
  left: 50%;
  line-height: 1.15;
  position: absolute;
  text-align: center;
  text-decoration: none;
  top: 479px;
  transform: translateX(-50%);
  width: 188px;
  z-index: 2;
}

.service-cta img {
  display: block;
  height: auto;
  width: 24px;
}

.contact-section {
  min-height: 710px;
  padding: 94px 0 120px;
}

.contact-layout {
  align-items: start;
  display: grid;
  gap: clamp(54px, 8vw, 112px);
  grid-template-columns: minmax(0, 0.7fr) minmax(420px, 1fr);
}

.contact-section h2 {
  font-size: 2.12rem;
  margin-bottom: 52px;
}

.contact-copy p {
  color: #5e5855;
  font-size: 1.02rem;
  line-height: 1.35;
  margin: 0;
  max-width: 428px;
}

.contact-form {
  display: grid;
  gap: 18px;
  width: 100%;
}

.contact-form__row {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.contact-form span {
  color: #4b4645;
  font-family: var(--mono);
  font-size: 0.96rem;
  line-height: 1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  appearance: none;
  background: rgb(255 255 255 / 0.46);
  border: 2px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  font: 300 1rem/1.35 var(--sans);
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

.contact-form select {
  background-color: rgb(255 255 255 / 0.46);
  cursor: pointer;
}

.contact-form textarea {
  min-height: 156px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--peach);
  box-shadow: 0 0 0 3px rgb(223 116 100 / 0.18);
  outline: none;
}

.contact-form button {
  align-items: center;
  background: var(--nav-blue);
  border: 2px solid var(--line);
  color: #2f3034;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--mono);
  font-size: 1rem;
  justify-content: center;
  justify-self: start;
  min-height: 48px;
  padding: 12px 24px;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  background: rgb(var(--nav-blue-rgb) / 0.8);
}

.hidden-field {
  height: 1px;
  left: -100vw;
  margin: 0;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.thank-you-page {
  align-items: center;
  display: grid;
  min-height: 100vh;
  padding: 40px;
  place-items: center;
}

.thank-you-panel {
  max-width: 640px;
  text-align: center;
}

.thank-you-panel .brand {
  color: var(--ink);
  display: inline-block;
  font-family: var(--mono);
  font-size: 1.25rem;
  line-height: 1.2;
  width: auto;
}

.thank-you-panel h1 {
  color: var(--peach);
  font-family: var(--mono);
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 400;
  margin: 56px 0 20px;
}

.thank-you-panel p {
  font-size: 1.1rem;
  font-weight: 300;
  margin: 0 auto 32px;
}

.return-link {
  background: var(--peach);
  color: #fff;
  display: inline-flex;
  font-family: var(--mono);
  font-size: 1rem;
  justify-content: center;
  min-height: 48px;
  padding: 14px 24px;
  text-decoration: none;
}

@media (max-width: 1120px) {
  .header-hero {
    height: clamp(570px, 69vw, 772px);
  }

  .masthead {
    height: 210px;
  }

  .header-nav {
    gap: clamp(26px, 6vw, 72px);
  }

  .section-inner,
  .intro-inner,
  .gallery-stage,
  .services-inner {
    width: calc(100% - 64px);
  }

  .gallery-detail__header {
    padding-left: 0;
  }

  .intro-section {
    min-height: auto;
  }

  .intro-inner {
    display: grid;
    gap: 42px;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
    height: auto;
    padding: 92px 0 104px;
  }

  .hello-backdrop {
    margin: 0 0 -68px -80px;
    width: min(620px, calc(100% + 130px));
  }

  .intro-copy,
  .intro-portrait {
    position: relative;
  }

  .intro-copy {
    align-self: end;
    left: auto;
    max-width: none;
    right: auto;
    top: auto;
    width: auto;
  }

  .intro-portrait {
    align-self: start;
    right: auto;
    top: auto;
    width: 100%;
  }

  .services-inner {
    max-width: 980px;
  }

  .service-card {
    padding-left: 42px;
    padding-right: 42px;
  }
}

@media (max-width: 760px) {
  html {
    scroll-behavior: auto;
  }

  .header-hero {
    height: min(640px, 145vw);
    min-height: 540px;
  }

  .masthead {
    height: 168px;
  }

  .brand {
    width: min(307px, 59vw);
  }

  .header-nav {
    flex-wrap: wrap;
    font-size: 1.08rem;
    gap: 10px 26px;
    height: auto;
    justify-content: center;
    min-height: 44px;
    padding: 8px 20px;
  }

  .footer-panel {
    font-size: 0.57rem;
    height: auto;
    justify-content: center;
    min-height: 44px;
    padding: 8px 20px;
  }

  .instagram-link {
    height: 24px;
    width: 24px;
  }

  .instagram-link svg {
    height: 21px;
    width: 21px;
  }

  .nav-menu-toggle {
    display: none;
  }

  .intro-inner {
    display: flex;
    flex-direction: column;
    gap: 34px;
    padding: 76px 0 86px;
  }

  .hello-backdrop {
    margin: 0 0 -58px -10px;
    width: calc(100% + 20px);
  }

  .intro-copy {
    order: 1;
    padding-top: 0;
  }

  .intro-copy p {
    font-size: 1rem;
  }

  .intro-portrait {
    align-self: center;
    max-width: 390px;
    order: 2;
  }

  .section-inner,
  .intro-inner,
  .gallery-stage,
  .services-inner {
    width: calc(100% - 42px);
  }

  .section-heading-bar h2,
  .services-section h2,
  .contact-section h2 {
    font-size: 1.72rem;
  }

  .section-heading-bar {
    height: 62px;
  }

  .gallery-stage {
    --gallery-stage-pad-top: 92px;
    --gallery-stage-pad-bottom: 72px;
    max-width: 430px;
    width: calc(100% - 24px);
  }

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

  .gallery-card h3 {
    font-size: 1.62rem;
  }

  .gallery-detail {
    scroll-margin-top: 70px;
  }

  .gallery-detail__header {
    align-items: end;
    gap: 6px;
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 0 0 12px;
  }

  .gallery-detail__title {
    font-size: 1.36rem;
  }

  .gallery-detail__header > .gallery-detail__title,
  .gallery-detail__header > .gallery-detail__close {
    grid-column: 1;
    justify-self: center;
  }

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

  .gallery-detail__footer {
    margin-top: 28px;
  }

  .gallery-detail__row {
    display: contents;
  }

  .gallery-detail__item,
  .gallery-detail__item--landscape,
  .gallery-detail__item--wide,
  .gallery-detail__item--square {
    flex: none;
    grid-column: 1 / -1;
    height: auto;
    width: 100%;
  }

  .gallery-detail__item img {
    height: auto;
  }

  .services-section {
    min-height: auto;
    padding: 48px 0 64px;
  }

  .services-section h2 {
    margin-bottom: 32px;
    text-align: center;
  }

  .services-inner {
    display: flex;
    flex-direction: column;
  }

  .services-grid {
    grid-template-columns: 1fr;
    order: 3;
  }

  .service-card {
    min-height: auto;
    padding: 42px 30px 38px;
  }

  .service-cta {
    font-size: 0.8rem;
    height: 89px;
    margin: 0 auto 34px;
    order: 2;
    position: static;
    transform: none;
    width: 168px;
  }

  .service-cta img {
    width: 23px;
  }

  .contact-section {
    min-height: 430px;
    padding: 62px 0 96px;
  }

  .contact-layout {
    gap: 36px;
    grid-template-columns: 1fr;
  }

  .contact-section h2 {
    margin-bottom: 26px;
    text-align: center;
  }

  .contact-copy p {
    margin: 0 auto;
    text-align: center;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .contact-form button {
    justify-self: stretch;
  }
}

@media (max-width: 469px) {
  .header-nav {
    align-items: stretch;
    background: transparent;
    border: 0;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 0;
    min-height: 44px;
    padding: 0;
  }

  .nav-menu-toggle {
    background: var(--nav-blue);
    border-bottom: 2px solid var(--line);
    border-top: 2px solid var(--line);
    display: flex;
    height: 48px;
    margin: 0 auto;
    width: 100%;
  }

  .header-nav__links {
    align-items: center;
    background: var(--masthead-panel);
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 8px 0 12px;
    width: 100%;
  }

  .header-nav__links[hidden] {
    display: none;
  }

  .header-nav__links a {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 38px;
    padding: 8px 20px;
    text-align: center;
    width: 100%;
  }

  .header-nav__links .instagram-link {
    height: 38px;
    padding: 7px 20px;
    width: 100%;
  }

  .footer-panel {
    min-height: 48px;
  }
}
