/*
Theme Name: Swaaadle Lights
Theme URI: https://swaaadle.com/
Author: Swaaadle
Author URI: https://swaaadle.com/
Description: Custom WordPress theme for Swaaadle Lights, built for premium B2B lighting manufacturing experiences.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: swaaadle
Tags: custom-logo, custom-menu, featured-images, translation-ready
*/

:root {
  --sw-color-ink: #14211d;
  --sw-color-charcoal: #1d2422;
  --sw-color-green-900: #0d3327;
  --sw-color-green-700: #176247;
  --sw-color-green-500: #2fa36b;
  --sw-color-green-100: #e8f4ee;
  --sw-color-white: #ffffff;
  --sw-color-surface: #f7faf8;
  --sw-color-border: rgba(20, 33, 29, 0.14);
  --sw-shadow-soft: 0 18px 45px rgba(13, 51, 39, 0.12);
  --sw-font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --sw-header-height: 76px;
  --sw-announcement-height: 42px;
  --sw-radius-sm: 8px;
  --sw-radius-md: 12px;
  --sw-transition: 180ms ease;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--sw-color-ink);
  font-family: var(--sw-font-sans);
  background: var(--sw-color-white);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
img { display: block; max-width: 100%; height: auto; }

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  background: #0f1d16;
  color: #fff;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus {
  color: var(--sw-color-accent);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 2.4fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  max-width: var(--sw-container);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) 1.25rem 2.25rem;
}

.site-footer__brand {
  max-width: 320px;
}

.site-footer__logo {
  display: inline-flex;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0.65rem;
}

.site-footer__company {
  color: var(--sw-color-accent);
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.site-footer__summary {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
}

.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.35rem, 3vw, 2.25rem);
}

.site-footer__nav h2 {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.35;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

.site-footer__nav ul {
  display: grid;
  gap: 0.62rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__nav a {
  color: rgba(255, 255, 255, 0.76);
  display: inline-flex;
  font-size: 0.94rem;
  line-height: 1.35;
}

.site-footer__bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  max-width: var(--sw-container);
  margin: 0 auto;
  padding: 1.2rem 1.25rem 1.5rem;
}

.site-footer__bottom p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  margin: 0;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  justify-content: flex-end;
}

.site-footer__legal a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

@media (max-width: 1024px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    max-width: 620px;
  }

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

@media (max-width: 640px) {
  .site-footer__inner {
    padding: 2.5rem 1rem 1.75rem;
  }

  .site-footer__columns {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 1.15rem 1rem 1.4rem;
  }

  .site-footer__legal {
    justify-content: flex-start;
  }
}
