:root {
  --ink: #10100f;
  --paper: #f5f0e8;
  --paper-deep: #e3d7c8;
  --bone: #fffaf2;
  --muted: #766f68;
  --clay: #a24f3f;
  --moss: #526451;
  --gold: #c79a52;
  --line: rgba(16, 16, 15, 0.14);
  --shadow: 0 24px 70px rgba(16, 16, 15, 0.18);
  --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: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

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(245, 240, 232, 0.94);
  color: var(--ink);
  box-shadow: 0 10px 32px rgba(16, 16, 15, 0.1);
  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;
}

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

.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.82), rgba(16, 16, 15, 0.38) 46%, rgba(16, 16, 15, 0.2)),
    linear-gradient(0deg, rgba(16, 16, 15, 0.72), transparent 48%);
}

.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: 650;
  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);
}

.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: rgba(16, 16, 15, 0.44);
  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: var(--bone);
}

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

.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 {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.54);
}

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

.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(82, 100, 81, 0.12), transparent 42%),
    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: 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);
}

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

.real-work-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.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: var(--ink);
  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);
}

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

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

.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 {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

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

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

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