:root {
  --ink: #10100f;
  --coal: #1e1a17;
  --paper: #eee5d8;
  --paper-deep: #d2bea2;
  --bone: #fff8ed;
  --muted: #6f6258;
  --clay: #982f24;
  --moss: #34584e;
  --gold: #b98133;
  --line: rgba(16, 16, 15, 0.18);
  --paper-line: rgba(152, 47, 36, 0.2);
  --shadow: 0 24px 70px rgba(16, 16, 15, 0.24);
  --radius: 8px;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(152, 47, 36, 0.13), transparent 26rem),
    linear-gradient(90deg, rgba(16, 16, 15, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(16, 16, 15, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: auto, 34px 34px, 34px 34px, auto;
  color: var(--ink);
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(100deg, rgba(16, 16, 15, 0.035) 0 1px, transparent 1px 13px),
    radial-gradient(circle at 80% 12%, rgba(185, 129, 51, 0.12), transparent 24rem);
  mix-blend-mode: multiply;
}

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

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

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

.skip-link,
.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:focus {
  z-index: 100;
  width: auto;
  height: auto;
  margin: 12px;
  padding: 10px 14px;
  clip: auto;
  background: var(--bone);
  border: 1px solid var(--ink);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 46px);
  color: var(--bone);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(16, 16, 15, 0.92);
  color: var(--bone);
  border-bottom: 1px solid rgba(255, 248, 237, 0.14);
  box-shadow: 0 10px 32px rgba(16, 16, 15, 0.2);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  box-shadow: inset 0 0 0 4px rgba(255, 248, 237, 0.08);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  line-height: 1.05;
}

.brand small {
  color: currentColor;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.72;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
  font-size: 0.9rem;
}

.site-nav a {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 138px clamp(18px, 5vw, 64px) 42px;
  overflow: hidden;
  color: var(--bone);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 16, 15, 0.9), rgba(41, 22, 18, 0.5) 46%, rgba(16, 16, 15, 0.28)),
    linear-gradient(0deg, rgba(16, 16, 15, 0.76), transparent 48%),
    repeating-linear-gradient(90deg, rgba(255, 248, 237, 0.045) 0 1px, transparent 1px 18px);
}

.hero::after {
  position: absolute;
  inset: 88px clamp(16px, 4vw, 42px) 24px;
  z-index: 1;
  pointer-events: none;
  content: "";
  border: 1px solid rgba(255, 248, 237, 0.24);
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(16, 16, 15, 0.34);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-bottom: clamp(40px, 8vh, 92px);
}

.eyebrow,
.section-kicker,
.tag {
  margin: 0 0 12px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.12;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 250, 242, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button.primary {
  border-color: var(--clay);
  background: var(--clay);
  color: var(--bone);
  box-shadow: 0 10px 24px rgba(152, 47, 36, 0.25);
}

.button.secondary {
  background: rgba(255, 250, 242, 0.08);
  color: var(--bone);
}

.hero-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 420px);
  padding: 22px;
  border: 1px solid rgba(255, 250, 242, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(152, 47, 36, 0.22), rgba(16, 16, 15, 0.5)),
    rgba(16, 16, 15, 0.52);
  backdrop-filter: blur(12px);
}

.hero-panel span,
.hero-panel strong,
.hero-panel small {
  display: block;
}

.hero-panel span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-panel strong {
  margin: 6px 0;
  font-size: 1.35rem;
}

.hero-panel small {
  color: rgba(255, 250, 242, 0.78);
  font-size: 0.94rem;
}

.section,
.band {
  padding: clamp(72px, 11vw, 132px) clamp(18px, 5vw, 64px);
}

.section {
  max-width: calc(var(--max) + 128px);
  margin: 0 auto;
}

.band {
  background:
    linear-gradient(180deg, rgba(255, 248, 237, 0.9), rgba(238, 229, 216, 0.92)),
    var(--bone);
}

.band,
.section {
  position: relative;
}

.band::before,
.section::before {
  position: absolute;
  top: 0;
  right: clamp(18px, 5vw, 64px);
  left: clamp(18px, 5vw, 64px);
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--paper-line), transparent);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
}

.intro > * {
  max-width: var(--max);
}

.intro p:last-child {
  color: var(--muted);
  font-size: 1.1rem;
}

.flash-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  padding: 0 clamp(18px, 5vw, 64px);
  background: var(--ink);
  color: var(--bone);
  border-block: 1px solid rgba(255, 248, 237, 0.16);
}

.flash-strip span {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 0 clamp(14px, 3vw, 30px);
  border-inline-start: 1px solid rgba(255, 248, 237, 0.14);
  color: rgba(255, 248, 237, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 700;
}

.flash-strip span:last-child {
  border-inline-end: 1px solid rgba(255, 248, 237, 0.14);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
}

.work-grid article,
.service-grid article,
.artist-grid article,
.aftercare-grid article,
.booking-form,
.instagram-feature,
.instagram-grid a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 248, 237, 0.78), rgba(238, 229, 216, 0.66)),
    var(--bone);
  box-shadow: inset 0 0 0 1px rgba(255, 248, 237, 0.42);
}

