/* ===== The Craft Break — brand tokens ===== */
:root {
  --fern: #4CAF6D;
  --fern-dark: #3d8f57;
  --terra: #D85A30;
  --terra-dark: #b8492a;
  --cerulean: #2EA5D9;
  --amber: #FFAB2E;
  --blush: #F0997B;
  --ink: #2C2C2A;
  --linen: #FFFBF5;
  --bg: #FFFFFF;
  --bg-alt: #F5F6F5;
  --border-soft: rgba(44, 44, 42, 0.1);

  --font-head: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  --max-width: 1120px;
  --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }
img { max-width: 100%; display: block; }

a { color: var(--fern-dark); text-decoration: none; }

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--linen);
  padding: 12px 20px;
  z-index: 200;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px) scale(1.06); }

.btn-cta {
  background: var(--terra);
  color: var(--linen);
  box-shadow: 0 6px 18px rgba(216, 90, 48, 0.3);
}
.btn-cta:hover { background: var(--terra-dark); }

.btn-primary {
  background: var(--fern);
  color: var(--linen);
}

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border-soft);
}

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

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

.brand-mark {
  border-radius: 8px;
  width: 40px;
  height: 40px;
}

.brand-word {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fern-dark);
  text-transform: lowercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}
.site-nav a:hover { color: var(--fern-dark); }

.nav-cta { padding: 10px 22px; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
}

/* ===== Hero ===== */
.hero { padding: 56px 0 72px; position: relative; }

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

.hero-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.decor-circle { position: absolute; border-radius: 50%; }

.decor-circle.c1 { width: 150px; height: 150px; background: var(--amber); top: -60px; left: -60px; }
.decor-circle.c2 { width: 46px; height: 46px; background: var(--cerulean); top: 40px; right: 6%; }
.decor-circle.c3 { width: 100px; height: 100px; background: var(--blush); bottom: -50px; left: 9%; }
.decor-circle.c4 { width: 28px; height: 28px; background: var(--fern-dark); top: 65%; right: -14px; }
.decor-circle.c5 { width: 18px; height: 18px; background: var(--amber); bottom: 22%; left: 3%; }
.decor-circle.c6 { width: 130px; height: 130px; background: var(--cerulean); bottom: -70px; right: -60px; }
.decor-circle.c7 { width: 14px; height: 14px; background: var(--blush); top: 12%; left: 20%; }
.decor-circle.c8 { width: 36px; height: 36px; background: var(--amber); top: 6%; right: 26%; }

.hero-block {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
  background: var(--fern);
  border-radius: 32px;
  padding: 64px 40px 56px;
  overflow: hidden;
}

.hero-block h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  color: var(--linen);
  letter-spacing: -0.01em;
}

.hero-block .hero-sub {
  font-size: 1.35rem;
  font-weight: 500;
  max-width: 520px;
  margin: 0 auto 1.75em;
  color: var(--ink);
}

/* ===== Section base ===== */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-alt); }

/* ===== Color-block sections ===== */
.color-section { position: relative; }

.section-decor { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.color-block {
  position: relative;
  z-index: 1;
  border-radius: 32px;
  padding: 56px 32px;
}

.bg-fern .color-block { background: var(--fern); }
.bg-terra .color-block { background: var(--terra); }
.bg-cerulean .color-block { background: var(--cerulean); }
.bg-amber .color-block { background: var(--amber); }
.bg-blush .color-block { background: var(--blush); }

.founder-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  align-items: center;
  max-width: 860px;
  margin: 0 auto 32px;
}
.founder-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 20px;
}
.founder-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.4em;
}
.founder-copy p:last-child { margin-bottom: 0; }


/* Decorative circle utilities, reused across color-block sections */
.decor-circle { position: absolute; border-radius: 50%; }
.decor-circle.size-xl { width: 150px; height: 150px; }
.decor-circle.size-lg { width: 110px; height: 110px; }
.decor-circle.size-md { width: 56px; height: 56px; }
.decor-circle.size-sm { width: 32px; height: 32px; }
.decor-circle.size-xs { width: 16px; height: 16px; }

.decor-circle.col-fern { background: var(--fern); }
.decor-circle.col-terra { background: var(--terra); }
.decor-circle.col-cerulean { background: var(--cerulean); }
.decor-circle.col-amber { background: var(--amber); }
.decor-circle.col-blush { background: var(--blush); }

