:root {
  --ink: #282326;
  --ink-soft: #5d5357;
  --paper: #fffaf8;
  --cream: #f7efeb;
  --blush: #e7b7bb;
  --blush-light: #f4e2e3;
  --rose: #ad5965;
  --rose-dark: #783d47;
  --white: #ffffff;
  --line: rgba(40, 35, 38, 0.14);
  --shadow: 0 24px 70px rgba(74, 45, 51, 0.14);
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.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;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  background: var(--ink);
  color: var(--white);
  border-radius: 4px;
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.scrolled {
  background: rgba(255, 250, 248, 0.94);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(40, 35, 38, 0.05);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  color: var(--rose-dark);
  background: var(--blush-light);
  border-radius: 50% 50% 45% 55% / 52% 42% 58% 48%;
}

.brand-mark svg {
  width: 32px;
  fill: currentColor;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav > a:not(.button) {
  position: relative;
  font-size: 14px;
  font-weight: 600;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--rose);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  background: transparent;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid var(--rose-dark);
  background: var(--rose-dark);
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 9px 0 rgba(120, 61, 71, 0.14);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: #67333c;
  box-shadow: 0 5px 0 rgba(120, 61, 71, 0.1);
  transform: translateY(2px);
}

.button:active {
  transform: translateY(5px);
  box-shadow: 0 2px 0 rgba(120, 61, 71, 0.1);
}

.button-small {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 13px;
  box-shadow: none;
}

.button-ghost {
  border-color: var(--ink);
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.button-dark {
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: none;
}

.button-dark:hover,
.button-dark:focus-visible {
  background: #100e0f;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--rose-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 30px;
  height: 2px;
  background: currentColor;
}

.eyebrow.light {
  color: var(--blush);
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 170px 0 100px;
  overflow: hidden;
  background: var(--paper);
}

.hero::before {
  position: absolute;
  top: -24%;
  right: -18%;
  width: 66vw;
  height: 920px;
  border-radius: 47% 53% 55% 45% / 42% 46% 54% 58%;
  background: var(--blush-light);
  content: "";
  transform: rotate(-7deg);
}

.hero-texture {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  pointer-events: none;
  background-image: radial-gradient(rgba(40, 35, 38, 0.11) 0.6px, transparent 0.6px);
  background-size: 7px 7px;
  mask-image: linear-gradient(to right, black, transparent 42%, black);
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 7vw;
}

.hero-copy h1 {
  max-width: 700px;
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(52px, 6.1vw, 88px);
  font-weight: 500;
  letter-spacing: -0.055em;
}

.hero-copy h1 em {
  position: relative;
  color: var(--rose-dark);
  font-weight: 500;
}

.hero-copy h1 em::after {
  position: absolute;
  right: -4px;
  bottom: 2px;
  left: -3px;
  height: 11px;
  background: var(--blush);
  content: "";
  opacity: 0.55;
  transform: rotate(-2deg);
  z-index: -1;
}

.hero-lede {
  max-width: 625px;
  margin-bottom: 35px;
  color: var(--ink-soft);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-proof {
  display: flex;
  margin-top: 54px;
}

.hero-proof div {
  display: flex;
  flex-direction: column;
  padding: 0 24px;
  border-left: 1px solid var(--line);
}

.hero-proof div:first-child {
  padding-left: 0;
  border: 0;
}

.hero-proof strong {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}

.hero-proof span {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 11px;
}

.hero-art {
  position: relative;
  min-height: 500px;
}

.paint-panel {
  position: absolute;
  inset: 0 20px 22px 0;
  overflow: hidden;
  border: 10px solid rgba(255, 255, 255, 0.7);
  background: #d8bdba;
  box-shadow: var(--shadow);
  transform: rotate(2.3deg);
}

.paint-panel::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.15), transparent 60%);
  content: "";
}

.paint-panel-copy {
  position: absolute;
  z-index: 2;
  top: 14%;
  left: 11%;
  display: flex;
  flex-direction: column;
  color: #55383d;
}

.paint-panel-copy span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.paint-panel-copy strong {
  max-width: 300px;
  margin-top: 7px;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  line-height: 1;
}

.paint-swipe {
  position: absolute;
  right: -10%;
  height: 118px;
  border-radius: 50% 4% 4% 50%;
  background: rgba(255, 244, 241, 0.66);
  filter: blur(0.2px);
}

