/* Reset and base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f3ece1;
  --card: #fffaf3;
  --muted: #eee3d4;
  --text: #1a1a1a;
  --subtle: #4a4138;
  --accent: #1b1b1b;
  --accent-strong: #050505;
  --border: rgba(26, 26, 26, 0.12);
  --shadow: 0 14px 40px rgba(17, 17, 17, 0.08);
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: radial-gradient(120% 120% at 18% 18%, rgba(26, 26, 26, 0.025), transparent 42%), var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(243, 236, 225, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand__icon {
  width: 52px;
  height: 52px;
  display: block;
}

.logo {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.05em;
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 20px;
}

.nav a {
  color: var(--subtle);
  font-weight: 600;
}

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

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--accent);
  color: #f3ece1;
  font-weight: 700;
  border: 1px solid var(--accent-strong);
  letter-spacing: 0.01em;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  background: var(--accent-strong);
}

.button--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
  letter-spacing: 0;
}

.button--ghost:hover {
  border-color: rgba(26, 26, 26, 0.28);
  color: var(--accent);
}

.button--full {
  width: 100%;
}

/* Hero */
.hero {
  padding: 60px 0;
  min-height: calc(100vh - 60px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 20px -120px -60px auto;
  width: 240px;
  background: url('/storelylogo.png') no-repeat center/contain;
  opacity: 0.06;
  filter: grayscale(1);
  pointer-events: none;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.hero__text {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(26, 26, 26, 0.08);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 12px;
}

h1 {
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 16px;
}

h2 {
  font-size: 30px;
  line-height: 1.2;
}

h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.body {
  color: var(--subtle);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 10px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--subtle);
  font-size: 14px;
  background: #e8dece;
}

.hero__card {
  display: none;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.card.secondary {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.06), rgba(26, 26, 26, 0.02));
}

.card__label {
  color: var(--subtle);
  font-size: 13px;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 10px;
}

.stat__number {
  font-size: 24px;
  font-weight: 700;
}

.stat__label {
  color: var(--subtle);
}

.chip-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.chip {
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
  padding: 6px 10px;
  border-radius: 10px;
  color: var(--text);
  font-size: 13px;
}

/* Sections */
.section {
  padding: 90px 0 70px;
  scroll-margin-top: 100px;
}

.section__header {
  max-width: 740px;
  margin-bottom: 28px;
}

.section--muted {
  background: var(--muted);
  border-block: 1px solid var(--border);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.list {
  margin-top: 12px;
  color: var(--subtle);
  display: grid;
  gap: 8px;
}

.list li {
  list-style: none;
  position: relative;
  padding-left: 18px;
}

.list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  position: absolute;
  left: 0;
  top: 10px;
}

/* Steps */
.steps {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.02);
}

.step__number {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.07);
  color: var(--accent);
  font-weight: 700;
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: flex-start;
}

.contact__form {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: 14px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.contact__form label {
  font-weight: 600;
  font-size: 14px;
  display: grid;
  gap: 6px;
}

input,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-size: 15px;
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.03);
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(26, 26, 26, 0.25);
}

.fine-print {
  color: var(--subtle);
  font-size: 12px;
  text-align: center;
}

/* Footer */
.footer {
  padding: 30px 0;
  border-top: 1px solid var(--border);
  background: #e9dfd1;
}

.footer__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  align-items: center;
}

.footer__meta {
  color: var(--subtle);
  display: grid;
  gap: 6px;
}

.footer__links {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  flex-wrap: wrap;
  color: var(--subtle);
}

/* Responsive tweaks */
@media (max-width: 720px) {
  h1 {
    font-size: 30px;
  }

  .topbar__inner {
    gap: 12px;
  }

  .brand {
    padding-left: 8px;
  }

  .nav {
    display: none;
  }

  .hero {
    padding-top: 60px;
  }

  .hero::after {
    display: none;
  }
}
