* , *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #110f0d; color: #e2d6c2;
  font-family: Georgia, 'Times New Roman', serif; font-size: 1rem; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
::selection { background: #a06a30; color: #ffffff; }
:focus-visible { outline: 2px solid #a06a30; outline-offset: 3px; }
h1, h2 { font-family: Copperplate, 'Copperplate Gothic Light', 'Segoe UI', sans-serif; line-height: 1.08; font-weight: 600; }
a { color: inherit; text-decoration: none; }

/* ---- minimal transparent top nav ---- */
.topnav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  mix-blend-mode: difference;
}
.topnav-in {
  max-width: 88rem; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.90rem 1.60rem;
}
.brand {
  font-family: Copperplate, 'Copperplate Gothic Light', 'Segoe UI', sans-serif; font-size: 1.15rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: #fff;
}
.links { display: flex; gap: 1.60rem; }
.links a {
  color: #fff; font-size: 0.8rem; letter-spacing: 0.14em;
  text-transform: uppercase; opacity: 0.85;
}
.links a:hover { opacity: 1; }

/* ---- full-bleed hero ---- */
.hero { position: relative; height: 100vh; min-height: 34rem; overflow: hidden; }
.hero-img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(7,6,5,0.55), transparent 45%),
    linear-gradient(to bottom, rgba(7,6,5,0.55), transparent 40%);
}
.hero-cap {
  position: absolute; left: 0; right: 0; bottom: 8vh;
  max-width: 88rem; margin: 0 auto; padding: 0 1.60rem; color: #fff;
}
.hero-kick {
  text-transform: uppercase; letter-spacing: 0.34em;
  font-size: 0.76rem; opacity: 0.9; margin-bottom: 0.90rem;
}
.hero-title {
  color: #fff; font-size: clamp(2.6rem, 8vw, 6rem);
  letter-spacing: -0.01em; margin-bottom: 0.4rem;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.3rem); max-width: 34rem; opacity: 0.92;
}
.scroll-cue {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  width: 2.6rem; height: 2.6rem; border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%; color: #fff; display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }

/* ---- section headers (kept minimal) ---- */
.sec-head { max-width: 88rem; margin: 0 auto; padding: 0 1.60rem 1.60rem; }
.sec-head h2 { font-size: clamp(1.6rem, 4vw, 2.6rem); }
.sec-head p { color: #786a5a; max-width: 34rem; margin-top: 0.4rem; }
.sec-head-row {
  display: flex; align-items: baseline; justify-content: space-between; gap: 1.60rem;
}
.drag-hint {
  color: #786a5a; font-size: 0.76rem; letter-spacing: 0.14em;
  text-transform: uppercase; white-space: nowrap;
}

/* ---- gallery: masonry, image-led ---- */
.gallery { padding: 4.40rem 0 2.80rem; }
.masonry {
  max-width: 88rem; margin: 0 auto; padding: 0 1.60rem;
  display: grid; grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 12rem; grid-auto-flow: dense; gap: 0.90rem;
}
.shot {
  position: relative; overflow: hidden; border-radius: 1px;
  background: #1a1613;
}
.shot img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.shot:hover img { transform: scale(1.05); }
.shot.reg { grid-row: span 2; }
.shot.tall { grid-row: span 3; }
.shot.wide { grid-column: span 2; grid-row: span 2; }
.shot figcaption {
  position: absolute; inset: auto 0 0 0;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 1.60rem 0.90rem 0.90rem;
  color: #fff; background: linear-gradient(transparent, rgba(104,69,31,0.82));
  opacity: 0; transform: translateY(0.6rem);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.shot:hover figcaption, .shot:focus-within figcaption {
  opacity: 1; transform: translateY(0);
}
.cap-t {
  font-family: Copperplate, 'Copperplate Gothic Light', 'Segoe UI', sans-serif; font-size: 1.05rem; letter-spacing: 0.02em;
}
.cap-n { font-size: 0.8rem; opacity: 0.85; letter-spacing: 0.14em; }

/* ---- horizontal snap strip ---- */
.strip { padding: 2.80rem 0 4.40rem; background: #1a1613; }
.film {
  display: flex; gap: 0.90rem; overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 1.60rem 0.90rem; scrollbar-width: thin;
}
.film::-webkit-scrollbar { height: 6px; }
.film::-webkit-scrollbar-thumb { background: #a06a30; border-radius: 99px; }
.film-item {
  position: relative; flex: 0 0 min(78vw, 30rem);
  scroll-snap-align: center; border-radius: 1px; overflow: hidden;
}
.film-item img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  transition: transform 0.5s ease;
}
.film-item:hover img { transform: scale(1.04); }
.film-item figcaption {
  position: absolute; left: 0; bottom: 0; padding: 0.5rem 0.9rem;
  background: rgba(104,69,31,0.82); color: #fff; font-size: 0.8rem;
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* ---- slim about band ---- */
.about {
  max-width: 88rem; margin: 0 auto; padding: 4.40rem 1.60rem;
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 2.80rem;
  align-items: center;
}
.about-img { border-radius: 1px; overflow: hidden; }
.about-img img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.about-txt .hero-kick { color: #a06a30; }
.about-txt h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 0.90rem; }
.about-txt p { color: #786a5a; margin-bottom: 1.60rem; max-width: 34rem; }
.btn {
  display: inline-block; cursor: pointer;
  font-family: Copperplate, 'Copperplate Gothic Light', 'Segoe UI', sans-serif; font-size: 0.9rem; letter-spacing: 0.06em;
  padding: 0.85em 2.2em; background: #a06a30; color: #ffffff;
  border: 1px solid #a06a30; border-radius: 1px;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn:hover { background: transparent; color: #a06a30; }

/* ---- contact footer ---- */
.contact { background: #e2d6c2; color: #110f0d; padding: 4.40rem 1.60rem; }
.contact-in { max-width: 60rem; margin: 0 auto; text-align: center; }
.contact-in h2 { color: #110f0d; font-size: clamp(2rem, 6vw, 3.4rem); }
.lead { color: #110f0d; opacity: 0.75; margin: 0.6rem auto 2.80rem; max-width: 32rem; }
.contact-rows {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1.60rem 4.40rem;
  border-top: 1px solid rgba(160,106,48,0.14); border-bottom: 1px solid rgba(160,106,48,0.14);
  padding: 1.60rem 0; margin-bottom: 1.60rem;
}
.contact-rows a, .contact-rows .addr {
  display: flex; flex-direction: column; gap: 0.25rem;
  font-family: Copperplate, 'Copperplate Gothic Light', 'Segoe UI', sans-serif; font-size: 1.1rem; color: #110f0d;
}
.contact-rows span {
  font-family: Georgia, 'Times New Roman', serif; font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: #a06a30; opacity: 0.9;
}
.contact-rows a:hover { color: #a06a30; }
.colophon {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: #110f0d; opacity: 0.55;
}

@media (prefers-reduced-motion: reduce) {
  .scroll-cue { animation: none; }
  .shot img, .film-item img { transition: none; }
}

@media (max-width: 900px) {
  .masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 10rem; }
  .shot.wide { grid-column: span 2; }
  .about { grid-template-columns: 1fr; }
  .about-img { max-width: 26rem; }
}
@media (max-width: 560px) {
  .links { gap: 0.90rem; }
  .links a { font-size: 0.68rem; letter-spacing: 0.08em; }
  .masonry { grid-template-columns: 1fr; grid-auto-rows: 14rem; }
  .shot.wide, .shot.tall, .shot.reg { grid-column: span 1; grid-row: span 1; }
  .contact-rows { flex-direction: column; align-items: center; }
}


.xq{box-sizing:border-box;font-family:Georgia, 'Times New Roman', serif;color:#e2d6c2;padding:56px 24px;width:100%}
.xq *{box-sizing:border-box;margin:0}
.xq .xq-wrap{max-width:1060px;margin:0 auto}
.xq h2{font-family:Copperplate, 'Copperplate Gothic Light', 'Segoe UI', sans-serif;font-size:1.7rem;line-height:1.2;margin-bottom:8px}
.xq .xq-kick{display:block;font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;color:#a06a30;margin-bottom:10px;font-weight:700}

.xq-steplist{counter-reset:xqs;list-style:none;padding:0;margin-top:22px;display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:18px}
.xq-step{counter-increment:xqs;position:relative;padding:18px 18px 18px 20px;border-left:3px solid #a06a30;background:rgba(226,214,194,0.05);border-radius:0 1px 1px 0}
.xq-step::before{content:"0" counter(xqs);display:block;font-family:Copperplate, 'Copperplate Gothic Light', 'Segoe UI', sans-serif;font-size:.8rem;letter-spacing:.1em;color:#a06a30;font-weight:800;margin-bottom:8px}
.xq-step h3{font-family:Copperplate, 'Copperplate Gothic Light', 'Segoe UI', sans-serif;font-size:1.02rem;margin-bottom:6px}
.xq-step p{font-size:.9rem;color:#786a5a}


/* =====================================================
   DESIGN DNA: stamp-post
   Whole-page visual system applied over the layout
   archetype. Appended last so it wins the cascade.
   ===================================================== */
html::before{content:'';position:fixed;inset:0;z-index:99980;pointer-events:none;background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Ccircle cx='130' cy='130' r='60' fill='none' stroke='%23e8dece' stroke-width='1.6'/%3E%3Ccircle cx='130' cy='130' r='48' fill='none' stroke='%23e8dece' stroke-width='.8'/%3E%3C/svg%3E");opacity:.06;}
h1,h2,h3{font-family:Rockwell, 'Rockwell Nova', 'Roboto Slab', Georgia, serif !important;text-transform:uppercase !important;letter-spacing:.12em !important;font-weight:700 !important}
img{border:10px solid #ececec !important;border-radius:0 !important;outline:2px dashed rgba(232,222,206,.5);outline-offset:-7px;box-shadow:0 8px 22px rgba(0,0,0,.18) !important}
a[class*="btn"],button,span[class*="btn"]{border-radius:0 !important;border:2px dashed #a06a30 !important;text-transform:uppercase;letter-spacing:.12em;font-weight:700;box-shadow:none !important}
div[class*="card"]:not([class*="cards"]),article[class*="card"],a[class*="card"],figure[class*="card"],li[class*="card"]{border-radius:0 !important;border:1.5px dashed rgba(232,222,206,.55) !important;box-shadow:none !important}
