:root {
  --ink: #14110f;
  --ink-2: #1c1815;
  --gold: #c8a864;
  --gold-soft: #a68a52;
  --bone: #eee4c8;
  --bone-dim: #cfc4a8;
  --maxw: 1080px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", serif;
  overflow-x: hidden;
}

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

.section-inner, .hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--gold);
  margin: 0 0 14px;
}

h1, h2, h3 {
  font-weight: 400;
  line-height: 1.15;
  margin: 0 0 18px;
  color: var(--bone);
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); }
h3 { font-size: 1.15rem; color: var(--gold); }

.lede, .body {
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--bone-dim);
  max-width: 640px;
}

.cta {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 30px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.cta:hover { background: var(--gold); color: var(--ink); }

/* --- hero --- */
.hero {
  padding: 64px 0 100px;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(200,168,100,0.10), transparent 55%),
    var(--ink);
  border-bottom: 1px solid rgba(200,168,100,0.18);
  overflow: hidden;
}

.fan {
  display: flex;
  justify-content: center;
  padding: 18px 0 40px;
  margin: 0 -14px;
}
.fan img {
  width: 118px;
  border-radius: 6px;
  border: 1px solid rgba(200,168,100,0.4);
  box-shadow: 0 14px 26px rgba(0,0,0,0.55);
  margin-left: -34px;
  transform: rotate(var(--r)) translateY(var(--y, 0px));
  transition: transform 0.25s ease;
}
.fan img:first-child { margin-left: 0; }
.fan img:hover {
  transform: rotate(var(--r)) translateY(calc(var(--y, 0px) - 22px)) scale(1.08);
  z-index: 5;
  position: relative;
}
@media (max-width: 760px) {
  .fan img { width: 74px; margin-left: -24px; }
}

/* --- featured --- */
.featured { padding: 100px 0; background: var(--ink-2); }
.overview {
  margin: 34px 0;
  border: 1px solid rgba(200,168,100,0.35);
}
.card-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.card-row img {
  border-radius: 3px;
  border: 1px solid rgba(200,168,100,0.3);
}
@media (max-width: 760px) {
  .card-row { grid-template-columns: repeat(3, 1fr); }
}

/* --- how --- */
.how { padding: 100px 0; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}
.step .num {
  display: block;
  font-size: 0.85rem;
  color: var(--gold-soft);
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.step p { color: var(--bone-dim); line-height: 1.6; font-size: 0.98rem; }
@media (max-width: 760px) {
  .steps { grid-template-columns: 1fr; }
}

/* --- portfolio --- */
.portfolio { padding: 100px 0; background: var(--ink-2); }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.portfolio-grid figure { margin: 0; }
.portfolio-grid img { border: 1px solid rgba(200,168,100,0.3); }
.portfolio-grid figcaption {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--bone-dim);
  font-style: italic;
}
@media (max-width: 760px) {
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- inquire --- */
.inquire { padding: 110px 0 130px; text-align: left; }
.inquire .cta { font-size: 0.95rem; padding: 16px 34px; }

footer {
  padding: 30px 24px;
  text-align: center;
  color: var(--bone-dim);
  font-size: 0.78rem;
  border-top: 1px solid rgba(200,168,100,0.15);
}
