*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:  #0c0b09;
  --dark:   #101009;
  --steel:  #171510;
  --bronze: #C87D3E;
  --gold:   #D4A843;
  --amber:  #E8A855;
  --cream:  #F0EBE0;
  --muted:  #7a746e;
  --dim:    #2a2720;
  --font-display: 'Bebas Neue', sans-serif;
  --font-serif:   'Cormorant Gaunt', serif;
  --font-body:    'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

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

.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 6vw;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent;
  transition: background .4s ease, backdrop-filter .4s ease, border-bottom .4s ease;
}
.nav.scrolled {
  background: rgba(12, 11, 9, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--dim);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: .12em;
  color: var(--cream);
  text-decoration: none;
  line-height: 1;
}
.nav__logo span { color: var(--bronze); }
.nav__links {
  display: flex; align-items: center; gap: 2.8rem;
  list-style: none;
}
.nav__links a {
  font-size: .68rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(240,235,224,.75);
  text-decoration: none;
  transition: color .2s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--bronze);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.nav__links a:hover        { color: var(--cream); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta {
  font-size: .68rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--black); background: var(--bronze);
  text-decoration: none; padding: .65rem 1.6rem;
  transition: background .3s;
}
.nav__cta:hover { background: var(--amber); }
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.nav__hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--cream); transition: transform .3s, opacity .3s;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav__drawer {
  display: none;
  position: fixed; inset: 0; top: 72px;
  background: rgba(12,11,9,.97);
  z-index: 999;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 2.5rem;
}
.nav__drawer.open { display: flex; }
.nav__drawer a {
  font-family: var(--font-display);
  font-size: 2.8rem; letter-spacing: .08em;
  color: var(--cream); text-decoration: none;
  transition: color .2s;
}
.nav__drawer a:hover { color: var(--bronze); }

.cursor-dot {
  width: 8px; height: 8px;
  background: var(--bronze);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .2s, height .2s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(200,125,62,.45);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .3s ease, height .3s ease, border-color .3s ease;
}

.reveal {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity .85s cubic-bezier(.16,1,.3,1), transform .85s cubic-bezier(.16,1,.3,1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-52px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.reveal-right {
  opacity: 0;
  transform: translateX(52px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
}
.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1; transform: translate(0,0);
}
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }
.delay-4 { transition-delay: .5s;  }

.hero {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: url('../images/compressed/Primary.webp') center 30% / cover no-repeat;
  transform: scale(1.06);
  transition: transform 8s ease-out;
}
.hero__bg.loaded { transform: scale(1); }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(12,11,9,.12) 0%,
    rgba(12,11,9,.25) 45%,
    rgba(12,11,9,.78) 78%,
    rgba(12,11,9,1)   100%
  );
}
.hero__content {
  position: relative; z-index: 2;
  padding: 0 6vw 8vh;
}
.hero__eyebrow {
  font-size: .68rem; font-weight: 500;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--bronze); margin-bottom: 1.6rem;
  opacity: 0; animation: fadeUp .8s .3s forwards;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 12.5vw, 14rem);
  line-height: .88; letter-spacing: -.01em;
  color: var(--cream);
  opacity: 0; animation: fadeUp .9s .5s forwards;
}
.hero__headline em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--bronze);
}
.hero__sub {
  margin-top: 2.8rem;
  display: flex; align-items: center; gap: 3.5rem;
  opacity: 0; animation: fadeUp .9s .75s forwards;
}
.hero__sub p {
  font-size: .95rem; font-weight: 300;
  color: rgba(240,235,224,.65);
  max-width: 360px; line-height: 1.8;
}
.hero__cta {
  display: inline-flex; align-items: center; gap: .8rem;
  font-size: .72rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--cream); text-decoration: none;
  border: 1px solid rgba(200,125,62,.55);
  padding: 1.05rem 2.2rem;
  white-space: nowrap;
  transition: background .3s, border-color .3s;
}
.hero__cta:hover { background: var(--bronze); border-color: var(--bronze); }
.hero__cta .arr { transition: transform .3s; }
.hero__cta:hover .arr { transform: translateX(5px); }
.hero__scroll {
  position: absolute; bottom: 4vh; right: 6vw; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  opacity: 0; animation: fadeUp .9s 1.1s forwards;
}
.hero__scroll span {
  font-size: .58rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--muted); writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--bronze), transparent);
  animation: scrollPulse 2.2s infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.marquee { background: var(--bronze); padding: .9rem 0; overflow: hidden; white-space: nowrap; }
