/* ==========================================================================
   THE WOODEN LADDER LLC - Geometric Balance Theme
   High-contrast architectural layout, crisp borders, espresso & cream palette
   ========================================================================== */

:root {
  /* Color Palette - Geometric Balance Theme */
  --clr-bg-primary: #F9F7F2;
  --clr-bg-surface: #FFFFFF;
  --clr-bg-alt: #F2EDE4;
  --clr-bg-dark: #2D241E;
  --clr-bg-dark-card: #1E1713;

  --clr-brand-dark: #2D241E;
  --clr-brand-walnut: #4A3A2F;
  --clr-brand-warm: #A67C52;
  
  --clr-gold-primary: #A67C52;
  --clr-gold-light: #CBB092;
  --clr-gold-dark: #7A5734;
  --clr-gold-glow: rgba(166, 124, 82, 0.15);

  --clr-text-main: #2D241E;
  --clr-text-muted: #5E5045;
  --clr-text-light: #F9F7F2;
  --clr-text-light-muted: #D1C5B8;

  --clr-border: #2D241E;
  --clr-border-light: #E2DAD0;
  --clr-border-gold: #A67C52;

  /* Typography Scale */
  --font-serif: "Playfair Display", "Cinzel", "Georgia", serif;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;   /* 8px */
  --space-sm: 1rem;     /* 16px */
  --space-md: 1.5rem;   /* 24px */
  --space-lg: 2.5rem;   /* 40px */
  --space-xl: 4rem;     /* 64px */
  --space-2xl: 6rem;    /* 96px */

  /* Architectural Sharp Corners & Shadows */
  --shadow-sm: 0 2px 0 #2D241E;
  --shadow-md: 4px 4px 0 #2D241E;
  --shadow-lg: 8px 8px 0 #2D241E;
  --shadow-gold: 4px 4px 0 #A67C52;

  /* Radius - Geometric Theme Uses Minimal/Zero Radius */
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */

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

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

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--clr-text-main);
  background-color: var(--clr-bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

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

/* Accessibility Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--clr-brand-dark);
  color: var(--clr-text-light);
  padding: 0.75rem 1.5rem;
  z-index: 10000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 2px solid var(--clr-brand-dark);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

/* Focus Visible Styles */
:focus-visible {
  outline: 3px solid var(--clr-brand-warm);
  outline-offset: 3px;
}

/* ==========================================================================
   Safe Loader Animation
   ========================================================================== */

#page-loader {
  position: fixed;
  inset: 0;
  background: var(--clr-bg-primary);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  animation: fadeOutLoader 0.4s ease 1.5s forwards;
  pointer-events: none;
  border: 8px solid var(--clr-brand-dark);
}

.loader-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
  animation: pulseLogo 1.2s ease-in-out infinite alternate;
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--clr-border-light);
  border-top-color: var(--clr-brand-dark);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulseLogo {
  from { transform: scale(0.96); opacity: 0.85; }
  to { transform: scale(1.04); opacity: 1; }
}

@keyframes fadeOutLoader {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* Fallback for noscript */
noscript #page-loader {
  display: none !important;
}

/* ==========================================================================
   Header & Navigation (Geometric Balance Grid Header)
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--clr-bg-surface);
  border-bottom: 2px solid var(--clr-brand-dark);
  transition: all var(--transition-fast);
}

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

.header-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border: 1px solid var(--clr-brand-dark);
  padding: 2px;
  background: var(--clr-bg-primary);
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--clr-brand-dark);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--clr-text-muted);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--clr-brand-dark);
  transition: width var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--clr-brand-dark);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  padding: 0.5rem;
  border: 2px solid var(--clr-brand-dark);
  color: var(--clr-brand-dark);
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

/* ==========================================================================
   Buttons & Badges (Geometric Sharp Edges & Bold Borders)
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.8rem;
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background: var(--clr-brand-dark);
  color: var(--clr-text-light);
  border: 2px solid var(--clr-brand-dark);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--clr-brand-warm);
  border-color: var(--clr-brand-dark);
  color: #FFFFFF;
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: var(--clr-brand-warm);
  color: #FFFFFF;
  border: 2px solid var(--clr-brand-dark);
  box-shadow: var(--shadow-sm);
}

.btn-gold:hover {
  background: var(--clr-brand-dark);
  color: var(--clr-text-light);
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: var(--clr-bg-surface);
  color: var(--clr-brand-dark);
  border: 2px solid var(--clr-brand-dark);
}

.btn-outline:hover {
  background: var(--clr-brand-dark);
  color: var(--clr-text-light);
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  background: var(--clr-bg-surface);
  border: 2px solid var(--clr-brand-dark);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--clr-brand-warm);
}

/* ==========================================================================
   Hero Section (Geometric Balance Split View)
   ========================================================================== */