.decor-circle.pos-tl { top: -40px; left: -40px; }
.decor-circle.pos-tr { top: -30px; right: -30px; }
.decor-circle.pos-bl { bottom: -40px; left: 6%; }
.decor-circle.pos-br { bottom: -50px; right: 8%; }
.decor-circle.pos-ml { top: 42%; left: -18px; }
.decor-circle.pos-mr { top: 38%; right: -18px; }
.decor-circle.pos-t2 { top: 10%; left: 18%; }
.decor-circle.pos-t3 { top: 8%; right: 20%; }
.decor-circle.pos-b2 { bottom: 10%; left: 16%; }
.decor-circle.pos-b3 { bottom: 8%; right: 18%; }

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--ink);
  text-align: center;
}
.section-sub {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2.5em;
  color: rgba(44, 44, 42, 0.75);
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: lowercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 0.6em;
}
.eyebrow-fern { background: rgba(76, 175, 109, 0.15); color: var(--fern-dark); }
.eyebrow-terra { background: rgba(216, 90, 48, 0.15); color: var(--terra-dark); }
.eyebrow-cerulean { background: rgba(46, 165, 217, 0.15); color: #1c7fa8; }
.eyebrow-amber { background: rgba(255, 171, 46, 0.2); color: #a6690a; }
.eyebrow-blush { background: rgba(240, 153, 123, 0.2); color: #b95a37; }
.eyebrow-neutral { background: rgba(44, 44, 42, 0.08); color: var(--ink); }

/* ===== What We Do ===== */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
  margin-top: 16px;
}

.step-icon-badge {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.7em;
  color: var(--linen);
}
.step-icon-badge.badge-fern { background: var(--fern); }
.step-icon-badge.badge-terra { background: var(--terra); }
.step-icon-badge.badge-cerulean { background: var(--cerulean); }

.step-icon-svg {
  width: 40px;
  height: 40px;
  display: block;
}

.step h3 { font-size: 1.15rem; }

.step-card {
  background: var(--linen);
  border-radius: 20px;
  padding: 28px 22px;
  color: var(--ink);
  transition: transform 0.2s ease;
}
.step-card h3 { color: var(--ink); }
.step-card p { color: rgba(44, 44, 42, 0.75); margin-bottom: 0; font-size: 0.95rem; }

.step-card:hover { transform: translateY(-4px) rotate(-1.5deg); }
.steps-row .step:nth-child(2) .step-card:hover { transform: translateY(-4px) rotate(1.5deg); }
.steps-row .step:nth-child(3) .step-card:hover { transform: translateY(-4px) rotate(-1deg); }

.steps-row-numbered .step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--fern);
  color: var(--linen);
  font-family: var(--font-head);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.6em;
}

.lead-time-note {
  text-align: center;
  margin-top: 2.5em;
  font-weight: 600;
  color: var(--terra-dark);
}

/* ===== Workshop menu ===== */
.workshop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.workshop-card {
  background: var(--linen);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border-soft);
  border-bottom-width: 4px;
  box-shadow: 0 4px 16px rgba(44, 44, 42, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.workshop-card:has(.eyebrow-fern) { border-bottom-color: var(--fern); }
.workshop-card:has(.eyebrow-cerulean) { border-bottom-color: var(--cerulean); }
.workshop-card:has(.eyebrow-terra) { border-bottom-color: var(--terra); }
.workshop-card:has(.eyebrow-amber) { border-bottom-color: var(--amber); }
.workshop-card:has(.eyebrow-blush) { border-bottom-color: var(--blush); }
.workshop-card:has(.eyebrow-neutral) { border-bottom-color: rgba(44, 44, 42, 0.3); }

.workshop-card:hover {
  box-shadow: 0 10px 24px rgba(44, 44, 42, 0.1);
}
.workshop-grid .workshop-card:nth-child(1):hover { transform: translateY(-4px) rotate(-1.5deg); }
.workshop-grid .workshop-card:nth-child(2):hover { transform: translateY(-4px) rotate(1deg); }
.workshop-grid .workshop-card:nth-child(3):hover { transform: translateY(-4px) rotate(-1deg); }
.workshop-grid .workshop-card:nth-child(4):hover { transform: translateY(-4px) rotate(1.5deg); }
.workshop-grid .workshop-card:nth-child(5):hover { transform: translateY(-4px) rotate(-2deg); }
.workshop-grid .workshop-card:nth-child(6):hover { transform: translateY(-4px) rotate(1.2deg); }

.workshop-card-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-bottom: 0.6em;
}
.workshop-card-header .eyebrow { margin-bottom: 0; }

.badge-popular {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  color: #a6690a;
}

.workshop-card h3 { font-size: 1.3rem; margin-bottom: 0.3em; }
.workshop-card p:last-child { margin-bottom: 0; }

/* ===== Pricing ===== */
.price-headline {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 3rem;
  color: var(--ink);
  text-align: center;
  margin-bottom: 0.7em;
}
.price-headline span {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink);
  font-family: var(--font-body);
}

.pricing-tier-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 920px;
  margin: 0 auto 40px;
}
.pricing-tier-card {
  background: var(--linen);
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.2s ease;
}
.pricing-tier-card h3 { font-size: 1.05rem; color: var(--ink); margin-bottom: 0.3em; }
.pricing-tier-card p { color: rgba(44, 44, 42, 0.75); margin-bottom: 0; font-size: 0.95rem; }