.work-grid article {
  padding: 26px;
}

.work-feature {
  grid-row: span 3;
  display: grid;
  gap: 24px;
  align-content: start;
}

.work-feature img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  filter: saturate(0.92) contrast(1.04);
}

.work-grid p:not(.tag),
.service-grid p,
.artist-grid p,
.aftercare-grid p,
.process-copy span,
.booking-copy p,
.site-footer p {
  color: var(--muted);
}

.artists {
  background:
    linear-gradient(180deg, rgba(52, 88, 78, 0.16), transparent 42%),
    linear-gradient(90deg, rgba(152, 47, 36, 0.08), transparent 55%),
    var(--bone);
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.artist-grid article {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 26px;
}

.artist-grid h3 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.artist-grid a {
  width: fit-content;
  margin-top: auto;
  border-bottom: 1px solid currentColor;
  color: var(--clay);
  font-weight: 850;
}

.artist-grid a + a {
  margin-top: 10px;
}

.real-work {
  background:
    linear-gradient(180deg, rgba(16, 16, 15, 0.04), transparent 28%),
    var(--paper);
}

.real-work .section-heading p:last-child {
  max-width: 640px;
  color: var(--muted);
}

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

.real-work-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bone);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.real-work-card:hover,
.real-work-card:focus-within {
  border-color: rgba(152, 47, 36, 0.44);
  box-shadow: 0 18px 42px rgba(16, 16, 15, 0.16);
  transform: translateY(-3px);
}

.real-work-card a {
  display: grid;
  min-height: 100%;
}

.real-work-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.05);
}

.real-work-card span,
.real-work-card strong {
  display: block;
  padding-inline: 22px;
}

.real-work-card span {
  padding-top: 22px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.real-work-card strong {
  padding-top: 8px;
  padding-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.12;
}

.services {
  background:
    repeating-linear-gradient(120deg, rgba(255, 248, 237, 0.04) 0 1px, transparent 1px 16px),
    linear-gradient(135deg, var(--ink), var(--coal));
  color: var(--bone);
}

.services .section-kicker,
.services .tag {
  color: var(--gold);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.service-grid article {
  min-height: 260px;
  padding: 24px;
  background: rgba(255, 250, 242, 0.06);
  border-color: rgba(255, 250, 242, 0.16);
}

.instagram-feed {
  background:
    linear-gradient(135deg, rgba(16, 16, 15, 0.96), rgba(42, 24, 21, 0.96)),
    var(--ink);
  color: var(--bone);
}

.instagram-feed::before {
  background: linear-gradient(90deg, transparent, rgba(255, 248, 237, 0.22), transparent);
}

.instagram-feed .section-kicker {
  color: var(--gold);
}

.instagram-feed .section-heading p:last-child {
  max-width: 640px;
  color: rgba(255, 248, 237, 0.72);
}

.instagram-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
}

.instagram-feature {
  min-height: 100%;
  display: grid;
  align-content: end;
  padding: clamp(24px, 4vw, 38px);
  border-color: rgba(255, 248, 237, 0.18);
  background:
    linear-gradient(145deg, rgba(152, 47, 36, 0.34), rgba(16, 16, 15, 0.5)),
    var(--coal);
  color: var(--bone);
}

.instagram-feature span,
.instagram-grid span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.instagram-feature strong {
  max-width: 420px;
  margin: 10px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.96;
}

.instagram-feature small {
  max-width: 360px;
  color: rgba(255, 248, 237, 0.72);
  font-size: 0.98rem;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.instagram-grid a {
  overflow: hidden;
  border-color: rgba(255, 248, 237, 0.16);
  background: rgba(255, 248, 237, 0.08);
  color: var(--bone);
  transition: transform 180ms ease, border-color 180ms ease;
}

.instagram-grid a:hover,
.instagram-grid a:focus-visible {
  border-color: rgba(185, 129, 51, 0.58);
  transform: translateY(-3px);
}

.instagram-grid img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.08);
}

.instagram-grid span {
  display: block;
  min-height: 54px;
  padding: 16px 14px;
}

.service-grid span {
  display: block;
  margin-bottom: 46px;
  color: var(--gold);
  font-weight: 850;
}

.service-grid p {
  color: rgba(255, 250, 242, 0.72);
}

.style-guides .section-heading p:last-child {
  max-width: 640px;
  color: var(--muted);
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.guide-grid a {
  min-height: 180px;
  display: grid;
  align-content: end;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 248, 237, 0.82), rgba(238, 229, 216, 0.72)),
    var(--bone);
  box-shadow: inset 0 0 0 1px rgba(255, 248, 237, 0.42);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.guide-grid a:hover,
