:root {
  --cream: #f6ecdc;
  --paper: #efe0c4;
  --ink: #211a14;
  --ink-soft: #55483b;
  --ink-faint: #8c7a64;
  --rust: #c1502c;
  --rust-dark: #8f3419;
  --gold: #cf9a3d;
  --plum: #46202c;
  --line: rgba(33, 26, 20, 0.18);
  --shadow: 0 22px 44px rgba(35, 20, 10, 0.22);
  --serif: 'Fraunces', serif;
  --sans: 'Work Sans', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}

img { max-width: 100%; }

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

p { margin: 0; }

.kicker {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rust-dark);
  margin-bottom: 18px;
}

.kicker--light { color: var(--gold); }

.section-heading {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 46px);
  margin: 0 0 48px;
}

/* GRAIN OVERLAY */
.grain {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="140" height="140"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="2" stitchTiles="stitch"/></filter><rect width="100%25" height="100%25" filter="url(%23n)"/></svg>');
}

/* CUSTOM CURSOR */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--rust);
  pointer-events: none;
  z-index: 999;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s, background 0.25s, border 0.25s, opacity 0.25s;
  opacity: 0;
}

html.custom-cursor .cursor-dot { opacity: 1; }
html.custom-cursor, html.custom-cursor a, html.custom-cursor button { cursor: none; }

.cursor-dot.is-hover {
  width: 46px;
  height: 46px;
  background: transparent;
  border: 1.5px solid var(--rust);
}

/* MARQUEE */
.marquee {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  white-space: nowrap;
  padding: 9px 0;
}

.marquee__track {
  display: inline-flex;
  gap: 30px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  animation: marquee 24s linear infinite;
}

.marquee__track span.dot { color: var(--gold); }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* NAV */
.nav {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 56px;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}

.nav.is-scrolled {
  background: rgba(246, 236, 220, 0.92);
  backdrop-filter: blur(6px);
  padding: 14px 56px;
  box-shadow: 0 1px 0 var(--line);
}

.nav__logo {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: 0.04em;
  color: var(--cream);
  transition: color 0.35s ease;
}

.nav__logo em { color: var(--gold); font-style: italic; }

.nav.is-scrolled .nav__logo { color: var(--ink); }
.nav.is-scrolled .nav__logo em { color: var(--rust); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--cream);
  transition: color 0.35s ease;
}

.nav.is-scrolled .nav__links { color: var(--ink); }

.nav__links a { position: relative; padding-bottom: 3px; }
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transition: right 0.3s ease;
}
.nav__links a:hover::after { right: 0; }

.nav__cta {
  border: 1px solid currentColor;
  padding: 8px 18px !important;
  border-radius: 999px;
}
.nav__cta::after { display: none; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  width: 22px;
  height: 2px;
  background: var(--cream);
  display: block;
}
.nav.is-scrolled .nav__toggle span { background: var(--ink); }

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
}

.hero__slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__slide.is-active { opacity: 1; }
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(20,14,9,0.3) 0%, rgba(20,14,9,0.08) 38%, rgba(20,14,9,0.8) 100%);
}

.hero__badge {
  position: absolute;
  top: 128px;
  right: 56px;
  width: 116px;
  height: 116px;
  color: var(--cream);
  z-index: 4;
  display: none;
  align-items: center;
  justify-content: center;
}
.hero__badge-spin {
  width: 100%;
  height: 100%;
  animation: spin 18s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero__badge-center {
  position: absolute;
  font-size: 20px;
  color: var(--gold);
}

.hero__panel {
  position: absolute;
  left: 56px;
  bottom: -36px;
  z-index: 5;
  background: var(--cream);
  padding: 40px 44px 36px;
  max-width: 620px;
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}

.hero__eyebrow {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--rust-dark);
  margin-bottom: 10px;
}

.hero__headline {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(32px, 4.4vw, 54px);
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 22px;
}

.hero__ticks { display: flex; gap: 10px; }
.hero__tick {
  width: 30px;
  height: 3px;
  background: var(--line);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease;
}
.hero__tick.is-active { background: var(--rust); }

.hero__scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 4;
  color: var(--cream);
  font-size: 20px;
  animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* SCROLL REVEAL */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ABOUT */