.hero-section {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  border-bottom: 2px solid var(--clr-brand-dark);
}

.hero-content {
  padding: var(--space-2xl) 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
  border-right: 2px solid var(--clr-brand-dark);
  background: var(--clr-bg-primary);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.05;
  font-weight: 800;
  color: var(--clr-brand-dark);
  letter-spacing: -0.03em;
}

.hero-headline span {
  color: var(--clr-brand-warm);
  font-style: italic;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  max-width: 580px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.hero-image-wrapper {
  position: relative;
  overflow: hidden;
  background: var(--clr-brand-dark);
  display: flex;
  min-height: 480px;
  width: 100%;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.hero-image-wrapper:hover .hero-img {
  transform: scale(1.05);
}

.hero-emblem {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--clr-brand-dark);
  border-top: 2px solid var(--clr-brand-dark);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--clr-text-light);
}

.hero-emblem-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  background: #FFFFFF;
  border: 1px solid var(--clr-brand-warm);
}

.hero-emblem-text h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--clr-gold-light);
  letter-spacing: 0.05em;
}

.hero-emblem-text p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-text-light-muted);
}

/* ==========================================================================
   Section Common Layouts
   ========================================================================== */

.section-padding {
  padding: var(--space-2xl) 2rem;
}

.section-container {
  max-width: 1320px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--clr-brand-dark);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
}

/* ==========================================================================
   About Section
   ========================================================================== */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image-card {
  position: relative;
  border: 2px solid var(--clr-brand-dark);
  box-shadow: var(--shadow-lg);
  background: var(--clr-bg-surface);
}

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

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-paragraph {
  font-size: 1.05rem;
  color: var(--clr-text-muted);
  line-height: 1.75;
}

.about-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
  list-style: none;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--clr-brand-dark);
  padding: 0.5rem;
  border-left: 3px solid var(--clr-brand-warm);
  background: var(--clr-bg-surface);
}

.about-feature-item svg {
  color: var(--clr-brand-warm);
  flex-shrink: 0;
}

/* ==========================================================================
   Gallery Showcase (Services) - Geometric Grid
   ========================================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

.gallery-card {
  background: var(--clr-bg-surface);
  border: 2px solid var(--clr-brand-dark);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.gallery-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-lg);
}

.gallery-card-img-wrapper {
  position: relative;
  height: 260px;
  overflow: hidden;
  border-bottom: 2px solid var(--clr-brand-dark);
}

.gallery-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-card:hover .gallery-card-img {
  transform: scale(1.08);
}

.gallery-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex-grow: 1;
}

.gallery-card-category {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--clr-brand-warm);
}

.gallery-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--clr-brand-dark);
}

.gallery-card-desc {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
}

.gallery-card-footer {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--clr-border-light);
}

/* ==========================================================================
   Features Section (App Capabilities)
   ========================================================================== */

.features-bg {
  background-color: var(--clr-bg-surface);
  border-top: 2px solid var(--clr-brand-dark);
  border-bottom: 2px solid var(--clr-brand-dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-box {
  background: var(--clr-bg-primary);
  padding: 2rem;
  border: 2px solid var(--clr-brand-dark);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-box:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-md);
  background: var(--clr-bg-surface);
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  background: var(--clr-brand-dark);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--clr-brand-dark);
}