.guide-grid a:focus-visible {
  border-color: rgba(152, 47, 36, 0.42);
  box-shadow: 0 18px 42px rgba(16, 16, 15, 0.14);
  transform: translateY(-3px);
}

.guide-grid span {
  margin-bottom: 10px;
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.guide-grid strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  line-height: 1.08;
}

.topic-page {
  background: var(--paper);
}

.topic-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(255, 248, 237, 0.14);
  background: rgba(16, 16, 15, 0.94);
  color: var(--bone);
  backdrop-filter: blur(16px);
}

.topic-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  font-size: 0.9rem;
}

.topic-hero {
  min-height: min(640px, 82vh);
  display: grid;
  align-content: center;
  padding: clamp(72px, 9vw, 132px) clamp(18px, 6vw, 80px) clamp(48px, 7vw, 78px);
  background:
    repeating-linear-gradient(120deg, rgba(255, 248, 237, 0.05) 0 1px, transparent 1px 17px),
    linear-gradient(135deg, rgba(16, 16, 15, 0.96), rgba(42, 24, 21, 0.96));
  color: var(--bone);
}

.topic-hero > * {
  max-width: 880px;
}

.topic-hero h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6.4vw, 5.9rem);
  line-height: 0.96;
}

.topic-hero p {
  max-width: 680px;
  color: rgba(255, 248, 237, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.26rem);
}

.topic-content {
  max-width: 980px;
  padding: clamp(56px, 9vw, 96px) clamp(18px, 6vw, 80px);
  margin: 0 auto;
}

.topic-content section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.topic-content h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.topic-content p,
.topic-content li {
  color: var(--muted);
  font-size: 1.04rem;
}

.topic-content ul {
  display: grid;
  gap: 10px;
  padding-left: 1.2rem;
}

.topic-cta {
  display: grid;
  gap: 18px;
  padding: clamp(30px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--bone);
}

.topic-cta p {
  color: rgba(255, 248, 237, 0.72);
}

.topic-cta .button {
  width: fit-content;
}

.process {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.process-media img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.steps {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.steps li::before {
  color: var(--moss);
  content: "0" counter(step);
  counter-increment: step;
  font-weight: 850;
}

.steps strong,
.steps span {
  grid-column: 2;
}

.steps strong {
  margin-top: -30px;
  font-size: 1.06rem;
}

.aftercare {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.aftercare-grid {
  display: grid;
  gap: 14px;
}

.aftercare-grid article {
  padding: 22px;
}

.booking {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1.22fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-list a {
  width: fit-content;
  border-bottom: 1px solid currentColor;
  color: var(--clay);
  font-weight: 800;
}

.contact-list .text-button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid var(--clay);
  border-radius: var(--radius);
  background: var(--clay);
  color: var(--bone);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 850;
}

.booking-form .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bone);
  color: var(--ink);
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(162, 79, 63, 0.28);
  border-color: var(--clay);
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding: 42px clamp(18px, 5vw, 64px);
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--bone);
}

.site-footer > div {
  max-width: 520px;
}

.site-footer p {
  margin: 18px 0 0;
  color: rgba(255, 250, 242, 0.68);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  justify-content: flex-end;
  gap: 16px 26px;
}

.not-found {
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 16px;
  max-width: 780px;
  padding: clamp(42px, 8vw, 96px) clamp(18px, 6vw, 64px);
}

.not-found h1 {
  margin-bottom: 0;
}

.not-found .button {
  width: fit-content;
}

@media (max-width: 900px) {
  .nav-toggle {
    position: relative;
    z-index: 22;
    display: grid;
    gap: 5px;
    width: 44px;
    height: 44px;
    place-content: center;
    border: 1px solid currentColor;
    border-radius: var(--radius);
    background: transparent;
    color: inherit;
  }

  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    right: 18px;
    left: 18px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bone);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .intro,
  .work-grid,
  .process,
  .aftercare,
  .booking,
  .instagram-shell {
    grid-template-columns: 1fr;
  }

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

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

  .real-work-grid {
    grid-template-columns: 1fr;
  }

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

  .work-feature {
    grid-row: auto;
  }

  .topic-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand strong {
    font-size: 1rem;
  }

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

  .hero {
    min-height: 92vh;
    padding: 108px 18px 24px;
  }

  h1 {
    font-size: 3.18rem;
  }

  .topic-hero {
    min-height: auto;
    padding: 64px 18px 42px;
  }

  .topic-hero h1 {
    font-size: 3.1rem;
  }

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

  .service-grid,
  .booking-form,
  .guide-grid,
  .instagram-grid {
    grid-template-columns: 1fr;
  }

  .flash-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
  }

  .flash-strip span,
  .flash-strip span:last-child {
    min-height: 50px;
    border: 1px solid rgba(255, 248, 237, 0.14);
  }

  .steps li {
    grid-template-columns: 46px 1fr;
  }

  .steps strong,
  .steps span {
    grid-column: 2;
  }

  .site-footer {
    display: grid;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}
