/* Zohar Plastics - Static Site Stylesheet */
/* Compiled from Tailwind CSS + Custom Design System */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  font-family: 'Uncut Sans Variable', 'Uncut Sans', system-ui, sans-serif;
  line-height: 1.5;
  tab-size: 4;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  line-height: inherit;
  font-family: 'Uncut Sans Variable', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.zohar-scope {
  font-family: 'Uncut Sans Variable', 'Uncut Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


/* ============================================
   CSS VARIABLES (Design Tokens)
   ============================================ */
:root {
  /* Colors - HSL Format */
  --background-v: 45 55% 92%;
  --foreground: 20 75% 8%;
  --card: 45 55% 92%;
  --card-foreground: 20 75% 8%;
  --popover: 45 55% 92%;
  --popover-foreground: 20 75% 8%;
  --primary: 14 100% 58%;
  --primary-foreground: 45 60% 92%;
  --secondary: 20 75% 8%;
  --secondary-foreground: 45 60% 92%;
  --muted: 45 20% 80%;
  --muted-foreground: 20 40% 30%;
  --accent: 20 75% 8%;
  --accent-foreground: 45 60% 92%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 45 60% 92%;
  --border: 20 55% 20%;
  --input: 20 55% 20%;
  --ring: 14 100% 58%;
  --radius: 0.5rem;
  --yellow-accent: 45 95% 65%;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: inherit;
}

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

button {
  background: transparent;
  border: none;
  cursor: pointer;
  font: inherit;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Display */
.hidden {
  display: none;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.grid {
  display: grid;
}

/* Flex utilities */
.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

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

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

.items-end {
  align-items: flex-end;
}

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

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-16 {
  gap: 4rem;
}

.gap-20 {
  gap: 5rem;
}

/* Grid utilities */
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Spacing */
.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.p-10 {
  padding: 2.5rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pt-16 {
  padding-top: 4rem;
}

.pb-12 {
  padding-bottom: 3rem;
}

.pb-16 {
  padding-bottom: 4rem;
}

.pb-20 {
  padding-bottom: 5rem;
}

.m-0 {
  margin: 0;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-14 {
  margin-bottom: 3.5rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

/* Width & Height */
.w-full {
  width: 100%;
}

.w-auto {
  width: auto;
}

.h-full {
  height: 100%;
}

.h-auto {
  height: auto;
}

.max-w-7xl {
  max-width: 80rem;
}

.min-h-screen {
  min-height: 100vh;
}

/* Position */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

.top-0 {
  top: 0;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.z-10 {
  z-index: 10;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

/* Text utilities */
.text-left {
  text-align: left;
}

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

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

.uppercase {
  text-transform: uppercase;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

.leading-none {
  line-height: 1;
}

.leading-tight {
  line-height: 1.25;
}

.leading-normal {
  line-height: 1.5;
}

/* Background colors */
.bg-background {
  background-color: hsl(var(--background));
}

.bg-foreground {
  background-color: hsl(var(--foreground));
}

.bg-primary {
  background-color: hsl(var(--primary));
}

.bg-accent {
  background-color: var(--accent);
}

.bg-transparent {
  background-color: transparent;
}

/* Text colors */
.text-foreground {
  color: hsl(var(--foreground));
}

.text-background {
  color: hsl(var(--background));
}

.text-primary {
  color: hsl(var(--primary));
}

.text-white {
  color: hsl(var(--primary-foreground));
}

/* Border */
.border {
  border: 1px solid;
}

.border-t {
  border-top: 1px solid;
}

.border-b {
  border-bottom: 1px solid;
}

.border-foreground {
  border-color: hsl(var(--foreground));
}

.border-primary {
  border-color: hsl(var(--primary));
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-full {
  border-radius: 9999px;
}

/* Overflow */
.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

/* Opacity */
.opacity-90 {
  opacity: 0.9;
}

.opacity-95 {
  opacity: 0.95;
}

/* Transitions */
.transition-all {
  transition: all 0.3s ease;
}

.transition-colors {
  transition: color 0.3s ease, background-color 0.3s ease;
}

.transition-opacity {
  transition: opacity 0.3s ease;
}

.transition-transform {
  transition: transform 0.3s ease;
}

/* Hover effects */
.hover\:opacity-90:hover {
  opacity: 0.9;
}

.hover\:opacity-65:hover {
  opacity: 0.65;
}

.hover\:bg-primary:hover {
  background-color: hsl(var(--primary));
}

.hover\:text-white:hover {
  color: hsl(var(--primary-foreground));
}

/* Object fit */
.object-cover {
  object-fit: cover;
}

.object-contain {
  object-fit: contain;
}

/* ============================================
   COMPONENT STYLES
   ============================================ */

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 80px;
  background-color: hsl(var(--background));
  border-bottom: 1px solid hsl(var(--foreground) / 0.1);
}

.header-container {
  max-width: 2300px;
  height: 100%;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  /* border: 1px solid #200600; */
}

.header-logo {
  height: 27px;
  width: auto;
}

.header-nav {
  display: none;
  justify-self: center;
}

.header-nav ul {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  opacity: 0.95;
  transition: opacity 0.3s ease;
}

.header-nav a:hover {
  opacity: 0.65;
}

.header-ctas {
  display: none;
  gap: 0.625rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 14px;
  font-size: 1rem;
  border: 1.5px solid;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary {
  background-color: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary));
  font-weight: 700;
}

.btn-outline {
  background-color: transparent;
  color: hsl(var(--foreground));
  border-color: hsl(var(--foreground));
}

.btn:hover {
  opacity: 0.9;
}

.btn:active {
  transform: translateY(1px);
}

.menu-toggle {
  display: inline-flex;
  padding: 14px 16px;
  border-radius: 14px;
  background-color: hsl(var(--primary));
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border: 1.5px solid hsl(var(--primary));
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  background-color: var(--accent);
  z-index: 40;
  padding: 1.5rem;
  overflow-y: auto;
  transform: translateY(-100%);
  transition: transform 0.2s ease;
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu a {
  color: white;
  font-weight: 500;
  font-size: 2.75rem;
  line-height: 1.2;
  letter-spacing: 0.2px;
}

/* Hero Section */
.hero {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
}

.hero-grid {
  max-width: 1920px;
  margin: 0 auto;
  display: grid;
  min-height: calc(100vh - 80px);
}

.hero-content {
  background-color: hsl(var(--background));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem;
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 6.125rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 40ch;
}

.hero-image {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background-color: hsl(var(--muted));
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
.footer {
  background-color: var(--accent);
  color: hsl(var(--accent-foreground));
  padding: 4rem 1.5rem 2rem;
}

.footer-grid {
  max-width: 1920px;
  margin: 0 auto;
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-section a {
  color: hsl(var(--accent-foreground) / 0.8);
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: hsl(var(--accent-foreground));
}

.footer-bottom {
  max-width: 1920px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--accent-foreground) / 0.2);
  text-align: center;
  color: hsl(var(--accent-foreground) / 0.7);
  font-size: 0.875rem;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.reveal-hidden {
  opacity: 0;
  transform: translateY(30px);
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.6s ease-out;
}

.reveal-from-left {
  transform: translateX(-30px);
}

.reveal-from-right {
  transform: translateX(30px);
}

.reveal-from-top {
  transform: translateY(-30px);
}

.reveal-from-bottom {
  transform: translateY(30px);
}

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-hidden {
    transform: none;
  }

  .reveal-visible {
    transform: none;
    animation: none;
  }
}

/* ============================================
   HOME PAGE SPECIFIC STYLES
   ============================================ */

/* Hero Play Button */
#heroPlayBtn:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

#heroPlayBtn:active {
  transform: translate(-50%, -50%) scale(0.95);
}

/* Products Carousel */
#productsCarousel::-webkit-scrollbar {
  display: none;
}

/* Process Steps */
.process-step {
  cursor: pointer;
}

@media (min-width: 1280px) {
  [aria-labelledby="ctaSlabTitle"]>div {
    max-width: 80%;
  }
}

/* Contact CTA Responsive Images */
@media (min-width: 768px) {

  #contactCTA img[src*="contact-cta-bg-mobile"] {
    display: none !important;
  }
}

@media (max-width: 767px) {
  #ctaSlabTitle {
    font-size: 36px !important;
  }

  #ctaLeftImage,
  #ctaRightImage {
    display: none !important;
  }
}

/* Responsive Typography for Hero on Desktop */
@media (min-width: 1130px) {
  .hero>div>div:first-child {
    padding: 1.5rem !important;
    order: 1 !important;
  }

  .hero>div>figure {
    order: 2 !important;
    min-height: 0 !important;
  }
}

@media (min-width: 768px) {
  .hero>div>div:first-child>div {
    flex-direction: row !important;
    align-items: center !important;
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }
}

@media (min-width: 1130px) {
  .header-nav {
    display: block;
  }

  .header-ctas {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   UTILITY CLASSES FOR HIDING/SHOWING
   ============================================ */
.lg\:hidden {
  display: none;
}

@media (min-width: 1130px) {
  .lg\:block {
    display: block;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:grid {
    display: grid;
  }

  .lg\:hidden {
    display: none !important;
  }
}

@media (max-width: 1130px) {
  .lg\:block {
    display: none;
  }
}



[aria-label="Previous slide"],
[aria-label="Next slide"] {
  border: 2px solid #fff;
}


/* ===== Palette (from your HSL utilities) ===== */
:root {
  --cream-v: #FFFEF0;
  --ink-v: hsl(20 55% 12%);
  --btn-v: hsl(20 65% 10%);
}

/* Container spacing mirrors your grid */
.z-footer-form {
  gap: .5rem;
}

/* Labels */
.zf-label {
  margin-top: .35rem;
  font-weight: 500;
  letter-spacing: -0.4px;
  line-height: 1.5;
  font-size: 18px;
}

@media (min-width:1130px) {
  .zf-label {
    font-size: 20px;
    letter-spacing: -0.4px;
  }
}

/* Inputs / Textarea */
.zf-input,
.zf-textarea {
  width: 100%;
  background: var(--cream-v) !important;
  color: var(--ink-v) !important;
  border: 0;
  border-radius: 12px !important;
  padding: 13px 16px !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
  outline: none !important;
}

.zf-input::placeholder,
.zf-textarea::placeholder {
  color: color-mix(in oklab, var(--ink-v) 55%, transparent);
}

/* Textarea sizing */
.zf-textarea {
  min-height: 159px;
  max-height: 159px;
  resize: vertical;
  padding-bottom: 0;
}

/* Submit button */
.zf-submit {
  margin-top: .5rem;
  height: 3rem;
  /* h-12 */
  width: 100%;
  border: 0;
  border-radius: 16px;
  /* rounded-2xl */
  background: var(--btn-v);
  color: #fff;
  font-size: 1.125rem;
  /* text-lg */
  line-height: 1.5rem;
  cursor: pointer;
  transition: opacity .2s, transform .1s;
}

@media (min-width:768px) {
  .zf-submit {
    height: 3.25rem;
  }

  /* md:h-13 (approx) */
}

.zf-submit:hover {
  opacity: .9;
}

.zf-submit:active {
  transform: translateY(1px);
}

/* ===== Custom checkboxes (no JS, accessible) ===== */
/* CF7 renders: <span class="wpcf7-form-control wpcf7-checkbox zf-check"><span class="wpcf7-list-item"><label> <input> <span class="wpcf7-list-item-label">Text</span> </label> ... */
.zf-check .wpcf7-list-item {
  display: block;
  margin: .4rem 0;
}

.zf-check .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: .625rem;
  /* 2.5 */
  font-size: 1rem;
  line-height: 1.35;
  cursor: pointer;
  position: relative;
  /* custom box */
}

.zf-check .wpcf7-list-item label::before {
  content: "";
  width: 1.25rem;
  /* w-5 */
  height: 1.25rem;
  /* h-5 */
  border-radius: .375rem;
  /* rounded */
  border: 2px solid var(--cream-v);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-sizing: border-box;
}

/* Hide native input but keep it accessible */
.zf-check input[type="checkbox"] {
  position: absolute;
  inset: 0 0 0 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
}

/* Checked state using :has() for perfect match */
.zf-check .wpcf7-list-item label:has(input:checked)::before {
  background: var(--cream-v);
  border-color: var(--cream-v);
  /* simple checkmark */
  box-shadow: inset 0 0 0 2px var(--btn-v);
}

/* Focus ring for keyboard users */
.zf-check .wpcf7-list-item label:has(input:focus-visible) {
  outline: 2px solid color-mix(in oklab, var(--btn-v) 65%, white);
  outline-offset: 4px;
}

/* CF7 default wrappers – make them transparent to our layout */
.z-footer-form .wpcf7-form-control-wrap {
  display: block;
}


.wpcf7-not-valid-tip {
  color: #ffb900 !important;
  font-size: 16px !important;
  font-weight: normal;
  display: block;
  margin-left: 5px;
  margin-top: 2px;
  display: none !important;
}



/* Contact Page */

/* ========= tokens (override to your exact palette if you want) ========= */
:root {
  --background-v: #FFFAE8;
  /* light cream */
  --foreground-v: #2A1A12;
  /* dark brown */
  --primary-v: #1A0B06;
  /* button fill */
}

/* spacing to mirror your utilities */
.z2-form {
  gap: .5rem;
}

/* labels */
.z2-label {
  margin-top: .35rem;
  font-weight: 400;
  font-size: 18px !important;
  line-height: 1.5;
  letter-spacing: -.4px;
}

@media (min-width:1130px) {
  .z2-label {
    font-size: 20px;
  }
}

/* inputs + textarea (bordered style shown in your screenshot) */
.z2-input,
.z2-textarea {
  width: 100% !important;
  background: var(--background-v) !important;
  color: var(--foreground-v) !important;
  border: 1px solid var(--foreground-v) !important;
  border-radius: 12px !important;
  /* rounded-xl */
  padding: 9px 16px !important;
  /* px-4 py-[13px] */
  font-size: .875rem !important;
  /* text-sm */
  font-weight: 500 !important;
  /* font-medium */
  line-height: 1.5 !important;
  outline: none !important;
}

.z2-input::placeholder,
.z2-textarea::placeholder {
  color: color-mix(in oklab, var(--foreground-v) 45%, transparent);
}

.z2-textarea {
  min-height: 100px;
  max-height: 100px;
  resize: vertical;
  padding-bottom: 0;
}

/* submit button */
.z2-submit {
  margin-top: .5rem;
  height: 3rem;
  /* h-12 */
  width: 100%;
  border: 0;
  border-radius: 16px;
  /* rounded-2xl */
  background: var(--primary-v);
  color: #fff;
  font-size: 1.125rem;
  /* text-lg */
  line-height: 1.5rem;
  cursor: pointer;
  transition: opacity .2s, transform .1s;
}

@media (min-width:768px) {
  .z2-submit {
    height: 3.25rem;
  }
}

/* md:h-13 */
.z2-submit:hover {
  opacity: .92;
}

.z2-submit:active {
  transform: translateY(1px);
}

/* ===== custom checkboxes (accessible, no JS) =====
   CF7 renders: <span class="wpcf7-checkbox z2-check"><span class="wpcf7-list-item"><label> <input> <span class="wpcf7-list-item-label">...</span></label></span> */
.z2-check .wpcf7-list-item {
  display: block;
  margin: .45rem 0;
}

.z2-check .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: 1rem;
  line-height: 1.35;
  cursor: pointer;
  position: relative;
}

/* custom box */
.z2-check .wpcf7-list-item label::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 8px;
  /* rounded-[8px] */
  border: 1px solid var(--foreground-v);
  background: #fffef0;
  display: inline-flex;
  box-sizing: border-box;
}

/* hide native input but keep it accessible */
.z2-check input[type="checkbox"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}

/* checked state */
.z2-check .wpcf7-list-item label:has(input:checked)::before {
  background: var(--foreground-v);
  box-shadow: inset 0 0 0 4px var(--background);
  /* white square inside */
}

/* focus ring for keyboard users */
.z2-check .wpcf7-list-item label:has(input:focus-visible) {
  outline: 1px solid color-mix(in oklab, var(--foreground-v) 60%, white);
  outline-offset: 4px;
}

/* CF7 wrappers behave like block fields */
.z2-form .wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-spinner {
  display: none !important;
}

.dot-link {
  font-size: clamp(24px, 5vw, 42.437px);
  letter-spacing: clamp(-0.96px, -2vw, -1.697px);
}

.menu-toggle {
  display: none !important;
}

.wpcf7-not-valid::placeholder {
  color: red !important;
}

.wpcf7-response-output {
  display: none !important;
}

.header-ctas a {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.9px;
}

.about-hero-gradient,
.process-hero-gradient {
  padding-left: 85px;
}

@media (max-width: 1550px) {
  #ctaSlabTitle {
    font-size: 46px;
  }
}

@media (max-width: 1265px) {
  .menu-toggle {
    display: inline-flex !important;
    justify-content: center;
  }

  .header-container {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
  }

  .process-hero-gradient {
    padding-left: 2rem !important;
    padding-right: 2rem;
  }

  /* .mobile-menu {
    top: 125px;
  } */

  [src="https://zohar-dev.brklyn.io/wp-content/themes/twentytwentyfive/assets/images/contact-cta-bg-mobile-B8UTSfQD.png"] {
    max-height: 88% !important;
  }
}

@media (min-width: 1266px) {
  .header-nav {
    display: block !important;
  }

  .header-ctas {
    display: flex !important;
  }
}