:root {
  --bg: #f7f0e7;
  --surface: rgba(255, 251, 246, 0.88);
  --surface-strong: #fffdf9;
  --text: #221a14;
  --muted: #665a50;
  --line: rgba(34, 26, 20, 0.08);
  --brand: #f17b2c;
  --brand-deep: #d75c14;
  --accent: #8a4fff;
  --accent-soft: rgba(138, 79, 255, 0.12);
  --container: 1180px;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 24px 70px rgba(49, 29, 8, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(241, 123, 44, 0.16), transparent 24rem),
    radial-gradient(circle at top right, rgba(138, 79, 255, 0.12), transparent 24rem),
    linear-gradient(180deg, #fcf8f2 0%, var(--bg) 46%, #efe4d6 100%);
}

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

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

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  width: min(calc(100% - 32px), var(--container));
  margin: 16px auto 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 30px rgba(51, 30, 8, 0.08);
}

.site-header.compact {
  position: relative;
  top: 0;
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
}

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

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.8rem;
}

.site-nav {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}

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

.hero,
.features,
.ownership,
.stores,
.contact,
.legal-page {
  padding-top: 34px;
}

.hero {
  min-height: calc(100svh - 116px);
  display: grid;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
}

.hero-copy,
.hero-visual,
.feature-panel,
.ownership-card,
.stores-shell,
.contact-shell,
.legal-shell,
.site-footer {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(28px, 3vw, 48px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  line-height: 1;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 7vw, 5.9rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-text,
.section-heading p:last-child,
.feature-panel p,
.ownership-card p,
.stores-copy p,
.contact-shell p,
.legal-shell p,
.legal-shell li,
.site-footer p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 58ch;
  margin: 18px 0 0;
}

.hero-ownership {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(138, 79, 255, 0.14);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(138, 79, 255, 0.08), rgba(241, 123, 44, 0.08));
}

.hero-ownership strong {
  display: block;
  margin-bottom: 6px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
}

.button-primary {
  color: #fffaf5;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
}

.button-secondary {
  color: var(--text);
  background: rgba(34, 26, 20, 0.06);
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.hero-links a {
  color: var(--accent);
  font-weight: 600;
}

.hero-visual {
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 18px;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(241, 123, 44, 0.18), transparent 14rem),
    radial-gradient(circle at bottom right, rgba(138, 79, 255, 0.14), transparent 18rem),
    linear-gradient(160deg, rgba(255, 252, 247, 0.96), rgba(247, 238, 229, 0.92));
}

.hero-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface-strong);
}

.hero-card-main {
  transform: translateY(8px);
}

.hero-card-side {
  transform: translateY(-16px);
}

.features,
.ownership,
.contact {
  padding-bottom: 12px;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 24px;
  text-align: center;
}

.feature-grid,
.ownership-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.ownership-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-panel,
.ownership-card {
  padding: 24px;
}

.stores-shell,
.contact-shell,
.legal-shell {
  padding: 28px;
}

.stores-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
}

.store-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.store-tile {
  min-height: 154px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
}

.store-label,
.contact-label {
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.store-tile strong {
  font-size: 1.3rem;
}

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

.contact-value {
  display: inline-block;
  margin-top: 8px;
  color: var(--accent);
  font-weight: 700;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.contact-links a {
  color: var(--accent);
  font-weight: 700;
}

.site-footer {
  margin: 28px auto 44px;
  width: min(calc(100% - 32px), var(--container));
  padding: 22px 24px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
}

.legal-page {
  padding-bottom: 44px;
}

.legal-shell {
  margin-top: 18px;
}

.legal-date {
  margin-top: 8px;
  color: var(--muted);
}

.legal-highlight {
  margin: 22px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--brand);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(241, 123, 44, 0.08), rgba(138, 79, 255, 0.05));
}

.legal-highlight strong {
  display: block;
  margin-bottom: 8px;
}

.legal-shell h2 {
  font-size: 1.55rem;
  margin-top: 28px;
  margin-bottom: 10px;
}

.legal-shell ul {
  padding-left: 18px;
}

.legal-shell li + li {
  margin-top: 8px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .stores-shell,
  .feature-grid,
  .ownership-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 20px;
  }
}

@media (max-width: 760px) {
  .container,
  .site-header,
  .site-footer {
    width: min(calc(100% - 20px), var(--container));
  }

  .header-row,
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.92rem;
  }

  h1 {
    font-size: clamp(2.5rem, 12vw, 3.7rem);
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.7rem);
  }

  .hero-visual {
    grid-template-columns: 1fr;
  }

  .store-buttons {
    grid-template-columns: 1fr;
  }
}