.marquee__track { display: inline-flex; animation: marqueeScroll 32s linear infinite; }
.marquee__item {
  font-family: var(--font-display);
  font-size: .82rem; letter-spacing: .18em;
  color: var(--black); padding: 0 2.5rem;
}
.marquee__sep { color: rgba(12,11,9,.35); margin: 0 .4rem; }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.container { max-width: 1400px; margin: 0 auto; padding: 0 6vw; }
.section-label {
  font-size: .63rem; font-weight: 500;
  letter-spacing: .32em; text-transform: uppercase;
  color: var(--bronze);
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem;
}
.section-label::before {
  content: ''; display: inline-block;
  width: 28px; height: 1px; background: var(--bronze);
}
.rule { width: 55px; height: 1px; background: var(--bronze); margin: 2.5rem 0; }
.btn-primary {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .72rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--black); background: var(--bronze);
  text-decoration: none; padding: 1.1rem 2.6rem;
  transition: background .3s, transform .2s;
}
.btn-primary:hover { background: var(--amber); transform: translateY(-2px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: .75rem;
  font-size: .72rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--cream); text-decoration: none;
  padding: 1.1rem 2.6rem;
  border: 1px solid rgba(240,235,224,.28);
  transition: background .3s, border-color .3s;
}
.btn-secondary:hover { background: rgba(240,235,224,.08); border-color: rgba(240,235,224,.6); }
.btn-group { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

.about { padding: 13vh 0; background: var(--black); }
.about__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 7vw; align-items: center;
}
.about__image-wrap { position: relative; }
.about__image {
  width: 100%; height: 78vh;
  object-fit: cover; object-position: center top;
}
.about__image-accent {
  position: absolute; bottom: -2.5rem; right: -2.5rem;
  width: 52%; height: 38%;
  object-fit: cover; object-position: center;
  border: 5px solid var(--black);
}
.about__badge {
  position: absolute; top: 2.5rem; right: -1.5rem;
  background: var(--bronze); color: var(--black);
  padding: 1.3rem 1.6rem; text-align: center;
  z-index: 2;
}
.about__badge-num {
  font-family: var(--font-display);
  font-size: 2.8rem; line-height: 1; display: block;
}
.about__badge-lbl {
  font-size: .58rem; letter-spacing: .22em;
  text-transform: uppercase; display: block; margin-top: .3rem;
}
.about__headline {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.5vw, 6rem);
  line-height: .92; color: var(--cream);
  margin-bottom: 2.5rem;
}
.about__headline em {
  font-style: italic; font-family: var(--font-serif);
  color: var(--bronze); font-size: 1.08em;
}
.about__body {
  font-size: .98rem; font-weight: 300; line-height: 1.9;
  color: rgba(240,235,224,.65); margin-bottom: 1.4rem;
}
.about__sig { font-family: var(--font-serif); font-style: italic; font-size: 1.5rem; color: var(--bronze); margin-top: 2.5rem; }

.quote-section {
  position: relative; height: 68vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.quote-section__bg {
  position: absolute; inset: 0;
  background: url('../images/compressed/Cohen Workshop-81660.webp') center / cover no-repeat fixed;
  filter: brightness(.3);
}
.quote-section__content { position: relative; z-index: 2; text-align: center; padding: 0 6vw; max-width: 920px; }
.quote-section__text {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(2rem, 3.8vw, 3.8rem); font-weight: 300;
  line-height: 1.3; color: var(--cream);
}
.quote-section__text strong { color: var(--bronze); font-style: normal; }
.quote-section__attr { margin-top: 2.2rem; font-size: .65rem; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); }

