:root {
  --bg: #f8f5ef;
  --paper: #fffdf8;
  --soft: #ece4d6;
  --text: #25221e;
  --muted: #716a61;
  --line: #d7cbbb;
  --dark: #24211d;
  --green: #687456;
  --rust: #9b623b;
  --max: min(1180px, calc(100vw - 44px));
  font-family: Georgia, "Times New Roman", serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(155, 98, 59, 0.75);
  outline-offset: 4px;
}

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px max(22px, calc((100vw - 1180px) / 2));
  background: rgba(248, 245, 239, 0.92);
  border-bottom: 1px solid rgba(215, 203, 187, 0.8);
  backdrop-filter: blur(12px);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  gap: 26px;
  font-size: 14px;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.98fr) minmax(520px, 1.02fr);
  min-height: calc(100vh - 70px);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 52px 70px max(22px, calc((100vw - 1180px) / 2));
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(58px, 7.1vw, 104px);
  font-weight: 700;
  letter-spacing: 0;
}

.hero-line {
  max-width: 670px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 2.75vw, 40px);
  line-height: 1.16;
}

.hero-sub {
  max-width: 590px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 19px;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--dark);
  border-radius: 4px;
  font-weight: 800;
}

.button-dark {
  color: #fff;
  background: var(--dark);
}

.button-light {
  background: transparent;
}

.hero-media {
  margin: 0;
  min-height: 520px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  width: var(--max);
  margin: 0 auto;
  padding: 78px 0;
}

.section-label {
  margin: 0 0 14px;
  color: var(--rust);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 32px;
}

.section-heading.narrow {
  max-width: 760px;
}

h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 62px);
}

h3 {
  margin: 0;
  font-size: 24px;
}

p {
  margin-top: 0;
}

.intro-band {
  padding-top: 36px;
  padding-bottom: 36px;
}

.intro-band p {
  max-width: 920px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.22;
}

.archive-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding-top: 32px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.archive-callout h2 {
  max-width: 840px;
  font-size: clamp(32px, 4.4vw, 56px);
}

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

.work-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--paper);
  border: 1px solid var(--line);
}

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

.feature-card {
  grid-column: span 2;
}

.feature-card img {
  aspect-ratio: 3 / 2;
  object-fit: contain;
  background: #e9e7e2;
}

.work-card div {
  padding: 18px;
}

.work-card p,
.work-card span {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.work-card h3 {
  margin: 6px 0 10px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.split-copy p:not(.section-label) {
  color: var(--muted);
  font-size: 18px;
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--dark);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.strumstick-gallery {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 14px;
}

.strumstick-gallery img {
  width: 100%;
  min-height: 190px;
  height: 100%;
  object-fit: cover;
  background: #e8e6e1;
  border: 1px solid var(--line);
}

.strumstick-gallery .tall {
  grid-row: span 2;
  object-fit: contain;
}

.lessons-section,
.books-section {
  width: 100%;
  padding-right: max(22px, calc((100vw - 1180px) / 2));
  padding-left: max(22px, calc((100vw - 1180px) / 2));
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.lesson-layout,
.about-section,
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}

.lesson-layout img,
.about-section img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.lesson-list {
  display: grid;
  gap: 18px;
}

.lesson-list article {
  padding: 22px;
  background: rgba(255, 253, 248, 0.62);
  border: 1px solid rgba(215, 203, 187, 0.85);
}

.lesson-list p,
.about-section p,
.contact-section p,
.book-row p {
  color: var(--muted);
}

.books-section {
  background: var(--bg);
}

.books-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 36px;
}

.books-copy {
  max-width: 760px;
}

.books-feature {
  margin: 0;
}

.books-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
}

.book-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.book-row article {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 12px;
}

.book-row img {
  width: 100%;
  max-height: 410px;
  object-fit: contain;
  background: #ded3bf;
  border: 1px solid var(--line);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 22px;
}

.video-grid iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: var(--dark);
}

.video-grid h3 {
  margin-top: 12px;
  font-size: 22px;
}

.other-work-section {
  border-top: 1px solid var(--line);
}

.other-work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 880px;
}

