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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f5f1ea;
  color: #1f2933;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 241, 234, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(31, 41, 51, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1.5rem;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 2px solid #8b6b3f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: #8b6b3f;
  background: radial-gradient(circle at 30% 20%, #fdf7ec 0, #f0e1cb 45%, #e2d2bd 100%);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 600;
  font-size: 1.05rem;
}

.logo-subtitle {
  font-size: 0.8rem;
  color: #6b7280;
}

.main-nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.main-nav a {
  padding: 0.35rem 0;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.15rem;
  width: 0;
  height: 2px;
  background: #8b6b3f;
  transition: width 0.2s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* HERO */

.hero {
  position: relative;
  padding: 3.6rem 0 3.2rem;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(255,255,255,0.85), transparent 55%),
    radial-gradient(circle at 90% 0, rgba(198, 180, 140, 0.6), transparent 60%),
    linear-gradient(135deg, #f3e7d7 0%, #efe1cf 35%, #e4d3c2 70%, #f6efe4 100%);
  opacity: 0.9;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.1fr);
  gap: 2.6rem;
  align-items: center;
}

.prelaunch-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(139, 107, 63, 0.09);
  color: #5b4630;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(139, 107, 63, 0.4);
}

.hero h1 {
  font-size: 2.35rem;
  line-height: 1.18;
  margin: 0 0 0.9rem;
  letter-spacing: -0.02em;
}

.hero p {
  margin: 0 0 1.4rem;
  color: #4b5563;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

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

.btn.primary {
  background: #8b6b3f;
  color: #fdfaf4;
  border-color: #8b6b3f;
}

.btn.primary:hover {
  background: #725331;
}

.btn.ghost {
  border-color: #c7b292;
  color: #5b4630;
  background: rgba(245, 238, 226, 0.9);
}

.btn.ghost:hover {
  background: #ecdfcf;
}

/* Hero media collage */

.hero-media {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.hero-image {
  border-radius: 1.1rem;
  overflow: hidden;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.28);
  border: 1px solid rgba(139, 107, 63, 0.22);
  background: #111827;
}

.hero-image-main {
  grid-row: 1 / span 2;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-small {
  max-height: 170px;
}

.hero-image-top {
  transform: translateY(4px);
}

.hero-image-bottom {
  transform: translateY(-4px);
}

/* Sections */

.section {
  padding: 3rem 0;
}

.section.alt {
  background: #f0e7da;
}

.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.section-heading h2 {
  margin: 0 0 0.6rem;
  font-size: 1.6rem;
}

.section-heading p {
  margin: 0;
  color: #4b5563;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.info-card {
  background: #fdfaf4;
  border-radius: 1.1rem;
  padding: 1.4rem 1.3rem 1.2rem;
  border: 1px solid rgba(139, 107, 63, 0.2);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.info-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.05rem;
}

.simple-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 0.92rem;
}

.simple-list li + li {
  margin-top: 0.6rem;
}

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

.feature-card {
  background: #fdfaf4;
  border-radius: 1rem;
  padding: 1.3rem 1.2rem 1.2rem;
  border: 1px solid rgba(139, 107, 63, 0.16);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
}

.feature-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.92rem;
  color: #4b5563;
}

/* Resources */

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

.resource-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.15rem 1.1rem;
  border-radius: 0.9rem;
  background: #fdfaf4;
  border: 1px solid rgba(139, 107, 63, 0.2);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.14);
}

.resource-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.resource-card p {
  margin: 0 0 0.7rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.resource-availability {
  font-size: 0.82rem;
  font-weight: 500;
  color: #8b6b3f;
  margin-top: 0.4rem;
}

/* Contact */

.contact-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 0.95rem;
}

.contact-list li + li {
  margin-top: 0.45rem;
}

.small-note {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.75rem;
}

.small-note.center {
  text-align: center;
}

.section p {
  color: #4b5563;
}

/* Footer */

.site-footer {
  padding: 1.6rem 0 1.4rem;
  background: #1f2933;
  color: #d1d5db;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-meta {
  color: #9ca3af;
}

/* Responsive */

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
}

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

  .hero {
    padding-top: 2.8rem;
  }

  .hero-media {
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 0.2rem;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .section {
    padding: 2.4rem 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
