:root {
  --bg: #fdfaf4;
  --bg-soft: #f6fbfb;
  --bg-highlight: linear-gradient(135deg, rgba(255, 230, 204, 0.6), rgba(224, 248, 247, 0.6));
  --bg-raised: #ffffff;
  --text: #1d2a33;
  --muted: #617489;
  --accent: #ff9249;
  --accent-strong: #ff7c1b;
  --accent-soft: rgba(255, 146, 73, 0.16);
  --primary: #1ab8c4;
  --primary-strong: #0892a5;
  --shadow: 0 18px 40px rgba(35, 63, 94, 0.14);
  --radius: 18px;
  --radius-pill: 999px;
  font-size: 16px;
}

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

html,
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  color: var(--text);
  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  min-height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

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

a:hover,
a:focus-visible {
  color: var(--primary-strong);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(14, 40, 60, 0.08);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text);
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(29, 42, 51, 0.18);
}

.main-nav {
  display: flex;
  gap: clamp(0.9rem, 2vw, 1.5rem);
  font-size: 0.96rem;
}

.main-nav a {
  padding: 0.45rem 0.6rem;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.main-nav a[aria-current="page"],
.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--primary-strong);
  background: rgba(26, 184, 196, 0.12);
  box-shadow: 0 8px 18px rgba(8, 146, 165, 0.12);
}

.hero {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2.5rem, 5vw, 4rem);
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.eyebrow {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.lede {
  font-size: 1.12rem;
  color: #3a4b5b;
  max-width: 32rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #3a2613;
  box-shadow: 0 14px 32px rgba(255, 124, 27, 0.22);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(255, 124, 27, 0.28);
}

.btn.ghost {
  color: var(--primary-strong);
  background: rgba(26, 184, 196, 0.12);
  border: 1px solid rgba(26, 184, 196, 0.32);
  box-shadow: 0 10px 22px rgba(8, 146, 165, 0.12);
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
  background: rgba(26, 184, 196, 0.18);
  border-color: rgba(26, 184, 196, 0.4);
}

.hero-media {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-soft);
}

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

.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.about-section {
  position: relative;
  overflow: hidden;
}

.about-section::before,
.about-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(26, 184, 196, 0.18), transparent 70%);
  filter: blur(0px);
  opacity: 0.85;
  z-index: 0;
  pointer-events: none;
}

.about-section::before {
  top: -220px;
  left: -160px;
}

.about-section::after {
  bottom: -260px;
  right: -220px;
  background: radial-gradient(circle at center, rgba(255, 146, 73, 0.18), transparent 70%);
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: stretch;
}

.about-copy {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.section-tag {
  align-self: flex-start;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(8, 146, 165, 0.12);
  color: var(--primary-strong);
  font-weight: 600;
}

.about-copy-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.6rem, 3vw, 2.3rem);
  border: 1px solid rgba(20, 47, 70, 0.08);
  box-shadow: 0 22px 44px rgba(26, 47, 72, 0.12);
  position: relative;
  overflow: hidden;
}

.about-copy-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 204, 153, 0.16), rgba(224, 248, 247, 0.16));
  opacity: 0.6;
  pointer-events: none;
}

.about-copy-card p {
  margin: 0 0 1.1rem;
  color: #324456;
  position: relative;
  z-index: 1;
}

.about-copy-card p:last-child {
  margin-bottom: 0;
}

.about-pill-card {
  background: rgba(255, 255, 255, 0.88);
  border-radius: calc(var(--radius) + 10px);
  padding: clamp(1.2rem, 2.6vw, 1.8rem);
  border: 1px solid rgba(255, 146, 73, 0.2);
  box-shadow: 0 16px 32px rgba(255, 146, 73, 0.15);
}

.about-aside {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  position: relative;
}

.about-photo-card {
  position: relative;
  border-radius: calc(var(--radius) + 10px);
  overflow: hidden;
  box-shadow: 0 28px 46px rgba(31, 56, 86, 0.22);
  background: linear-gradient(135deg, rgba(255, 230, 204, 0.7), rgba(224, 248, 247, 0.7));
}

.about-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.about-photo-glow {
  position: absolute;
  inset: 10%;
  border-radius: inherit;
  background: radial-gradient(circle at top right, rgba(255, 146, 73, 0.16), transparent 70%);
  pointer-events: none;
  mix-blend-mode: screen;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.section.highlight {
  background: var(--bg-highlight);
  border-top: 1px solid rgba(255, 146, 73, 0.18);
  border-bottom: 1px solid rgba(26, 184, 196, 0.18);
}

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

.section-header h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  margin-bottom: 0.7rem;
}

.section-header p {
  color: #4c5c6a;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.8rem, 4vw, 2.5rem);
}

.card {
  background: var(--bg-raised);
  border-radius: var(--radius);
  padding: 1.85rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid rgba(20, 47, 70, 0.08);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover,
.card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 24px 42px rgba(35, 63, 94, 0.18);
}