.other-work-card {
  display: grid;
  gap: 12px;
  min-height: 310px;
  padding: 24px;
  color: inherit;
  text-decoration: none;
  background: var(--paper);
  border: 1px solid var(--line);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.other-work-card:hover {
  transform: translateY(-3px);
  border-color: rgba(169, 95, 44, 0.6);
  box-shadow: 0 18px 34px rgba(36, 33, 29, 0.08);
}

.other-work-card span {
  color: var(--rust);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.other-work-card h3 {
  max-width: 340px;
  margin: 0;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1;
}

.other-work-card p {
  align-self: end;
  margin: 0;
  color: var(--muted);
}

.contact-section {
  align-items: start;
  border-top: 1px solid var(--line);
}

.contact-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  color: var(--muted);
  list-style: none;
}

.enquiry-panel {
  margin-top: 30px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.enquiry-panel h3 {
  margin: 0 0 14px;
  font-size: 25px;
}

.enquiry-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.contact-email,
.reply-note {
  margin: 20px 0 0;
}

.contact-email {
  display: grid;
  gap: 4px;
}

.contact-email span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.contact-email a {
  width: fit-content;
  color: var(--text);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.reply-note {
  max-width: 420px;
  color: var(--muted);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 3px;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.wide,
.hidden-field {
  grid-column: 1 / -1;
}

.hidden-field {
  display: none;
}

.form-status {
  align-self: center;
  margin: 0;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  padding: 22px max(22px, calc((100vw - 1180px) / 2));
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.simple-page {
  display: grid;
  align-content: center;
  min-height: 100vh;
  width: min(760px, calc(100% - 44px));
  margin: 0 auto;
  padding: 80px 0;
}

.simple-page h1 {
  margin: 0 0 18px;
  font-size: clamp(48px, 9vw, 92px);
}

.simple-page p:not(.section-label) {
  max-width: 520px;
  color: var(--muted);
  font-size: 20px;
}

.simple-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.archive-hero {
  width: var(--max);
  margin: 0 auto;
  padding: 88px 0 44px;
}

.archive-hero h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 92px);
}

.archive-hero p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
}

.archive-tools {
  position: sticky;
  top: 72px;
  z-index: 8;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px max(22px, calc((100vw - 1180px) / 2));
  background: rgba(248, 245, 239, 0.94);
  border-block: 1px solid rgba(215, 203, 187, 0.85);
  backdrop-filter: blur(12px);
}

.archive-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-button {
  min-height: 36px;
  padding: 0 13px;
  color: var(--text);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 800;
}

.filter-button[aria-pressed="true"] {
  color: #fff;
  background: var(--dark);
  border-color: var(--dark);
}

.archive-count {
  flex: 0 0 auto;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: var(--max);
  margin: 0 auto;
  padding: 34px 0 90px;
}

.project-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
}

.project-card button {
  position: relative;
  display: grid;
  width: 100%;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: zoom-in;
}

.project-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e5ddcf;
}

.project-card button span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 8px;
  color: #fff;
  background: rgba(36, 33, 29, 0.86);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 800;
}

.project-card div {
  padding: 18px;
}

.project-card p:first-child {
  margin: 0;
  color: var(--rust);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.project-card h2 {
  margin: 7px 0 10px;
  font-size: 26px;
  line-height: 1.04;
}

.archive-dialog {
  width: min(1120px, calc(100vw - 30px));
  max-height: min(920px, calc(100vh - 30px));
  padding: 0;
  color: var(--text);
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: auto;
}

.archive-dialog::backdrop {
  background: rgba(20, 18, 15, 0.74);
}

.project-dialog-header {
  padding: 26px 28px 20px;
}

.project-dialog-header p {
  margin: 0 0 6px;
  color: var(--rust);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-dialog-header h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 46px);
}

.project-dialog-header span {
  display: block;
  max-width: 760px;
  color: var(--muted);
}

.project-dialog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0 28px 28px;
}

.project-dialog-grid figure {
  margin: 0;
  background: #171511;
}

.project-dialog-grid img {
  width: 100%;
  max-height: 720px;
  object-fit: contain;
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  min-height: 38px;
  padding: 0 14px;
  color: #fff;
  background: rgba(36, 33, 29, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  font-weight: 800;
}

.visual-review-hero {
  padding-bottom: 34px;
}

.visual-review-hero h1 {
  max-width: 760px;
}

.visual-group-list {
  width: var(--max);
  margin: 0 auto;
  padding: 0 0 90px;
}

.visual-group-card {
  padding: 24px 0 30px;
  border-top: 1px solid var(--line);
}

.visual-group-card header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.visual-group-card h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.visual-group-card header span {
  color: var(--muted);
  font-weight: 800;
}

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

.visual-group-images figure {
  min-width: 0;
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
}

.visual-group-images img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.visual-group-images figcaption {
  overflow: hidden;
  padding: 8px;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 940px) {
  .hero,
  .split-section,
  .lesson-layout,
  .about-section,
  .contact-section,
  .books-intro {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding: 52px 22px;
  }

  .hero-media {
    min-height: 420px;
  }

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

  .archive-callout,
  .archive-tools {
    grid-template-columns: 1fr;
  }

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

  .archive-tools {
    position: static;
    display: grid;
    align-items: start;
  }

  .visual-group-images {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-card {
    grid-column: span 1;
  }
}

@media (max-width: 720px) {
  :root {
    --max: min(100vw - 32px, 1180px);
  }

  .site-header {
    padding: 14px 16px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 64px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    background: var(--paper);
    border: 1px solid var(--line);
  }

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

  .site-nav a {
    padding: 12px 8px;
  }

  h1 {
    font-size: 52px;
  }

  .hero-line {
    max-width: 100%;
    font-size: 23px;
  }

  .hero-sub {
    font-size: 17px;
  }

  .hero-actions,
  .contact-form,
  .archive-callout {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    font-size: 15px;
  }

  .section {
    padding: 54px 0;
  }

  .lessons-section,
  .books-section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .work-grid,
  .book-row,
  .video-grid,
  .other-work-grid,
  .strumstick-gallery {
    grid-template-columns: 1fr;
  }

  .other-work-card {
    min-height: 0;
  }

  .archive-hero {
    padding-top: 54px;
  }

  .archive-hero h1 {
    font-size: 45px;
  }

  .archive-hero p:last-child {
    font-size: 17px;
  }

  .archive-grid {
    grid-template-columns: 1fr;
    padding-top: 22px;
  }

  .project-dialog-grid {
    grid-template-columns: 1fr;
    padding-right: 16px;
    padding-left: 16px;
  }

  .project-dialog-header {
    padding-right: 16px;
    padding-left: 16px;
  }

  .visual-group-card header {
    display: grid;
  }

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

  .strumstick-gallery .tall {
    grid-row: auto;
  }
}
