/* ==========================================================================
   CUSTOMIZATION & OEM PAGE STYLES (css/customization.css)
   Namespace: .custom-
   ========================================================================== */

/* --------------------------------------------------------------------------
   Section 1: Hero / Header (Cream)
   -------------------------------------------------------------------------- */
.custom-hero {
  background-color: var(--cream);
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line);
}

.custom-hero-content {
  max-width: 820px;
}

.custom-hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: var(--fs-hero);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: var(--s2);
  margin-bottom: var(--s4);
}

.custom-hero-intro {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 68ch;
  margin: 0;
}

/* --------------------------------------------------------------------------
   Section 2: What You Can Change (Surface)
   -------------------------------------------------------------------------- */
.custom-variables {
  background-color: var(--surface);
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.custom-section-header {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.custom-section-header .section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: var(--fs-h2);
  font-weight: 600;
  color: var(--ink);
  margin-top: var(--s1);
  margin-bottom: 0;
}

.custom-variables-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
}

@media (min-width: 640px) {
  .custom-variables-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .custom-variables-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.custom-var-card {
  background-color: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 3vw, 2rem);
  box-shadow: var(--shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.custom-var-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
  border-color: var(--brown);
}

.custom-var-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
  margin-top: 0;
  margin-bottom: var(--s2);
}

.custom-var-desc {
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

.custom-variables-note {
  max-width: 68ch;
  margin-top: clamp(2rem, 4vw, 3rem);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
  font-style: italic;
}

/* --------------------------------------------------------------------------
   Section 3: Branding Methods (Cream)
   -------------------------------------------------------------------------- */
.custom-branding {
  background-color: var(--cream);
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.custom-branding-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

@media (min-width: 768px) {
  .custom-branding-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.custom-branding-card {
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.custom-branding-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
  border-color: var(--brown);
}

.custom-branding-content {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.custom-branding-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 600;
  color: var(--ink);
  margin-top: 0;
  margin-bottom: var(--s2);
}

.custom-branding-desc {
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: var(--s3);
  flex-grow: 1;
}

.custom-branding-bestfor {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--brown);
  border-top: 1px solid var(--line);
  padding-top: var(--s2);
  margin: 0;
}

.custom-branding-note {
  max-width: 68ch;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--ink);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   Section 4: What To Send Us (Surface)
   -------------------------------------------------------------------------- */
.custom-artwork {
  background-color: var(--surface);
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.custom-artwork-container {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.custom-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s5) 0;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.custom-check-item {
  background-color: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: var(--s4);
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
}

.custom-check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  flex-shrink: 0;
  margin-top: 2px;
}

.custom-artwork-note {
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Section 5: Private Label & OEM (Cream)
   -------------------------------------------------------------------------- */
.custom-oem {
  background-color: var(--cream);
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.custom-oem-content {
  max-width: 760px;
}

.custom-oem-content .section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: var(--fs-h2);
  font-weight: 600;
  color: var(--ink);
  margin-top: var(--s1);
  margin-bottom: var(--s4);
}

.custom-oem-content p {
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: var(--s3);
  max-width: 68ch;
}

.custom-exclusivity-note {
  background-color: var(--surface);
  border-left: 3px solid var(--brown);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: var(--s4);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--brown-dark);
  margin-top: var(--s5) !important;
}

/* --------------------------------------------------------------------------
   Section 6: Process Steps (Surface)
   -------------------------------------------------------------------------- */
.custom-process {
  background-color: var(--surface);
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.custom-process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
  position: relative;
}

@media (min-width: 840px) {
  .custom-process-steps {
    grid-template-columns: repeat(5, 1fr);
    gap: var(--s3);
  }

  .custom-process-steps::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 10%;
    right: 10%;
    height: 2px;
    background-color: var(--lime);
    z-index: 1;
  }
}

.custom-step-card {
  background-color: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--s4);
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-card);
}

.custom-step-num {
  font-family: 'DM Mono', monospace;
  font-size: var(--fs-mono);
  font-weight: 500;
  color: var(--brown);
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 4px 8px;
  display: inline-block;
  margin-bottom: var(--s3);
  letter-spacing: 0.1em;
}

.custom-step-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--ink);
  margin-top: 0;
  margin-bottom: var(--s2);
}

.custom-step-desc {
  font-size: var(--fs-small);
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Section 7: Beyond the Range (Deep)
   -------------------------------------------------------------------------- */
.custom-beyond {
  background-color: var(--deep);
  color: var(--cream);
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}

.custom-beyond-box {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(224, 201, 160, 0.15);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
  max-width: 840px;
}

.custom-beyond-box .eyebrow-text {
  color: var(--lime);
}

.custom-beyond-box .section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: var(--fs-h2);
  font-weight: 600;
  color: var(--cream);
  margin-top: var(--s1);
  margin-bottom: var(--s3);
}

.custom-beyond-intro {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255, 239, 203, 0.85);
  margin-bottom: var(--s4);
  max-width: 68ch;
}

.custom-beyond-action .btn-ghost-link {
  color: var(--lime);
}

.custom-beyond-action .btn-ghost-link:hover {
  color: var(--cream);
}

/* --------------------------------------------------------------------------
   Section 8: Closing CTA (Surface)
   -------------------------------------------------------------------------- */
.custom-cta {
  background-color: var(--surface);
  padding-top: var(--section-y);
  padding-bottom: var(--section-y);
}
