:root {
  --bg: #0c0b09;
  --bg-alt: #14120f;
  --card: #1b1813;
  --text: #f4efe6;
  --muted: #a99f8d;
  --gold: #cba35f;
  --gold-2: #e6cf9e;
  --gold-deep: #9c7b43;
  --line: rgba(203, 163, 95, 0.20);
  --border: rgba(203, 163, 95, 0.16);
  --radius: 12px;
  --maxw: 1160px;
  --serif: "Cormorant Garamond", "Trirong", Georgia, serif;
  --serif-th: "Trirong", "Cormorant Garamond", serif;
  --sans: "Prompt", system-ui, -apple-system, sans-serif;
}

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

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
.container--narrow { max-width: 680px; }
a { color: inherit; text-decoration: none; }
.i { font-style: italic; font-family: var(--serif); }

.gold-text {
  background: linear-gradient(120deg, var(--gold-2), var(--gold), var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* REVEAL */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 30px; border-radius: 999px; font-weight: 400; font-size: 15px;
  letter-spacing: .3px; cursor: pointer; border: 1px solid transparent; transition: all .25s ease;
}
.btn--sm { padding: 9px 20px; font-size: 14px; }
.btn--lg { padding: 17px 44px; font-size: 16px; }
.btn--block { width: 100%; padding: 16px; margin-top: auto; }
.btn--primary { background: linear-gradient(120deg, var(--gold-2), var(--gold)); color: #20180c; font-weight: 500; }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -14px rgba(203,163,95,0.6); }
.btn--ghost { border-color: var(--border); color: var(--text); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-2); }

/* TOPBAR */
.topbar { border-bottom: 1px solid var(--line); background: var(--bg); }
.topbar__inner {
  display: flex; justify-content: space-between; align-items: center;
  height: 38px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted);
}
.topbar__center { color: var(--gold); }

/* NAV */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(12, 11, 9, 0.78);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.logo { font-family: var(--serif); font-weight: 600; font-size: 27px; letter-spacing: .5px; }
.logo::after { content: "."; color: var(--gold); }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a { color: var(--muted); font-size: 15px; transition: color .2s; }
.nav__links a:hover { color: var(--text); }
.nav__links a.btn { color: var(--text); }
.nav__toggle { display: none; background: none; border: none; color: var(--text); font-size: 24px; cursor: pointer; }

/* HERO */
.hero { position: relative; padding: 130px 0 96px; overflow: hidden; text-align: center; }
.hero__inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; }
.hero__rule {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  font-family: var(--serif); font-style: italic; color: var(--gold-2);
  font-size: clamp(16px, 2.2vw, 21px); margin-bottom: 26px;
}
.hero__rule span { display: block; width: 54px; height: 1px; background: var(--line); }
.hero__title {
  font-family: var(--serif-th); font-size: clamp(44px, 8vw, 88px); font-weight: 500;
  line-height: 1.05; letter-spacing: .5px;
}
.hero__subtitle { color: var(--muted); font-size: clamp(16px, 2.2vw, 19px); margin: 26px auto 40px; max-width: 600px; }
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__glow {
  position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 860px; height: 860px; border-radius: 50%;
  background: radial-gradient(circle, rgba(203,163,95,0.22), transparent 62%);
  z-index: 1; pointer-events: none;
}

