/* Second Spin — shared stylesheet
   Palette pulled from the logo: mint sage, deep teal, warm amber, and a hint of soft cyan.
   Friendly, rounded, playful — "see me rolling".
*/

:root {
  --color-bg: #ffffff;
  --color-surface: #ffffff;
  --color-surface-alt: #eef6ec;    /* light mint, matches the logo circle */
  --color-ink: #1f3a3a;            /* deep teal — matches "SECOND SPIN" wordmark */
  --color-ink-soft: #4d6b6b;
  --color-muted: #8aa0a0;
  --color-primary: #7ec488;        /* mint sage, the logo circle */
  --color-primary-dark: #4f9a64;
  --color-secondary: #6cc0c8;      /* soft teal/cyan, the wheelchair */
  --color-secondary-dark: #3f99a1;
  --color-accent: #e89a4c;         /* warm amber — the "see me rolling" tagline */
  --color-accent-dark: #c97b2a;
  --color-whatsapp: #25d366;
  --color-whatsapp-dark: #1da851;
  --color-border: #e0ece0;
  --color-shadow: rgba(30, 60, 60, 0.08);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-card: 0 6px 18px var(--color-shadow);
  --shadow-card-hover: 0 12px 30px rgba(30, 60, 60, 0.14);

  --font-body: "Nunito", "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: "Quicksand", "Nunito", system-ui, -apple-system, sans-serif;
  --font-script: "Caveat", "Bradley Hand", "Segoe Script", cursive;

  --container: 1140px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-bg);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }

.script {
  font-family: var(--font-script);
  color: var(--color-accent-dark);
  font-weight: 500;
}

p { margin: 0 0 1em; color: var(--color-ink-soft); }

a { color: var(--color-primary-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 50;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-ink);
  text-decoration: none;
  line-height: 1;
}

.brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}
.brand-logo img { width: 100%; height: 100%; object-fit: contain; }

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
}

.brand-text { display: flex; flex-direction: column; gap: 2px; }
.brand-name { letter-spacing: -0.01em; line-height: 1; }
.brand-name .accent { color: var(--color-accent); }
.brand-tag {
  font-family: var(--font-script);
  font-size: 1rem;
  color: var(--color-accent-dark);
  font-weight: 500;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav-links a {
  color: var(--color-ink-soft);
  font-weight: 500;
  text-decoration: none;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary-dark);
  border-bottom-color: var(--color-accent);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 1.6rem;
  color: var(--color-ink);
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--color-surface);
    flex-direction: column;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--color-border);
    gap: 0.5rem;
  }
  .nav-links.open { display: flex; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .1s ease, background .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}
.btn-primary:hover { background: var(--color-primary-dark); color: #fff; }

.btn-accent {
  background: var(--color-accent);
  color: #fff;
}
.btn-accent:hover { background: var(--color-accent-dark); color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--color-primary-dark);
  border-color: var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: #fff; }

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
}
.btn-whatsapp:hover { background: var(--color-whatsapp-dark); color: #fff; }

.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(circle at 85% 15%, rgba(232, 154, 76, 0.14), transparent 55%),
    radial-gradient(circle at 10% 85%, rgba(126, 196, 136, 0.20), transparent 55%),
    radial-gradient(circle at 50% 50%, rgba(108, 192, 200, 0.06), transparent 70%),
    var(--color-bg);
  padding: 4.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

/* Whimsical curved arcs around hero, inspired by the logo */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  pointer-events: none;
}
.hero::before {
  width: 380px; height: 380px;
  border-color: rgba(108, 192, 200, 0.18);
  border-right-color: transparent;
  border-bottom-color: transparent;
  top: -60px; right: -100px;
  transform: rotate(20deg);
}
.hero::after {
  width: 240px; height: 240px;
  border-color: rgba(232, 154, 76, 0.18);
  border-left-color: transparent;
  border-top-color: transparent;
  bottom: -40px; left: -60px;
  transform: rotate(-15deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-script);
  letter-spacing: 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-accent-dark);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.hero h1 { margin-bottom: 1rem; }
.hero p.lead {
  font-size: 1.15rem;
  color: var(--color-ink-soft);
  max-width: 52ch;
  margin-bottom: 1.75rem;
}

