:root {
  --page: #fffdf9;
  --paper: #ffffff;
  --ink: #111111;
  --muted: #5f5b55;
  --brand: #b96f56;
  --brand-dark: #7f4433;
  --line: #e1d8cf;
  --wash: #f7eee7;
  --sage: #6f8778;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-family: "Signika", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

/* Commission landing page */
.landing-page {
  --cream: #f4eee6;
  --cream-deep: #e9dfd3;
  --charcoal: #242422;
  --rust: #a64d31;
  --rust-dark: #7e351f;
  --sage-soft: #c8d0c2;
  --landing-line: rgba(36, 36, 34, 0.2);
  background: #f9f6f1;
  color: var(--charcoal);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
}

.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page blockquote,
.landing-page .wordmark span {
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
}

.landing-page em {
  color: var(--rust);
  font-weight: 400;
}

.landing-page main {
  max-width: none;
}

.landing-page img {
  border: 1px solid #111;
}

.landing-header {
  position: relative;
  z-index: 10;
  display: flex;
  width: min(100% - 48px, 1320px);
  min-height: 94px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--landing-line);
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  color: var(--charcoal);
  line-height: 1;
  text-decoration: none;
}

.wordmark span {
  font-size: 1.62rem;
  letter-spacing: -0.02em;
}

.wordmark small {
  margin-top: 7px;
  color: var(--rust);
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.landing-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.landing-nav a {
  font-size: 0.83rem;
  font-weight: 600;
  text-decoration: none;
}

.landing-nav a:hover,
.landing-nav a:focus-visible {
  color: var(--rust);
}

.landing-nav .nav-cta {
  padding: 12px 18px;
  border: 1px solid var(--charcoal);
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  width: min(100% - 48px, 1320px);
  min-height: 620px;
  margin: 0 auto;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
  padding: 58px 0 72px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--rust);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(3.8rem, 6.5vw, 6.5rem);
  letter-spacing: -0.055em;
  line-height: 0.89;
}

.hero-copy h1 em {
  white-space: nowrap;
}

.hero-lead {
  max-width: 550px;
  margin: 34px 0 0;
  color: #53514c;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  margin-top: 34px;
  align-items: center;
  gap: 26px;
}

.primary-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 1px solid var(--rust);
  background: var(--rust);
  color: #fff;
  padding: 14px 21px;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  border-color: var(--rust-dark);
  background: var(--rust-dark);
  transform: translateY(-2px);
}

.quiet-link,
.card-link {
  display: inline-block;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
}

.quiet-link:hover,
.quiet-link:focus-visible,
.card-link:hover,
.card-link:focus-visible {
  color: var(--rust);
}

.hero-notes {
  display: flex;
  margin: 42px 0 0;
  padding: 0;
  color: #6e6b65;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  list-style: none;
  text-transform: uppercase;
}

.hero-notes li + li::before {
  content: "·";
  margin: 0 14px;
  color: var(--rust);
}

.hero-art {
  min-height: 520px;
}

.hero-art-main {
  width: 100%;
  height: 100%;
  margin: 0;
  background: #efe9df;
  overflow: hidden;
}

.hero-art-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-art-float {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 40%;
  margin: 0;
  padding: 11px 11px 0;
  background: #f9f6f1;
  box-shadow: 0 18px 60px rgba(62, 48, 37, 0.15);
  transform: rotate(-2.5deg);
}

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

.hero-art-float figcaption {
  padding: 9px 3px 12px;
  color: #767169;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 0.73rem;
  font-style: italic;
  text-align: center;
}

.paint-mark {
  position: absolute;
  display: block;
  border-radius: 999px 35% 999px 40%;
  opacity: 0.65;
  transform: rotate(-18deg);
}

.paint-mark-one {
  top: 8%;
  left: 13%;
  width: 110px;
  height: 24px;
  background: #cad8db;
}

.paint-mark-two {
  right: -10px;
  bottom: 2%;
  width: 130px;
  height: 18px;
  background: #d6b1a1;
}

