:root {
  --bg: #010409;
  --card: rgba(5, 10, 20, 0.9);
  --accent: #e6bf6f;
  --text: #f5f8ff;
  --muted: #a7b5d6;
}

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

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

header.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding: 5rem clamp(1.5rem, 6vw, 6rem);
  background: linear-gradient(120deg, rgba(1, 4, 9, 0.85), rgba(2, 6, 15, 0.65)),
    url('https://images.unsplash.com/photo-1503737020936-7e26e451c89b?auto=format&fit=crop&w=1800&q=80') center/cover;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content,
.hero-card {
  position: relative;
  flex: 1 1 420px;
}

.hero-content h1,
.grid h3,
.process-card h5,
footer p:first-child,
.gallery h4 {
  font-family: 'Cormorant Garamond', serif;
}

.hero-card {
  max-width: 380px;
  background: rgba(5, 8, 15, 0.9);
  border: 1px solid rgba(230, 191, 111, 0.3);
  border-radius: 1.75rem;
  padding: 2.25rem;
  backdrop-filter: blur(6px);
  box-shadow: 0 35px 120px rgba(0, 0, 0, 0.55);
}

.hero-card h2 {
  font-size: 3.75rem;
  margin: 1rem 0;
}

.hero-card h2 span {
  font-size: 1.75rem;
  color: var(--muted);
}

.hero-card ul {
  list-style: none;
}

.hero-card li {
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.brand-mark img {
  width: 180px;
  height: auto;
}

.brand-mark span {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--muted);
  font-size: 0.75rem;
}

h1 {
  font-size: clamp(2.7rem, 4vw, 4rem);
  margin: 1rem 0;
}

.lead {
  font-size: 1.2rem;
  color: #d7e1ff;
}

.hero-cta {
  margin: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-cta a {
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.primary {
  background: var(--accent);
  color: #050a14;
}

.ghost {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--text);
}

.status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--muted);
}

.status .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #35c97b;
  box-shadow: 0 0 12px rgba(53, 201, 123, 0.9);
}

.gallery {
  padding: 2rem clamp(1.5rem, 6vw, 6rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.gallery article {
  min-height: 220px;
  border-radius: 1.5rem;
  padding: 1.5rem;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.gallery article::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85));
}

.gallery article h4,
.gallery article p {
  position: relative;
  z-index: 1;
}

.gallery article h4 {
  font-size: 1.5rem;
}

.grid {
  padding: 3rem clamp(1.5rem, 6vw, 6rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.grid article {
  background: rgba(5, 9, 18, 0.85);
  padding: 1.75rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.grid h3 {
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.strip {
  background: #030712;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2.5rem clamp(1.5rem, 6vw, 6rem);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 3rem clamp(1.5rem, 6vw, 6rem);
}

.process-card {
  background: rgba(6, 10, 18, 0.85);
  padding: 1.6rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.process-card span {
  font-size: 1rem;
  color: var(--muted);
  letter-spacing: 0.3em;
}

.process-card h5 {
  margin: 0.6rem 0;
  font-size: 1.2rem;
}

.intake {
  padding: 3.5rem clamp(1.5rem, 6vw, 6rem);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.intake form {
  background: rgba(6, 10, 18, 0.92);
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.intake label {
  display: flex;
  flex-direction: column;
  font-size: 0.9rem;
  color: var(--muted);
}

.intake input,
.intake textarea {
  margin-top: 0.4rem;
  background: rgba(3, 5, 12, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  padding: 0.75rem;
  border-radius: 0.75rem;
  font-family: inherit;
}

.intake textarea {
  min-height: 120px;
  resize: vertical;
}

.intake button {
  border: none;
  background: var(--accent);
  color: #050a14;
  padding: 0.95rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

footer {
  text-align: center;
  padding: 2rem;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
  header.hero {
    flex-direction: column;
  }

  .hero-card {
    width: 100%;
  }
}
