/* ProstaPath — neo-brutalist tropical editorial (distinct from prior themes) */
:root {
  --ink: #0a1628;
  --paper: #fffaf3;
  --cream: #ffefe4;
  --sun: #ffe066;
  --jade: #0d9b7a;
  --coral: #ff5e4d;
  --muted: #4a5568;
  --border-hard: 3px solid var(--ink);
  --shadow-pop: 6px 6px 0 var(--ink);
  --shadow-pop-hover: 8px 8px 0 var(--ink);
  --radius: 4px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 5rem;
  --max-width: 1180px;
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Literata", Georgia, serif;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  background-image:
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 48px,
      rgba(10, 22, 40, 0.03) 48px,
      rgba(10, 22, 40, 0.03) 49px
    ),
    linear-gradient(180deg, #fff0e5 0%, var(--paper) 38%, #e8f7f2 100%);
  min-height: 100vh;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 var(--space-sm);
  letter-spacing: -0.03em;
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.08;
  text-transform: none;
}

h2 {
  font-size: clamp(1.45rem, 3.2vw, 2.1rem);
  line-height: 1.18;
}

h3 {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
}

h4 {
  font-size: 1.05rem;
}

p {
  margin: 0 0 var(--space-md);
  color: var(--muted);
  font-size: 1.06rem;
}

a {
  color: var(--jade);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--coral);
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--sun);
  border-bottom: var(--border-hard);
  padding: var(--space-sm) 0;
  box-shadow: 0 4px 0 rgba(10, 22, 40, 0.06);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.logo-link {
  display: flex;
  align-items: center;
  transition: transform 0.15s ease;
}

.logo-link:hover {
  transform: rotate(-2deg) scale(1.02);
}

.logo {
  height: 48px;
  width: auto;
}

.nav {
  display: flex;
  gap: 0.35rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-link {
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  border: var(--border-hard);
  background: var(--paper);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.nav-link:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}

.nav-link.active {
  background: var(--ink);
  color: var(--sun);
}

/* Hero */
.hero {
  padding: var(--space-2xl) 0 var(--space-xl);
  position: relative;
  border-bottom: var(--border-hard);
  background: var(--paper);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 12%;
  left: -5%;
  width: 120px;
  height: 140%;
  background: var(--coral);
  border: var(--border-hard);
  transform: rotate(8deg);
  opacity: 0.92;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -20%;
  right: 5%;
  width: min(40vw, 320px);
  height: min(40vw, 320px);
  background: var(--jade);
  border: var(--border-hard);
  border-radius: 50%;
  opacity: 0.22;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-title {
  text-align: left;
  max-width: 920px;
  margin-bottom: var(--space-md);
  animation: popIn 0.55s ease;
}

.hero-title span.accent-word {
  background: var(--sun);
  padding: 0 0.25em;
  border: var(--border-hard);
  box-shadow: 4px 4px 0 var(--ink);
  display: inline-block;
  transform: rotate(-1deg);
}

.hero-subtitle {
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.18rem);
  max-width: 620px;
  margin: 0 0 var(--space-lg);
  color: var(--muted);
  font-weight: 500;
}

.hero .btn {
  animation: popIn 0.7s ease;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius);
  border: var(--border-hard);
  font-weight: 800;
  font-size: 0.9rem;
  font-family: var(--font-display);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--ink);
  color: var(--sun);
  box-shadow: var(--shadow-pop);
}

.btn-primary:hover {
  background: var(--jade);
  color: #fff;
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0 var(--ink);
}

.btn-lg {
  padding: 1.05rem 2rem;
  font-size: 0.95rem;
}

/* Sections */
.section {
  padding: var(--space-2xl) 0;
  position: relative;
}

.section.alt {
  background: rgba(255, 255, 255, 0.72);
  border-top: var(--border-hard);
  border-bottom: var(--border-hard);
}

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

.mb-xl {
  margin-bottom: var(--space-xl);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

/* Grid */
.grid {
  display: grid;
  gap: var(--space-md);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Cards */
.card {
  background: var(--paper);
  border: var(--border-hard);
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: var(--shadow-pop);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-pop-hover);
}

.card-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  background: var(--sun);
  border: var(--border-hard);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  box-shadow: 3px 3px 0 var(--ink);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--ink);
}