.card-art {
  height: 170px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.gradient-sunrise {
  background-image: linear-gradient(130deg, #ffe3c4, #ff9249);
}

.gradient-twilight {
  background-image: linear-gradient(130deg, #c3f4f5, #1ab8c4);
}

.gradient-ocean {
  background-image: linear-gradient(130deg, #fff0d6, #ffb972);
}

.store-links {
  display: flex;
  gap: 0.75rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.pill-list li {
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-pill);
  background: var(--accent-soft);
  color: #b05110;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.callout {
  background: rgba(26, 184, 196, 0.14);
  border: 1px solid rgba(26, 184, 196, 0.28);
  border-radius: var(--radius);
  padding: 2.1rem;
  box-shadow: var(--shadow);
}

.about-callout {
  background: linear-gradient(135deg, rgba(26, 184, 196, 0.18), rgba(255, 146, 73, 0.18));
  border: 1px solid rgba(26, 184, 196, 0.28);
  box-shadow: 0 22px 44px rgba(8, 146, 165, 0.18);
}

.callout h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.pill-grid article {
  background: var(--bg-raised);
  border-radius: var(--radius);
  padding: 1.9rem;
  border: 1px solid rgba(20, 47, 70, 0.08);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
}

.pill-grid article:hover {
  transform: translateY(-4px);
}

.contact-card {
  background: var(--bg-raised);
  border-radius: var(--radius);
  padding: 2.1rem;
  border: 1px solid rgba(20, 47, 70, 0.08);
  box-shadow: var(--shadow);
}

.contact-card .small {
  color: var(--muted);
  font-size: 0.86rem;
}

.socials {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.socials a {
  font-size: 0.92rem;
  color: var(--primary-strong);
  font-weight: 600;
}

.socials a:hover,
.socials a:focus-visible {
  text-decoration: underline;
}

.site-footer {
  margin-top: auto;
  padding: 2.8rem 0;
  border-top: 1px solid rgba(14, 40, 60, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
  text-align: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.footer-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 6px 14px rgba(29, 42, 51, 0.16);
}

.footer-nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.92rem;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--primary-strong);
}

body.legal-page {
  background: var(--bg);
}

body.legal-page .site-header {
  position: static;
}

body.legal-page .legal-content {
  padding: clamp(4rem, 7vw, 5rem) 0;
}

body.legal-page .last-updated {
  color: var(--muted);
  font-size: 0.9rem;
}

body.legal-page .legal-hero-card {
  background: linear-gradient(135deg, rgba(26, 184, 196, 0.12), rgba(255, 146, 73, 0.12));
  border: 1px solid rgba(26, 184, 196, 0.18);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(1.8rem, 3.5vw, 2.6rem);
  box-shadow: 0 18px 36px rgba(35, 63, 94, 0.12);
  position: relative;
  overflow: hidden;
}

body.legal-page .legal-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 204, 153, 0.28), transparent 60%);
  pointer-events: none;
}

body.legal-page .legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0 2.5rem;
  padding: 1.4rem 1.8rem;
  border-radius: calc(var(--radius) + 8px);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(20, 47, 70, 0.08);
  box-shadow: 0 16px 32px rgba(26, 47, 72, 0.12);
}

body.legal-page .legal-meta p {
  margin: 0;
  font-weight: 600;
  color: #324456;
  line-height: 1.6;
}

body.legal-page .legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 2fr);
  gap: clamp(2rem, 5vw, 3.5rem);
}

body.legal-page .legal-toc {
  position: sticky;
  top: 100px;
  align-self: start;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(20, 47, 70, 0.08);
  border-radius: calc(var(--radius) + 6px);
  padding: 1.6rem;
  box-shadow: 0 20px 32px rgba(35, 63, 94, 0.12);
}

body.legal-page .legal-toc-title {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-strong);
}

body.legal-page .legal-toc ol {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: #3d4f5f;
}

body.legal-page .legal-toc a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

body.legal-page .legal-toc a:hover,
body.legal-page .legal-toc a:focus-visible {
  color: var(--primary-strong);
}

body.legal-page .legal-articles {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2rem);
}

body.legal-page .legal-section {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(20, 47, 70, 0.08);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.6rem, 3vw, 2.3rem);
  box-shadow: 0 14px 32px rgba(26, 47, 72, 0.12);
}

body.legal-page .legal-section h2 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #253646;
}

body.legal-page .legal-section p {
  color: #324456;
  margin: 0 0 1rem;
}

body.legal-page .legal-section p:last-child {
  margin-bottom: 0;
}

body.legal-page .legal-note {
  background: rgba(255, 146, 73, 0.12);
  border-left: 4px solid var(--accent);
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
}

body.legal-page .legal-sublist {
  margin: 0 0 1rem;
  padding-left: 1.4rem;
  display: grid;
  gap: 0.6rem;
  color: #324456;
}

@media (max-width: 1024px) {
  body.legal-page .legal-layout {
    grid-template-columns: 1fr;
  }

  body.legal-page .legal-toc {
    position: static;
    order: 2;
  }

  body.legal-page .legal-articles {
    order: 1;
  }
}

@media (max-width: 600px) {
  body.legal-page .legal-meta {
    flex-direction: column;
  }

  body.legal-page .legal-sublist {
    padding-left: 1rem;
  }
}

@media (max-width: 720px) {
  .header-content {
    flex-direction: column;
    gap: 0.75rem;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 6vw, 3rem);
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    gap: 1.4rem;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-copy-card {
    padding: 1.5rem;
  }

  .card {
    padding: 1.5rem;
  }

  .callout,
  .contact-card {
    padding: 1.7rem;
  }
}