.pricing-tier-row .pricing-tier-card:nth-child(1):hover { transform: translateY(-4px) rotate(-1.5deg); }
.pricing-tier-row .pricing-tier-card:nth-child(2):hover { transform: translateY(-4px) rotate(1.5deg); }
.pricing-tier-row .pricing-tier-card:nth-child(3):hover { transform: translateY(-4px) rotate(-1deg); }

.policy-list { max-width: 720px; margin: 0 auto; }

/* ===== Trust section ===== */
.trust-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.trust-list li {
  background: var(--linen);
  border-radius: 20px;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 24px 20px 24px 52px;
  position: relative;
  text-align: left;
}
.trust-list li::before {
  content: "✓";
  position: absolute;
  left: 20px;
  top: 24px;
  width: 26px;
  height: 26px;
  background: var(--fern);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

.trust-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.trust-gallery img {
  border-radius: 12px;
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
  transition: transform 0.2s ease;
}
.trust-gallery img:hover { transform: scale(1.03); }

/* ===== FAQ ===== */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-list details {
  background: var(--linen);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 18px 24px;
}
.faq-list summary {
  font-family: var(--font-head);
  font-weight: 600;
  cursor: pointer;
  font-size: 1.05rem;
}
.faq-list details p {
  margin: 14px 0 0;
  color: rgba(44, 44, 42, 0.8);
}

/* ===== Contact form ===== */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
  background: var(--linen);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
}

.form-row { margin-bottom: 20px; }
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-row-split .form-row,
.form-row-split > div { margin-bottom: 0; }

label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(44, 44, 42, 0.2);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--bg-alt);
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--cerulean);
  outline-offset: 1px;
}

.contact-form .btn { width: 100%; margin-top: 8px; }

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: var(--linen);
  padding: 56px 0 32px;
}
.footer-inner { text-align: center; }
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand .brand-word { color: var(--linen); }
.footer-tagline {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--amber);
  margin-bottom: 12px;
}
.footer-area {
  max-width: 560px;
  margin: 0 auto 20px;
  font-size: 0.9rem;
  color: rgba(255, 251, 245, 0.7);
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}
.footer-links a { color: var(--linen); font-weight: 600; }
.footer-links a:hover { color: var(--amber); }
.footer-shop {
  color: rgba(255, 251, 245, 0.45);
  font-weight: 600;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.footer-shop small {
  font-weight: 500;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--amber);
}
.footer-copy {
  font-size: 0.85rem;
  color: rgba(255, 251, 245, 0.5);
  margin: 0;
}

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    border-bottom: 1px solid var(--border-soft);
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 0; width: 100%; }
  .nav-cta { margin-top: 12px; text-align: center; }

  /* Option 3: keep desktop's column counts, shrink everything to fit */
  .color-block { padding: 32px 16px; }
  .hero-block { padding: 32px 16px 28px; }
  .hero-block h1 { font-size: 1.9rem; }
  .hero-block .hero-sub { font-size: 1rem; }

  .steps-row { gap: 10px; }
  .step-card { padding: 14px 8px; }
  .step-icon-badge { width: 40px; height: 40px; margin-bottom: 0.3em; }
  .step-icon-svg { width: 22px; height: 22px; }
  .step h3 { font-size: 0.8rem; margin-bottom: 0.2em; }
  .step-card p { font-size: 0.68rem; }
  .steps-row-numbered .step-number { width: 32px; height: 32px; font-size: 0.85rem; }

  .workshop-grid { gap: 8px; }
  .workshop-card { padding: 10px; }
  .workshop-card h3 { font-size: 0.8rem; margin-bottom: 0.2em; }
  .workshop-card p { font-size: 0.68rem; }
  .eyebrow { font-size: 0.6rem; padding: 3px 7px; }
  .badge-popular { font-size: 0.55rem; }

  .trust-list { gap: 8px; }
  .trust-list li { font-size: 0.7rem; padding: 14px 10px 14px 34px; }
  .trust-list li::before { width: 18px; height: 18px; font-size: 0.55rem; left: 10px; top: 14px; }

  .founder-row { grid-template-columns: 90px 1fr; gap: 10px; }
  .founder-photo img { aspect-ratio: 3/4; }
  .founder-name { font-size: 0.85rem; }
  .founder-copy p:last-child { font-size: 0.7rem; }

  .trust-gallery { gap: 8px; }

  .pricing-tier-row { gap: 8px; }
  .pricing-tier-card { padding: 10px 6px; }
  .pricing-tier-card h3 { font-size: 0.75rem; }
  .pricing-tier-card p { font-size: 0.68rem; }

  .form-row-split { gap: 10px; }

  .contact-form { padding: 20px; }
}

@media (max-width: 480px) {
  .trust-gallery { gap: 6px; }
}
