/* ============ TOKENS ============ */
:root {
  --ink: #0a0a0c;
  --ink-soft: #14131a;
  --panel: #1a1822;
  --gold: #c9a44c;
  --gold-bright: #e0c178;
  --cream: #f3efe7;
  --grey: #9b97a6;
  --line: rgba(243, 239, 231, 0.1);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", -apple-system, sans-serif;

  --section-pad: clamp(64px, 10vw, 140px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; margin: 0; }
p { margin: 0; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ============ REVEAL UTILITY ============ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 2px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1408;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -8px rgba(201, 164, 76, 0.55);
}
.btn--ghost {
  background: transparent;
  border: 1px solid rgba(243, 239, 231, 0.35);
  color: var(--cream);
}
.btn--ghost:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
}
.btn--ghost-light {
  background: rgba(10, 10, 12, 0.15);
  border: 1px solid rgba(10, 10, 12, 0.3);
  color: var(--ink);
}
.btn--ghost-light:hover {
  background: rgba(10, 10, 12, 0.28);
}

/* ============ NAVBAR ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px clamp(20px, 5vw, 56px);
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}
.nav.is-scrolled {
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(14px);
  padding: 14px clamp(20px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
}
.nav__brand {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
}
.nav__logo {
  height: 63px;
  width: auto;
  display: block;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 1.1rem;
}
.nav__links a:not(.nav__cta) {
  color: var(--grey);
  transition: color 0.25s ease;
}
.nav__links a:not(.nav__cta):hover { color: var(--cream); }
.nav__cta {
  padding: 10px 22px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  color: var(--gold-bright);
  transition: background 0.25s ease, color 0.25s ease;
}
.nav__cta:hover { background: var(--gold); color: #1a1408; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__burger span {
  width: 24px; height: 1.5px;
  background: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 24px 80px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(201, 164, 76, 0.16), transparent 60%),
    radial-gradient(ellipse 90% 60% at 50% 100%, rgba(40, 36, 60, 0.9), transparent 70%),
    linear-gradient(180deg, #0a0a0c 0%, #121018 50%, #0a0a0c 100%);
}
.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero__content { position: relative; z-index: 2; max-width: 880px; }
.hero__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--gold-bright);
  margin-bottom: 24px;
  font-weight: 600;
}
.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
.hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.6;
  color: var(--grey);
  max-width: 620px;
  margin: 0 auto 44px;
}
.hero__actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 22px; height: 36px;
  border: 1px solid rgba(243, 239, 231, 0.3);
  border-radius: 12px;
}
.hero__scroll span {
  display: block;
  width: 4px; height: 8px;
  background: var(--gold-bright);
  border-radius: 2px;
  margin: 6px auto 0;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============ TRUST BAR ============ */
.trust {
  background: var(--ink-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 56px 24px;
}
.trust__grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(24px, 6vw, 64px);
  flex-wrap: wrap;
}
.trust__stat { display: flex; flex-direction: column; gap: 6px; }
.trust__num {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--gold-bright);
  font-weight: 700;
}
.trust__label {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: var(--grey);
  text-transform: uppercase;
}
.trust__divider {
  width: 1px; height: 48px;
  background: var(--line);
}
@media (max-width: 640px) {
  .trust__divider { display: none; }
}

/* ============ SECTION HEAD (shared) ============ */
.section__head {
  max-width: 640px;
  margin: 0 auto 64px;
  text-align: center;
  padding: 0 24px;
}
.section__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 14px;
}
.section__title {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1.2;
}

/* ============ SERVICES ============ */
.services { padding: var(--section-pad) 24px; max-width: 1200px; margin: 0 auto; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--ink);
  padding: 40px 28px;
  transition: background 0.3s ease;
}
.service-card:hover { background: var(--ink-soft); }
.service-card__icon {
  width: 36px; height: 36px;
  color: var(--gold);
  margin-bottom: 24px;
}
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 1.6;
}
@media (max-width: 960px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services__grid { grid-template-columns: 1fr; }
}