.paint-swipe::before,
.paint-swipe::after {
  position: absolute;
  right: 5%;
  left: 10%;
  height: 17px;
  border-radius: 50%;
  background: rgba(255, 244, 241, 0.36);
  content: "";
}

.paint-swipe::before {
  top: -9px;
}

.paint-swipe::after {
  bottom: -8px;
}

.paint-swipe-one {
  top: 51%;
  width: 78%;
  transform: rotate(-5deg);
}

.paint-swipe-two {
  top: 69%;
  width: 62%;
  height: 78px;
  opacity: 0.7;
  transform: rotate(7deg);
}

.trim-line {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 44px;
  border-top: 7px solid rgba(255, 255, 255, 0.9);
  background: #6d5054;
}

.sample-card {
  position: absolute;
  z-index: 4;
  right: -14px;
  bottom: 0;
  display: flex;
  width: 270px;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(40, 35, 38, 0.18);
  transform: rotate(-4.5deg);
}

.sample-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.5;
}

.sample-card strong {
  display: block;
  color: var(--ink);
}

.sample-dot {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 5px solid var(--cream);
  border-radius: 50%;
  background: var(--rose);
}

.hero-stamp {
  position: absolute;
  z-index: 5;
  top: -25px;
  right: -22px;
  display: grid;
  width: 86px;
  height: 86px;
  place-content: center;
  border: 1px solid var(--rose-dark);
  border-radius: 50%;
  background: var(--paper);
  color: var(--rose-dark);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 0.9;
  text-align: center;
  transform: rotate(8deg);
}

.hero-stamp span {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.intro-band {
  overflow: hidden;
  background: var(--rose-dark);
  color: var(--white);
}

.intro-band-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.intro-band p {
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
}

.intro-band span {
  color: var(--blush);
  font-size: 11px;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 10vw;
}

.section-heading h2,
.contact-info h2 {
  margin-bottom: 28px;
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.about-copy {
  padding-top: 52px;
  color: var(--ink-soft);
}

.about-copy .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.45;
}

.registration-note {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  padding: 23px;
  border-left: 3px solid var(--rose);
  background: var(--cream);
}

.registration-note > span {
  display: grid;
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 50%;
  background: var(--rose-dark);
  color: var(--white);
  font-size: 13px;
}

.registration-note p {
  margin: 0;
  font-size: 13px;
}

.services {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.services::before {
  position: absolute;
  top: -170px;
  right: -110px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(231, 183, 187, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 56px rgba(231, 183, 187, 0.03), 0 0 0 112px rgba(231, 183, 187, 0.02);
  content: "";
}

.services-top {
  position: relative;
  display: grid;
  align-items: end;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 9vw;
  margin-bottom: 70px;
}

.services-top h2 {
  margin-bottom: 0;
}

.section-intro {
  color: var(--ink-soft);
  font-size: 17px;
}

.services .section-intro {
  color: #cbbfc2;
}

.service-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.service-card {
  position: relative;
  min-height: 315px;
  padding: 38px 34px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 220ms ease, transform 220ms ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.045);
}

.service-card-featured {
  background: var(--rose-dark);
}

.service-card-featured:hover {
  background: #874851;
}

.service-number {
  position: absolute;
  top: 21px;
  right: 23px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  letter-spacing: 0.15em;
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 45px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--blush);
  font-size: 23px;
}

.service-card h3 {
  margin-bottom: 15px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
}

.service-card p {
  margin-bottom: 0;
  color: #cbbfc2;
  font-size: 14px;
}

.service-card-featured p {
  color: #f2dfe1;
}

.service-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 46px;
  padding: 40px 44px;
  background: var(--blush);
  color: var(--ink);
}

.service-cta .eyebrow {
  margin-bottom: 12px;
}

.service-cta h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 500;
}

.why-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 9vw;
}

.why-visual {
  position: relative;
  min-height: 650px;
}

.why-shape-main {
  position: absolute;
  inset: 0 35px 45px 0;
  display: flex;
  align-items: flex-end;
  padding: 55px;
  border-radius: 49% 51% 47% 53% / 43% 42% 58% 57%;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.05), transparent),
    repeating-linear-gradient(88deg, transparent 0 11px, rgba(255, 255, 255, 0.025) 11px 13px),
    var(--rose-dark);
  color: var(--white);
  transform: rotate(-2deg);
}

