
:root {
  --ink: #182026;
  --muted: #0e0e0e;
  --paper: #f5f1e9;
  --surface: #ffffff;
  --line: #ddd6c9;
  --red: #a8372e;
  --gold: #0e0900;
  --teal: #147273;
  --shadow: 0 24px 70px rgba(34, 30, 24, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
   font-family: "Raleway", sans-serif;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 6vw;
  background: rgba(245, 241, 233, 0.94);
  border-bottom: 1px solid rgba(221, 214, 201, 0.86);
  backdrop-filter: blur(16px);
}

.brand {
  color: var(--ink);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--red);
  /* box-shadow: 15px 0 0 var(--gold), 30px 0 0 var(--teal); */
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 1rem;
  /* font-weight: 800; */
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--red);
}

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

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

.hero-v3 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: min(8vw, 80px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: 70px 6vw;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
   font-family: "Raleway", sans-serif;
  /* font-family: "Playfair Display", Georgia, serif; */
  line-height: 1.04;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 7vw, 7rem);
}

h2 {
  font-size: clamp(1.8rem, 2.5vw, 3.6rem);
}

h3,
p {
  margin: 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  color: #171510;
  background: var(--gold);
}

.button.secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.hero-image-panel {
  position: relative;
}

.hero-image-panel img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-note {
  position: absolute;
  left: -28px;
  bottom: 28px;
  max-width: 280px;
  padding: 20px;
  border-radius: 8px;
  color: #ffffff;
  background: var(--ink);
  font-weight: 800;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.home-slider {
  position: relative;
  min-height: calc(100vh - 74px);
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 90px 6vw;
  color: #ffffff;
  background: #111;
}

.home-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 700ms ease, transform 1200ms ease;
}

.home-slide.active {
  opacity: 1;
  transform: scale(1);
}

.home-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 20, 22, 0.86), rgba(16, 20, 22, 0.46) 54%, rgba(16, 20, 22, 0.18)),
    linear-gradient(0deg, rgba(16, 20, 22, 0.7), transparent 44%);
}

.slider-content {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
}

.slider-content h1 {
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(3rem, 7vw, 6.4rem);
  font-weight: 900;
  letter-spacing: 0;
}

.slider-content p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.button.secondary.light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
}

.slider-dots {
  position: absolute;
  left: 6vw;
  bottom: 34px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.slider-dots button {
  width: 34px;
  height: 4px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.44);
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--gold);
}

.welcome-preview {
  background: #ffffff;
}

.home-gallery-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1.2fr;
  gap: 14px;
}

.home-gallery-strip img {
  width: 100%;
  height: clamp(220px, 28vw, 380px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(34, 30, 24, 0.1);
}

.section,
.page-shell {
  padding: 78px 6vw;
}

.section-heading {
  display: grid;
  gap: 16px;
  max-width: 900px;
  margin-bottom: 34px;
}

.section-intro {
  background: #ffffff;
}

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

.page-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: 8px;
  color: #ffffff;
  text-decoration: none;
  background: #111;
  box-shadow: 0 18px 42px rgba(34, 30, 24, 0.1);
}

.page-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 240ms ease, opacity 240ms ease;
}

.page-card span {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  font-size: 1.25rem;
  font-weight: 900;
}

.page-card:hover img {
  opacity: 0.9;
  transform: scale(1.04);
}

.page-hero {
  max-width: 980px;
  margin-bottom: 34px;
}

.compact-hero h1 {
  font-size: clamp(2.6rem, 3.6vw, 5.6rem);
}

.content-with-media {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: min(6vw, 64px);
  align-items: start;
}

.journey-story-layout {
  width: 100%;
}

.journey-full {
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.journey-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 500px);
  gap: 30px;
  align-items: center;
  padding: 34px;
  border-bottom: 1px solid var(--line);
}

.journey-block:last-child {
  border-bottom: 0;
}

.journey-block.reverse {
  grid-template-columns: minmax(280px, 380px) minmax(0, 1fr);
}

.journey-block.reverse > div {
  grid-column: 2;
}

.journey-block.reverse > img {
  grid-column: 1;
  grid-row: 1;
}

.journey-block h2 {
  margin-bottom: 14px;
}

.journey-block p + p {
  margin-top: 14px;
}

.journey-block img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(34, 30, 24, 0.1);
}

.story-panel {
  display: grid;
  gap: 20px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 40px rgba(34, 30, 24, 0.08);
}

.story-panel h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
}

/* .story-panel p {
  color: var(--muted);
  font-size: 1.04rem;
} */

