:root {
  color-scheme: light;
  --ink: #0a1f2f;
  --mid: #1b3f55;
  --sky: #bfe3ff;
  --glow: #7bc4ff;
  --white: #f8fbff;
  --accent: #f7c76b;
  --glass: rgba(255, 255, 255, 0.6);
  --shadow: 0 30px 80px rgba(6, 34, 56, 0.2);
}

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

body {
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 55%),
    radial-gradient(circle at 20% 20%, rgba(123, 196, 255, 0.35), transparent 50%),
    linear-gradient(180deg, #d9f0ff 0%, #f7fbff 40%, #ffffff 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

.hero {
  position: relative;
  padding: 2.5rem 6vw 6rem;
  background: linear-gradient(120deg, rgba(73, 139, 255, 0.15), rgba(255, 255, 255, 0));
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: transparent;
}

.nav-links {
  display: flex;
  gap: 1.6rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cta {
  border: 1px solid rgba(10, 31, 47, 0.2);
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: var(--glass);
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(10, 31, 47, 0.15);
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
  align-items: center;
}

.hero-banner {
  margin-top: 2.5rem;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-banner img {
  width: 100%;
  height: clamp(220px, 32vw, 360px);
  object-fit: cover;
  display: block;
}

.hero-copy h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 4vw, 4.6rem);
  line-height: 1.05;
  margin: 1rem 0 1.4rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--mid);
}

.lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(10, 31, 47, 0.8);
  max-width: 520px;
}

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

.cta.solid {
  background: var(--ink);
  color: var(--white);
  border: none;
}

.cta.ghost {
  background: transparent;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-stats span {
  font-size: 1.4rem;
  font-weight: 600;
  display: block;
}

.hero-stats p {
  font-size: 0.85rem;
  color: rgba(10, 31, 47, 0.6);
  margin-top: 0.3rem;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: stretch;
}

.floating-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 1.4rem 1.6rem;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(10, 31, 47, 0.15);
  max-width: 300px;
  animation: float 5s ease-in-out infinite;
}

.floating-card h3 {
  font-family: "Fraunces", serif;
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.floating-card span {
  display: inline-block;
  margin-top: 0.6rem;
  color: var(--mid);
  font-weight: 600;
}

.insight-card {
  background: var(--glass);
  padding: 1.6rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(10, 31, 47, 0.1);
}

.insight-card h3 {
  font-family: "Fraunces", serif;
  margin-bottom: 0.4rem;
}

.insight-card span {
  display: inline-block;
  margin-top: 0.6rem;
  color: var(--mid);
  font-weight: 600;
}

section {
  padding: 5rem 6vw;
}

.section-title h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin-top: 0.8rem;
}

.about-grid,
.services-grid,
.store-grid,
.social-grid {
  display: grid;
  gap: 1.8rem;
  margin-top: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.about-card,
.services-grid article,
.store-card,
.social-card {
  background: var(--glass);
  padding: 2rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 40px rgba(10, 31, 47, 0.08);
}

.services-grid article span {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mid);
}

.store-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(123, 196, 255, 0.2));
}

.store-card button {
  margin-top: 1.6rem;
  background: var(--ink);
  color: var(--white);
  border: none;
  padding: 0.8rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.store-links {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-card a {
  display: inline-block;
  margin-top: 1.2rem;
  color: var(--mid);
  font-weight: 600;
}

.footer {
  padding: 3rem 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  border-top: 1px solid rgba(10, 31, 47, 0.1);
  background: rgba(255, 255, 255, 0.6);
}

.footer-links {
  display: flex;
  gap: 1.6rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero-visual {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 2rem 5vw 4rem;
  }

  section {
    padding: 4rem 5vw;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.8rem;
  }
}
