:root {
  --bg: #f5f3eb;
  --bg-alt: #ece7da;
  --text: #1c2430;
  --muted: #4f5968;
  --brand: #0e5f76;
  --brand-dark: #09465a;
  --accent: #d67d3e;
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(21, 33, 48, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(160deg, #f8f6ee 0%, #efe9dc 45%, #e5e0d2 100%);
  line-height: 1.6;
}

.background-glow {
  position: fixed;
  inset: auto -20vw -30vh -20vw;
  height: 65vh;
  background: radial-gradient(circle at center, rgba(214, 125, 62, 0.28), rgba(214, 125, 62, 0));
  pointer-events: none;
  z-index: -1;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(245, 243, 235, 0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(28, 36, 48, 0.08);
  z-index: 10;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

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

.brand-mark {
  font-family: "Fraunces", serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 1.1rem;
  color: var(--brand);
}

.brand-text {
  font-size: 0.94rem;
  color: var(--muted);
}

nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: var(--brand);
}

.cta-link {
  color: var(--brand);
}

.hero {
  padding: 4.3rem 0 2.8rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.8rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 0.5rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

h1,
h2 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.3rem);
}

h2 {
  font-size: clamp(1.5rem, 2.7vw, 2.3rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0 0 0.95rem;
}

.hero-copy {
  max-width: 58ch;
}

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

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.7rem 1.3rem;
  font-weight: 700;
  border: 2px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 18px rgba(14, 95, 118, 0.28);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  border-color: var(--brand);
  color: var(--brand);
}

.inline-link {
  color: var(--brand);
  font-weight: 700;
}

.inline-link:hover {
  color: var(--brand-dark);
}

.hero-card,
.service-card,
.panel {
  background: var(--card);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.hero-card ul,
.feature-list {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
}

.section {
  padding: 3.1rem 0;
}

.alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(236, 231, 218, 0.72));
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.3rem;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: start;
}

.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.panel-title {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--brand);
}

.status-badge {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.2rem 0.58rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.status-badge.released {
  background: rgba(14, 95, 118, 0.12);
  color: var(--brand-dark);
}

.status-badge.progress {
  background: rgba(214, 125, 62, 0.2);
  color: #6e3d19;
}

.accent {
  border-top: 6px solid var(--accent);
}

.contact {
  padding-bottom: 4rem;
}

.contact-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  background: #fff;
  border-radius: 18px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.site-footer {
  border-top: 1px solid rgba(28, 36, 48, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.section-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 920px) {
  .hero-grid,
  .card-grid,
  .split,
  .reverse {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.2rem;
  }
}

@media (max-width: 620px) {
  nav {
    justify-content: flex-end;
    font-size: 0.95rem;
  }

  .contact-wrap,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
