/* ============================================================
   DCE SYSTEMS — MAIN STYLESHEET
   Global design system, nav, typography, layout, footer, forms
   ============================================================ */

/* ─────────────────────────────────────────────
   [TOKENS] CSS Custom Properties
   ───────────────────────────────────────────── */
:root {
  --bg: #ffffff;
  --bg-2: #f5f5f5;
  --bg-dark: #111111;
  --panel: #fafafa;
  --line: #e8e8e8;
  --ink: #111111;
  --ink-dim: #444444;
  --ink-faint: #888888;
  --cyan: #0891b2;
  --cyan-deep: #0369a1;
  --cyan-light: #e0f2fe;
  --amber: #f59e0b;
  --white: #ffffff;
  --display: 'Archivo Expanded', 'Archivo', sans-serif;
  --sans: 'Archivo', sans-serif;
  --mono: 'IBM Plex Mono', monospace;
  --maxw: 1320px;
  --pad: 40px;
  --radius: 4px;
  --ease: cubic-bezier(.16,1,.3,1);
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
}

/* ─────────────────────────────────────────────
   [RESET] Base reset & global settings
   ───────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

a:hover {
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

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

input, textarea, select {
  font-family: inherit;
}

/* ─────────────────────────────────────────────
   [LAYOUT] Wrappers and section structure
   ───────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

section {
  position: relative;
}

.section--white {
  background: var(--bg);
}

.section--gray {
  background: var(--bg-2);
}

.section--dark {
  background: var(--bg-dark);
  color: var(--white);
}

.section--panel {
  background: var(--panel);
}

.section-pad {
  padding: clamp(48px, 8vw, 96px) 0;
}

.section-pad--sm {
  padding: clamp(32px, 5vw, 64px) 0;
}

.section-pad--lg {
  padding: clamp(64px, 10vw, 128px) 0;
}

/* ─────────────────────────────────────────────
   [NAV] Tesla smart navbar
   ───────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease),
              border-color 0.35s var(--ease),
              box-shadow 0.35s var(--ease),
              transform 0.35s var(--ease);
  will-change: transform;
}

.site-nav.nav--solid {
  background: var(--white);
  border-bottom-color: var(--line);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.site-nav.nav--hidden {
  transform: translateY(-100%);
}

.site-nav.nav--visible {
  transform: translateY(0);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

/* Logo — two versions */
.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  position: relative;
  height: 36px;
}

.nav__logo img {
  height: 36px;
  width: auto;
  transition: opacity 0.3s;
}

.nav__logo--white {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 1;
}

.nav__logo--dark {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}

.nav--solid .nav__logo--white {
  opacity: 0;
  pointer-events: none;
}

.nav--solid .nav__logo--dark {
  opacity: 1;
}

/* Desktop nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links li a,
.nav__links li button {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.9);
  padding: 8px 14px;
  border-radius: var(--radius);
  background: none;
  border: none;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  display: inline-block;
}

.nav__links li a:hover,
.nav__links li button:hover {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

.nav--solid .nav__links li a,
.nav--solid .nav__links li button {
  color: var(--ink);
}

.nav--solid .nav__links li a:hover,
.nav--solid .nav__links li button:hover {
  color: var(--cyan);
  background: var(--cyan-light);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 8px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 100;
}

.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-menu li {
  list-style: none;
}

.nav__dropdown-menu li a {
  display: block;
  color: var(--ink) !important;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
  background: none !important;
  letter-spacing: 0;
}

.nav__dropdown-menu li a:hover {
  background: var(--cyan-light) !important;
  color: var(--cyan-deep) !important;
}

/* Dropdown toggle arrow */
.nav__dropdown > button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav__drop-arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  transition: transform 0.2s;
  opacity: 0.7;
}

.nav__dropdown:hover .nav__drop-arrow {
  transform: rotate(180deg);
}

/* Nav CTA button */
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--sans);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 9px 20px;
  background: var(--cyan);
  color: var(--white) !important;
  border-radius: var(--radius);
  border: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  margin-left: 8px;
}

