/* ============================================================
   DESIGN TOKENS / ROOT VARIABLES
   ============================================================ */
:root {
  --color-border:       rgba(20, 26, 26, 0.08);
  --color-border-mid:   rgba(20, 26, 26, 0.15);
  --gutter:        var(--wp--preset--spacing--40);
  --header-h:      64px;
}

/* ============================================================
   RESETS
   ============================================================ */
* {
  box-sizing: border-box;
}
:where(html, body, div, section, article, header, footer, nav, h1, h2, h3, h4, p, a, button, input, textarea, select, figure, img, span, ul, ol, li, form, label, fieldset) {
  margin: 0; padding: 0;
}
body {
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
a {
  color: inherit;
}
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ============================================================
   :::SECTION:Animations:::
   ============================================================ */

@keyframes hero-fade-up {
  0%   { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes modal-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes modal-slide {
  from { transform: translateY(24px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.animate-on-scroll {
  opacity: 1;
  transform: translateY(0);
}
.js .animate-on-scroll:not(.is-visible) {
  opacity: 0;
  transform: translateY(28px);
}
.js .animate-on-scroll {
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.js .animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.js .animate-on-scroll:nth-child(2) { transition-delay: 0.08s; }
.js .animate-on-scroll:nth-child(3) { transition-delay: 0.16s; }
.js .animate-on-scroll:nth-child(4) { transition-delay: 0.24s; }
.js .animate-on-scroll:nth-child(5) { transition-delay: 0.32s; }
.js .animate-on-scroll:nth-child(6) { transition-delay: 0.40s; }

/* ============================================================
   :::SECTION:Site Navigation:::
   ============================================================ */

/* Navigation — Parent-level rules (can't scope to nav block)
   -------------------------------------------------------------------------- */
.wp-block-template-part:has(.wp-block-navigation .is-menu-open),
header:has(.wp-block-navigation .is-menu-open) {
  z-index: 100001;
  position: relative;
}

footer.wp-block-template-part,
footer.wp-block-template-part > .wp-block-group {
  position: relative;
  z-index: 1;
}

[class*="site-footer"],
[class*="footer-section"] {
  margin-block-start: 0 !important;
}

:where(.wp-site-blocks, .wp-block-post-content) :where(
  .wp-block-group,
  .wp-block-cover,
  .wp-block-columns,
  .wp-block-column,
  .wp-block-media-text,
  .wp-block-buttons,
  .wp-block-button,
  .wp-block-image,
  .wp-block-heading,
  p,
  ul,
  ol,
  li
) {
  min-width: 0;
  box-sizing: border-box;
}

:where(.wp-site-blocks, .wp-block-post-content) > :where(.alignfull, section) {
  max-width: 100vw;
  box-sizing: border-box;
}

/* Static conversion scroll reveal visibility guard */
.animate-on-scroll,
.animate-from-left,
.animate-from-right,
.animate-scale,
html.js .animate-on-scroll:not(.is-visible),
.js .animate-on-scroll:not(.is-visible),
.editor-styles-wrapper .animate-on-scroll,
.editor-styles-wrapper .animate-from-left,
.editor-styles-wrapper .animate-from-right,
.editor-styles-wrapper .animate-scale {
  opacity: 1 !important;
  transform: none !important;
}