.about {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 90px;
  padding: 160px 56px 120px;
  align-items: start;
}

.about__photo {
  position: relative;
  transform: rotate(-2deg);
}

.about__photo img {
  width: 100%;
  display: block;
  filter: grayscale(1) contrast(1.05);
  border: 10px solid var(--cream);
  box-shadow: var(--shadow);
}

.about__tape {
  position: absolute;
  width: 70px;
  height: 26px;
  background: rgba(207, 154, 61, 0.55);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  z-index: 2;
}
.about__tape--1 { top: -14px; left: 30px; transform: rotate(-8deg); }
.about__tape--2 { bottom: -14px; right: 24px; transform: rotate(6deg); }

.about__quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.4;
  color: var(--rust-dark);
  margin: 0 0 32px;
  max-width: 620px;
}

.about__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 40px;
  margin: 0 0 24px;
}

.about__content p.about__body {
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink-soft);
  max-width: 620px;
  margin: 0 0 20px;
}
.about__content p.about__body:last-child { margin-bottom: 0; }

/* SERVICES */
.services {
  padding: 120px 56px;
  background: var(--ink);
  color: var(--cream);
}

.services__list { margin-top: 20px; }

.services__item {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  align-items: baseline;
  padding: 40px 0;
  border-top: 1px solid rgba(246,236,220,0.18);
  overflow: hidden;
}
.services__item:last-child { border-bottom: 1px solid rgba(246,236,220,0.18); }

.services__item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(.65,0,.35,1);
  z-index: 0;
}
.services__item:hover::before { transform: scaleX(1); }

.services__num {
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(246,236,220,0.5);
  position: relative;
  z-index: 1;
  transition: -webkit-text-stroke 0.4s ease, color 0.4s ease;
}
.services__item:hover .services__num {
  -webkit-text-stroke: 1px var(--cream);
}

.services__body { position: relative; z-index: 1; }

.services__body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 30px;
  margin: 0 0 12px;
  transition: color 0.4s ease;
}

.services__body p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(246,236,220,0.65);
  max-width: 480px;
  transition: color 0.4s ease;
}

.services__item:hover .services__body h3,
.services__item:hover .services__body p { color: var(--cream); }

/* GALLERY */
.gallery { padding: 130px 56px; }

.gallery__wall {
  columns: 3 220px;
  column-gap: 34px;
}

.gallery__pin {
  margin: 0 0 40px;
  break-inside: avoid;
  background: var(--paper);
  padding: 14px 14px 20px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.gallery__pin:nth-child(1) { transform: rotate(-2deg); }
.gallery__pin:nth-child(2) { transform: rotate(1.5deg); }
.gallery__pin:nth-child(3) { transform: rotate(-1deg); }
.gallery__pin:nth-child(4) { transform: rotate(2deg); }
.gallery__pin:nth-child(5) { transform: rotate(-1.5deg); }
.gallery__pin:nth-child(6) { transform: rotate(1.2deg); }

.gallery__pin:hover {
  transform: rotate(0deg) scale(1.03);
  box-shadow: 0 30px 55px rgba(35,20,10,0.3);
  z-index: 3;
  position: relative;
}

.gallery__pin img {
  width: 100%;
  display: block;
}

/* STATEMENT */
.statement {
  position: relative;
  padding: 150px 56px;
  background: var(--rust);
  color: var(--cream);
  text-align: center;
  overflow: hidden;
}

.statement__mark {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--serif);
  font-size: 320px;
  line-height: 1;
  color: rgba(255,255,255,0.1);
  pointer-events: none;
  z-index: 0;
}

.statement__kicker {
  position: relative;
  z-index: 1;
  color: rgba(246,236,220,0.75);
  text-align: center;
}

.statement__quote {
  position: relative;
  z-index: 1;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(26px, 3.6vw, 44px);
  line-height: 1.4;
  max-width: 820px;
  margin: 0 auto 28px;
}

.statement__attr {
  position: relative;
  z-index: 1;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(246,236,220,0.7);
}