.why-shape-main::before {
  position: absolute;
  top: 15%;
  right: 15%;
  width: 52%;
  height: 17%;
  border-radius: 60% 25% 45% 50%;
  background: rgba(231, 183, 187, 0.45);
  content: "";
  transform: rotate(8deg);
}

.why-shape-main::after {
  position: absolute;
  top: 30%;
  right: 4%;
  width: 69%;
  height: 13%;
  border-radius: 50%;
  background: rgba(255, 250, 248, 0.11);
  content: "";
  transform: rotate(-8deg);
}

.why-shape-main p {
  position: relative;
  z-index: 2;
  max-width: 340px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(31px, 4vw, 46px);
  line-height: 1.13;
}

.why-shape-small {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  width: 190px;
  height: 190px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 8px solid var(--paper);
  border-radius: 50%;
  background: var(--blush);
  color: var(--rose-dark);
  transform: rotate(5deg);
}

.why-shape-small span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.why-shape-small strong {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.1;
}

.benefit-list {
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 18px;
  padding: 25px 0;
  border-top: 1px solid var(--line);
}

.benefit-list li > span {
  color: var(--rose);
  font-size: 11px;
  font-weight: 700;
}

.benefit-list h3 {
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
}

.benefit-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.contact-section {
  background: var(--rose-dark);
  color: var(--white);
}

.contact-grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 7vw;
}

.contact-info {
  position: sticky;
  top: 130px;
  padding-top: 25px;
}

.contact-info > p:not(.eyebrow):not(.service-area) {
  max-width: 530px;
  color: #eadadc;
  font-size: 17px;
}

