/* ============================================
   Crown Tax Services Inc - Main Stylesheet
   ============================================ */

/* --- 0. Custom Properties --- */
:root {
  /* Colors */
  --color-primary: #1B3A6B;
  --color-primary-light: #2A5298;
  --color-primary-dark: #0F2347;
  --color-secondary: #B8943E;
  --color-secondary-light: #D4AD50;
  --color-secondary-dark: #96782F;
  --color-accent: #C0C0C0;
  --color-bg: #FFFFFF;
  --color-bg-alt: #F8F9FA;
  --color-bg-dark: #EEF0F2;
  --color-text: #2D3436;
  --color-text-light: #636E72;
  --color-text-muted: #95A5A6;
  --color-white: #FFFFFF;
  --color-black: #1A1A2E;
  --color-success: #27AE60;
  --color-error: #E74C3C;
  --color-warning: #F39C12;
  --color-border: #DEE2E6;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --fs-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  --fs-sm: clamp(0.8rem, 0.75rem + 0.25vw, 0.9rem);
  --fs-base: clamp(0.9rem, 0.85rem + 0.25vw, 1rem);
  --fs-md: clamp(1rem, 0.9rem + 0.5vw, 1.15rem);
  --fs-lg: clamp(1.15rem, 1rem + 0.75vw, 1.35rem);
  --fs-xl: clamp(1.35rem, 1.1rem + 1.25vw, 1.75rem);
  --fs-2xl: clamp(1.6rem, 1.2rem + 2vw, 2.25rem);
  --fs-3xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);
  --lh-tight: 1.2;
  --lh-base: 1.6;
  --lh-loose: 1.8;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Layout */
  --container-max: 1200px;
  --container-narrow: 800px;
  --nav-height: 72px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-nav: 0 2px 10px rgba(0,0,0,0.08);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
}

/* --- 1. Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-light);
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* --- 2. Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--lh-tight);
  color: var(--color-primary-dark);
}

h1 { font-size: var(--fs-3xl); margin-bottom: var(--space-lg); }
h2 { font-size: var(--fs-2xl); margin-bottom: var(--space-lg); }
h3 { font-size: var(--fs-xl); margin-bottom: var(--space-md); }
h4 { font-size: var(--fs-lg); margin-bottom: var(--space-md); }
h5 { font-size: var(--fs-md); margin-bottom: var(--space-sm); }
h6 { font-size: var(--fs-base); margin-bottom: var(--space-sm); }

p {
  margin-bottom: var(--space-md);
  line-height: var(--lh-loose);
}

.text-center { text-align: center; }
.text-muted { color: var(--color-text-light); }
.text-gold { color: var(--color-secondary); }
.text-white { color: var(--color-white); }

.section-subtitle {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

/* --- 3. Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: var(--space-3xl) 0;
}

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

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

.section--dark h2,
.section--dark h3 {
  color: var(--color-white);
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

.flex {
  display: flex;
  gap: var(--space-md);
}

.flex--center {
  align-items: center;
  justify-content: center;
}

.flex--between {
  align-items: center;
  justify-content: space-between;
}

/* --- 4. Header & Navigation --- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-white);
  transition: box-shadow var(--transition-base);
  height: var(--nav-height);
}

.header.scrolled {
  box-shadow: var(--shadow-nav);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.header__logo img {
  height: 48px;
  width: auto;
}

.nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  padding: var(--space-lg);
  overflow-y: auto;
  z-index: 10000;
  box-shadow: var(--shadow-lg);
}

.nav.active {
  display: flex;
}

.nav__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.nav__link {
  display: block;
  padding: var(--space-md) var(--space-lg);
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  font-size: var(--fs-md);
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-primary);
  background: var(--color-bg-alt);
}

.nav__link--cta {
  background: var(--color-primary);
  color: var(--color-white) !important;
  text-align: center;
  margin-top: var(--space-md);
  border-radius: var(--radius-md);
}

.nav__link--cta:hover {
  background: var(--color-primary-light);
  color: var(--color-white) !important;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary-dark);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* --- 5. Hero Sections --- */
.hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 60%, var(--color-primary-light) 100%);
  color: var(--color-white);
  overflow: hidden;
  padding: var(--space-3xl) 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(circle, rgba(184,148,62,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-secondary-light), var(--color-secondary));
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero__subtitle {
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.hero__text {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--space-xl);
  line-height: var(--lh-loose);
}

.hero--page {
  min-height: 35vh;
  padding: var(--space-2xl) 0;
  text-align: center;
}

.hero--page .hero__content {
  max-width: 600px;
  margin: 0 auto;
}

/* --- 6. Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  min-height: 44px;
  min-width: 44px;
}

.btn--primary {
  background: var(--color-secondary);
  color: var(--color-white);
  border-color: var(--color-secondary);
}

.btn--primary:hover {
  background: var(--color-secondary-light);
  border-color: var(--color-secondary-light);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

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

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

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

.btn--dark {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.btn--dark:hover {
  background: var(--color-primary-light);
  border-color: var(--color-primary-light);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--sm {
  padding: 8px 18px;
  font-size: var(--fs-xs);
}

.btn--lg {
  padding: 18px 36px;
  font-size: var(--fs-base);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* --- 7. Cards --- */
.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--color-border);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--color-white);
  font-size: 24px;
}

.card__icon--gold {
  background: linear-gradient(135deg, var(--color-secondary-dark), var(--color-secondary));
}

.card h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--space-sm);
}

.card p {
  color: var(--color-text-light);
  font-size: var(--fs-sm);
}

/* --- 8. Forms --- */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
  font-size: var(--fs-sm);
}

.form-group label .required {
  color: var(--color-error);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  color: var(--color-text);
  font-size: var(--fs-base);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(27, 58, 107, 0.1);
}

.form-control.error {
  border-color: var(--color-error);
}

.form-control.success {
  border-color: var(--color-success);
}

.form-error {
  color: var(--color-error);
  font-size: var(--fs-xs);
  margin-top: var(--space-xs);
  display: none;
}

.form-error.show {
  display: block;
}

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

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23636E72' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-primary);
}

/* --- 9. Tabs --- */
.tabs {
  border-bottom: 2px solid var(--color-border);
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tab-btn {
  padding: var(--space-md) var(--space-lg);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--color-text-light);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  min-height: 44px;
}

.tab-btn:hover {
  color: var(--color-primary);
}

.tab-btn.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.tab-content {
  display: none;
  padding: var(--space-xl) 0;
}

.tab-content.active {
  display: block;
}

/* --- 10. Credibility / Stats --- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.stat__number {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat__label {
  font-size: var(--fs-sm);
  color: var(--color-text-light);
}

/* --- 11. Contact / Map --- */
.map-container {
  width: 100%;
  height: 350px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact-info-item__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-primary);
  font-size: 18px;
}

.contact-info-item__text h4 {
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-info-item__text p {
  color: var(--color-text-light);
  font-size: var(--fs-sm);
  margin: 0;
}

/* --- 12. Footer --- */
.footer {
  background: var(--color-primary-dark);
  color: rgba(255,255,255,0.8);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer__logo img {
  height: 50px;
  width: auto;
  margin-bottom: var(--space-md);
}

.footer__desc {
  font-size: var(--fs-sm);
  line-height: var(--lh-loose);
  margin-bottom: var(--space-lg);
  max-width: 320px;
}

.footer h4 {
  color: var(--color-white);
  font-size: var(--fs-base);
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--color-secondary);
}

.footer__links li {
  margin-bottom: var(--space-sm);
}

.footer__links a {
  color: rgba(255,255,255,0.7);
  font-size: var(--fs-sm);
  transition: color var(--transition-fast);
}

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

.footer__contact p {
  font-size: var(--fs-sm);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.footer__contact span {
  color: var(--color-secondary);
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-lg);
  text-align: center;
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.5);
}

