:root {
  --black: #0b0a09;
  --ink: #141009;
  --ink-2: #1b160e;
  --cream: #f4efe6;
  --cream-dim: #cfc7b8;
  --muted: #8f8676;
  --gold: #c8a24a;
  --gold-soft: #e3c47b;
  --line: rgba(200, 162, 74, 0.22);
  --line-faint: rgba(244, 239, 230, 0.09);
  --max: 1160px;
}

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

body {
  background: var(--black);
  color: var(--cream);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.015em;
}

.gold { color: var(--gold); }
a { color: inherit; text-decoration: none; }

.label {
  display: block;
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px clamp(20px, 5vw, 64px);
  background: rgba(11, 10, 9, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-faint);
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand img { height: 42px; width: auto; display: block; }
.brand span { font-family: "Fraunces", serif; font-size: 19px; font-weight: 600; color: var(--cream); }
.nav { display: flex; align-items: center; gap: clamp(16px, 3vw, 34px); }
.nav a { font-size: 14.5px; color: var(--cream-dim); transition: color .2s; }
.nav a:hover { color: var(--cream); }
.nav-cta {
  border: 1px solid var(--gold); color: var(--gold) !important;
  padding: 8px 18px; border-radius: 999px;
}
.nav-cta:hover { background: var(--gold); color: var(--black) !important; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: 15px 32px; border-radius: 999px;
  font-size: 15px; font-weight: 500; cursor: pointer; border: none;
  transition: transform .15s ease, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-soft); }

/* ---------- Hero ---------- */
.hero {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 5vw, 70px); align-items: center;
  padding: clamp(50px, 8vw, 100px) clamp(20px, 5vw, 64px) clamp(40px, 6vw, 80px);
}
.kicker {
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 26px;
}
.hero h1 { font-size: clamp(40px, 6.4vw, 74px); }
.lede {
  margin-top: 28px; max-width: 30ch;
  font-size: clamp(17px, 2vw, 20px); color: var(--cream-dim);
}
.lede-strong {
  margin-top: 14px; font-family: "Fraunces", serif;
  font-size: clamp(20px, 2.4vw, 26px); color: var(--cream);
}
.hero-actions { margin-top: 38px; }
.hero .btn { margin-top: 38px; }

.hero-photo { position: relative; }
.hero-photo img {
  width: 100%; height: auto; display: block;
  /* blend the near-black photo edges into the page, no hard frame */
  -webkit-mask-image: radial-gradient(130% 130% at 50% 42%, #000 58%, transparent 100%);
          mask-image: radial-gradient(130% 130% at 50% 42%, #000 58%, transparent 100%);
}

/* ---------- Clients wall ---------- */
.clients {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(64px, 9vw, 110px) clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line-faint);
  text-align: center;
}
.clients .label { text-align: center; margin-bottom: 14px; }
.clients-intro {
  margin-bottom: 38px; font-size: clamp(17px, 2vw, 20px); color: var(--cream-dim);
}
.clients-intro strong { color: var(--cream); font-weight: 600; }
.client-grid {
  list-style: none; display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line-faint);
  border: 1px solid var(--line-faint); border-radius: 16px; overflow: hidden;
}
.client-grid li {
  background: var(--ink); padding: 28px 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: "Fraunces", serif; font-size: clamp(16px, 1.9vw, 21px);
  color: var(--cream-dim); transition: color .2s, background .2s;
}
.client-grid li:hover { color: var(--gold-soft); background: var(--ink-2); }
.clients-note {
  margin-top: 28px; font-size: 15px; color: var(--muted);
}
@media (max-width: 880px) { .client-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Felt sections ---------- */
.felt {
  max-width: 820px; margin: 0 auto;
  padding: clamp(70px, 10vw, 120px) clamp(20px, 5vw, 40px);
  text-align: center;
}
.felt-alt { border-top: 1px solid var(--line-faint); }
.felt > h2 { font-size: clamp(28px, 4.4vw, 44px); margin-bottom: 50px; }
.felt-lines { display: flex; flex-direction: column; gap: 26px; }
.felt-lines p {
  font-family: "Fraunces", serif; font-weight: 400;
  font-size: clamp(20px, 2.7vw, 27px); line-height: 1.4;
  color: var(--cream);
}
.felt-close {
  margin-top: 46px; max-width: 46ch; margin-left: auto; margin-right: auto;
  font-size: clamp(16px, 2vw, 18px); color: var(--cream-dim);
}
.felt-punch {
  margin-top: 38px; font-family: "Fraunces", serif;
  font-size: clamp(22px, 3vw, 30px); color: var(--gold-soft);
}
.felt-alt .label { text-align: center; }

/* ---------- How it works ---------- */
.work {
  max-width: 760px; margin: 0 auto;
  padding: clamp(70px, 10vw, 120px) clamp(20px, 5vw, 40px);
  border-top: 1px solid var(--line-faint);
  text-align: center;
}
.work .label { text-align: center; }
.work-body { display: flex; flex-direction: column; gap: 24px; }
.work-body p {
  font-size: clamp(18px, 2.2vw, 22px); line-height: 1.55; color: var(--cream);
}
.work-last { color: var(--cream-dim) !important; font-size: clamp(16px, 2vw, 19px) !important; }

/* ---------- About ---------- */
.about {
  max-width: 820px; margin: 0 auto;
  padding: clamp(70px, 10vw, 120px) clamp(20px, 5vw, 40px);
  border-top: 1px solid var(--line-faint);
}
.about h2 { font-size: clamp(28px, 4.2vw, 44px); max-width: 18ch; }
.about-body { margin-top: 34px; display: flex; flex-direction: column; gap: 20px; }
.about-body p { color: var(--cream-dim); font-size: 18px; }
.about-stat {
  font-family: "Fraunces", serif; color: var(--cream) !important;
  font-size: clamp(19px, 2.2vw, 23px) !important;
}
.about-mirror {
  font-family: "Fraunces", serif; color: var(--gold-soft) !important;
  font-size: clamp(20px, 2.4vw, 26px) !important;
}

.creds {
  margin-top: 48px; padding: 30px 34px;
  background: var(--ink); border: 1px solid var(--line-faint); border-radius: 14px;
}
.creds p { font-size: 14.5px; color: var(--muted); line-height: 1.7; }
.creds-music { margin-top: 16px; color: var(--cream-dim) !important; }

/* ---------- Ways ---------- */
.ways {
  max-width: var(--max); margin: 0 auto;
  padding: clamp(70px, 10vw, 120px) clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line-faint);
}
.ways-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--line-faint);
  border: 1px solid var(--line-faint); border-radius: 16px; overflow: hidden;
}
.way { background: var(--ink); padding: 36px 32px; }
.way h3 { font-size: 23px; margin-bottom: 10px; }
.way p { color: var(--cream-dim); font-size: 16px; }