.feature-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--clr-brand-dark);
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--space-xl);
  align-items: center;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
}

.why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--clr-bg-surface);
  border: 2px solid var(--clr-brand-dark);
}

.why-item-num {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  background: var(--clr-brand-dark);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-item-content h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--clr-brand-dark);
  margin-bottom: 0.35rem;
}

.why-item-content p {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact-card {
  background: var(--clr-brand-dark);
  color: var(--clr-text-light);
  padding: var(--space-xl) 3rem;
  border: 4px solid var(--clr-brand-warm);
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.contact-card .badge-tag {
  background: var(--clr-brand-warm);
  color: #FFFFFF;
  border-color: var(--clr-brand-dark);
}

.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #FFFFFF;
}

.contact-email-box {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid var(--clr-brand-warm);
  padding: 1rem 2rem;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--clr-gold-light);
  word-break: break-all;
}

/* ==========================================================================
   Privacy Policy Page Layout
   ========================================================================== */

.policy-header-bg {
  background: var(--clr-bg-surface);
  border-bottom: 2px solid var(--clr-brand-dark);
  padding: var(--space-xl) 2rem var(--space-lg);
  text-align: center;
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xl) 2rem;
  display: block;
}

/* Table of Contents Sidebar (Disabled/Hidden per user request) */
.policy-sidebar {
  display: none !important;
}

.toc-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--clr-brand-dark);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--clr-brand-dark);
}

.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.toc-link {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--clr-text-muted);
  display: block;
  padding: 0.4rem 0.6rem;
  transition: all var(--transition-fast);
  line-height: 1.4;
}

.toc-link:hover, .toc-link.active {
  background: var(--clr-brand-dark);
  color: var(--clr-text-light);
}

.policy-article {
  background: var(--clr-bg-surface);
  border: 2px solid var(--clr-brand-dark);
  padding: 3rem;
  box-shadow: var(--shadow-md);
  /* CRITICAL: Must be visible immediately */
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.policy-section {
  scroll-margin-top: 110px;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--clr-border-light);
}

.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.policy-section h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--clr-brand-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.policy-section p {
  font-size: 0.98rem;
  color: var(--clr-text-main);
  line-height: 1.7;
  margin-bottom: 0.85rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.policy-section ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-section li {
  font-size: 0.95rem;
  color: var(--clr-text-main);
  line-height: 1.6;
  margin-bottom: 0.4rem;
  word-wrap: break-word;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--clr-brand-dark);
  color: var(--clr-text-light);
  border-top: 4px solid var(--clr-brand-warm);
  padding: var(--space-xl) 2rem var(--space-lg);
}

.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: #FFFFFF;
  border: 1px solid var(--clr-brand-warm);
  padding: 2px;
}

.footer-logo-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: 0.05em;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--clr-text-light-muted);
  max-width: 380px;
  line-height: 1.6;
}

.footer-nav-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--clr-brand-warm);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--clr-text-light-muted);
}

.footer-link:hover {
  color: var(--clr-gold-light);
}

.footer-bottom {
  max-width: 1320px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--clr-text-light-muted);
}

/* ==========================================================================
   Scroll To Top Button
   ========================================================================== */

.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--clr-brand-dark);
  color: var(--clr-gold-light);
  border: 2px solid var(--clr-brand-warm);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  z-index: 900;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  background: var(--clr-brand-warm);
  color: #FFFFFF;
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

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

  .hero-content {
    border-right: none;
    border-bottom: 2px solid var(--clr-brand-dark);
    padding: var(--space-xl) 2rem;
  }

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

  .policy-container {
    grid-template-columns: 1fr;
  }

  .policy-sidebar {
    position: relative;
    top: 0;
    max-height: none;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: var(--clr-bg-surface);
    border-bottom: 2px solid var(--clr-brand-dark);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    transition: transform var(--transition-normal);
  }

  .nav-menu.open {
    transform: translateY(0);
  }

  .mobile-toggle {
    display: block;
  }

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

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

  .policy-article {
    padding: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
