:root {
  --ink: #17130f;
  --ink-soft: #312a23;
  --paper: #f5efe5;
  --paper-light: #fffaf2;
  --sand: #d7c7ae;
  --terracotta: #b95f3f;
  --ochre: #dba63b;
  --sage: #697b68;
  --blue: #4a6574;
  --line: rgba(23, 19, 15, 0.14);
  --shadow: 0 28px 80px rgba(39, 28, 19, 0.16);
  --radius: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 12px 16px;
  color: white;
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

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

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--terracotta);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
.brand-name,
.footer-name {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 780px;
  margin-bottom: 26px;
  font-size: clamp(3.5rem, 8vw, 7.3rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.65rem;
  line-height: 1.1;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 56px;
}

.section-heading-center {
  margin-inline: auto;
  text-align: center;
}

.section-heading > p:last-child {
  max-width: 640px;
  color: #665b50;
  font-size: 1.08rem;
}

.section-heading-center > p:last-child {
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  background: rgba(245, 239, 229, 0.92);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(34, 25, 17, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  z-index: 1002;
}

.brand-name {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.brand-tagline {
  color: #75695d;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.main-nav a {
  position: relative;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

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

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.7);
  cursor: pointer;
  position: relative;
  z-index: 1002;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  padding: 150px 0 95px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 24%, rgba(219, 166, 59, 0.18), transparent 28%),
    radial-gradient(circle at 90% 78%, rgba(74, 101, 116, 0.14), transparent 25%),
    linear-gradient(135deg, #f9f1e6 0%, #f0e6d8 50%, #f8f2e9 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(31, 23, 17, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 23, 17, 0.04) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.74fr);
  align-items: center;
  gap: 60px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 660px;
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.hero-location {
  max-width: 580px;
  margin-bottom: 34px;
  color: #786b60;
  font-size: 0.98rem;
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 12px 30px rgba(23, 19, 15, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 18px 36px rgba(23, 19, 15, 0.26);
}

.button-secondary {
  border-color: rgba(23, 19, 15, 0.22);
  background: rgba(255, 250, 242, 0.55);
}

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

.button-dark {
  color: white;
  background: var(--ink);
}

.button-light {
  color: var(--ink);
  background: var(--paper-light);
}

.hero-canvas {
  position: relative;
  min-height: 560px;
}

.canvas-frame {
  width: min(100%, 470px);
  aspect-ratio: 0.74;
  position: absolute;
  top: 50%;
  left: 50%;
  border: 12px solid rgba(255, 250, 242, 0.68);
  background: #d7b170;
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%) rotate(3deg);
  overflow: hidden;
}

.canvas-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,.5) 0 1px, transparent 1px 5px);
}

.canvas-shape,
.canvas-brush {
  position: absolute;
}

.shape-a {
  width: 88%;
  height: 36%;
  top: 4%;
  left: -18%;
  border-radius: 45% 55% 58% 42% / 48% 40% 60% 52%;
  background: var(--terracotta);
  transform: rotate(-17deg);
}

.shape-b {
  width: 75%;
  height: 58%;
  right: -22%;
  bottom: 7%;
  border-radius: 50% 32% 47% 54% / 42% 58% 43% 57%;
  background: var(--blue);
  transform: rotate(12deg);
}

.shape-c {
  width: 42%;
  aspect-ratio: 1;
  left: 12%;
  bottom: 13%;
  border: 22px solid rgba(245, 239, 229, 0.82);
  border-radius: 50%;
}

.brush-a {
  width: 130%;
  height: 16%;
  top: 48%;
  left: -20%;
  background: var(--ink);
  clip-path: polygon(2% 20%, 100% 0, 94% 80%, 0 100%);
  transform: rotate(-8deg);
}

.brush-b {
  width: 52%;
  height: 8%;
  top: 18%;
  right: -7%;
  background: var(--paper-light);
  clip-path: polygon(0 25%, 100% 0, 95% 85%, 5% 100%);
  transform: rotate(18deg);
}

.canvas-caption {
  position: absolute;
  left: 9%;
  bottom: 8%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  color: white;
  line-height: 1;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}

.canvas-caption span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.canvas-caption strong {
  margin: 5px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.8rem;
  font-weight: 500;
  letter-spacing: -0.06em;
}

.hero-art .paint,
.hero-art .line {
  position: absolute;
  z-index: -1;
}

