/*
Theme Name: Such Destruction
Theme URI: https://suchdestruction.com
Author: Such Destruction
Author URI: https://suchdestruction.com
Description: Custom full-site-editing block theme for Such Destruction — dark navy + purple→magenta→orange gradient identity, GSAP-driven motion, performance-first. Inspired by the Montr Studio layout, reinterpreted for Such Destruction's brand.
Version: 0.1.0
Requires at least: 6.6
Tested up to: 6.6
Requires PHP: 8.1
License: Proprietary
License URI: https://suchdestruction.com
Text Domain: such-destruction
Tags: block-theme, full-site-editing, custom-blocks, agency, portfolio
*/

/* Minimal base — design tokens live in theme.json. This file exists only for
   the theme header and a few cross-cutting resets that theme.json cannot express. */

:root {
  --sd-nav-height: 72px;
  --sd-nav-blur: 14px;
  --sd-focus-ring: 2px solid var(--wp--preset--color--accent-magenta);
  --sd-ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --sd-ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

*:focus-visible {
  outline: var(--sd-focus-ring);
  outline-offset: 3px;
  border-radius: 4px;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

::selection {
  background: var(--wp--preset--color--accent-magenta);
  color: var(--wp--preset--color--contrast);
}