.intro-strip {
  display: flex;
  min-height: 205px;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 42px max(24px, calc((100vw - 1320px) / 2));
  background: var(--charcoal);
  color: #fff;
}

.intro-strip > p {
  margin: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.8rem, 3.2vw, 3.1rem);
  line-height: 1.1;
}

.intro-strip > span {
  padding-left: 42px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  color: #b9b6af;
  font-size: 0.76rem;
  line-height: 1.7;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.intro-strip strong {
  color: #fff;
  font-weight: 500;
}

.portrait-section,
.process-section {
  padding: 96px max(24px, calc((100vw - 1200px) / 2));
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 52px;
}

.section-heading h2,
.people-copy h2,
.inquiry-intro h2 {
  margin: 0;
  font-size: clamp(2.8rem, 4.8vw, 4.8rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.section-heading > p {
  max-width: 520px;
  margin: 0 0 6px;
  color: #5b5852;
  line-height: 1.75;
}

.portrait-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
}

.portrait-card {
  min-width: 0;
}

.portrait-image {
  position: relative;
  display: block;
  height: clamp(400px, 46vw, 570px);
  border: 1px solid #111;
  background: #ebe4dc;
  overflow: hidden;
}

.portrait-image img {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  transition: transform 500ms ease;
}

.portrait-image:hover img {
  transform: scale(1.025);
}

.portrait-card-featured .portrait-image img {
  object-position: 50% 30%;
}

.image-label {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 10px;
  background: rgba(249, 246, 241, 0.9);
  color: #514d46;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 0.73rem;
  font-style: italic;
}

.portrait-copy {
  padding-top: 25px;
}

.portrait-title-row,
.portrait-title-row > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.portrait-title-row h3 {
  margin: 0;
  font-size: clamp(1.85rem, 3vw, 2.65rem);
}

.price {
  margin: 0;
  color: #77736c;
  font-size: 0.74rem;
}

.price strong {
  color: var(--charcoal);
  font-size: 1rem;
}

.portrait-copy > p:not(.price) {
  max-width: 540px;
  margin: 18px 0 24px;
  color: #5f5b55;
  line-height: 1.68;
}

.price-list {
  margin: 0 0 25px;
  padding: 0;
  border-top: 1px solid var(--landing-line);
  list-style: none;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--landing-line);
  font-size: 0.79rem;
}

.price-list strong {
  font-weight: 600;
}

.size-note {
  margin: 58px 0 0;
  color: #625f59;
  font-size: 0.86rem;
  text-align: center;
}

.size-note a {
  color: var(--rust);
}

.people-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
  background: var(--cream);
}

.people-image {
  min-height: 560px;
  overflow: hidden;
}

.people-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.people-copy {
  display: flex;
  max-width: 650px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 80px clamp(40px, 7vw, 110px);
}

.people-copy p:not(.eyebrow) {
  margin: 26px 0;
  color: #5c5851;
  line-height: 1.76;
}

.people-prices {
  width: 100%;
  margin: 0 0 28px;
  padding: 0;
  border-top: 1px solid var(--landing-line);
  list-style: none;
}

.people-prices li {
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--landing-line);
  font-size: 0.79rem;
}

.people-prices strong {
  font-weight: 600;
}

.instagram-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(50px, 9vw, 140px);
  align-items: center;
  padding: 76px max(24px, calc((100vw - 1200px) / 2));
  background: var(--charcoal);
  color: #fff;
}

.instagram-callout .eyebrow {
  margin-bottom: 18px;
  color: #d8896e;
}

.instagram-callout h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.5rem, 4.2vw, 4.2rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.instagram-callout-copy > p:last-child {
  max-width: 590px;
  margin: 22px 0 0;
  color: #bbb7af;
  line-height: 1.7;
}