/* EVENTS */
.events {
  padding: 120px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.events__heading {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 38px;
  margin: 0 0 24px;
}

.scribble { position: relative; color: var(--rust-dark); white-space: nowrap; }
.scribble::after {
  content: '';
  position: absolute;
  left: -10px; right: -10px; top: -8px; bottom: -6px;
  border: 2.5px solid var(--rust);
  border-radius: 50% 50% 48% 52% / 55% 48% 52% 45%;
  transform: rotate(-2deg);
  z-index: -1;
}

.events__content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 470px;
  margin: 0 0 26px;
}

.events__link {
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.events__link span { transition: transform 0.3s ease; }
.events__link:hover span { transform: translateX(4px); }

.events__photo {
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 92% 96%, 84% 92%, 76% 97%, 68% 92%, 60% 96%, 52% 91%, 44% 96%, 36% 92%, 28% 97%, 20% 92%, 12% 96%, 4% 91%, 0 95%);
}
.events__photo img { width: 100%; display: block; }
.events__caption {
  position: absolute;
  left: 20px;
  bottom: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--cream);
  background: rgba(33,26,20,0.55);
  padding: 6px 14px;
}

/* CONTACT */
.contact {
  padding: 150px 56px;
  background: var(--plum);
  color: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact__inner { position: relative; z-index: 2; }

.contact__heading {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.08;
  margin: 0 0 24px;
}

.contact p {
  font-size: 17px;
  color: rgba(246,236,220,0.72);
  margin: 0 auto 44px;
  max-width: 460px;
}

.contact__links {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.pill {
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1px solid var(--cream);
  background: var(--cream);
  color: var(--plum);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.pill:hover { transform: translateY(-3px); }

.pill--outline {
  background: transparent;
  color: var(--cream);
}
.pill--outline:hover { background: var(--cream); color: var(--plum); }

/* FOOTER */
.footer {
  padding: 22px 56px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  text-align: center;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(20,14,9,0.92);
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.is-open { display: flex; }
.lightbox__img {
  max-width: 84vw;
  max-height: 84vh;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}
.lightbox__close {
  position: absolute;
  top: 28px;
  right: 40px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 34px;
  cursor: pointer;
  line-height: 1;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(246,236,220,0.4);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  color: var(--cream);
  font-size: 18px;
  cursor: pointer;
}
.lightbox__nav--prev { left: 32px; }
.lightbox__nav--next { right: 32px; }
.lightbox__nav:hover { background: rgba(246,236,220,0.15); }

/* RESPONSIVE */
@media (min-width: 900px) {
  .hero__badge { display: flex; }
}

@media (max-width: 1100px) {
  .about { grid-template-columns: 340px 1fr; gap: 56px; }
  .events { grid-template-columns: 1fr; }
  .events__photo { order: -1; }
}

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--ink);
    padding: 8px 24px 20px;
  }
  .nav.is-open .nav__links a {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(246,236,220,0.15);
    color: var(--cream);
  }
  .nav.is-open .nav__cta { border: none; margin-top: 4px; }

  .hero__panel {
    left: 20px;
    right: 20px;
    max-width: none;
    bottom: 24px;
    transform: rotate(0deg);
    padding: 28px 24px;
  }

  .about {
    grid-template-columns: 1fr;
    padding: 100px 24px 80px;
    gap: 44px;
  }
  .about__photo { max-width: 300px; transform: rotate(0deg); }

  .services { padding: 90px 24px; }
  .services__item { grid-template-columns: 70px 1fr; gap: 18px; padding: 28px 0; }
  .services__num { font-size: 36px; }
  .services__body h3 { font-size: 24px; }

  .gallery { padding: 90px 24px; }
  .gallery__wall { columns: 1 100%; }
  .gallery__pin { transform: rotate(0deg) !important; }
  .gallery__pin:hover { transform: scale(1.02) !important; }

  .statement { padding: 90px 24px; }
  .statement__mark { font-size: 200px; top: -30px; }

  .events { padding: 90px 24px; gap: 36px; }
  .events__photo { clip-path: none; }

  .contact { padding: 90px 24px; }
  .contact__links { flex-direction: column; align-items: center; }

  .footer { padding: 18px 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track, .hero__badge-spin, .hero__scroll-cue { animation: none; }
  [data-reveal] { transition: none; opacity: 1; transform: none; }
}
