:root {
  --ink: #171717;
  --muted: #66615b;
  --paper: #f8f4ed;
  --clay: #ad5032;
  --teal: #0e6b67;
  --gold: #c4963d;
  --plum: #4c2f4e;
  --white: #ffffff;
  --line: rgba(23, 23, 23, 0.12);
  --shadow: 0 24px 70px rgba(23, 23, 23, 0.16);
  color-scheme: light;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  max-width: 100vw;
  overflow-x: hidden;
  width: 100%;
}

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

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

.site-header {
  align-items: center;
  background: rgba(248, 244, 237, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  display: flex;
  height: 76px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(18px, 5vw, 72px);
  position: fixed;
  right: 0;
  top: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  z-index: 50;
  max-width: 100vw;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 28px rgba(23, 23, 23, 0.08);
}

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

.brand-mark {
  align-items: center;
  background: #06211c;
  border-radius: 8px;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  overflow: hidden;
  width: 42px;
}

.brand-mark img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

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

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  background: var(--clay);
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

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

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  display: none;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.hero {
  min-height: 92vh;
  overflow: hidden;
  position: relative;
  max-width: 100vw;
}

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

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

.hero-shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.36) 44%, rgba(0, 0, 0, 0.12));
}

.hero-content {
  color: var(--white);
  max-width: 760px;
  padding: 24vh clamp(20px, 7vw, 96px) 18vh;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c15c;
}

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

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(64px, 12vw, 168px);
  line-height: 0.84;
  margin-bottom: 28px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  margin-bottom: 22px;
}

h3 {
  font-size: 21px;
  line-height: 1.1;
  margin-bottom: 10px;
}

.hero p:not(.eyebrow) {
  font-size: clamp(18px, 2.3vw, 28px);
  max-width: 680px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button svg {
  flex: 0 0 auto;
  height: 18px;
  width: 18px;
}

.primary {
  background: var(--clay);
  color: var(--white);
}

.ghost {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}

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

.outline {
  border-color: var(--line);
  color: var(--ink);
}

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

.intro-band {
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
}

.metric {
  background: rgba(255, 255, 255, 0.04);
  min-height: 134px;
  padding: 28px clamp(18px, 3vw, 36px);
}

.metric span {
  color: #f0c15c;
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
  margin-bottom: 10px;
}

.metric p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.split-section,
.academy-section,
.artist-section,
.portraits-section,
.portfolio-section,
.work-section,
.video-section,
.process-section,
.testimonial-section,
.contact-section {
  max-width: 100vw;
  overflow-x: clip;
  padding: clamp(72px, 9vw, 124px) clamp(18px, 5vw, 72px);
}

.split-section {
  display: grid;
  gap: clamp(34px, 6vw, 72px);
  grid-template-columns: minmax(260px, 0.78fr) 1.22fr;
}

.section-copy {
  max-width: 560px;
  position: sticky;
  top: 116px;
  align-self: start;
}

.section-copy p:not(.eyebrow),
.academy-panel p,
.contact-copy p,
.review-points li,
.steps p {
  color: var(--muted);
  font-size: 17px;
}

.service-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(23, 23, 23, 0.08);
  overflow: hidden;
}

.service-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.service-card div {
  padding: 24px;
}

.service-card svg,
.quote-block svg {
  color: var(--teal);
  height: 26px;
  margin-bottom: 18px;
  width: 26px;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.academy-section {
  align-items: center;
  background: #e7dac6;
  display: grid;
  gap: clamp(28px, 6vw, 70px);
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
}

.academy-media {
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.academy-media video {
  aspect-ratio: 1 / 1;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.academy-panel {
  max-width: 650px;
  min-width: 0;
}

.affiliation-note {
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(23, 23, 23, 0.14);
  border-radius: 8px;
  display: flex;
  gap: 14px;
  margin-top: 26px;
  padding: 18px;
}

.affiliation-note svg {
  color: var(--teal);
  flex: 0 0 auto;
  height: 24px;
  width: 24px;
}

.affiliation-note strong {
  display: block;
  margin-bottom: 6px;
}

.affiliation-note p {
  margin-bottom: 0;
}

.academy-highlights {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.academy-highlights article {
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(23, 23, 23, 0.12);
  border-radius: 8px;
  padding: 16px;
}

.academy-highlights svg {
  color: var(--teal);
  height: 22px;
  margin-bottom: 12px;
  width: 22px;
}

.academy-highlights h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.academy-highlights p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 0;
}

.course-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.course-list span {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(23, 23, 23, 0.14);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 12px;
}

.artist-section {
  align-items: center;
  display: grid;
  gap: clamp(28px, 6vw, 72px);
  grid-template-columns: 0.95fr 1.05fr;
}

.artist-copy {
  max-width: 660px;
}

.artist-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.artist-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.portrait-feature {
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.portrait-feature img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.portraits-section {
  background: #f4ece2;
}

.portrait-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
}

.portrait-grid figure {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(23, 23, 23, 0.08);
  margin: 0;
  overflow: hidden;
}

.portrait-grid img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.portrait-grid figcaption {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  padding: 16px 18px;
}

.portfolio-section {
  background: #f4ece2;
  overflow: hidden;
}

.portfolio-tabs {
  align-items: center;
  display: flex;
  gap: 10px;
  margin: 32px 0 22px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  max-width: 100%;
}

.portfolio-tabs button {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  cursor: pointer;
  flex: 0 0 auto;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  min-height: 44px;
  padding: 10px 16px;
}

.portfolio-tabs button.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.portfolio-panel {
  min-height: 430px;
  max-width: 100%;
  overflow: hidden;
  width: 100%;
}

.portfolio-panel[hidden],
.portfolio-panel:not(.is-active) {
  display: none;
}

.gallery-strip {
  display: grid;
  gap: 18px;
  grid-auto-columns: minmax(240px, min(340px, 82vw));
  grid-auto-flow: column;
  overflow-x: auto;
  padding: 4px 0 18px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  max-width: 100%;
  width: 100%;
}

.gallery-strip figure {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(23, 23, 23, 0.08);
  margin: 0;
  overflow: hidden;
  scroll-snap-align: start;
}

.gallery-strip img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.gallery-strip figcaption {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  padding: 16px 18px;
}

.section-heading {
  max-width: 860px;
}

.work-grid {
  display: grid;
  gap: 18px;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 36px;
}

.work-item {
  background: var(--white);
  border-radius: 8px;
  margin: 0;
  min-height: 420px;
  overflow: hidden;
  position: relative;
}

.work-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.work-item.wide {
  grid-column: span 2;
}

.work-item img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.work-item::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.74));
  content: "";
  inset: 0;
  position: absolute;
}

