/* =========================
   Global Reset
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   Root Variables
========================= */
:root {
  --bg-color: #050505;
  --section-dark: #0c0c0c;
  --section-light: #121212;
  --card-bg: rgba(255, 255, 255, 0.04);
  --text-color: #ffffff;
  --muted-text: rgba(255, 255, 255, 0.72);
  --accent-color: #ff7a00;
  --accent-hover: #ff9d47;
  --border-color: rgba(255, 255, 255, 0.1);
  --shadow-color: rgba(0, 0, 0, 0.35);
  --max-width: 1200px;
  --header-height: 72px;
}

/* =========================
   Base Styles
========================= */
html {
  scroll-behavior: smooth;
}

/* =========================
   Top navbar (hero-aligned)
========================= */
.top-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(5, 5, 5, 0.52);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 1px 0 rgba(255, 122, 0, 0.06);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.top-header.is-scrolled {
  background: rgba(5, 5, 5, 0.86);
  border-bottom-color: rgba(255, 122, 0, 0.14);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.top-header-inner {
  width: min(92%, var(--max-width));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 32px);
  min-height: var(--header-height);
  padding: 10px 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  border-radius: 8px;
  transition: opacity 0.28s ease, transform 0.28s ease, box-shadow 0.28s ease;
}

.nav-brand:hover {
  opacity: 0.94;
  transform: translateY(-1px);
}

.nav-brand:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 4px;
}

.nav-brand img {
  height: clamp(30px, 4.5vw, 44px);
  width: auto;
  max-width: min(200px, 42vw);
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.nav-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2.8vw, 36px);
  margin: 0;
  padding: 0;
}

.nav-menu li a {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.92rem, 1.15vw, 1.06rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 10px 2px 12px;
  transition: color 0.28s ease, transform 0.28s ease;
}

.nav-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-hover));
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.28s ease;
}

.nav-menu li a:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.nav-menu li a:hover::after {
  transform: scaleX(0.45);
  opacity: 0.85;
}

.nav-menu li a.active {
  color: var(--accent-color);
}

.nav-menu li a.active::after {
  transform: scaleX(1);
  opacity: 1;
}

.nav-menu li a:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 6px;
  border-radius: 2px;
}

body {
  background: var(--bg-color);
  color: var(--text-color);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

section {
  scroll-margin-top: calc(var(--header-height) + 28px);
}

.container {
  width: min(90%, var(--max-width));
  margin: 0 auto;
}

/* =========================
   Header / Navbar
========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.custom-navbar {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.96);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 500;
  padding-bottom: 8px;
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover {
  color: var(--accent-hover);
  transform: translateY(-1px);
}

.nav-links a.active {
  color: #ffffff;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
}

/* =========================
   Hamburger Button
========================= */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 42px;
  height: 42px;
  position: relative;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px auto;
  background: #ffffff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================
   Hero
========================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 56px) 0 90px;
  background: #050505;
  overflow: hidden;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-cursor-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    600px circle at var(--cx, 50%) var(--cy, 40%),
    rgba(255, 122, 0, 0.08),
    transparent 70%
  );
  transition: background 0.12s ease;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

/* Entrance animation — elements start hidden, JS adds .visible */
.hero-content .eyebrow,
.hero-content h1,
.hero-content .hero-text,
.hero-content .hero-buttons {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-content .eyebrow.visible,
.hero-content h1.visible,
.hero-content .hero-text.visible,
.hero-content .hero-buttons.visible {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 28px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 122, 0, 0.28);
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.06);
  backdrop-filter: blur(6px);
}

.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 7vw, 7rem);
  line-height: 1.0;
  margin-bottom: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero h1 span {
  background: linear-gradient(135deg, #ff7a00 0%, #ffb347 60%, #ff9500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  color: var(--muted-text);
  font-size: 1.12rem;
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}

.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(255, 122, 0, 0.7), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* Button upgrades for hero */
.hero .btn-primary {
  box-shadow: 0 0 28px rgba(255, 122, 0, 0.35), 0 6px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.hero .btn-primary:hover {
  box-shadow: 0 0 40px rgba(255, 122, 0, 0.55), 0 8px 24px rgba(0, 0, 0, 0.35);
  transform: translateY(-3px);
}

.hero .btn-secondary {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero .btn-secondary:hover {
  background: rgba(255, 122, 0, 0.08);
  border-color: rgba(255, 122, 0, 0.6);
  color: var(--accent-color);
  transform: translateY(-3px);
}

/* =========================
   Buttons
========================= */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent-color);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(255, 122, 0, 0.18);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-secondary:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

/* =========================
   Sections
========================= */
section:not(.hero) {
  padding: 100px 0;
}

section:nth-of-type(even):not(.hero) {
  background: var(--section-dark);
}

section:nth-of-type(odd):not(.hero) {
  background: var(--section-light);
}

.section-title {
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 14px;
}

.section-title span {
  color: var(--accent-color);
}

.section-subtitle {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
  color: var(--muted-text);
  font-size: 1.05rem;
}

/* =========================
   Cards
========================= */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 22px;
  padding: 30px;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px var(--shadow-color);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 0, 0.45);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.card p {
  color: var(--muted-text);
  font-size: 0.98rem;
}

#shop .card {
  display: flex;
  flex-direction: column;
}

#shop .card-cta {
  margin-top: auto;
  padding-top: 1.25rem;
  align-self: stretch;
  text-align: center;
}

/* =========================
   FAQ Accordion
========================= */
.faq-section .faq-section-intro {
  margin-bottom: 44px;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  min-height: 56px;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  background: transparent;
  border: none;
  transition: background 0.28s ease, box-shadow 0.28s ease;
}