.hero-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.hero-image {
  background: #fff;
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  position: relative;
  border: 3px solid var(--color-surface-alt);
}
.hero-image img { width: 92%; height: 92%; object-fit: contain; }
.hero-image .placeholder {
  text-align: center;
  color: var(--color-muted);
  padding: 2rem;
}
.hero-image .placeholder svg { width: 80px; height: 80px; margin-bottom: 0.75rem; }

/* ---------- Sections ---------- */
section { padding: 4rem 0; }
section.tight { padding: 2.5rem 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}
.section-head p { font-size: 1.05rem; }

/* ---------- Value props ---------- */
.values {
  background: var(--color-surface-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 800px) { .value-grid { grid-template-columns: 1fr; } }

.value {
  text-align: center;
  padding: 1.5rem;
}
.value-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--color-primary);
  display: grid; place-items: center;
  margin: 0 auto 1rem;
  color: var(--color-primary-dark);
}
.value-icon svg { width: 28px; height: 28px; }

/* ---------- Product grid ---------- */
.category-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: 2.5rem 0 1.25rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 0.5rem;
}
.category-head h2 { margin: 0; }
.category-head .count {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .product-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.card-image {
  aspect-ratio: 4 / 3;
  background: var(--color-surface-alt);
  display: grid;
  place-items: center;
  color: var(--color-muted);
  position: relative;
  overflow: hidden;
}
.card-image img { width: 100%; height: 100%; object-fit: cover; }
.card-image .placeholder { text-align: center; padding: 1rem; }
.card-image .placeholder svg { width: 56px; height: 56px; opacity: 0.5; }

.badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--color-accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}
.badge.sage { background: var(--color-primary); }

.card-body {
  padding: 1.25rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-body h3 { margin-bottom: 0.4rem; }
.card-body .desc {
  color: var(--color-ink-soft);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  flex: 1;
}

.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--color-ink);
}
.price .currency { font-size: 0.85rem; color: var(--color-muted); margin-right: 2px; }
.condition {
  font-size: 0.78rem;
  color: var(--color-primary-dark);
  background: rgba(126, 196, 136, 0.18);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
}

.card-actions {
  display: flex;
  gap: 0.5rem;
}
.card-actions .btn { flex: 1; }

/* ---------- About / story sections ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 800px) { .story-grid { grid-template-columns: 1fr; } }

.story-image {
  background: var(--color-surface-alt);
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  color: var(--color-muted);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (max-width: 900px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .process-steps { grid-template-columns: 1fr; } }

.step {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: relative;
}
.step-num {
  display: inline-grid;
  place-items: center;
  width: 42px; height: 42px;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  border-radius: 50%;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 10px rgba(232, 154, 76, 0.3);
}
.step h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.92rem; margin: 0; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

form.inquiry {
  background: var(--color-surface);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}
.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
  color: var(--color-ink);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  color: var(--color-ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(79, 122, 94, 0.18);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.85rem; color: var(--color-muted); margin-top: 0.5rem; }

.contact-info {
  background: var(--color-surface-alt);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--color-border);
}
.contact-info h3 { margin-top: 0; }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--color-border);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list .ic {
  width: 32px; height: 32px;
  background: var(--color-surface);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--color-primary-dark);
  flex-shrink: 0;
}
.contact-list .ic svg { width: 16px; height: 16px; }
.contact-list strong { display: block; font-size: 0.85rem; color: var(--color-muted); font-weight: 600; }
.contact-list span { color: var(--color-ink); }

.quick-buttons {
  display: grid;
  gap: 0.6rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-ink);
  color: #d3e2e2;
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}
.site-footer .brand-tag { color: var(--color-accent); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.site-footer a { color: #d8dcd5; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.4rem; }
.footer-brand p { color: #b4baaf; max-width: 32ch; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.25rem;
  font-size: 0.85rem;
  color: #9ea49a;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ---------- Floating WhatsApp ---------- */
.fab-whatsapp {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  background: var(--color-whatsapp);
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.18);
  z-index: 60;
  transition: transform .15s ease, background .15s ease;
}
.fab-whatsapp:hover {
  background: var(--color-whatsapp-dark);
  transform: scale(1.05);
  text-decoration: none;
}
.fab-whatsapp svg { width: 28px; height: 28px; }

/* ---------- Utility ---------- */
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-1 { margin-top: 1rem; }