.nav__cta:hover {
  background: var(--cyan-deep);
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Mobile hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
}

.nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: background 0.2s;
}

.nav--solid .nav__hamburger span {
  background: var(--ink);
}

/* Mobile offcanvas overlay */
.nav__offcanvas {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(360px, 88vw);
  height: 100vh;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  transition: right 0.4s var(--ease);
  overflow-y: auto;
  padding: 24px;
}

.nav__offcanvas.open {
  right: 0;
}

.nav__offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.nav__offcanvas-header img {
  height: 28px;
  width: auto;
}

.nav__offcanvas-close {
  font-size: 24px;
  color: var(--ink);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
}

.nav__offcanvas-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav__offcanvas-links > li > a,
.nav__offcanvas-links > li > button {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  text-align: left;
  width: 100%;
}

.nav__offcanvas-sub {
  list-style: none;
  padding: 8px 0 8px 16px;
  border-bottom: 1px solid var(--line);
}

.nav__offcanvas-sub li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-dim);
  padding: 8px 0;
  display: block;
}

.nav__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.nav__backdrop.open {
  opacity: 1;
  visibility: visible;
}

/* ─────────────────────────────────────────────
   [BUTTONS]
   ───────────────────────────────────────────── */
.btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan);
  color: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: clamp(10px, 1.5vw, 14px) clamp(16px, 2.5vw, 28px);
  border-radius: var(--radius);
  border: 2px solid var(--cyan);
  transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
  white-space: normal;
  text-decoration: none;
}

.btn--primary:hover {
  background: var(--cyan-deep);
  border-color: var(--cyan-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(8,145,178,0.3);
}

.btn--ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: clamp(10px, 1.5vw, 14px) clamp(16px, 2.5vw, 28px);
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.7);
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  cursor: pointer;
  white-space: normal;
  text-decoration: none;
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: clamp(10px, 1.5vw, 14px) clamp(16px, 2.5vw, 28px);
  border-radius: var(--radius);
  border: 2px solid var(--ink);
  transition: background 0.2s, color 0.2s, transform 0.15s;
  cursor: pointer;
  white-space: normal;
  text-decoration: none;
}

.btn--ghost-dark:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: clamp(10px, 1.5vw, 14px) clamp(16px, 2.5vw, 28px);
  border-radius: var(--radius);
  border: 2px solid var(--ink);
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  white-space: normal;
  text-decoration: none;
}

.btn--dark:hover {
  background: #222;
  border-color: #222;
  color: var(--white);
  transform: translateY(-2px);
}

.btn--sm {
  padding: 9px 18px !important;
  font-size: 12px !important;
  letter-spacing: 0.05em !important;
}

.btn-group {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────
   [TYPOGRAPHY] Headings, labels, intro text
   ───────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}

.eyebrow--white {
  color: rgba(255,255,255,0.7);
}

.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 16px;
}

.sec-tag::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--cyan);
  flex-shrink: 0;
}

.sec-tag--white {
  color: rgba(255,255,255,0.5);
}

.sec-tag--white::before {
  background: rgba(255,255,255,0.4);
}

.sec-title {
  font-family: var(--display);
  font-size: clamp(24px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.sec-title--white {
  color: var(--white);
}

.sec-title--lg {
  font-size: clamp(32px, 5vw, 68px);
}

.sec-intro {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.7;
  color: var(--ink-dim);
  max-width: 640px;
  margin-top: 20px;
}

.sec-intro--white {
  color: rgba(255,255,255,0.75);
}

.sec-intro--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

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

h1, h2, h3, h4, h5, h6 {
  line-height: 1.15;
}

/* ─────────────────────────────────────────────
   [REVEAL] Scroll-reveal animations
   ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal--left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal--right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal--right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }
.reveal--delay-6 { transition-delay: 0.6s; }

/* ─────────────────────────────────────────────
   [FOOTER]
   ───────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: clamp(24px, 4vw, 48px);
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 20px;
  max-width: 280px;
  color: rgba(255,255,255,0.55);
}

.footer__brand img {
  height: 32px;
  width: auto;
}

.footer__col-title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer__links li a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__bottom-links li a {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}

.footer__bottom-links li a:hover {
  color: rgba(255,255,255,0.7);
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  text-decoration: none;
}

.footer__social a:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(8,145,178,0.1);
}

/* ─────────────────────────────────────────────
   [FORMS] Global form styles
   ───────────────────────────────────────────── */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 8px;
}

.form-control {
  display: block;
  width: 100%;
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-control:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(8,145,178,0.12);
}

.form-control::placeholder {
  color: var(--ink-faint);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 40px;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 20px;
}

.required-star {
  color: var(--cyan);
  margin-left: 2px;
}

/* ─────────────────────────────────────────────
   [BADGES / TAGS]
   ───────────────────────────────────────────── */
.badge-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  border: 1px solid;
  white-space: nowrap;
}

