@font-face {
  font-family: "Bodoni Moda";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("/assets/fonts/bodoni-moda-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Bodoni Moda";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("/assets/fonts/bodoni-moda-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: Manrope;
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #faf9f8;
  --panel: #f4f3f2;
  --panel-strong: #eeeeed;
  --ink: #1a1c1c;
  --muted: #4a463f;
  --line: #cbc6bd;
  --primary: #615e5a;
  --gold: #775a19;
  --container: 1280px;
  --gutter: clamp(24px, 5vw, 64px);
  --section: clamp(76px, 10vw, 128px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px var(--gutter);
  background: rgb(250 249 248 / 92%);
  border-bottom: 1px solid rgb(203 198 189 / 35%);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1;
  color: var(--primary);
}

.brand picture,
.brand img {
  width: 40px;
  height: 40px;
}

.brand img {
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 4vw, 48px);
}

.site-nav a,
.header-cta,
.eyebrow,
.button,
.filters button,
.price-nav a,
.signature,
.site-footer h3,
.gallery-item p,
.contact-details h3,
label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.site-nav a {
  color: var(--muted);
  border-bottom: 1px solid transparent;
  padding-block: 8px;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--primary);
  border-color: var(--primary);
}

.header-cta {
  background: var(--primary);
  color: #fff;
  padding: 13px 24px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgb(203 198 189 / 55%);
  background: transparent;
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 1px;
  background: var(--primary);
  margin: 6px 0;
}

.section-pad {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--section) var(--gutter);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(360px, 6fr);
  gap: clamp(36px, 7vw, 96px);
  min-height: calc(100vh - 78px);
  align-items: center;
  padding-top: clamp(48px, 8vw, 88px);
}

.hero-copy {
  max-width: 580px;
}

.eyebrow {
  color: var(--primary);
  margin: 0 0 24px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bodoni Moda", Georgia, serif;
  font-weight: 400;
  line-height: 1.12;
}

h1 {
  font-size: clamp(54px, 8vw, 98px);
  max-width: 9ch;
}

h2 {
  font-size: clamp(40px, 5vw, 68px);
}

h3 {
  font-size: clamp(24px, 2.4vw, 36px);
}

.hero-copy p:not(.eyebrow),
.about-copy p,
.gallery-intro p,
.pricing-hero p,
.contact-intro p {
  color: var(--muted);
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 28px;
  border: 1px solid var(--primary);
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.button-dark {
  background: var(--primary);
  color: #fff;
}

.button-light {
  background: transparent;
  color: var(--primary);
}

.button:hover,
.button:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.button:disabled {
  cursor: wait;
  opacity: .72;
}

.hero-image {
  margin: 0;
  justify-self: stretch;
}

.hero-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: clamp(36px, 7vw, 90px);
  align-items: end;
  padding-top: clamp(58px, 9vw, 108px);
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
}

.page-hero h1 {
  max-width: 13ch;
}

.page-hero img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.page-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  color: var(--muted);
}

.page-kicker span {
  border: 1px solid rgb(203 198 189 / 55%);
  padding: 8px 12px;
  font-size: 13px;
}

.about {
  display: grid;
  grid-template-columns: minmax(260px, 460px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(40px, 9vw, 130px);
}

.about-image {
  margin: 0;
  position: relative;
}

.about-image::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 45%;
  height: 40%;
  background: var(--panel);
  z-index: -1;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.signature {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--primary);
  margin-top: 22px;
}

.signature::before {
  content: "";
  width: 54px;
  height: 1px;
  background: var(--line);
}

.muted-band {
  max-width: none;
  background: var(--panel);
}

.muted-band > * {
  max-width: var(--container);
  margin-inline: auto;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 56px;
}