.paint-one {
  width: 260px;
  height: 130px;
  top: 17%;
  left: -70px;
  border-radius: 50%;
  background: rgba(185, 95, 63, 0.14);
  transform: rotate(28deg);
  filter: blur(2px);
}

.paint-two {
  width: 290px;
  height: 190px;
  right: 7%;
  bottom: -80px;
  border-radius: 55% 45% 35% 65%;
  background: rgba(105, 123, 104, 0.14);
  transform: rotate(-24deg);
}

.paint-three {
  width: 190px;
  aspect-ratio: 1;
  top: 23%;
  right: 34%;
  border: 38px solid rgba(219, 166, 59, 0.11);
  border-radius: 50%;
}

.line-one {
  width: 340px;
  height: 3px;
  top: 22%;
  right: -90px;
  background: rgba(23, 19, 15, 0.22);
  transform: rotate(-18deg);
}

.line-two {
  width: 240px;
  height: 2px;
  bottom: 18%;
  left: 17%;
  background: rgba(23, 19, 15, 0.18);
  transform: rotate(25deg);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 25px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #7a6e61;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(23, 19, 15, 0.22);
  border-radius: 50%;
  position: relative;
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transform: translateX(-50%) rotate(45deg);
  animation: cue 1.6s infinite;
}

@keyframes cue {
  0%, 100% { transform: translate(-50%, 0) rotate(45deg); opacity: .5; }
  50% { transform: translate(-50%, 6px) rotate(45deg); opacity: 1; }
}

.intro {
  background: var(--paper-light);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: end;
}

.intro-grid .section-heading {
  margin-bottom: 0;
}

.intro-copy {
  border-left: 1px solid var(--line);
  padding-left: 42px;
}

.intro-copy p {
  max-width: 660px;
  color: #5f554b;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.services {
  background: #ebe1d2;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.service-card {
  grid-column: span 4;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 30px;
  border: 1px solid rgba(23, 19, 15, 0.12);
  border-radius: 22px;
  background: rgba(255, 250, 242, 0.58);
  overflow: hidden;
  transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 6;
}

.service-card:hover {
  transform: translateY(-8px);
  background: var(--paper-light);
  box-shadow: 0 22px 50px rgba(46, 35, 24, 0.11);
}

.service-card-featured {
  color: white;
  background: var(--ink);
}

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

.service-number {
  align-self: flex-end;
  color: #8c7f71;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-card-featured .service-number {
  color: rgba(255,255,255,.55);
}

.service-mark {
  width: 98px;
  height: 98px;
  position: relative;
  margin: 18px 0 35px;
}

.mark-custom::before,
.mark-custom::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.mark-custom::before {
  width: 72px;
  height: 72px;
  top: 8px;
  left: 0;
  background: var(--ochre);
}

.mark-custom::after {
  width: 58px;
  height: 58px;
  right: 0;
  bottom: 0;
  border: 9px solid var(--terracotta);
}

.mark-copy::before,
.mark-copy::after {
  content: "";
  position: absolute;
  width: 64px;
  height: 80px;
  border: 3px solid var(--blue);
}

.mark-copy::before {
  top: 0;
  left: 0;
}

.mark-copy::after {
  right: 0;
  bottom: 0;
  background: rgba(74, 101, 116, 0.12);
}

.mark-mural {
  background:
    linear-gradient(30deg, transparent 44%, var(--ochre) 45% 58%, transparent 59%),
    linear-gradient(-25deg, transparent 40%, var(--terracotta) 41% 56%, transparent 57%);
}

.mark-mural::after {
  content: "";
  position: absolute;
  inset: 20px 0;
  border-top: 3px solid rgba(255,255,255,.8);
  border-bottom: 3px solid rgba(255,255,255,.4);
  transform: rotate(-9deg);
}

.mark-restore::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 16px solid var(--sage);
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-28deg);
}

.mark-restore::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 17px;
  border: 10px solid transparent;
  border-left-color: var(--sage);
  transform: rotate(34deg);
}

.mark-decor::before,
.mark-decor::after {
  content: "";
  position: absolute;
}

.mark-decor::before {
  width: 88px;
  height: 52px;
  top: 7px;
  left: 0;
  border-radius: 60% 40% 52% 48%;
  background: var(--terracotta);
  transform: rotate(18deg);
}

.mark-decor::after {
  width: 55px;
  height: 55px;
  right: 0;
  bottom: 0;
  background: var(--ochre);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: rotate(-15deg);
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  margin-bottom: 28px;
  color: #74695d;
}