.work { padding: 12vh 0; background: var(--steel); }
.work__header { margin-bottom: 5vh; }
.work__headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7.5vw, 8.5rem);
  line-height: .9; color: var(--cream);
}
.work__headline span { color: var(--bronze); }
.workSwiper { overflow: visible !important; padding-bottom: 3.5rem !important; }
.swiper-slide { width: 42vw; max-width: 620px; }
.slide-card { position: relative; overflow: hidden; cursor: pointer; }
.slide-card__img {
  width: 100%; height: 62vh; object-fit: cover; display: block;
  transition: transform .75s cubic-bezier(.16,1,.3,1);
}
.slide-card:hover .slide-card__img { transform: scale(1.06); }
.slide-card__overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.2rem 2rem 2rem;
  background: linear-gradient(to top, rgba(12,11,9,.96) 0%, transparent 100%);
  transform: translateY(100%); transition: transform .4s ease;
}
.slide-card:hover .slide-card__overlay { transform: translateY(0); }
.slide-card__title { font-family: var(--font-display); font-size: 1.5rem; letter-spacing: .05em; color: var(--cream); }
.slide-card__sub   { font-size: .72rem; color: var(--bronze); letter-spacing: .2em; text-transform: uppercase; margin-top: .25rem; }
.swiper-pagination-bullet        { background: var(--muted) !important; opacity: 1 !important; }
.swiper-pagination-bullet-active { background: var(--bronze) !important; width: 22px !important; border-radius: 3px !important; }

.stats {
  background: var(--steel);
  border-top: 1px solid var(--dim);
  border-bottom: 1px solid var(--dim);
}
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats__item {
  text-align: center; padding: 5vh 1rem;
  border-right: 1px solid var(--dim);
}
.stats__item:last-child { border-right: none; }
.stats__num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.2rem);
  color: var(--bronze); display: block; line-height: 1;
}
.stats__lbl { font-size: .62rem; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); margin-top: .5rem; }

.process { padding: 12vh 0; background: var(--black); }
.process__headline {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.5vw, 7.5rem);
  line-height: .9; color: var(--cream);
  margin-bottom: 7vh; max-width: 750px;
}
.process__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.process__item { position: relative; overflow: hidden; }
.process__item img {
  width: 100%; height: 58vh; object-fit: cover;
  filter: grayscale(15%) brightness(.68);
  transition: filter .5s, transform .7s cubic-bezier(.16,1,.3,1);
}
.process__item:hover img { filter: grayscale(0%) brightness(.85); transform: scale(1.04); }
.process__item-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem 2rem 2rem;
  background: linear-gradient(to top, rgba(12,11,9,.92) 0%, transparent 100%);
}
.process__item-num  { font-family: var(--font-display); font-size: .72rem; letter-spacing: .22em; color: var(--bronze); display: block; margin-bottom: .2rem; }
.process__item-name { font-family: var(--font-display); font-size: 1.65rem; letter-spacing: .05em; color: var(--cream); }

.commission {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.commission__bg {
  position: absolute; inset: 0;
  background: url('../images/compressed/Cohen Workshop-82897.webp') center / cover no-repeat fixed;
}
.commission__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(12,11,9,.96) 0%,
    rgba(12,11,9,.72) 50%,
    rgba(12,11,9,.1)  100%
  );
}
.commission__content { position: relative; z-index: 2; padding: 0 6vw; max-width: 720px; }
.commission__headline {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 9vw, 10.5rem);
  line-height: .88; color: var(--cream); margin-bottom: 2.5rem;
}
.commission__headline em { font-style: italic; font-family: var(--font-serif); color: var(--bronze); }
.commission__body {
  font-size: 1rem; font-weight: 300; line-height: 1.88;
  color: rgba(240,235,224,.65); max-width: 500px; margin-bottom: 3rem;
}

.workshop { padding: 13vh 0; background: var(--black); }
.workshop__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.workshop__images { position: relative; height: 82vh; }
.workshop__img-main { width: 100%; height: 100%; object-fit: cover; }
.workshop__img-inset {
  position: absolute; bottom: -3rem; right: -3rem;
  width: 50%; height: 44%;
  object-fit: cover; border: 5px solid var(--black); z-index: 2;
}
.workshop__text {
  padding: 6vh 0 6vh 6vw;
  display: flex; flex-direction: column; justify-content: center;
}
.workshop__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.5rem);
  line-height: .92; color: var(--cream); margin-bottom: 2.5rem;
}
.workshop__headline em { font-style: italic; font-family: var(--font-serif); color: var(--bronze); }
.workshop__body { font-size: .98rem; font-weight: 300; line-height: 1.9; color: rgba(240,235,224,.65); margin-bottom: 1.4rem; }
.services { margin: 2.5rem 0 3rem; display: flex; flex-direction: column; gap: .85rem; }
.service-item { display: flex; align-items: center; gap: 1rem; font-size: .9rem; color: rgba(240,235,224,.75); }
.service-item::before { content: ''; display: inline-block; width: 20px; height: 1px; background: var(--bronze); flex-shrink: 0; }