.section-heading a {
  color: var(--primary);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.service-card {
  background: #fff;
  padding: clamp(30px, 4vw, 52px);
}

.service-card span {
  display: block;
  color: var(--gold);
  font-size: 34px;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 30px;
}

.service-card .service-lead {
  color: var(--text);
  font-weight: 700;
  margin: 14px 0 12px;
}

.service-card p,
.service-card li {
  color: var(--muted);
}

.service-card ul {
  margin: 24px 0 0;
  padding-left: 18px;
}

.service-card .button,
.teaser-card .button,
.gallery-intro .button,
.pricing-hero .button,
.contact-intro .button {
  margin-top: 22px;
}

.service-detail-grid,
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.service-detail,
.teaser-card {
  background: #fff;
  padding: clamp(28px, 4vw, 48px);
}

.service-detail h3,
.teaser-card h3 {
  font-size: clamp(26px, 3vw, 40px);
}

.service-detail p,
.service-detail li,
.teaser-card p {
  color: var(--muted);
}

.service-detail ul {
  margin: 22px 0 0;
  padding-left: 18px;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background: var(--primary);
  color: #fff;
  padding: clamp(30px, 5vw, 64px);
}

.cta-panel p {
  max-width: 680px;
  color: rgb(255 255 255 / 82%);
}

.cta-panel .button {
  border-color: #fff;
  color: #fff;
}

.section-actions {
  margin-top: 42px;
  text-align: center;
}

.gallery-intro {
  max-width: 720px;
  margin-bottom: 56px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  padding-bottom: 22px;
  margin-bottom: 44px;
  border-bottom: 1px solid rgb(203 198 189 / 35%);
}

.filters button {
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  padding: 0 0 8px;
  cursor: pointer;
}

.filters button.active,
.filters button:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: start;
  gap: clamp(20px, 3vw, 32px);
}

.gallery-item {
  grid-column: span 4;
}

.gallery-item.tall {
  grid-column: span 6;
}

.gallery-item.wide {
  grid-column: span 7;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--panel);
}

.gallery-item.wide img {
  aspect-ratio: 3 / 2;
}

.gallery-item p {
  color: var(--gold);
  margin: 16px 0 4px;
}

.gallery-item h3 {
  font-size: 24px;
}

.gallery-item.is-hidden {
  display: none;
}

.faq-list {
  display: grid;
  gap: 16px;
  max-width: 900px;
}

.faq-list details {
  background: #fff;
  border: 1px solid rgb(203 198 189 / 35%);
  padding: clamp(18px, 3vw, 28px);
}

.faq-list summary {
  cursor: pointer;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  color: var(--primary);
}

.faq-list summary::marker {
  color: var(--gold);
}

.faq-list p {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--muted);
}

.pricing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: end;
  gap: clamp(32px, 8vw, 96px);
  margin-bottom: 80px;
}

.pricing-hero img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.price-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(36px, 6vw, 80px);
}

.price-nav {
  position: sticky;
  top: 100px;
  align-self: start;
  display: grid;
  gap: 16px;
  padding-left: 18px;
  border-left: 1px solid rgb(203 198 189 / 70%);
}

.price-nav a {
  color: var(--muted);
}

.price-list {
  display: grid;
  gap: 76px;
}

.price-list section {
  scroll-margin-top: 110px;
}

.price-list h3 {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  color: var(--primary);
  font-size: clamp(28px, 3vw, 42px);
  text-transform: uppercase;
}

.price-list h3::before {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--line);
}

dl {
  margin: 0;
}

dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgb(203 198 189 / 45%);
}

dt {
  color: var(--muted);
}

dd {
  margin: 0;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 24px;
  white-space: nowrap;
  color: var(--primary);
}

.price-note {
  max-width: 620px;
  margin: -20px auto 0;
  color: var(--muted);
  font-style: italic;
  text-align: center;
}

.booking-band {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
}

.booking-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(26 28 28 / 45%);
  z-index: 1;
}

.booking-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
}

.booking-band div {
  position: relative;
  z-index: 2;
  padding: 40px var(--gutter);
}

.booking-band h2 {
  margin-bottom: 28px;
}

.booking-band .button-light {
  background: #fff;
  border-color: #fff;
}

.contact-intro {
  max-width: 760px;
  margin-bottom: 56px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 42px;
}

.contact-details h3 {
  margin-bottom: 14px;
  font-family: Manrope, Arial, sans-serif;
  color: var(--primary);
}

.contact-details p,
.contact-details a {
  color: var(--muted);
}

.contact-details p span {
  float: right;
}

.contact-details a {
  display: block;
  margin: 10px 0;
}

.contact-form {
  background: var(--panel);
  padding: clamp(28px, 5vw, 70px);
  display: grid;
  gap: 34px;
}

.contact-form h3 {
  margin-bottom: 8px;
}