.service-card-featured p {
  color: rgba(255,255,255,.68);
}

.service-card a {
  width: fit-content;
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 800;
}

.service-card a span {
  margin-left: 5px;
  transition: transform .2s ease;
}

.service-card a:hover span {
  display: inline-block;
  transform: translate(3px, -3px);
}

.mural-feature {
  color: white;
  background: var(--ink);
  overflow: hidden;
}

.mural-backdrop span {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.mural-backdrop span:nth-child(1) {
  width: 420px;
  height: 250px;
  top: -120px;
  left: -90px;
  background: rgba(185, 95, 63, 0.2);
  transform: rotate(20deg);
}

.mural-backdrop span:nth-child(2) {
  width: 500px;
  height: 140px;
  right: -170px;
  bottom: 15%;
  background: rgba(219, 166, 59, 0.12);
  transform: rotate(-28deg);
}

.mural-backdrop span:nth-child(3) {
  width: 300px;
  height: 300px;
  right: 18%;
  top: 20%;
  border: 55px solid rgba(74, 101, 116, 0.17);
  background: transparent;
}

.mural-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 90px;
}

.mural-visual {
  min-height: 530px;
  position: relative;
  isolation: isolate;
}

.mural-panel {
  position: absolute;
  box-shadow: 0 25px 55px rgba(0,0,0,.28);
}

.panel-one {
  width: 58%;
  height: 76%;
  top: 0;
  left: 3%;
  background: var(--terracotta);
  transform: rotate(-4deg);
}

.panel-two {
  width: 57%;
  height: 70%;
  right: 0;
  bottom: 0;
  background: var(--ochre);
  transform: rotate(5deg);
}

.panel-three {
  width: 46%;
  height: 52%;
  top: 23%;
  left: 26%;
  z-index: 2;
  background: var(--blue);
  clip-path: polygon(0 4%, 91% 0, 100% 88%, 9% 100%);
}

.mural-visual::before {
  content: "";
  position: absolute;
  width: 86%;
  height: 13%;
  top: 44%;
  left: 5%;
  z-index: 3;
  background: var(--paper-light);
  clip-path: polygon(0 25%, 100% 0, 92% 83%, 5% 100%);
  transform: rotate(-12deg);
}

.mural-visual p {
  position: absolute;
  right: 2%;
  bottom: 2%;
  z-index: 4;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8vw, 7.5rem);
  line-height: 1;
  letter-spacing: -0.07em;
  mix-blend-mode: screen;
}

.mural-copy p:not(.eyebrow) {
  max-width: 530px;
  color: rgba(255,255,255,.68);
  font-size: 1.08rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding-bottom: 7px;
  border-bottom: 1px solid currentColor;
  font-size: .84rem;
  font-weight: 800;
}

.text-link span {
  transition: transform .2s ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(5px);
}

.custom-work {
  background: var(--paper-light);
}

.custom-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  align-items: center;
}

.custom-copy p:not(.eyebrow) {
  max-width: 510px;
  margin-bottom: 30px;
  color: #685d52;
  font-size: 1.1rem;
}

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

.custom-list li {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 25px;
  border-bottom: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 2.3rem);
}

.custom-list span {
  color: var(--terracotta);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
}

.portfolio {
  background: #ebe1d2;
}

.portfolio-empty {
  min-height: 500px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: 50px;
  padding: 55px;
  border: 1px solid rgba(23,19,15,.13);
  border-radius: var(--radius);
  background: rgba(255,250,242,.5);
}

.empty-art {
  min-height: 350px;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--ink);
}

.empty-art::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 40px 40px;
}

.empty-stroke,
.empty-dot {
  position: absolute;
}

.stroke-one {
  width: 120%;
  height: 22%;
  top: 15%;
  left: -15%;
  background: var(--terracotta);
  clip-path: polygon(0 40%, 100% 0, 94% 80%, 5% 100%);
  transform: rotate(-8deg);
}

.stroke-two {
  width: 90%;
  height: 17%;
  right: -15%;
  bottom: 18%;
  background: var(--ochre);
  clip-path: polygon(0 0, 100% 30%, 94% 100%, 8% 78%);
  transform: rotate(12deg);
}

.stroke-three {
  width: 8%;
  height: 95%;
  top: 3%;
  left: 47%;
  background: var(--paper-light);
  transform: rotate(24deg);
}

.dot-one {
  width: 130px;
  height: 130px;
  left: 12%;
  bottom: 8%;
  border: 22px solid var(--blue);
  border-radius: 50%;
}