.built {
  position: relative; height: 88vh;
  display: flex; align-items: flex-end; overflow: hidden;
}
.built__bg {
  position: absolute; inset: 0;
  background: url('../images/compressed/Cohen Workshop-82960.webp') center 40% / cover no-repeat;
}
.built__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(12,11,9,.08) 0%, rgba(12,11,9,.88) 80%, rgba(12,11,9,1) 100%);
}
.built__content {
  position: relative; z-index: 2;
  padding: 0 6vw 7vh; width: 100%;
  display: flex; justify-content: space-between; align-items: flex-end; gap: 4rem;
}
.built__headline {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 9vw, 11rem);
  line-height: .88; color: var(--cream); flex: 1;
}
.built__right { max-width: 400px; flex-shrink: 0; }
.built__body { font-size: .96rem; font-weight: 300; line-height: 1.9; color: rgba(240,235,224,.6); }

.testimonial { background: var(--steel); padding: 11vh 0; }
.testimonial__inner { max-width: 880px; margin: 0 auto; text-align: center; }
.testimonial__quote {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.6rem); font-weight: 300;
  line-height: 1.45; color: var(--cream); margin-bottom: 2.5rem;
}
.testimonial__quote::before {
  content: '\201C'; font-size: 5.5rem; line-height: 0;
  vertical-align: -2.5rem; color: var(--bronze); margin-right: .25rem;
}
.testimonial__author { font-size: .65rem; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); }
.testimonial__author strong { color: var(--bronze); }

.cta {
  position: relative; height: 68vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.cta__bg {
  position: absolute; inset: 0;
  background: url('../images/compressed/Cohen Workshop-82536.webp') center 20% / cover no-repeat fixed;
  filter: brightness(.18);
}
.cta__content { position: relative; z-index: 2; padding: 0 6vw; }
.cta__label { font-size: .63rem; letter-spacing: .35em; text-transform: uppercase; color: var(--bronze); margin-bottom: 1.5rem; }
.cta__headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 9vw, 10.5rem);
  line-height: .88; color: var(--cream); margin-bottom: 3rem;
}

footer { background: var(--dark); padding: 9vh 0 4vh; border-top: 1px solid var(--dim); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 6vw; margin-bottom: 7vh; }
.footer__brand { font-family: var(--font-display); font-size: 2.6rem; letter-spacing: .06em; color: var(--cream); line-height: 1; margin-bottom: 1.5rem; }
.footer__brand span { color: var(--bronze); }
.footer__tagline { font-size: .88rem; font-weight: 300; color: var(--muted); line-height: 1.75; max-width: 310px; }
.footer__heading { font-size: .62rem; letter-spacing: .32em; text-transform: uppercase; color: var(--bronze); margin-bottom: 1.6rem; }
.footer__links { list-style: none; display: flex; flex-direction: column; gap: .8rem; }
.footer__links a { font-size: .9rem; font-weight: 300; color: rgba(240,235,224,.5); text-decoration: none; transition: color .2s; }
.footer__links a:hover { color: var(--bronze); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 3vh; border-top: 1px solid var(--dim);
  font-size: .75rem; color: var(--muted);
}
.footer__bottom a { color: var(--muted); text-decoration: none; }
.footer__bottom a:hover { color: var(--bronze); }

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
}
@media (max-width: 1100px) {
  .about__grid, .workshop__grid { grid-template-columns: 1fr; }
  .about__image        { height: 52vh; }
  .about__image-accent { display: none; }
  .about__badge        { right: 1.5rem; }
  .workshop__images    { height: 55vh; }
  .workshop__img-inset { display: none; }
  .workshop__text      { padding: 6vh 0 0; }
  .process__grid       { grid-template-columns: 1fr; }
  .process__item img   { height: 50vh; }
  .stats__grid         { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2) { border-right: none; }
  .built__content      { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .footer__grid        { grid-template-columns: 1fr 1fr; }
  .swiper-slide        { width: 72vw; }
}
@media (max-width: 640px) {
  .hero__sub    { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .stats__grid  { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: .8rem; text-align: center; }
  .swiper-slide { width: 88vw; }
  .btn-group    { flex-direction: column; align-items: flex-start; }
  .quote-section__bg,
  .commission__bg,
  .built__bg,
  .cta__bg      { background-attachment: scroll; }
}