.form-note,
.form-status {
  margin: -12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.form-status {
  padding: 14px 16px;
  border: 1px solid rgb(203 198 189 / 60%);
  background: #fff;
}

.form-status.is-success {
  border-color: rgb(72 112 76 / 35%);
  color: #315b35;
}

.form-status.is-error {
  border-color: rgb(159 59 49 / 35%);
  color: #8a2f27;
}

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

label {
  display: grid;
  gap: 10px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  border-radius: 0;
  padding: 10px 0 14px;
  color: var(--ink);
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: var(--primary);
}

.map-panel {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
  margin-top: 76px;
  overflow: hidden;
  text-align: center;
  background: var(--panel-strong);
}

.map-panel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .28;
  filter: grayscale(1);
}

.map-panel > div {
  position: relative;
  padding: 36px;
}

.map-panel span {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgb(97 94 90 / 30%);
  border-radius: 50%;
  background: rgb(250 249 248 / 70%);
  color: var(--primary);
}

.map-panel p {
  color: var(--muted);
  margin-bottom: 26px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 12px;
}

.atelier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.atelier-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.atelier-grid img:nth-child(2) {
  margin-top: 52px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: clamp(32px, 7vw, 90px);
  max-width: var(--container);
  margin: 0 auto;
  padding: 88px var(--gutter) 34px;
  border-top: 1px solid rgb(203 198 189 / 30%);
  color: var(--muted);
}

.site-footer h3 {
  margin: 0 0 18px;
  font-family: Manrope, Arial, sans-serif;
  color: var(--primary);
}

.site-footer a:not(.brand) {
  display: block;
  margin: 10px 0;
}

.site-footer p {
  max-width: 420px;
}

.footer-contact {
  margin-top: 24px;
  font-style: normal;
}

.copyright {
  grid-column: 1 / 2;
  max-width: none;
  padding-top: 36px;
  margin: 0;
  border-top: 1px solid rgb(203 198 189 / 25%);
  font-size: 13px;
}

.footer-privacy {
  grid-column: 2 / 3;
  max-width: none;
  align-self: end;
  padding-top: 36px;
  margin: 0;
  border-top: 1px solid rgb(203 198 189 / 25%);
  font-size: 13px;
  text-align: center;
}

.studio-credit {
  grid-column: 3 / 4;
  max-width: none;
  align-self: end;
  padding-top: 36px;
  margin: 0;
  border-top: 1px solid rgb(203 198 189 / 25%);
  font-size: 13px;
  text-align: right;
}

.site-footer .studio-credit a {
  display: inline;
  margin: 0;
}

.site-footer .footer-privacy a {
  display: inline;
  margin: 0;
}

.legal-content {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  gap: 34px;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.legal-content section {
  padding-bottom: 30px;
  border-bottom: 1px solid rgb(203 198 189 / 35%);
}

.legal-content h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 48px);
}

.legal-content h3 {
  margin-top: 28px;
  font-size: 22px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    inset: 100% var(--gutter) auto;
    display: grid;
    justify-content: stretch;
    gap: 0;
    background: var(--bg);
    border: 1px solid rgb(203 198 189 / 45%);
    padding: 14px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .2s ease, transform .2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .page-hero,
  .about,
  .pricing-hero,
  .price-layout,
  .contact-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-image {
    max-width: 620px;
  }

  .service-grid,
  .service-detail-grid,
  .teaser-grid,
  .atelier-grid {
    grid-template-columns: 1fr;
  }

  .price-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    border-left: 0;
    padding-left: 0;
  }

  .pricing-hero img {
    max-width: 420px;
  }

  .gallery-item,
  .gallery-item.tall,
  .gallery-item.wide {
    grid-column: span 6;
  }
}

@media (max-width: 680px) {
  :root {
    --gutter: 24px;
  }

  .site-header {
    padding-block: 14px;
  }

  .brand span {
    font-size: 20px;
  }

  h1 {
    max-width: 10ch;
  }

  .section-heading {
    display: grid;
    align-items: start;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    display: block;
  }

  .gallery-item {
    margin-bottom: 34px;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  dd {
    font-size: 22px;
  }

  .contact-details p span {
    float: none;
    display: block;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .copyright {
    grid-column: auto;
  }

  .footer-privacy {
    grid-column: auto;
    padding-top: 0;
    border-top: 0;
    text-align: left;
  }

  .studio-credit {
    grid-column: auto;
    padding-top: 0;
    border-top: 0;
    text-align: left;
  }
}