.card-title {
  color: var(--ink);
  margin-bottom: var(--space-sm);
  font-size: 1.15rem;
  font-family: var(--font-display);
}

.card-text {
  color: var(--muted);
  line-height: 1.7;
}

.card img:not(.product-shot) {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: var(--space-md);
  border: var(--border-hard);
}

/* Product — images/333b0354-a10a-4666-acb9-297d9534b7aa_resized.webp */
.product-shot {
  display: block;
  width: auto;
  max-width: min(100%, 520px);
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  border: var(--border-hard);
  background: #fff;
  padding: var(--space-md);
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-pop);
}

.product-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.stat-num {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--coral);
  margin-bottom: var(--space-sm);
  line-height: 1;
  text-shadow: 2px 2px 0 var(--ink);
}

.animate-fade-in-up {
  animation: popIn 0.5s ease forwards;
}

/* Forms */
.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: var(--border-hard);
  background: #fff;
  color: var(--ink);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: box-shadow 0.15s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  box-shadow: 4px 4px 0 var(--jade);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

/* Contact */
.contact-info {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  padding: var(--space-md);
  background: var(--paper);
  border-radius: var(--radius);
  border: var(--border-hard);
  box-shadow: 3px 3px 0 var(--ink);
}

.contact-icon {
  width: 22px;
  height: 22px;
  color: var(--jade);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-info span,
.contact-info a {
  color: var(--muted);
  font-size: 1rem;
  text-decoration: none;
}

.contact-info a:hover {
  color: var(--coral);
  text-decoration: underline;
}

/* Footer */
.footer {
  background: var(--ink);
  border-top: var(--border-hard);
  padding: var(--space-xl) 0 var(--space-lg);
  margin-top: var(--space-2xl);
}

.footer h4 {
  color: var(--sun);
  margin-bottom: var(--space-md);
  font-size: 1.05rem;
  font-family: var(--font-display);
}

.footer p {
  color: rgba(255, 250, 243, 0.75);
  line-height: 1.8;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--space-xs);
}

.footer-links a {
  color: rgba(255, 250, 243, 0.8);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--sun);
  text-decoration: underline;
}

.footer-bottom {
  padding-top: var(--space-md);
  border-top: 2px solid rgba(255, 224, 102, 0.25);
  text-align: center;
  color: rgba(255, 250, 243, 0.55);
  font-size: 0.86rem;
  line-height: 1.65;
}

.footer-bottom a {
  color: var(--sun);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #fff;
  text-decoration: underline;
}

/* List check */
.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-check li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: var(--space-sm);
  color: var(--muted);
  line-height: 1.75;
}

.list-check li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--jade);
  font-weight: 800;
}

/* Legal */
.content-narrow {
  max-width: 900px;
  margin: 0 auto;
}

.content-card {
  background: var(--paper);
  border: var(--border-hard);
  border-radius: var(--radius);
  padding: var(--space-xl);
  box-shadow: var(--shadow-pop);
}

.content-card h2 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: var(--border-hard);
}

.content-card h2:first-child {
  margin-top: 0;
}

.content-card h3 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
  color: var(--jade);
}

.content-card ul,
.content-card ol {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
  color: var(--muted);
}

.content-card li {
  margin-bottom: var(--space-xs);
  line-height: 1.75;
}

.content-card strong {
  color: var(--ink);
}

.content-card .contact-info {
  margin-top: var(--space-md);
  background: #fff;
}

@media (max-width: 968px) {
  .header-content {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .nav {
    width: 100%;
    justify-content: center;
  }

  .hero::before {
    width: 48px;
    opacity: 0.65;
  }

  .hero-title,
  .hero-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero .btn {
    display: flex;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 var(--space-md);
  }

  .card {
    padding: var(--space-md);
  }

  .content-card {
    padding: var(--space-md);
  }
}

.align-items-center {
  align-items: center;
}

.align-items-start {
  align-items: start;
}