.instagram-callout-link {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  gap: 16px;
  min-width: 330px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  color: #fff;
  padding: 17px 19px;
  font-weight: 600;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.instagram-monogram {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
}

.instagram-monogram img {
  width: 30px;
  height: 30px;
  border: 0;
  object-fit: contain;
}

.instagram-callout-link > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
  font-size: 0.82rem;
}

.instagram-callout-link small {
  margin-bottom: 2px;
  color: #aaa69f;
  font-size: 0.61rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.instagram-callout-link strong {
  color: #d8896e;
  font-size: 1.05rem;
}

.instagram-callout-link:hover,
.instagram-callout-link:focus-visible {
  border-color: #d8896e;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.compact-heading {
  grid-template-columns: 1fr;
}

.process-section {
  background: #f9f6f1;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--landing-line);
  list-style: none;
}

.process-grid li {
  min-height: 270px;
  padding: 28px 28px 28px 0;
  border-right: 1px solid var(--landing-line);
}

.process-grid li + li {
  padding-left: 28px;
}

.process-grid li:last-child {
  border-right: 0;
}

.process-grid span {
  color: var(--rust);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.process-grid h3 {
  margin: 70px 0 12px;
  font-size: 1.45rem;
}

.process-grid p {
  margin: 0;
  color: #67635d;
  font-size: 0.84rem;
  line-height: 1.65;
}

.artist-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  background: #bdc8bd;
}

.artist-portrait {
  min-height: 620px;
  overflow: hidden;
}

.artist-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.artist-copy {
  display: flex;
  max-width: 780px;
  flex-direction: column;
  justify-content: center;
  padding: 84px clamp(40px, 7vw, 110px);
}

.artist-copy .eyebrow {
  color: #33493c;
}

.artist-copy blockquote {
  margin: 0 0 32px;
  font-size: clamp(2.4rem, 4.2vw, 4.2rem);
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.artist-copy > p:not(.eyebrow):not(.signature) {
  max-width: 580px;
  margin: 0;
  color: #35443a;
  line-height: 1.75;
}

.artist-copy .signature {
  margin: 28px 0 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.7rem;
  font-style: italic;
}

.inquiry-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 9vw, 140px);
  padding: 96px max(24px, calc((100vw - 1100px) / 2));
  background: var(--cream);
}

.inquiry-intro {
  align-self: start;
  position: sticky;
  top: 40px;
}

.inquiry-intro > p:not(.eyebrow) {
  margin: 28px 0;
  color: #615d56;
  line-height: 1.75;
}

.contact-note {
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid var(--landing-line);
}

.contact-note span {
  display: block;
  margin-bottom: 5px;
  color: #777169;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.contact-note a {
  font-size: 0.88rem;
}

.order-steps {
  display: grid;
  gap: 46px;
}

.order-step {
  padding-top: 24px;
  border-top: 1px solid var(--landing-line);
}

.step-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 30px;
}