/* MARQUEE */
.marquee {
  overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-alt); padding: 18px 0; white-space: nowrap;
}
.marquee__track { display: inline-flex; align-items: center; animation: scroll 32s linear infinite; }
.marquee__item { font-family: var(--serif); font-size: 26px; color: var(--text); padding: 0 6px; }
.marquee__dot { color: var(--gold); margin: 0 22px; font-size: 13px; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* SECTIONS */
.section { padding: 100px 0; }
.section--alt { background: var(--bg-alt); }
.section__eyebrow {
  text-align: center; color: var(--gold); font-size: 13px; letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 12px;
}
.section__eyebrow--left { text-align: left; margin-bottom: 6px; }
.section__title {
  font-family: var(--serif-th); font-size: clamp(32px, 4.8vw, 50px); font-weight: 500;
  text-align: center; letter-spacing: .5px; line-height: 1.15;
}
.section__title--left { text-align: left; }
.section__lead { color: var(--muted); text-align: center; max-width: 600px; margin: 16px auto 52px; }

/* SECTION HEAD WITH NUMBER */
.sec-head { display: flex; align-items: flex-start; gap: 22px; margin-bottom: 48px; }
.sec-head__no {
  font-family: var(--serif); font-size: clamp(34px, 5vw, 52px); font-weight: 500;
  color: var(--gold); opacity: .45; line-height: 1; padding-top: 4px;
}

/* ABOUT */
.about { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.about__lead { font-family: var(--serif-th); font-size: clamp(22px, 2.6vw, 28px); color: var(--text); line-height: 1.4; margin-bottom: 20px; }
.about__text { color: var(--muted); font-size: 16px; margin-bottom: 30px; }
.about__points { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.about__points li { display: flex; flex-direction: column; padding-left: 22px; border-left: 2px solid var(--gold); }
.about__points strong { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--gold-2); }
.about__points span { color: var(--muted); font-size: 15px; }

/* STATS */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-alt); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 48px 26px; }
.stat { text-align: center; }
.stat__value { display: block; font-family: var(--serif); font-size: clamp(34px, 4.6vw, 48px); font-weight: 600; color: var(--gold-2); }
.stat__label { color: var(--muted); font-size: 14px; }

/* GRID */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--gallery { grid-template-columns: repeat(2, 1fr); margin-top: 22px; }

/* PLACEHOLDER */
.ph {
  display: flex; align-items: center; justify-content: center; text-align: center;
  width: 100%; height: 100%; padding: 20px; color: var(--muted); font-size: 15px;
  font-family: var(--serif); letter-spacing: 1px;
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(203,163,95,0.12), transparent 55%),
    linear-gradient(135deg, #221d15, #14110d);
}
.ph--lg { font-size: 22px; }

/* CARDS */
.card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 36px 30px; transition: transform .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-5px); border-color: rgba(203,163,95,0.5); }
.card__icon { font-size: 30px; color: var(--gold-2); margin-bottom: 16px; }
.card__title { font-family: var(--serif); font-size: 24px; font-weight: 600; margin-bottom: 8px; }
.card__desc { color: var(--muted); font-size: 15px; }

/* PILLARS */
.pillars .pillar {
  text-align: center; padding: 28px 18px; border: 1px solid var(--border); border-radius: var(--radius);
  background: rgba(255,255,255,0.015);
}
.pillar__title { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--gold-2); margin-bottom: 8px; }
.pillar__desc { color: var(--muted); font-size: 14px; }

/* FEATURED */
.feature-meta { text-align: center; color: var(--muted); font-style: italic; font-family: var(--serif); font-size: 19px; margin-bottom: 32px; }
.feature-cover {
  position: relative; aspect-ratio: 16 / 8; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); margin: 0 0 30px;
}
.feature-cover img { width: 100%; height: 100%; object-fit: cover; }
.feature-body { max-width: 760px; margin: 0 auto; text-align: center; }
.feature-text { color: var(--muted); font-size: 17px; }
.tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 22px; }
.tag { font-size: 13px; color: var(--gold-2); border: 1px solid var(--border); padding: 6px 16px; border-radius: 999px; letter-spacing: .5px; }
.shot { position: relative; aspect-ratio: 16 / 10; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); margin: 0; }
.shot img { width: 100%; height: 100%; object-fit: cover; }

/* WORK GRID */
.work-item {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); margin: 0; transition: border-color .25s;
}
.work-item:hover { border-color: rgba(203,163,95,0.5); }
.work-item img { width: 100%; height: 100%; object-fit: cover; }
.work-item__cap {
  position: absolute; inset: auto 0 0 0; padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.82));
  display: flex; flex-direction: column; gap: 2px;
  opacity: 0; transform: translateY(8px); transition: all .28s ease; z-index: 2;
}
.work-item:hover .work-item__cap { opacity: 1; transform: none; }
.work-item__cat { color: var(--gold-2); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }
.work-item__title { font-family: var(--serif); font-size: 19px; font-weight: 600; }