/* ---------- Belief ---------- */
.belief {
  text-align: center;
  padding: clamp(80px, 11vw, 140px) clamp(20px, 5vw, 40px);
  border-top: 1px solid var(--line-faint);
  border-bottom: 1px solid var(--line-faint);
  background:
    radial-gradient(60% 120% at 50% 50%, rgba(200,162,74,0.08), transparent 70%);
}
.belief p {
  font-family: "Fraunces", serif; font-weight: 400;
  font-size: clamp(30px, 5vw, 56px); line-height: 1.15; letter-spacing: -0.02em;
}

/* ---------- Contact ---------- */
.contact {
  padding: clamp(70px, 10vw, 120px) clamp(20px, 5vw, 64px);
}
.contact-inner {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 90px); align-items: start;
}
.contact-copy h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 18px; }
.contact-copy p { color: var(--cream-dim); max-width: 40ch; }
.email-link {
  display: inline-block; margin-top: 28px;
  font-family: "Fraunces", serif; font-size: 21px; color: var(--gold);
  border-bottom: 1px solid var(--line); padding-bottom: 3px;
}
.email-link:hover { border-color: var(--gold); }
.phone-link { display: block; margin-top: 14px; color: var(--cream-dim); font-size: 16px; }
.phone-link:hover { color: var(--cream); }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form label { display: flex; flex-direction: column; gap: 8px; }
.contact-form span { font-size: 14px; color: var(--cream-dim); }
.contact-form input, .contact-form textarea {
  background: var(--ink); border: 1px solid var(--line); border-radius: 10px;
  padding: 13px 16px; color: var(--cream);
  font-family: inherit; font-size: 16px; transition: border-color .2s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form textarea { resize: vertical; }
.contact-form .btn { margin-top: 6px; align-self: flex-start; }
.form-note { font-size: 14px; color: var(--gold-soft); min-height: 20px; }

/* ---------- Footer ---------- */
.site-footer {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  max-width: var(--max); margin: 0 auto;
  padding: 34px clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line-faint);
  font-size: 14px; color: var(--muted);
}
.site-footer a:hover { color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  .hero { grid-template-columns: 1fr; text-align: left; }
  .hero-photo { max-width: 380px; margin-top: 10px; }
  .ways-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .nav a:not(.nav-cta) { display: none; }
  .hero h1 br { display: none; }
}