/* ============ WHY US ============ */
.why {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--section-pad) 24px;
}
.why__body {
  color: var(--grey);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-top: 22px;
}
.why__body + .why__body { margin-top: 16px; }
.why__visual {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why__ring {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.why__ring--1 { width: 260px; height: 260px; border-color: rgba(201,164,76,0.25); }
.why__ring--2 { width: 320px; height: 320px; }
.why__years {
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--gold-bright);
  font-weight: 700;
}
@media (max-width: 880px) {
  .why { grid-template-columns: 1fr; text-align: center; }
  .why__visual { order: -1; height: 220px; }
  .why__ring--1 { width: 180px; height: 180px; }
  .why__ring--2 { width: 230px; height: 230px; }
  .why__years { font-size: 3.4rem; }
}

/* ============ PROCESS ============ */
.process { background: var(--ink-soft); padding: var(--section-pad) 24px; }
.process__rail {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.process__line {
  position: absolute;
  top: 14px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: var(--line);
}
.process__line-fill {
  position: absolute;
  inset: 0;
  width: 0%;
  background: var(--gold);
  transition: width 1.6s ease;
}
.process__line-fill.is-filled { width: 100%; }
.process__step { position: relative; padding-top: 40px; }
.process__num {
  position: absolute;
  top: 0; left: 0;
  font-family: var(--serif);
  font-size: 0.85rem;
  color: var(--gold-bright);
  background: var(--ink-soft);
  padding-right: 12px;
}
.process__step h3 { font-size: 1.15rem; margin-bottom: 10px; }
.process__step p { color: var(--grey); font-size: 0.92rem; line-height: 1.6; }
@media (max-width: 880px) {
  .process__rail { grid-template-columns: 1fr; gap: 36px; }
  .process__line { display: none; }
}

/* ============ FEATURED WORK ============ */
/* ============ FEATURED WORK ============ */
.work { padding: var(--section-pad) 0; max-width: 100%; overflow: hidden; }
.work .section__head { padding: 0 24px; }

.carousel {
  overflow: hidden;
  margin-bottom: 14px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.carousel__track {
  display: flex;
  gap: 14px;
  width: max-content;
  will-change: transform;
}
.work__item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(201,164,76,0.18), rgba(201,164,76,0) 60%),
    linear-gradient(135deg, #1c1a24, #0f0e14);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.work__item span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(243,239,231,0.35);
  text-transform: uppercase;
}
.work__item--big { width: 460px; height: 300px; }
.work__item--med { width: 340px; height: 210px; }
.work__item--sm  { width: 250px; height: 150px; }

@media (max-width: 640px) {
  .work__item--big { width: 80vw; height: 180px; }
  .work__item--med { width: 70vw; height: 150px; }
  .work__item--sm  { width: 60vw; height: 120px; }
}

/* ============ TESTIMONIAL ============ */
.testimonial {
  background: var(--ink-soft);
  text-align: center;
  padding: var(--section-pad) 24px;
  max-width: 760px;
  margin: 0 auto;
}
.testimonial__mark {
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}
.testimonial__quote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 24px;
}
.testimonial__by {
  color: var(--grey);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

/* ============ FINAL CTA ============ */
.cta {
  text-align: center;
  padding: var(--section-pad) 24px;
  background: linear-gradient(160deg, #d8b96a, #b8923c);
  color: var(--ink);
}
.cta__title {
  font-size: clamp(2rem, 4.4vw, 3rem);
  margin-bottom: 16px;
  color: #1a1408;
}
.cta__sub {
  font-size: 1.05rem;
  color: rgba(26,20,8,0.75);
  margin-bottom: 40px;
}
.cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta .btn--primary {
  background: #0a0a0c;
  color: var(--gold-bright);
}
.cta .btn--primary:hover { box-shadow: 0 12px 28px -8px rgba(10,10,12,0.4); }

/* ============ FOOTER ============ */
.footer {
  text-align: center;
  padding: 48px 24px;
  background: var(--ink);
  color: var(--grey);
  font-size: 0.85rem;
}
.footer p { margin-bottom: 8px; }
.footer a { color: var(--gold-bright); }
.footer__copy { color: rgba(155,151,166,0.5); font-size: 0.78rem; margin-top: 16px; }

/* ============ MOBILE NAV ============ */
@media (max-width: 820px) {
  .nav__burger { display: flex; }
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--ink-soft);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    border-left: 1px solid var(--line);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__cta { margin-top: 8px; }
}

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 10, 12, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  padding: 24px;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transform: scale(0.94);
  transition: transform 0.3s ease;
}
.lightbox.is-open .lightbox__img {
  transform: scale(1);
}
.lightbox__close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.lightbox__close:hover { opacity: 1; }

/* makes it obvious the photos are clickable */
.work__item { cursor: pointer; }