.step-heading > span {
  margin-top: 4px;
  padding: 6px 9px;
  background: var(--charcoal);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step-heading h3 {
  margin: 0 0 5px;
  font-size: 1.55rem;
}

.step-heading p {
  margin: 0;
  color: #777169;
  font-size: 0.78rem;
}

.intake-form {
  display: grid;
  gap: 24px;
}

.intake-form label,
.intake-form legend {
  color: #4c4944;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.intake-form input,
.intake-form select,
.intake-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  border: 0;
  border-bottom: 1px solid #8c857c;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--charcoal);
  padding: 10px 3px 12px;
  font: inherit;
}

.intake-form input:focus,
.intake-form select:focus,
.intake-form textarea:focus {
  border-color: var(--rust);
  box-shadow: 0 1px 0 var(--rust);
}

.intake-form textarea {
  min-height: 105px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.intake-form fieldset {
  margin: 4px 0 0;
  padding: 0;
  border: 0;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.choice-grid label {
  position: relative;
  cursor: pointer;
}

.choice-grid input {
  position: absolute;
  opacity: 0;
}

.choice-grid span {
  display: flex;
  min-height: 76px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #aaa299;
  padding: 12px;
  color: var(--charcoal);
  font-size: 0.78rem;
  text-align: center;
}

.choice-grid small {
  margin-top: 4px;
  color: #7a756e;
  font-size: 0.62rem;
  font-weight: 400;
}

.choice-grid input:checked + span,
.choice-grid input:focus-visible + span {
  border-color: var(--rust);
  background: var(--rust);
  color: #fff;
}

.choice-grid input:checked + span small,
.choice-grid input:focus-visible + span small {
  color: #f5ded5;
}

.form-submit {
  justify-self: start;
  margin-top: 4px;
  cursor: pointer;
}

.form-hint {
  margin: -12px 0 0;
  color: #777169;
  font-size: 0.7rem;
}

.deposit-step {
  padding-bottom: 6px;
}

.deposit-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--landing-line);
  border-bottom: 1px solid var(--landing-line);
}

.deposit-summary span,
.deposit-summary small {
  display: block;
}

.deposit-summary span {
  font-size: 0.84rem;
  font-weight: 600;
}

.deposit-summary small {
  margin-top: 3px;
  color: #777169;
  font-size: 0.68rem;
}

.deposit-summary strong {
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
}

.paypal-status {
  min-height: 20px;
  margin: 0 0 10px;
  color: #777169;
  font-size: 0.72rem;
  text-align: center;
}

.paypal-status:empty {
  display: none;
}

#paypal-deposit-button {
  min-height: 45px;
}

.landing-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
  padding: 96px max(24px, calc((100vw - 1200px) / 2)) 38px;
  background: var(--charcoal);
  color: #fff;
}

.footer-about-image {
  height: clamp(430px, 48vw, 610px);
  overflow: hidden;
  background: #fff;
}