.work-item figcaption {
  bottom: 0;
  color: var(--white);
  left: 0;
  padding: 24px;
  position: absolute;
  right: 0;
  z-index: 1;
}

.work-item strong,
.work-item span {
  display: block;
}

.work-item span {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 6px;
}

.video-section {
  align-items: center;
  background: #efe3d0;
  display: grid;
  gap: clamp(28px, 6vw, 72px);
  grid-template-columns: 0.78fr 1.22fr;
  overflow: hidden;
}

.video-copy {
  max-width: 560px;
}

.video-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.video-frame {
  background: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.video-frame video {
  aspect-ratio: 16 / 9;
  display: block;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.process-section {
  background: var(--ink);
  color: var(--white);
}

.process-section .eyebrow {
  color: #f0c15c;
}

.steps {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
}

.steps article {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 26px;
}

.steps span {
  color: #f0c15c;
  display: block;
  font-weight: 900;
  margin-bottom: 34px;
}

.steps p {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 0;
}

.testimonial-section {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: 0.9fr 1.1fr;
}

.quote-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(23, 23, 23, 0.08);
  padding: clamp(28px, 4vw, 46px);
}

blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  margin: 0 0 20px;
}

.quote-block p {
  color: var(--muted);
  margin-bottom: 0;
}

.review-points ul {
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.review-points li {
  border-bottom: 1px solid var(--line);
  padding: 0 0 16px;
}

.contact-section {
  background: #d9e4df;
  display: grid;
  gap: clamp(28px, 6vw, 72px);
  grid-template-columns: 0.9fr 1.1fr;
}

address {
  font-style: normal;
  font-weight: 800;
  margin-top: 28px;
}

.enquiry-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
}

label {
  color: var(--muted);
  display: grid;
  font-size: 13px;
  font-weight: 900;
  gap: 8px;
  text-transform: uppercase;
}

input,
select,
textarea {
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
  text-transform: none;
  width: 100%;
}

textarea {
  resize: vertical;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  padding: 34px clamp(18px, 5vw, 72px);
}

.footer-brand {
  align-items: center;
  display: flex;
  gap: 16px;
}

.footer-brand img {
  background: #06211c;
  border-radius: 8px;
  height: 64px;
  object-fit: cover;
  width: 64px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.66);
  margin: 6px 0 0;
}

.footer-links {
  display: flex;
  gap: 18px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .split-section,
  .academy-section,
  .artist-section,
  .video-section,
  .testimonial-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .academy-section {
    gap: 28px;
  }

  .academy-media {
    width: 100%;
  }

  .section-copy {
    position: static;
  }

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

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

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

  .academy-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 68px;
    padding: 0 16px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    background: rgba(248, 244, 237, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 8px;
    position: absolute;
    right: 16px;
    top: 76px;
    width: min(260px, calc(100vw - 32px));
  }

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

  .site-nav a {
    padding: 14px 12px;
    width: 100%;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.44));
  }

  .hero-content {
    padding: 20vh 18px 12vh;
  }

  .button {
    width: 100%;
  }

  .intro-band,
  .service-grid,
  .portrait-grid,
  .steps,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-item,
  .work-item.large,
  .work-item.wide {
    grid-column: auto;
    min-height: 360px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .footer-brand {
    align-items: flex-start;
  }
}