.faq-trigger:hover {
  background: rgba(255, 122, 0, 0.06);
}

.faq-trigger:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: -2px;
}

.faq-item.is-open .faq-trigger {
  background: rgba(255, 122, 0, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 122, 0, 0.12);
}

.faq-question {
  flex: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.faq-icon {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(255, 122, 0, 0.85);
  border-bottom: 2px solid rgba(255, 122, 0, 0.85);
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.25s ease;
}

.faq-trigger:hover .faq-icon {
  border-color: var(--accent-hover);
}

.faq-item.is-open .faq-icon {
  transform: rotate(-135deg);
  margin-top: 4px;
}

/* Smooth height reveal */
.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.42s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-panel-inner {
  min-height: 0;
  overflow: hidden;
}

.faq-answer {
  padding: 0 26px 24px 26px;
  margin: 0;
  color: var(--muted-text);
  font-size: 1.02rem;
  line-height: 1.72;
  max-width: 760px;
}

/* =========================
   Split Sections
========================= */
.about {
  background: linear-gradient(180deg, #0b0b0b 0%, #121212 100%);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.about-text {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.about-text p {
  color: var(--muted-text);
  margin-bottom: 14px;
  font-size: 1rem;
}

.about-text p strong {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
}

/* =========================
   Contact Section
========================= */
.contact-section {
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(255, 122, 0, 0.12), transparent 55%),
    var(--section-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.contact-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-size: 0.72rem;
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 14px;
}

.contact-headline {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.2vw, 3.1rem);
  font-weight: 600;
  line-height: 1.12;
  margin-bottom: 20px;
  color: #ffffff;
}

.contact-headline span {
  color: var(--accent-color);
}

.contact-lead {
  color: var(--muted-text);
  font-size: 1.08rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.contact-qualifier {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  line-height: 1.55;
  font-style: italic;
  padding: 14px 20px;
  border-left: 3px solid var(--accent-color);
  background: rgba(255, 122, 0, 0.06);
  border-radius: 0 12px 12px 0;
  text-align: left;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 36px;
  align-items: start;
}

.contact-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

.contact-form {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 36px 34px;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.contact-field:last-of-type {
  margin-bottom: 0;
}

.contact-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.contact-label abbr {
  text-decoration: none;
  color: var(--accent-color);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: rgba(0, 0, 0, 0.35);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: Arial, Helvetica, sans-serif;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.contact-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ff7a00' d='M1 1.5L6 6l5-4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-form select option {
  background: #121212;
  color: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: rgba(255, 122, 0, 0.75);
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.55;
}

.contact-form-note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  margin: 8px 0 22px;
}

.btn-contact-submit {
  width: 100%;
  padding: 16px 28px;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.contact-direct {
  padding: 26px 28px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.contact-direct-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.contact-email-link {
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  transition: color 0.2s ease;
}

.contact-email-link:hover {
  color: var(--accent-hover);
}

.btn-schedule {
  width: 100%;
  max-width: 320px;
}

.contact-trust {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28);
}

.contact-trust-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 122, 0, 0.35);
}

.contact-trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-trust-list li {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-trust-list strong {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-color);
  font-weight: 700;
}

.contact-trust-list span {
  color: var(--muted-text);
  font-size: 0.96rem;
  line-height: 1.5;
}

.contact-inline-link {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: underline;
  text-decoration-color: rgba(255, 122, 0, 0.55);
  text-underline-offset: 4px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.contact-inline-link:hover {
  color: var(--accent-hover);
  text-decoration-color: var(--accent-hover);
}

.contact-trust-foot {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.55;
}

/* =========================
   Footer
========================= */
footer {
  background: #030303;
  border-top: 1px solid var(--border-color);
  padding: 28px 0;
}

footer p {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

/* =========================
   Responsive
========================= */
@media (min-width: 1200px) {
  .nav-links a {
    font-size: 1.18rem;
  }

  .nav-links {
    gap: 36px;
  }
}

@media (max-width: 992px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .brand {
    font-size: 0.95rem;
    max-width: 220px;
    line-height: 1.3;
    white-space: normal;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: min(78vw, 340px);
    height: calc(100vh - var(--header-height));
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(14px);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 22px;
    padding: 32px 26px;
    transition: right 0.35s ease;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    font-size: 1.15rem;
    width: 100%;
  }

  .menu-toggle {
    display: block;
  }
}

@media (max-width: 768px) {
  .top-header-inner {
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 8px;
    padding: 8px 0 10px;
    min-height: 0;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
  }

  .nav-menu {
    justify-content: center;
    gap: 10px 22px;
  }

  .nav-brand img {
    max-width: min(240px, 72vw);
  }

  section {
    scroll-margin-top: 120px;
  }

  .hero {
    min-height: 95vh;
    padding: calc(var(--header-height) + 44px) 0 70px;
  }

  section:not(.hero) {
    padding: 80px 0;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .hero-text {
    font-size: 1rem;
  }

  .contact-form {
    padding: 26px 22px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .faq-accordion {
    border-radius: 16px;
  }

  .faq-trigger {
    padding: 18px 18px;
    gap: 14px;
  }

  .faq-answer {
    padding: 0 18px 20px 18px;
    font-size: 0.98rem;
  }
}

@media (max-width: 480px) {
  .brand {
    font-size: 0.9rem;
    max-width: 180px;
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 1.6px;
  }

  .card,
  .about-text {
    padding: 24px;
  }
}