.dot-two {
  width: 90px;
  height: 90px;
  top: 8%;
  right: 10%;
  border-radius: 50%;
  background: var(--sage);
}

.empty-label {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid var(--terracotta);
  border-radius: 999px;
  color: var(--terracotta);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.empty-copy h3 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.empty-copy p {
  color: #6d6256;
}

.dual-services {
  background: var(--paper-light);
}

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

.dual-card {
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  isolation: isolate;
  padding: 48px;
  border-radius: var(--radius);
  overflow: hidden;
}

.dual-card::before,
.dual-card::after {
  content: "";
  position: absolute;
  z-index: -1;
}

.restore-card {
  color: white;
  background: var(--blue);
}

.restore-card::before {
  width: 340px;
  height: 340px;
  top: -120px;
  right: -90px;
  border: 54px solid rgba(255,255,255,.12);
  border-radius: 50%;
}

.restore-card::after {
  width: 310px;
  height: 64px;
  top: 100px;
  left: -60px;
  background: rgba(219,166,59,.65);
  transform: rotate(-17deg);
}

.decor-card {
  background: var(--ochre);
}

.decor-card::before {
  width: 330px;
  height: 190px;
  top: -60px;
  right: -90px;
  border-radius: 50%;
  background: rgba(185,95,63,.72);
  transform: rotate(22deg);
}

.decor-card::after {
  width: 180px;
  height: 180px;
  top: 80px;
  left: 50px;
  border: 34px solid rgba(23,19,15,.13);
  border-radius: 50%;
}

.dual-card .eyebrow {
  color: inherit;
  opacity: .72;
}

.dual-card h2 {
  max-width: 520px;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
}

.dual-card p:not(.eyebrow) {
  max-width: 440px;
  margin-bottom: 28px;
  opacity: .72;
}

.dual-card a {
  width: fit-content;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: .83rem;
  font-weight: 800;
}

.coverage {
  background: #e1d4c1;
}

.coverage-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  align-items: center;
  gap: 90px;
}

.coverage-map {
  width: min(100%, 480px);
  aspect-ratio: 1;
  position: relative;
  margin-inline: auto;
}

.map-orbit {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(23,19,15,.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 100%;
  height: 48%;
  transform: translate(-50%, -50%) rotate(10deg);
}

.orbit-two {
  width: 58%;
  height: 100%;
  transform: translate(-50%, -50%) rotate(35deg);
}

.orbit-three {
  width: 78%;
  height: 78%;
  border-style: dashed;
}

.map-center {
  width: 120px;
  height: 120px;
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 0;
  background: var(--terracotta);
  box-shadow: 0 18px 40px rgba(185,95,63,.28);
  transform: translate(-50%, -65%) rotate(-45deg);
}

.map-center span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--paper-light);
}

.coverage-copy p:not(.eyebrow) {
  color: #675c51;
  font-size: 1.08rem;
}

.process {
  background: var(--paper-light);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.process-step {
  min-height: 270px;
  padding: 34px;
  border-top: 2px solid var(--ink);
  background: #f0e7da;
}

.process-step span {
  display: inline-block;
  margin-bottom: 55px;
  color: var(--terracotta);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.process-step h3 {
  margin-bottom: 14px;
}

.process-step p {
  margin-bottom: 0;
  color: #6e6257;
}

.cta {
  min-height: 680px;
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  padding: 110px 0;
  color: white;
  background: var(--terracotta);
  overflow: hidden;
}

.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta .eyebrow {
  color: rgba(255,255,255,.7);
}

.cta h2 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(3rem, 7vw, 6.5rem);
}

.cta p:not(.eyebrow) {
  max-width: 680px;
  margin: 0 auto 30px;
  color: rgba(255,255,255,.78);
  font-size: 1.08rem;
}

.cta-coverage {
  display: block;
  margin-top: 22px;
  color: rgba(255,255,255,.68);
  font-size: .78rem;
}

.cta-ring,
.cta-splash {
  position: absolute;
  z-index: -1;
}

.ring-one {
  width: 500px;
  height: 500px;
  top: -180px;
  left: -140px;
  border: 90px solid rgba(255,255,255,.09);
  border-radius: 50%;
}

.ring-two {
  width: 320px;
  height: 320px;
  right: -40px;
  bottom: -80px;
  border: 50px solid rgba(23,19,15,.1);
  border-radius: 50%;
}

.splash-one {
  width: 580px;
  height: 110px;
  top: 15%;
  right: -130px;
  background: rgba(219,166,59,.5);
  clip-path: polygon(0 25%, 100% 0, 95% 80%, 4% 100%);
  transform: rotate(-15deg);
}

.splash-two {
  width: 440px;
  height: 90px;
  left: -120px;
  bottom: 10%;
  background: rgba(74,101,116,.45);
  clip-path: polygon(0 0, 100% 28%, 92% 100%, 5% 75%);
  transform: rotate(12deg);
}

.site-footer {
  padding: 70px 0 26px;
  color: rgba(255,255,255,.7);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding-bottom: 55px;
}

.footer-name {
  margin-bottom: 12px;
  color: white;
  font-size: 2rem;
}

.footer-grid p {
  max-width: 520px;
  margin-bottom: 0;
}

.footer-contact {
  text-align: right;
}

.footer-contact a {
  display: inline-block;
  margin-bottom: 10px;
  color: white;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.footer-bottom {
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .75rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px;
  color: white;
  background: var(--ink);
  box-shadow: 0 14px 38px rgba(23,19,15,.25);
  font-size: .78rem;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease;
}

.floating-contact:hover,
.floating-contact:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(23,19,15,.32);
}

.floating-contact svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}

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