/* CLIENTS STRIP */
.clients { padding: 56px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.clients__label { text-align: center; color: var(--muted); font-size: 13px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 26px; }
.clients__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 48px; }
.clients__name { font-family: var(--serif); font-size: clamp(20px, 2.6vw, 30px); color: var(--muted); transition: color .25s; }
.clients__name:hover { color: var(--gold-2); }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.step { text-align: left; }
.step__no { font-family: var(--serif); font-size: 42px; font-weight: 600; color: var(--gold); opacity: .5; }
.step h3 { font-family: var(--serif); font-size: 22px; font-weight: 600; margin: 6px 0; }
.step p { color: var(--muted); font-size: 14px; }

/* PRICING */
.price-card {
  position: relative; background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 38px 30px; display: flex; flex-direction: column;
  transition: transform .25s ease;
}
.price-card:hover { transform: translateY(-5px); }
.price-card--featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold), 0 24px 56px -22px rgba(203,163,95,0.45); }
.price-card__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(120deg, var(--gold-2), var(--gold)); color: #20180c;
  font-size: 12px; font-weight: 600; padding: 5px 18px; border-radius: 999px;
}
.price-card__name { font-family: var(--serif); font-size: 26px; font-weight: 600; }
.price-card__price { font-family: var(--serif); font-size: 28px; font-weight: 600; color: var(--gold-2); margin: 6px 0; }
.price-card__tagline { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.price-card__features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 11px; }
.price-card__features li { color: var(--muted); font-size: 15px; padding-left: 26px; position: relative; }
.price-card__features li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* TESTIMONIALS */
.quote {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 34px 28px; display: flex; flex-direction: column; gap: 18px;
}
.quote__text { font-family: var(--serif); font-size: 20px; color: var(--text); font-style: italic; line-height: 1.5; }
.quote__author { display: flex; flex-direction: column; }
.quote__author strong { font-weight: 500; }
.quote__author span { color: var(--muted); font-size: 14px; }

/* CTA BAND */
.cta { position: relative; text-align: center; padding: 110px 0; overflow: hidden; border-top: 1px solid var(--line); }
.cta__inner { position: relative; z-index: 2; }
.cta__title { font-family: var(--serif-th); font-size: clamp(34px, 5.4vw, 60px); font-weight: 500; line-height: 1.15; margin-bottom: 36px; }
.cta__glow {
  position: absolute; bottom: -55%; left: 50%; transform: translateX(-50%);
  width: 760px; height: 760px; border-radius: 50%;
  background: radial-gradient(circle, rgba(203,163,95,0.18), transparent 62%); z-index: 1;
}

/* FORM */
.form { display: flex; flex-direction: column; gap: 14px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form input, .form textarea {
  width: 100%; padding: 15px 17px; border-radius: 12px;
  background: var(--card); border: 1px solid var(--border); color: var(--text);
  font-family: inherit; font-size: 15px; resize: vertical;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--gold); }
.form__msg { text-align: center; font-size: 14px; min-height: 20px; }
.form__msg.ok { color: #7fcf93; }
.form__msg.err { color: #e0796f; }

/* FOOTER */
.footer { border-top: 1px solid var(--line); padding: 64px 0 30px; background: var(--bg-alt); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer__brand p { color: var(--muted); font-size: 14px; margin-top: 10px; }
.footer__muted { color: rgba(169,159,141,0.6) !important; }
.footer__col h4 { font-family: var(--serif); font-size: 18px; font-weight: 600; margin-bottom: 14px; color: var(--gold-2); }
.footer__col a { display: block; color: var(--muted); font-size: 14px; padding: 5px 0; transition: color .2s; }
.footer__col a:hover { color: var(--text); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; gap: 28px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .topbar__center { display: none; }
  .nav__links {
    position: absolute; top: 74px; left: 0; right: 0; flex-direction: column; gap: 0;
    background: var(--bg-alt); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav__links.open { max-height: 360px; }
  .nav__links a { padding: 15px 26px; width: 100%; }
  .nav__toggle { display: block; }
  .grid--3, .grid--4, .grid--gallery { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero { padding: 90px 0 64px; }
  .feature-cover { aspect-ratio: 16 / 11; }
}
