:root {
  color-scheme: dark;
  --bg: #151512;
  --panel: #20201c;
  --panel-strong: #2a2a24;
  --text: #f4f0e8;
  --muted: #c3b9a7;
  --line: #474236;
  --accent: #c2462f;
  --accent-strong: #e06142;
  --steel: #b8c0c7;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(194, 70, 47, 0.18), transparent 30rem),
    linear-gradient(145deg, #11110f 0%, var(--bg) 44%, #242019 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 16px 0;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand img {
  flex: 0 0 auto;
  width: 48px;
  height: 54px;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 8px;
}

nav a {
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  padding: 9px 12px;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  border-color: var(--line);
  color: var(--text);
  outline: none;
}

main {
  overflow: hidden;
}

.hero,
.intro,
.workshop,
.feature-grid,
.process,
.contact,
.site-footer {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(28px, 4.5vw, 64px);
  align-items: center;
  min-height: calc(100svh - 78px);
  padding: clamp(32px, 5vw, 72px) 0 70px;
}

.hero-copy {
  max-width: 520px;
}

.hero-logo {
  display: block;
  width: clamp(230px, 30vw, 390px);
  height: auto;
  margin: 0 0 26px;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.28));
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 14vw, 8.6rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.08rem;
  line-height: 1.2;
}

.hero-copy p:not(.eyebrow),
.intro > p,
.contact p {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  max-width: 62ch;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 900;
  padding: 12px 18px;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #fffaf2;
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--accent-strong);
}

.button.secondary {
  color: var(--text);
}

.button.large {
  min-width: 220px;
}

.hero-media {
  position: relative;
  min-height: clamp(360px, 44vw, 620px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.26));
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  object-position: center;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 340px);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  padding: 72px 0;
  border-top: 1px solid var(--line);
}

.intro-image {
  display: block;
  width: 100%;
  height: auto;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.workshop {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
  padding: 28px 0 88px;
}

.workshop-copy {
  max-width: 780px;
}

.workshop-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: clamp(1.02rem, 2vw, 1.16rem);
}

.workshop-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.workshop-media img {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  object-fit: cover;
  aspect-ratio: 16 / 7;
  max-height: 620px;
}

.workshop-wide {
  object-position: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 18px;
  align-items: start;
  padding: 64px 0 84px;
}

.section-heading {
  grid-column: 1 / -1;
  max-width: 720px;
  margin-bottom: 14px;
}

.work-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(32, 32, 28, 0.8);
  padding: 16px;
}

.work-card-tall {
  grid-column: 2;
  grid-row: 2 / span 2;
  align-self: start;
}

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

.work-card-copy {
  max-width: 62ch;
}

.work-visual {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 5;
  max-height: 360px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-color: #272721;
  object-fit: cover;
  object-position: center;
}

.work-visual-tall {
  aspect-ratio: 4 / 3;
  max-height: 430px;
  object-fit: cover;
  object-position: center 82%;
}

.gallery-strip {
  width: min(100% - 32px, var(--max));
  margin: 0 auto 80px;
}

.gallery-feature {
  position: relative;
  display: block;
  width: min(100%, 560px);
  margin: 12px auto 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  background: var(--panel);
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.gallery-feature:hover,
.gallery-feature:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  outline: none;
}

.gallery-feature-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
}

.gallery-feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38%, rgba(0, 0, 0, 0.5) 58%, rgba(0, 0, 0, 0) 78%);
  pointer-events: none;
  transition: background 220ms ease;
}

.gallery-feature:hover .gallery-feature-overlay,
.gallery-feature:focus-visible .gallery-feature-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38%, rgba(194, 70, 47, 0.55) 58%, rgba(0, 0, 0, 0) 78%);
}

.gallery-feature-label {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 6px 20px;
  color: #fffaf2;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 6.4vw, 4.8rem);
  line-height: 1;
  letter-spacing: 0.01em;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.65), 0 1px 2px rgba(0, 0, 0, 0.75);
  white-space: nowrap;
}

.gallery-feature-label::after {
  content: "→";
  font-size: 0.78em;
  transition: transform 220ms ease;
}

.gallery-feature:hover .gallery-feature-label::after,
.gallery-feature:focus-visible .gallery-feature-label::after {
  transform: translateX(6px);
}

.gallery-page {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) 0 80px;
}

