:root {
  --ink: #112947;
  --ink-soft: #1e3c60;
  --cream: #fff9ee;
  --paper: #fffdf8;
  --clay: #d98b6b;
  --gold: #dda94a;
  --sage: #84a48e;
  --sky: #6aa6ce;
  --mist: #dfeadf;
  --line: rgba(17, 41, 71, 0.14);
  --muted: #697486;
  --shadow: 0 26px 80px rgba(17, 41, 71, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background:
    linear-gradient(180deg, rgba(132, 164, 142, 0.18), transparent 24rem),
    linear-gradient(140deg, #fffaf1 0%, #fffdf8 52%, #edf5ef 100%);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family: Avenir Next, Avenir, Montserrat, Verdana, sans-serif;
}

a {
  color: inherit;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.15rem 1.4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: 0;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(17, 41, 71, 0.08);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 12px 24px rgba(17, 41, 71, 0.12);
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.48rem;
}

nav a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.62rem 0.92rem;
  background: rgba(255, 253, 248, 0.74);
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 750;
  text-decoration: none;
  backdrop-filter: blur(12px);
}

main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.4rem 4rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(290px, 0.78fr);
  gap: 2rem;
  align-items: center;
  min-height: 690px;
}

.hero-copy {
  padding: 3rem 0;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: #99653f;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 800px;
  margin-bottom: 1.1rem;
  color: var(--ink);
  font-size: clamp(3.1rem, 7.1vw, 6.35rem);
  line-height: 0.93;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(2.2rem, 4.4vw, 4.1rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.lede {
  max-width: 710px;
  color: #34465d;
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 8px;
  padding: 0.9rem 1.16rem;
  font-weight: 850;
  text-decoration: none;
}

.button.primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 18px 42px rgba(17, 41, 71, 0.24);
}

.button.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.82);
  color: var(--ink);
}

.identity-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 41, 71, 0.12);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: var(--shadow);
}

.identity-card img {
  display: block;
  width: 100%;
  border-radius: 8px;
}

.identity-note {
  display: grid;
  gap: 0.25rem;
  margin-top: 1rem;
  border-radius: 8px;
  padding: 1rem;
  background: var(--paper);
  color: var(--muted);
}

.identity-note strong {
  color: var(--ink);
  font-size: 1.15rem;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(280px, 1fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.4rem;
}

.brands-section,
.studio-panel,
.closing-card {
  margin-top: 2.2rem;
}

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

.product-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.2rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem;
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 18px 50px rgba(17, 41, 71, 0.1);
}

.product-card::before {
  display: block;
  width: 100%;
  height: 128px;
  border-radius: 8px;
  content: "";
}

.product-card.faith::before {
  background:
    radial-gradient(circle at 24% 38%, rgba(255, 249, 238, 0.98) 0 12%, transparent 13%),
    linear-gradient(135deg, rgba(217, 139, 107, 0.86), rgba(221, 169, 74, 0.76), rgba(132, 164, 142, 0.72));
}

.product-card.chalk::before {
  background:
    linear-gradient(90deg, rgba(255, 249, 238, 0.35) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 249, 238, 0.35) 1px, transparent 1px),
    linear-gradient(135deg, rgba(17, 41, 71, 0.9), rgba(106, 166, 206, 0.72), rgba(132, 164, 142, 0.78));
  background-size: 26px 26px, 26px 26px, auto;
}

.card-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.status {
  border-radius: 8px;
  padding: 0.38rem 0.62rem;
  font-size: 0.72rem;
}

.status.live {
  background: rgba(132, 164, 142, 0.18);
  color: #486d55;
}

.status.soon {
  background: rgba(106, 166, 206, 0.18);
  color: #315f7d;
}

.product-card p {
  color: #3d4b5e;
  font-size: 1rem;
  line-height: 1.62;
}

.brand-points {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding: 0 0 0 1.1rem;
  color: #2f4053;
  line-height: 1.5;
}

.brand-points li::marker {
  color: var(--clay);
}

.product-card a,
.disabled-link {
  align-self: flex-start;
  border-radius: 8px;
  padding: 0.72rem 0.9rem;
  font-weight: 850;
  text-decoration: none;
}

.product-card a {
  background: var(--ink);
  color: var(--cream);
}

.disabled-link {
  border: 1px solid var(--line);
  color: var(--muted);
}

.studio-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: 2rem;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: rgba(17, 41, 71, 0.94);
  color: var(--cream);
  box-shadow: var(--shadow);
}

.studio-panel h2,
.studio-panel .eyebrow {
  color: var(--cream);
}

.studio-list {
  display: grid;
  gap: 0.8rem;
}

.studio-list p {
  margin: 0;
  border: 1px solid rgba(255, 249, 238, 0.16);
  border-radius: 8px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 249, 238, 0.86);
  line-height: 1.5;
}

.studio-list strong {
  color: #fff;
}

.closing-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1.4rem, 5vw, 3rem);
  background:
    linear-gradient(135deg, rgba(221, 169, 74, 0.16), rgba(106, 166, 206, 0.12)),
    rgba(255, 253, 248, 0.82);
  box-shadow: var(--shadow);
}

.closing-card p {
  max-width: 720px;
  color: #3d4b5e;
  font-size: 1.08rem;
  line-height: 1.62;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 2rem 1.4rem 2.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer span:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

@media (max-width: 820px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero,
  .section-heading,
  .brand-grid,
  .studio-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding: 2rem 0 0;
  }
}
