:root {
  --orange: #F5821F;
  --orange-dark: #C9660F;
  --teal: #2E9AA8;
  --teal-dark: #1F6E79;
  --cream: #FEF9F2;
  --ink: #23302F;
  --ink-soft: #5B6866;
  --font-display: 'Fredoka', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

.wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0 0 16px;
  line-height: 1.15;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); color: #fff; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.15rem; }

p { margin: 0 0 12px; }

.accent-teal { color: var(--teal); }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin: 0 0 10px;
}
.eyebrow-dark { color: var(--orange-dark); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--orange) 50%, var(--teal) 50%);
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--teal);
}

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

.nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 11px 22px;
  border-radius: 30px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

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

.btn-light {
  background: #fff;
  color: var(--orange-dark);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.8);
}

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

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 560px;
}

.hero-half {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
}
.hero-orange { left: 0; background: var(--orange); }
.hero-teal { right: 0; background: var(--teal); }

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 90px;
  padding-bottom: 120px;
  max-width: 640px;
}

.hero-sub {
  color: rgba(255,255,255,0.95);
  font-size: 1.05rem;
  max-width: 480px;
}

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

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 90px;
  z-index: 1;
}

/* Sections */
.section {
  padding: 80px 0;
}
.section-alt { background: #FFF3E6; }

.section-sub {
  color: var(--ink-soft);
  max-width: 520px;
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.product-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 24px;
  border: 1px solid rgba(0,0,0,0.06);
}

.product-art {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.art-shirt { background: var(--orange); }
.art-apron { background: var(--teal); }
.art-tote { background: var(--orange-dark); }
.product-art svg { width: 40px; height: 40px; }

.product-card p { color: var(--ink-soft); font-size: 0.92rem; margin: 0; }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
}

.about-circle {
  width: 220px;
  height: 220px;
}

.about-copy p { color: var(--ink-soft); }

/* Order form */
.order-form {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: #fff;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.06);
}

.form-row { display: flex; flex-direction: column; gap: 8px; }
.form-row-full { grid-column: 1 / -1; }

label {
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--ink);
}

input, select, textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.15);
  background: var(--cream);
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
}

.order-form .btn-primary {
  grid-column: 1 / -1;
  justify-self: start;
  border: none;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: #fff;
  padding: 40px 0 20px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0;
}
.footer-tag { color: rgba(255,255,255,0.65); margin: 4px 0 0; }

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}
.footer-links a:hover { color: var(--orange); }

.footer-copy {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  margin: 30px 0 0;
}

/* Responsive */
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; display: flex; justify-content: center; }
  .product-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .nav { 
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 16px 24px;
    display: none;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .btn-whatsapp { display: none; }
  .product-grid { grid-template-columns: 1fr; }
  .order-form { grid-template-columns: 1fr; padding: 24px; }
  .hero-content { padding-top: 60px; padding-bottom: 100px; }
}