/* --- 13. Alerts --- */
.alert {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  font-size: var(--fs-sm);
  border-left: 4px solid;
}

.alert--success {
  background: #d4edda;
  border-color: var(--color-success);
  color: #155724;
}

.alert--error {
  background: #f8d7da;
  border-color: var(--color-error);
  color: #721c24;
}

.alert--info {
  background: #d1ecf1;
  border-color: #17a2b8;
  color: #0c5460;
}

/* --- 14. CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  color: var(--color-white);
  padding: var(--space-3xl) 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  font-size: var(--fs-md);
}

/* --- 15. Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-full);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
  z-index: 100;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
}

/* --- 16. Fade-in Animation --- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 100ms; }
.stagger > *:nth-child(3) { transition-delay: 200ms; }
.stagger > *:nth-child(4) { transition-delay: 300ms; }
.stagger > *:nth-child(5) { transition-delay: 400ms; }
.stagger > *:nth-child(6) { transition-delay: 500ms; }

/* --- 17. Misc --- */
.divider {
  width: 60px;
  height: 3px;
  background: var(--color-secondary);
  margin: var(--space-md) auto var(--space-lg);
  border-radius: 2px;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: var(--fs-xs);
  font-weight: 600;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge--new { background: #d1ecf1; color: #0c5460; }
.badge--read { background: #d4edda; color: #155724; }
.badge--replied { background: #e2e3e5; color: #383d41; }
.badge--pending { background: #fff3cd; color: #856404; }
.badge--completed { background: #d4edda; color: #155724; }
.badge--paid { background: #d4edda; color: #155724; }
.badge--cancelled { background: #f8d7da; color: #721c24; }

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  z-index: 9999;
  font-weight: 600;
}

.skip-link:focus {
  top: var(--space-md);
}

/* File drop zone */
.drop-zone {
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  color: var(--color-text-light);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.drop-zone:hover,
.drop-zone.dragover {
  border-color: var(--color-primary);
  background: rgba(27, 58, 107, 0.03);
  color: var(--color-primary);
}

/* --- 18. Media Queries --- */

/* sm: 480px+ */
@media (min-width: 480px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* md: 768px+ */
@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-xl);
  }

  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }

  .hero {
    min-height: 60vh;
    padding: var(--space-4xl) 0;
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .map-container {
    height: 400px;
  }
}

/* lg: 1024px+ */
@media (min-width: 1024px) {
  /* Desktop nav */
  .hamburger {
    display: none;
  }

  .nav {
    display: flex;
    position: fixed;
    top: 0;
    right: var(--space-xl);
    left: auto;
    bottom: auto;
    flex-direction: row;
    background: none;
    padding: 0;
    overflow: visible;
    height: var(--nav-height);
    align-items: center;
    box-shadow: none;
  }

  .nav__list {
    flex-direction: row;
    align-items: center;
    gap: var(--space-xs);
  }

  .nav__link {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--fs-sm);
  }

  .nav__link--cta {
    margin-top: 0;
    padding: 10px 20px;
  }

  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }

  .footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }

  .hero {
    min-height: 65vh;
  }
}

/* xl: 1200px+ */
@media (min-width: 1200px) {
  .container {
    padding: 0 var(--space-2xl);
  }

  .hero {
    min-height: 70vh;
  }
}

/* 2xl: 1440px+ */
@media (min-width: 1440px) {
  .container {
    padding: 0 var(--space-xl);
  }
}

/* Prevent body scroll when mobile nav is open */
body.nav-open {
  overflow: hidden;
}

/* Print styles */
@media print {
  .header, .footer, .back-to-top, .hamburger, .btn {
    display: none !important;
  }

  .hero {
    min-height: auto;
    background: none;
    color: var(--color-text);
    padding: var(--space-lg) 0;
  }

  .hero h1, .hero__content {
    color: var(--color-text);
  }
}