:focus-visible {
  outline: 3px solid var(--ochre);
  outline-offset: 4px;
}

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

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

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 26px;
    padding: 110px 30px 50px;
    background: rgba(245,239,229,.98);
    transform: translateX(100%);
    transition: transform .3s ease;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav a {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.4rem;
    font-weight: 500;
  }

  .hero {
    min-height: auto;
    padding-top: 145px;
  }

  .hero-grid,
  .intro-grid,
  .mural-grid,
  .custom-grid,
  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 35px;
  }

  .hero-canvas {
    min-height: 500px;
  }

  .canvas-frame {
    width: min(84%, 430px);
  }

  .intro-grid {
    gap: 38px;
  }

  .intro-copy {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 34px 0 0;
  }

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) {
    grid-column: span 6;
  }

  .service-card:last-child {
    grid-column: 4 / span 6;
  }

  .mural-grid,
  .custom-grid,
  .coverage-grid {
    gap: 55px;
  }

  .custom-copy {
    max-width: 700px;
  }

  .portfolio-empty {
    grid-template-columns: 1fr;
  }

  .dual-card {
    min-height: 400px;
    padding: 38px;
  }

  .coverage-map {
    max-width: 420px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .header-inner {
    min-height: 78px;
  }

  .brand-name {
    font-size: 1.08rem;
  }

  .brand-tagline {
    font-size: .54rem;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .main-nav a {
    font-size: 2rem;
  }

  .hero {
    padding: 125px 0 90px;
  }

  h1 {
    font-size: clamp(3.15rem, 16vw, 5.3rem);
  }

  h2 {
    font-size: clamp(2.35rem, 11vw, 3.75rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

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

  .canvas-frame {
    width: min(88%, 365px);
    border-width: 8px;
  }

  .canvas-caption strong {
    font-size: 3.8rem;
  }

  .scroll-cue {
    display: none;
  }

  .service-grid,
  .dual-grid,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5),
  .service-card:last-child {
    grid-column: auto;
  }

  .service-card {
    min-height: 300px;
  }

  .mural-visual {
    min-height: 400px;
  }

  .portfolio-empty {
    padding: 20px;
  }

  .empty-art {
    min-height: 300px;
  }

  .dual-grid {
    gap: 16px;
  }

  .dual-card {
    min-height: 390px;
    padding: 30px;
  }

  .coverage-map {
    max-width: 320px;
  }

  .process-grid {
    gap: 14px;
  }

  .process-step {
    min-height: auto;
  }

  .process-step span {
    margin-bottom: 35px;
  }

  .cta {
    min-height: 610px;
    padding: 95px 0;
  }

  .cta h2 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .footer-grid {
    gap: 35px;
  }

  .footer-contact {
    text-align: left;
  }

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

  .floating-contact {
    right: 14px;
    bottom: 14px;
    width: 54px;
    justify-content: center;
    padding: 0;
  }

  .floating-contact span {
    display: none;
  }
}

@media (max-width: 380px) {
  .brand-tagline {
    display: none;
  }

  .hero-canvas {
    min-height: 390px;
  }

  .canvas-caption strong {
    font-size: 3.2rem;
  }

  .portfolio-empty {
    padding: 14px;
  }
}