blockquote {
  margin: 0;
  padding-left: 18px;
  border-left: 4px solid var(--red);
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 800;
}

.side-media {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 96px;
}

.side-media img,
.upload-slot {
  width: 100%;
  min-height: 190px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(34, 30, 24, 0.08);
}

.side-media img {
  height: 240px;
  object-fit: cover;
}

.side-media img.contain {
  object-fit: contain;
  padding: 20px;
}

.upload-slot {
  display: grid;
  place-items: center;
  padding: 20px;
  color: var(--muted);
  border-style: dashed;
  font-weight: 800;
  text-align: center;
}

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

.cards-panel blockquote {
  grid-column: 1 / -1;
}

.mini-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: 8px;
  background: #f8f6f1;
  border: 1px solid var(--line);
}

.mini-card h2 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.08rem;
}

.contact-panel a {
  color: var(--teal);
  font-weight: 900;
  text-decoration: none;
}

.acting-hero p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.08rem;
}

.acting-feature,
.acting-grid,
.project-list {
  width: 100%;
}

.acting-feature {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  margin-bottom: 28px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(34, 30, 24, 0.08);
}

.acting-feature img,
.acting-card img,
.project-list img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.acting-feature img {
  height: 420px;
}

.acting-feature p:not(.eyebrow),
.acting-card p,
.project-list p {
  color: var(--muted);
}

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

.acting-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(34, 30, 24, 0.08);
}

.acting-card.wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
}

.acting-card img {
  height: 100%;
  min-height: 300px;
  border-radius: 0;
}

.acting-card > div {
  display: grid;
  gap: 14px;
  align-content: center;
  padding: 28px;
}

.acting-card:not(.wide) img {
  height: 260px;
}

.acting-projects {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
}

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

.project-list article {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.project-list img {
  height: 150px;
}

.project-list span {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-list h3 {
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.gallery-page {
  padding: 0 0 70px;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 38px;
}

.gallery-filters button {
  position: relative;
  border: 0;
  padding: 0 0 8px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.gallery-filters button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  margin: auto;
  background: var(--red);
  transition: width 200ms ease;
}

.gallery-filters button.active,
.gallery-filters button:hover {
  color: var(--ink);
}

.gallery-filters button.active::after,
.gallery-filters button:hover::after {
  width: 100%;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  border-radius: 8px;
  background: #111;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 220ms ease, opacity 220ms ease;
}

.gallery-item::before {
  content: "+";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.42);
  font-size: 2.4rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity 180ms ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover::before {
  opacity: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 72px 76px;
  background: rgba(8, 13, 18, 0.9);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: white;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.lightbox-close {
  top: 24px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 2rem;
}

.lightbox-nav {
  top: 50%;
  width: 50px;
  height: 68px;
  border-radius: 8px;
  font-size: 3.2rem;
  transform: translateY(-50%);
}

.lightbox-nav.prev {
  left: 22px;
}

.lightbox-nav.next {
  right: 22px;
}

.lightbox-count {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 26px 6vw;
  color: rgba(255, 255, 255, 0.74);
  background: #15191b;
  font-size: 0.86rem;
  text-transform: uppercase;
}

@media (max-width: 1040px) {
  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 6vw 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

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

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

  .menu-toggle {
    display: block;
  }

  .hero-v3,
  .content-with-media,
  .journey-block,
  .journey-block.reverse,
  .acting-feature,
  .acting-card.wide {
    grid-template-columns: 1fr;
  }

  .journey-block.reverse > div,
  .journey-block.reverse > img {
    grid-column: auto;
    grid-row: auto;
  }

  .side-media {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-card-grid,
  .gallery-grid,
  .project-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 660px) {
  .site-header,
  .hero-v3,
  .section,
  .page-shell,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .home-slider {
    min-height: 720px;
    padding: 70px 20px;
  }

  .hero-note {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  .page-card-grid,
  .cards-panel,
  .side-media,
  .acting-grid,
  .project-list {
    grid-template-columns: 1fr;
  }

  .project-list article {
    grid-template-columns: 1fr;
  }

  .project-list img {
    height: 230px;
  }

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

  .story-panel {
    padding: 24px;
  }

  .journey-full {
    padding: 0;
  }

  .journey-block {
    padding: 24px;
  }

  .home-gallery-strip {
    grid-template-columns: 1fr;
  }

  .lightbox {
    padding: 72px 18px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 24px;
    width: 46px;
    height: 46px;
    font-size: 2.4rem;
    transform: none;
  }
}