.badge-tag--cyan {
  background: var(--cyan-light);
  color: var(--cyan-deep);
  border-color: rgba(8,145,178,0.2);
}

.badge-tag--dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.badge-tag--white {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}

.badge-tag--amber {
  background: rgba(245,158,11,0.1);
  color: var(--amber);
  border-color: rgba(245,158,11,0.25);
}

.badge-tag--gray {
  background: var(--bg-2);
  color: var(--ink-dim);
  border-color: var(--line);
}

/* ─────────────────────────────────────────────
   [UTILITIES]
   ───────────────────────────────────────────── */
.mt-0 { margin-top: 0 !important; }
.mt-8 { margin-top: 8px !important; }
.mt-16 { margin-top: 16px !important; }
.mt-24 { margin-top: 24px !important; }
.mt-32 { margin-top: 32px !important; }
.mt-40 { margin-top: 40px !important; }
.mt-48 { margin-top: 48px !important; }
.mt-64 { margin-top: 64px !important; }

.mb-8 { margin-bottom: 8px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-48 { margin-bottom: 48px !important; }

.text-cyan { color: var(--cyan) !important; }
.text-white { color: var(--white) !important; }
.text-dim { color: var(--ink-dim) !important; }
.text-faint { color: var(--ink-faint) !important; }
.text-amber { color: var(--amber) !important; }

.bg-dark { background: var(--bg-dark) !important; }
.bg-white { background: var(--white) !important; }
.bg-gray { background: var(--bg-2) !important; }
.bg-panel { background: var(--panel) !important; }
.bg-cyan { background: var(--cyan) !important; }
.bg-cyan-light { background: var(--cyan-light) !important; }

.font-mono { font-family: var(--mono) !important; }
.font-display { font-family: var(--display) !important; }

.fw-500 { font-weight: 500 !important; }
.fw-600 { font-weight: 600 !important; }
.fw-700 { font-weight: 700 !important; }
.fw-800 { font-weight: 800 !important; }

.uppercase { text-transform: uppercase !important; }
.tracking-wide { letter-spacing: 0.08em !important; }

.divider {
  height: 1px;
  background: var(--line);
  border: none;
  margin: 0;
}

.divider--dark {
  background: rgba(255,255,255,0.08);
}

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

.position-relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* ─────────────────────────────────────────────
   [RESPONSIVE] Minimal breakpoints
   ───────────────────────────────────────────── */

/* Nav: show hamburger on tablet and below */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__hamburger { display: flex; }
}

/* Footer bottom: stack on small screens */
@media (max-width: 640px) {
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer__bottom-links {
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer__brand p {
    max-width: 100%;
  }

  .btn-group {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Full-width stacked buttons inside hero / CTA groups on small phones */
@media (max-width: 480px) {
  .btn-group {
    width: 100%;
  }
  .btn-group > * {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* Very small phones: typography floor */
@media (max-width: 360px) {
  .sec-title { font-size: clamp(20px, 6vw, 28px); }
}

/* Landscape phones */
@media (max-height: 520px) and (orientation: landscape) {
  .site-nav .nav__inner { height: 52px; }
}
