/* AirClear Kitchen — layout accents beyond Tailwind */
:root {
  --ac-teal: #0d9488;
  --ac-teal-dark: #0f766e;
  --ac-ink: #0f172a;
  --ac-cream: #fefce8;
  --ac-mist: #ecfdf5;
}

html {
  scroll-behavior: smooth;
}

/* Diagonal panel clip */
.clip-diagonal {
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}

@media (min-width: 1024px) {
  .clip-diagonal {
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  }
}

/* Offset reading column */
.reading-measure {
  max-width: 42rem;
}

/* Grain overlay (subtle) */
.grain::after {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 50;
}

/* Mobile drawer animation */
#drawer {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

body.drawer-open {
  overflow: hidden;
}
