:root {
  --bg: #0e0f12;
  --bg-elevated: #16181d;
  --bg-card: #1c1f26;
  --border: #2a2e38;
  --text: #e9eaee;
  --text-muted: #9aa0ab;
  --accent: #d4a857;
  --accent-hover: #e8bd6c;
  --accent-soft: rgba(212, 168, 87, 0.12);
  --radius: 6px;
  --max-width: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.container.narrow { max-width: 760px; }
.container.center { text-align: center; }

h1, h2, h3 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--text);
}

h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.2rem;
}

h3 {
  font-size: 1.2rem;
  margin: 2rem 0 0.6rem;
  color: var(--accent);
}

p { margin-bottom: 1.1rem; color: var(--text); }
p:last-child { margin-bottom: 0; }

.accent { color: var(--accent); }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); text-decoration: underline; }

/* HERO */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--border);
}

.hero-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.headshot {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid var(--border);
}

.hero-image .placeholder-hero {
  width: 100%;
  height: 100%;
  border-radius: 0;
  border: none;
  background:
    linear-gradient(135deg, #1a1d24 0%, #0e0f12 100%);
  justify-content: flex-start;
  align-items: flex-end;
  padding: 1.2rem;
}

.hero-image .placeholder-hero span,
.hero-image .placeholder-hero small {
  opacity: 0.35;
  text-align: left;
  max-width: none;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  width: 100%;
  padding: 6rem 0 4rem;
  background: linear-gradient(
    to bottom,
    rgba(14, 15, 18, 0.1) 0%,
    rgba(14, 15, 18, 0.35) 55%,
    rgba(14, 15, 18, 0.9) 100%
  );
}

.subhead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 2rem;
}

.hero-cta { margin-top: 1.5rem; }

/* SECTIONS */
.section { padding: 4rem 0; }
.section-feature { background: var(--bg-elevated); }

.lede {
  font-size: 1.15rem;
  color: var(--text);
}

.emphasis {
  font-size: 1.25rem;
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
  margin: 1.5rem 0;
}

.callout {
  font-size: 1.2rem;
  padding: 1.2rem 1.5rem;
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
  max-width: var(--max-width);
  margin: 0 auto;
}

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

.gallery-feature {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.gallery-feature .placeholder { aspect-ratio: 4 / 3; }

@media (max-width: 880px) {
  .gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .gallery-feature { grid-template-columns: 1fr; }
}

.gallery-item {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-feature .gallery-item { aspect-ratio: 4 / 3; }

/* PLACEHOLDERS */
.placeholder {
  background: var(--bg-card);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  color: var(--text-muted);
  transition: border-color 0.2s;
}

.placeholder:hover { border-color: var(--accent); }

.placeholder span {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.placeholder small {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: 80%;
}

.placeholder-wide { aspect-ratio: 16 / 7; }
.placeholder-circle {
  border-radius: 50%;
  aspect-ratio: 1;
  width: 90px;
  height: 90px;
}

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.features-list { list-style: none; }
.features-list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.features-list li:last-child { border-bottom: none; }
.features-list li::before {
  content: "→";
  color: var(--accent);
  margin-right: 0.7rem;
}

.features-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (max-width: 880px) {
  .features-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .features-images { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 540px) {
  .features-images { grid-template-columns: 1fr; }
}

/* USE CASES */
.use-cases {
  list-style: none;
  margin: 1rem 0 1.5rem;
}
.use-cases li {
  padding: 0.7rem 0 0.7rem 1.6rem;
  position: relative;
  color: var(--text);
}
.use-cases li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.2rem;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

/* CLOSING IMAGE */
.closing-image { margin-top: 2rem; }
.closing-img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}

/* CTA BLOCK */
.cta-block {
  background: var(--bg-elevated);
  padding: 3rem 0 5rem;
  border-top: 1px solid var(--border);
}

.cta-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  max-width: 820px;
  margin: 0 auto;
}

.cta-name { font-size: 1.15rem; margin-bottom: 0.2rem; }
.cta-agency { color: var(--text-muted); margin-bottom: 0.6rem; }
.cta-phone { font-size: 1.3rem; color: var(--accent); margin-bottom: 0.2rem; }
.cta-web { font-size: 0.95rem; margin-bottom: 0; }

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 720px) {
  .cta-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.8rem;
  }
  .cta-headshot { margin: 0 auto; }
  .cta-buttons { flex-direction: row; }
  .cta-buttons .btn { flex: 1; }
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: all 0.18s ease;
  border: 1px solid transparent;
  text-align: center;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #1a1410;
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #1a1410;
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

/* FOOTER */
.footer {
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-sk {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

/* MOBILE TWEAKS */
@media (max-width: 640px) {
  .section { padding: 3rem 0; }
  .hero { min-height: 70vh; }
  .hero-overlay { padding: 4rem 0 3rem; }
  body { font-size: 16px; }
}