.gallery-page-title {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.gallery-page-intro {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  max-width: 62ch;
}

.gallery-back {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
}

.gallery-back:hover,
.gallery-back:focus-visible {
  color: var(--text);
  outline: none;
}

.gallery-back-bottom {
  margin-top: 28px;
}

.gallery-facebook-cta {
  display: flex;
  justify-content: center;
  margin-top: 56px;
  padding: 36px 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gallery-facebook-cta .button {
  min-height: 64px;
  min-width: 320px;
  padding: 18px 36px;
  font-size: 1.18rem;
  letter-spacing: 0.01em;
}

.help-page {
  width: min(100% - 32px, 760px);
  margin: 0 auto;
  padding: clamp(40px, 6vw, 72px) 0 80px;
}

.help-page article > * + * {
  margin-top: 1.05em;
}

.help-eyebrow {
  margin: 0 0 12px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.help-page h1 {
  margin-bottom: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: none;
}

.help-page h2 {
  margin-top: 2.2em;
  margin-bottom: 0.4em;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.15;
}

.help-page p,
.help-page li {
  color: var(--text);
  font-size: 1.06rem;
  line-height: 1.65;
}

.help-page .help-lede {
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.22rem);
  line-height: 1.55;
  max-width: 60ch;
}

.help-page a {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.help-page a:hover,
.help-page a:focus-visible {
  color: var(--text);
  outline: none;
}

.help-page strong {
  color: var(--text);
  font-weight: 800;
}

.help-page em {
  color: var(--muted);
  font-style: italic;
}

.help-steps,
.help-sections {
  margin: 0;
  padding-left: 1.5em;
}

.help-steps li,
.help-sections li {
  margin-bottom: 0.7em;
}

.help-figure {
  margin: 1.6em 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(20, 20, 18, 0.6);
}

.help-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.help-figure figcaption {
  margin: 12px 4px 4px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.help-page .help-closer {
  margin-top: 3em;
  padding-top: 1.4em;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 1rem;
}

.lightbox-image {
  cursor: zoom-in;
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 56px);
  background: rgba(8, 8, 6, 0.93);
  backdrop-filter: blur(6px);
}

.lightbox-overlay.is-open {
  display: flex;
  animation: lightbox-fade 180ms ease-out;
}

@keyframes lightbox-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-image-large {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  font-size: 0;
  transition: background 160ms ease, transform 160ms ease;
}

.lightbox-close::before,
.lightbox-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 2px;
  background: #fff;
}

.lightbox-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.lightbox-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: rgba(255, 255, 255, 0.24);
  transform: scale(1.06);
  outline: none;
}

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


.gallery-grid img {
  display: block;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  background: var(--panel);
}

.gallery-landscape {
  aspect-ratio: 16 / 7;
  max-height: 620px;
  object-position: center;
}

.gallery-portrait,
.gallery-square {
  justify-self: center;
  max-width: min(100%, 620px);
  height: auto;
  max-height: 780px;
  object-fit: contain;
}

.gallery-square {
  max-width: min(100%, 720px);
}

.process {
  padding: 80px 0;
  border-top: 1px solid var(--line);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.steps li {
  border-top: 3px solid var(--accent);
  background: rgba(32, 32, 28, 0.68);
  padding: 24px;
}

.steps span {
  display: block;
  margin-bottom: 22px;
  color: var(--steel);
  font-weight: 900;
}

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

.quote-band {
  background: #ece3d2;
  color: #171512;
  padding: clamp(54px, 8vw, 92px) 16px;
}

.quote-band p {
  width: min(100%, 940px);
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 84px 0;
}

.contact h2 {
  max-width: 740px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 26px 0 36px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--text);
  outline: none;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .intro,
  .workshop,
  .contact {
    grid-template-columns: 1fr;
  }

  .intro-image {
    justify-self: start;
    width: min(100%, 340px);
  }

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

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

  .feature-grid,
  .gallery-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .work-card,
  .work-card-tall {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 1fr;
  }

  .work-visual,
  .workshop-media img,
  .gallery-landscape {
    aspect-ratio: 4 / 3;
  }

  .work-visual {
    max-height: 300px;
  }

  .work-visual-tall {
    aspect-ratio: 4 / 3;
    max-height: 300px;
  }

  .contact {
    align-items: flex-start;
    display: grid;
  }

  .button.large {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .site-header,
  .hero,
  .intro,
  .feature-grid,
  .gallery-strip,
  .workshop,
  .process,
  .contact,
  .site-footer {
    width: min(100% - 24px, var(--max));
  }

  nav {
    width: 100%;
  }

  nav a {
    flex: 1;
    text-align: center;
  }

  h1 {
    font-size: clamp(3.25rem, 22vw, 4.5rem);
  }

  .hero-actions {
    display: grid;
  }

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