.contact-methods {
  margin: 47px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-methods > a,
.contact-methods > div {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 21px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-methods > a {
  transition: padding-left 180ms ease, color 180ms ease;
}

.contact-methods > a:hover,
.contact-methods > a:focus-visible {
  padding-left: 8px;
  color: var(--blush);
}

.contact-icon {
  display: grid;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  color: var(--blush);
}

.contact-methods span:not(.contact-icon) {
  display: flex;
  flex-direction: column;
}

.contact-methods small {
  margin-bottom: 2px;
  color: var(--blush);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.contact-methods strong {
  overflow-wrap: anywhere;
  font-size: 15px;
}

.service-area {
  color: #d9c8ca;
  font-size: 12px;
}

.form-card {
  min-height: 730px;
  padding: clamp(30px, 5vw, 58px);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 28px 70px rgba(31, 15, 18, 0.3);
}

.form-heading > span {
  color: var(--rose-dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.form-heading h2,
.success-state h2 {
  margin: 10px 0 8px;
  font-family: var(--serif);
  font-size: clamp(31px, 4vw, 43px);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.form-heading p {
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: 12px;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

form label {
  display: block;
  margin-bottom: 18px;
}

form label > span {
  display: block;
  margin-bottom: 7px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d8cbca;
  border-radius: 0;
  outline: 0;
  background: var(--white);
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

input,
select {
  height: 51px;
  padding: 0 14px;
}

textarea {
  min-height: 130px;
  padding: 13px 14px;
  resize: vertical;
}

textarea::placeholder {
  color: #a79a9d;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--rose);
  background: #fffdfc;
  box-shadow: 0 0 0 3px rgba(173, 89, 101, 0.13);
}

input:user-invalid,
textarea:user-invalid {
  border-color: #a23e46;
}

.form-submit {
  width: 100%;
  justify-content: space-between;
  margin-top: 3px;
}

.form-submit[disabled] {
  cursor: wait;
  opacity: 0.7;
}

.form-note {
  margin: 17px 0 0;
  color: var(--ink-soft);
  font-size: 11px;
  text-align: center;
}

.form-status {
  min-height: 0;
  margin-bottom: 0;
  color: #9b323e;
  font-size: 13px;
}

.form-status:not(:empty) {
  min-height: auto;
  margin-bottom: 14px;
  padding: 10px 12px;
  border-left: 3px solid currentColor;
  background: #f9e9e9;
}

.success-state {
  min-height: 600px;
  align-content: center;
  text-align: center;
}

.success-state:not([hidden]) {
  display: grid;
}

.success-check {
  display: grid;
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--blush-light);
  color: var(--rose-dark);
  font-family: var(--serif);
  font-size: 30px;
}

.success-state .eyebrow {
  justify-content: center;
  margin-bottom: 5px;
}

.success-state > p:not(.eyebrow) {
  max-width: 470px;
  margin: 15px auto 25px;
  color: var(--ink-soft);
}

.text-button {
  justify-self: center;
  padding: 5px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--rose-dark);
  font-weight: 700;
  cursor: pointer;
}

.site-footer {
  padding: 80px 0 30px;
  background: #201c1e;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.6fr 1fr;
  gap: 8vw;
  padding-bottom: 60px;
}

.footer-brand {
  margin-bottom: 22px;
}

.footer-brand .brand-copy strong {
  font-size: 28px;
}

.footer-brand .brand-copy small {
  color: var(--blush);
}

.footer-grid > div:first-child p {
  max-width: 410px;
  color: #bdb2b5;
  font-size: 13px;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  font-size: 13px;
}

.footer-links > strong,
.footer-contact > strong {
  margin-bottom: 8px;
  color: var(--blush);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a {
  color: #d8ced0;
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-contact address {
  margin-top: 7px;
  color: #9f9497;
  font-style: normal;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8d8386;
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.mobile-call {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.65, 0.3, 1);
}

.reveal-delay {
  transition-delay: 130ms;
}

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

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .section {
    padding: 90px 0;
  }

  .menu-toggle {
    display: block;
    z-index: 3;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 80px 12vw;
    background: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-15px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-nav > a:not(.button) {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 500;
  }

  .hero {
    padding-top: 145px;
  }

  .hero-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    width: min(650px, 100%);
    margin: 20px auto 0;
  }

  .hero::before {
    top: 39%;
    right: -28%;
    width: 100vw;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-copy {
    padding-top: 0;
  }

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

  .why-visual {
    min-height: 590px;
  }

  .contact-info {
    position: static;
    padding: 0;
  }

  .contact-grid {
    gap: 65px;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 65px;
  }

  .shell {
    width: min(100% - 30px, 620px);
  }

  .section {
    padding: 75px 0;
  }

  .nav-wrap {
    min-height: 74px;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
  }

  .brand-copy strong {
    font-size: 17px;
  }

  .brand-copy small {
    font-size: 8px;
  }

  .hero {
    min-height: auto;
    padding: 125px 0 75px;
  }

  .hero-copy h1 {
    font-size: clamp(46px, 14vw, 66px);
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 42px;
  }

  .hero-proof div {
    padding: 0 10px;
  }

  .hero-proof strong {
    font-size: 15px;
  }

  .hero-proof span {
    font-size: 9px;
  }

  .hero-art {
    min-height: 390px;
    margin-top: 30px;
  }

  .paint-panel {
    right: 8px;
    border-width: 7px;
  }

  .paint-panel-copy strong {
    font-size: 36px;
  }

  .sample-card {
    right: -4px;
    width: 235px;
    padding: 14px;
  }

  .hero-stamp {
    top: -20px;
    right: -6px;
    width: 70px;
    height: 70px;
  }

  .intro-band-inner {
    width: max-content;
    min-height: 65px;
    padding: 0 20px;
    animation: marquee 18s linear infinite;
  }

  .intro-band p {
    font-size: 15px;
  }

  @keyframes marquee {
    to { transform: translateX(-30%); }
  }

  .section-heading h2,
  .contact-info h2 {
    font-size: 42px;
  }

  .about-copy .lead {
    font-size: 21px;
  }

  .services-top {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 45px;
  }

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

  .service-card {
    min-height: auto;
  }

  .service-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 30px 24px;
  }

  .service-cta .button {
    width: 100%;
  }

  .why-grid {
    gap: 60px;
  }

  .why-visual {
    min-height: 470px;
  }

  .why-shape-main {
    right: 15px;
    padding: 35px;
  }

  .why-shape-small {
    width: 140px;
    height: 140px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-card {
    min-height: auto;
    margin-inline: -5px;
    padding: 33px 22px;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-call {
    position: fixed;
    z-index: 60;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    background: var(--rose-dark);
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 -8px 30px rgba(40, 35, 38, 0.18);
  }
}