.footer-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.footer-about-copy h2 {
  margin: 0 0 28px;
  color: #fff;
  font-size: clamp(2.8rem, 4.8vw, 4.8rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.footer-about-copy > p:not(.eyebrow):not(.about-signature) {
  margin: 0 0 18px;
  color: #c4c0b9;
  line-height: 1.76;
}

.footer-about-copy .about-signature {
  margin: 28px 0 0;
  color: #d8896e;
  font-family: "DM Serif Display", Georgia, serif;
  font-size: 1.7rem;
  font-style: italic;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  align-items: end;
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-wordmark {
  color: #fff;
}

.footer-bottom > a:not(.wordmark) {
  color: #aaa8a1;
  font-size: 0.72rem;
  text-underline-offset: 4px;
}

.copyright {
  margin: 0;
  color: #77756f;
  font-size: 0.66rem;
}

@media (max-width: 900px) {
  .landing-footer {
    grid-template-columns: 1fr;
  }

  .landing-hero {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

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

  .hero-art {
    min-height: 600px;
  }

  .section-heading,
  .inquiry-section {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 28px;
  }

  .instagram-callout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .portrait-image {
    height: 58vw;
  }

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

  .process-grid li:nth-child(n + 2) {
    border-top: 1px solid var(--landing-line);
  }

  .process-grid li,
  .process-grid li + li {
    min-height: auto;
    padding: 28px 0;
    border-right: 0;
  }

  .process-grid h3 {
    margin-top: 34px;
  }

  .inquiry-intro {
    position: static;
  }

}

@media (max-width: 680px) {
  .landing-header {
    width: min(100% - 32px, 1320px);
    min-height: 78px;
  }

  .landing-nav > a:not(.nav-cta) {
    display: none;
  }

  .landing-nav .nav-cta {
    padding: 10px 12px;
    font-size: 0.72rem;
  }

  .wordmark span {
    font-size: 1.35rem;
  }

  .landing-hero {
    width: min(100% - 32px, 1320px);
    min-height: auto;
    padding: 48px 0 62px;
  }

  .hero-copy h1 {
    font-size: clamp(3.5rem, 17vw, 5rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-notes {
    flex-wrap: wrap;
    gap: 8px 0;
    margin-top: 38px;
  }

  .hero-art {
    min-height: 440px;
  }

  .intro-strip {
    min-height: 180px;
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }

  .intro-strip > span {
    padding: 0;
    border: 0;
  }

  .portrait-section,
  .process-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .instagram-callout {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .instagram-callout-link {
    width: 100%;
    min-width: 0;
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .instagram-callout-link > span:nth-child(2) {
    overflow-wrap: anywhere;
  }

  .portrait-grid,
  .people-feature,
  .artist-section {
    grid-template-columns: 1fr;
  }

  .portrait-grid {
    gap: 70px;
  }

  .portrait-image {
    height: 115vw;
    max-height: 620px;
  }

  .portrait-title-row {
    align-items: flex-start;
  }

  .people-image,
  .artist-portrait {
    min-height: 490px;
  }

  .people-copy,
  .artist-copy {
    padding: 72px 24px;
  }

  .footer-about-image {
    height: 110vw;
    max-height: 560px;
  }

  .landing-footer {
    gap: 48px;
    padding-top: 72px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

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

  .process-grid li,
  .process-grid li + li {
    min-height: auto;
    padding: 25px 0 30px;
    border-right: 0;
    border-top: 1px solid var(--landing-line);
  }

  .process-grid li:first-child {
    border-top: 0;
  }

  .process-grid h3 {
    margin-top: 36px;
  }

  .inquiry-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

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

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .landing-page *,
  .landing-page *::before,
  .landing-page *::after {
    transition-duration: 0.01ms !important;
  }
}

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

a {
  color: inherit;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  left: 16px;
  top: 16px;
  z-index: 20;
  background: #fff;
  padding: 8px 12px;
}

.site-header {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 20px 0;
  text-align: center;
}

.brand p {
  margin: 0;
  color: var(--brand);
  font-size: clamp(2.6rem, 7vw, 3.7rem);
  font-weight: 500;
  line-height: 1.05;
}

.brand h1 {
  margin: 2px 0 24px;
  color: var(--brand);
  font-size: clamp(1.9rem, 5vw, 2.5rem);
  font-weight: 400;
  line-height: 1.08;
}

.top-gallery {
  position: relative;
  max-width: 700px;
  height: 300px;
  margin: 0 auto 28px;
  background: #fff;
  overflow: hidden;
}

.top-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 500ms ease;
}

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

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

.top-slide figcaption,
.gallery-count {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  min-width: 76px;
  margin: 0;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.88);
  color: #333;
  font-size: 0.95rem;
}

.gallery-count {
  left: auto;
  right: 18px;
  transform: none;
  min-width: 0;
}

.gallery-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 38px;
  height: 58px;
  transform: translateY(-50%);
  border: 0;
  background: rgba(255, 255, 255, 0.72);
  color: #333;
  font-size: 2rem;
  cursor: pointer;
}

.gallery-button:hover {
  background: #fff;
}

[data-gallery-prev] {
  left: 0;
}

[data-gallery-next] {
  right: 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 42px;
  margin: 0 auto 12px;
  border: 1px solid var(--line);
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 44px;
}

.site-nav a,
.nav-group > a {
  display: block;
  padding: 12px 19px;
  color: #1a1a1a;
  font-size: 0.96rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.nav-group:hover > a {
  color: var(--brand);
}

.nav-group {
  position: relative;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 8;
  display: none;
  min-width: 190px;
  transform: translateX(-50%);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.nav-group:hover .submenu,
.nav-group:focus-within .submenu {
  display: block;
}

.submenu a {
  padding: 10px 14px;
  white-space: nowrap;
}

main {
  max-width: 980px;
  margin: 0 auto;
}

.services-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 64px 20px 26px;
}

.services-home article {
  text-align: center;
}

.services-home img {
  width: 100%;
  aspect-ratio: 286 / 335;
  object-fit: cover;
}

.services-home h2 {
  margin: 20px 0 8px;
  color: var(--brand);
  font-size: 1.28rem;
  font-weight: 400;
  text-decoration: underline;
}

.services-home p {
  margin: 0 auto;
  max-width: 230px;
  color: #57534e;
  font-size: 0.86rem;
}

.home-order {
  padding: 30px 20px 56px;
  text-align: center;
}

.home-order h2 {
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 2.3rem;
  font-weight: 400;
}

.wix-button {
  display: inline-flex;
  min-width: 124px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
}

.wix-button:hover,
.wix-button:focus-visible {
  background: var(--brand-dark);
}

.button-secondary {
  background: transparent;
  color: var(--brand);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--wash);
}

.hello-band {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 38px;
  align-items: center;
  padding: 26px 20px 60px;
}

.hello-band h2,
.page-title {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: clamp(2.2rem, 5vw, 3.35rem);
  font-weight: 400;
  line-height: 1.05;
}

.lead {
  color: var(--brand);
  font-size: 1.2rem;
}

.text-link {
  color: var(--brand);
  text-decoration: underline;
}

.page-hero {
  padding: 62px 20px 32px;
  text-align: center;
}

.page-hero p {
  max-width: 720px;
  margin: 0 auto 14px;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
  padding: 24px 20px 64px;
}

.split-section img {
  width: 100%;
  background: #fff;
}

.copy h2,
.copy h3 {
  margin: 0 0 14px;
  color: var(--brand);
  font-weight: 400;
}

.copy h2 {
  font-size: 2.2rem;
}

.copy p {
  color: var(--muted);
}

.price-list {
  margin: 24px 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
}

.price-list strong {
  color: var(--brand);
  font-weight: 500;
}

.custom-list {
  display: grid;
  gap: 26px;
  padding: 14px 20px 68px;
}

.custom-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  align-items: center;
}

.custom-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.custom-card h2 {
  margin: 0 0 10px;
  color: var(--brand);
  font-weight: 400;
}

.custom-card p {
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 0 20px 72px;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #fff;
  cursor: pointer;
}

.order-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  padding: 28px 20px 74px;
}

.order-form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 24px;
}

.paypal-panel {
  margin: 22px 0 6px;
  max-width: 340px;
}

.paypal-status {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfc4b8;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 10px 11px;
}

textarea {
  resize: vertical;
}

.testimonial-list {
  display: grid;
  gap: 30px;
  padding: 8px 20px 72px;
}

.testimonial {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 28px;
  align-items: center;
}

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

blockquote {
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.site-footer {
  max-width: 980px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 28px 20px 46px;
  color: var(--muted);
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 14px;
}

.social-links img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.78);
  padding: 24px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-height: 88vh;
  max-width: 92vw;
  background: #fff;
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 0;
  background: #fff;
  color: #111;
  padding: 8px 12px;
  font: inherit;
  cursor: pointer;
}

@media (max-width: 760px) {
  .site-header {
    padding-top: 20px;
  }

  .top-gallery {
    height: 260px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    display: none;
    border-top: 1px solid var(--line);
    border-bottom: 0;
  }

  .site-nav.is-open {
    display: grid;
  }

  .nav-group {
    position: static;
  }

  .submenu {
    position: static;
    display: grid;
    transform: none;
    border: 0;
    box-shadow: none;
    background: var(--wash);
  }

  .services-home,
  .hello-band,
  .split-section,
  .custom-card,
  .order-panel,
  .testimonial {
    grid-template-columns: 1fr;
  }

  .services-home {
    gap: 36px;
  }

  .custom-card img {
    max-width: 420px;
    margin: 0 auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .brand p {
    font-size: 2.25rem;
  }

  .brand h1 {
    font-size: 1.55rem;
  }

  .top-gallery {
    height: 220px;
  }

  .services-home,
  .page-hero,
  .custom-list,
  .gallery-grid,
  .split-section,
  .order-panel,
  .testimonial-list,
  .hello-band {
    padding-left: 16px;
    padding-right: 16px;
  }
}
