
:root {
  --ash-bg: #f4f4f5;
  --ash-white: #ffffff;
  --ash-text: #1f2933;
  --ash-muted: #6b7280;
  --ash-accent: #f97316;
  --ash-accent-soft: #ffedd5;
  --ash-dark: #111827;
  --ash-border: #e5e7eb;
  --ash-max: 1080px;
  --ash-radius: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #e5e7eb 0, #f4f4f5 45%, #f9fafb 100%);
  color: var(--ash-text);
  line-height: 1.6;
}

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

a:hover {
  text-decoration: underline;
}

/* Layout */

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* Header */

.site-header {
  background: linear-gradient(135deg, #111827, #1f2937);
  color: var(--ash-white);
  border-bottom: 1px solid #020617;
}

.header-inner {
  max-width: var(--ash-max);
  margin: 0 auto;
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 40% 60% 55% 45%;
  background: radial-gradient(circle at 30% 30%, #f97316 0, #ea580c 40%, #7c2d12 100%);
  position: relative;
  box-shadow: 0 10px 20px rgba(0,0,0,0.35);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.7);
}

.brand-text h1 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: 0.03em;
}

.brand-text p {
  margin: 0.15rem 0 0;
  font-size: 0.8rem;
  color: #e5e7eb;
}

/* Nav */

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: flex-end;
}

.main-nav a {
  font-size: 0.9rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #e5e7eb;
  white-space: nowrap;
}

.main-nav a:hover {
  border-color: rgba(249,115,22,0.6);
}

.main-nav a.active {
  background: #f97316;
  color: #111827;
}

/* Hero & sections */

.page-wrap {
  max-width: var(--ash-max);
  margin: 0 auto;
  padding: 2.25rem 1.5rem 3rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.7fr);
  gap: 2rem;
  align-items: center;
}

.hero-copy-eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ash-muted);
}

.hero h2 {
  margin: 0.5rem 0 0.75rem;
  font-size: 2rem;
}

.hero p.hero-lead {
  margin: 0;
  color: var(--ash-muted);
  max-width: 34rem;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
}

.btn-primary {
  background: var(--ash-accent);
  color: #111827;
  border-color: var(--ash-accent);
}

.btn-primary:hover {
  filter: brightness(1.05);
  text-decoration: none;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(148,163,184,0.45);
  color: var(--ash-white);
}

.btn-ghost:hover {
  background: rgba(15,23,42,0.6);
  text-decoration: none;
}

/* Hero visual */

.hero-visual {
  position: relative;
}

.hero-card {
  border-radius: 24px;
  background: radial-gradient(circle at 10% 0, #f97316 0, #fb923c 40%, #18181b 100%);
  padding: 1rem;
  color: #fefce8;
  box-shadow: 0 25px 60px rgba(15,23,42,0.65);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(250,250,250,0.14), transparent 60%);
  top: -40px;
  right: -40px;
}

.hero-photo {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 0.75rem;
  background: #0f172a;
}

.hero-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(15,23,42,0.75);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #4ade80;
}

/* generic section */

.section {
  margin-top: 2.5rem;
}

.section-header {
  margin-bottom: 1.5rem;
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ash-muted);
}

.section-title {
  margin: 0.4rem 0 0.5rem;
  font-size: 1.4rem;
}

.section-lead {
  margin: 0;
  color: var(--ash-muted);
  max-width: 46rem;
}

/* grids & cards */

.grid {
  display: grid;
  gap: 1.25rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .grid-3,
  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
}

.card {
  background: var(--ash-white);
  border-radius: var(--ash-radius);
  padding: 1.1rem 1.25rem;
  border: 1px solid var(--ash-border);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.card p {
  margin: 0;
  font-size: 0.95rem;
}

/* Strip */

.strip {
  margin-top: 2.6rem;
  border-radius: 26px;
  padding: 1.5rem 1.75rem;
  background: linear-gradient(120deg, #f97316, #ea580c);
  color: #111827;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 16px 40px rgba(248,113,113,0.6);
}

.strip p {
  margin: 0;
  max-width: 30rem;
}

/* Gallery */

.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  background: #0f172a;
  position: relative;
}

.gallery-item img {
  width: 100%;
  display: block;
}

.gallery-item span {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.4rem 0.7rem;
  font-size: 0.75rem;
  color: #e5e7eb;
  background: linear-gradient(to top, rgba(15,23,42,0.85), transparent);
}

/* Simple list styling */

ul {
  padding-left: 1.1rem;
}

li + li {
  margin-top: 0.12rem;
}

/* Footer */

.site-footer {
  background: #020617;
  color: #9ca3af;
  font-size: 0.85rem;
}

.footer-inner {
  max-width: var(--ash-max);
  margin: 0 auto;
  padding: 1.25rem 1.5rem 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
}

.footer-inner a {
  color: #e5e7eb;
}

/* Media */

@media (max-width: 640px) {
  .header-inner {
    padding-inline: 1.1rem;
  }
  .page-wrap {
    padding-inline: 1.1rem;
  }
}
