@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #B8921E;
  --primary-rgb: 184, 146, 30;
  --secondary: #1F728E;
  --secondary-rgb: 31, 114, 142;
  --accent: #6139DB;
  --accent-rgb: 97, 57, 219;
  --bg: #FFFAF5;
  --bg-alt: #FAF5EF;
  --text: #2D2319;
  --text-muted: #6B5D4F;
  --section-dark: #2D2319;
  --section-accent: #FAF0E6;
  --white: #ffffff;
  --border: rgba(45, 35, 25, 0.1);
  --shadow-sm: 0 2px 8px rgba(45, 35, 25, 0.06);
  --shadow-md: 0 4px 20px rgba(45, 35, 25, 0.08);
  --shadow-lg: 0 12px 32px rgba(45, 35, 25, 0.12);
  --shadow-xl: 0 20px 40px rgba(45, 35, 25, 0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;
  --font-primary: 'Work Sans', sans-serif;
  --font-secondary: Georgia, 'Times New Roman', serif;
  --transition: 0.3s ease;
  --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 8px rgba(var(--primary-rgb), 0.4); }
  50% { box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.6); }
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

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

a:hover {
  color: var(--accent);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1rem;
}

.container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.container-narrow {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.col-full { grid-column: 1 / -1; }
.col-half { grid-column: span 6; }
.col-third { grid-column: span 4; }
.col-quarter { grid-column: span 3; }
.col-two-thirds { grid-column: span 8; }
.col-three-quarters { grid-column: span 9; }

.navbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  padding: 12px 36px;
  background: rgba(255, 250, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 24px rgba(45, 35, 25, 0.1);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  max-width: 1100px;
  width: calc(100% - 48px);
  transition: all 0.4s ease;
}

.navbar.scrolled {
  top: 12px;
  padding: 8px 28px;
  background: rgba(255, 250, 245, 0.97);
  box-shadow: 0 8px 32px rgba(45, 35, 25, 0.14);
}

.logo {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

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

.nav-menu {
  display: grid;
  grid-auto-flow: column;
  gap: 8px;
  list-style: none;
  justify-content: center;
}

.nav-item {
  list-style: none;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
  background: rgba(184, 146, 30, 0.1);
}

.nav-cta {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  background: var(--primary);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-cta:hover {
  color: var(--white);
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.3);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text);
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  z-index: 1001;
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(45, 35, 25, 0.97);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.4s ease;
}

body.menu-open .mobile-overlay {
  display: grid;
  place-items: center;
  opacity: 1;
}

body.menu-open .mobile-overlay .mobile-nav-links {
  display: grid;
  gap: 12px;
  list-style: none;
  text-align: center;
}

body.menu-open .mobile-overlay .mobile-nav-links a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  padding: 12px 24px;
  display: block;
  transition: color var(--transition);
}

body.menu-open .mobile-overlay .mobile-nav-links a:hover {
  color: var(--primary);
}

body.menu-open {
  overflow: hidden;
}

main {
  padding-top: 100px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--section-dark) 0%, #3D3020 40%, var(--section-dark) 100%);
  background-size: 200% 200%;
  animation: gradientShift 14s ease infinite;
  color: var(--white);
  overflow: hidden;
  padding: 96px 24px;
}

.hero::before {
  content: '';
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.18) 0%, transparent 70%);
  top: -120px;
  right: -80px;
  z-index: 0;
  animation: float 7s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.1) 0%, transparent 70%);
  bottom: -60px;
  left: -60px;
  z-index: 0;
  animation: float 9s ease-in-out infinite reverse;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.15);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero h1 span {
  color: var(--primary);
}

.hero p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: grid;
  grid-auto-flow: column;
  gap: 16px;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  display: grid;
  justify-content: center;
  padding-top: 8px;
}

.hero-scroll::before {
  content: '';
  width: 4px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  animation: float 1.8s ease-in-out infinite;
}

.btn {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  line-height: 1;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), #D4A824);
  background-size: 150% 150%;
  background-position: 0% 50%;
  box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.3);
}

.btn-primary:hover {
  color: var(--white);
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(var(--primary-rgb), 0.4);
}

.btn-secondary {
  color: var(--white);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.35);
}

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

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

.btn-outline:hover {
  color: var(--white);
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.3);
}

.btn-accent {
  color: var(--white);
  background: var(--accent);
  box-shadow: 0 4px 16px rgba(var(--accent-rgb), 0.3);
}

.btn-accent:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(var(--accent-rgb), 0.45);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.8rem;
}

.content-section {
  padding: 72px 24px;
}

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

.content-section.section-accent {
  background: var(--section-accent);
}

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

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

.content-section.section-dark p {
  color: rgba(255, 255, 255, 0.75);
}

.content-section.section-dark .text-muted {
  color: rgba(255, 255, 255, 0.55);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
  grid-column: 1 / -1;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

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

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover img {
  transform: scale(1.06);
}

.card-body {
  padding: 24px;
}

.card-body h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.card-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.card-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  grid-column: 1 / -1;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  grid-column: 1 / -1;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  grid-column: 1 / -1;
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  grid-column: 1 / -1;
}

.grid-asymmetric {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 36px;
  grid-column: 1 / -1;
}

.grid-asymmetric-reverse {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 36px;
  grid-column: 1 / -1;
}

.feature {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 12px;
  padding: 36px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  border: 1px solid var(--border);
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--primary-rgb), 0.2);
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1), rgba(var(--accent-rgb), 0.06));
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  color: var(--primary);
}

.feature h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.feature p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.section-dark .feature {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.section-dark .feature:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(var(--primary-rgb), 0.3);
}

.section-dark .feature p {
  color: rgba(255, 255, 255, 0.65);
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  grid-column: 1 / -1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.split-section.reverse {
  direction: rtl;
}

.split-section.reverse > * {
  direction: ltr;
}

.split-content h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.split-content p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.split-image {
  position: relative;
}

.split-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.split-image:hover img {
  transform: scale(1.03);
}

.split-image::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 2px solid rgba(var(--primary-rgb), 0.2);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.testimonials-area {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  grid-column: 1 / -1;
}

.testimonial {
  padding: 36px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.35s ease;
  border: 1px solid var(--border);
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  left: 28px;
  font-size: 4rem;
  font-family: var(--font-secondary);
  color: rgba(var(--primary-rgb), 0.15);
  line-height: 1;
}

.testimonial-text {
  font-size: 1rem;
  font-family: var(--font-secondary);
  font-style: italic;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.7;
  position: relative;
}

.testimonial-author {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(var(--primary-rgb), 0.2);
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonial-stars {
  color: var(--primary);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.section-dark .testimonial {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.section-dark .testimonial-text {
  color: rgba(255, 255, 255, 0.85);
}

.section-dark .testimonial-name {
  color: var(--white);
}

.section-dark .testimonial-role {
  color: rgba(255, 255, 255, 0.55);
}

.cta-banner {
  display: grid;
  place-items: center;
  padding: 72px 24px;
  background: linear-gradient(135deg, var(--primary) 0%, #D4A824 50%, var(--accent) 100%);
  background-size: 200% 200%;
  animation: gradientShift 10s ease infinite;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: -100px;
  right: -60px;
  animation: float 8s ease-in-out infinite;
}

.cta-banner h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 800;
}

.cta-banner p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 550px;
}

.cta-banner .btn {
  background: var(--white);
  color: var(--text);
  font-weight: 700;
}

.cta-banner .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  grid-column: 1 / -1;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 35, 25, 0.6) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}

.gallery-masonry .gallery-item:nth-child(4n+1) {
  grid-row: span 2;
}

.gallery-masonry .gallery-item:nth-child(6n+3) {
  grid-column: span 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  grid-column: 1 / -1;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.form-group {
  display: grid;
  gap: 6px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-info-panel {
  display: grid;
  gap: 24px;
  align-content: start;
}

.contact-detail {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(var(--primary-rgb), 0.1);
  border-radius: var(--radius-sm);
  color: var(--primary);
  font-size: 1.1rem;
}

.contact-detail h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.faq-area {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
  grid-column: 1 / -1;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.active {
  border-color: rgba(var(--primary-rgb), 0.3);
}

.faq-question {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--bg-alt);
}

.faq-question i,
.faq-question .faq-icon {
  transition: transform 0.3s ease;
  color: var(--primary);
  font-size: 0.85rem;
}

.faq-item.active .faq-question i,
.faq-item.active .faq-question .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 36px;
  grid-column: 1 / -1;
}

.team-member {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
  border: 1px solid var(--border);
}

.team-member:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid rgba(var(--primary-rgb), 0.15);
  transition: border-color 0.35s ease;
}

.team-member:hover img {
  border-color: var(--primary);
}

.team-member h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.team-member .team-role {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-member p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.page-hero {
  position: relative;
  padding: 96px 24px 72px;
  background: linear-gradient(135deg, var(--section-dark) 0%, #3D3020 100%);
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.12) 0%, transparent 70%);
  top: -80px;
  right: -40px;
  animation: float 8s ease-in-out infinite;
}

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 550px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.breadcrumbs {
  display: grid;
  grid-auto-flow: column;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 0.8rem;
  position: relative;
  z-index: 2;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.5);
}

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

.breadcrumbs span {
  color: rgba(255, 255, 255, 0.3);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 36px;
  grid-column: 1 / -1;
}

.article-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  border: 1px solid var(--border);
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.article-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover img {
  transform: scale(1.05);
}

.article-card .card-body {
  padding: 24px;
}

.article-card .article-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  background: rgba(var(--secondary-rgb), 0.08);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.article-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  line-height: 1.3;
}

.article-card h3 a {
  color: var(--text);
  transition: color var(--transition);
}

.article-card h3 a:hover {
  color: var(--primary);
}

.article-card .article-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.news-list {
  display: grid;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.news-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: all 0.35s ease;
  align-items: start;
}

.news-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(var(--primary-rgb), 0.2);
}

.news-date-badge {
  text-align: center;
  padding: 16px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08), rgba(var(--accent-rgb), 0.04));
  border-radius: var(--radius-sm);
}

.news-date-badge .day {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.news-date-badge .month {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.news-item h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.news-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.reservation-form-area {
  max-width: 700px;
  margin: 0 auto;
  padding: 48px;
  background: var(--white);
  border-radius: var(--radius-lg);
  grid-column: 1 / -1;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.reservation-form-area h2 {
  text-align: center;
  margin-bottom: 32px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 36px;
  grid-column: 1 / -1;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  border: 1px solid var(--border);
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.event-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card:hover img {
  transform: scale(1.05);
}

.event-card .card-body {
  padding: 28px;
}

.event-card .event-type {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.08);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.event-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

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

.journey-timeline {
  display: grid;
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  grid-column: 1 / -1;
}

.journey-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
}

.timeline-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 24px;
  position: relative;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 2px var(--primary);
  margin-top: 4px;
  justify-self: center;
  z-index: 1;
}

.timeline-content {
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.timeline-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.timeline-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  text-align: center;
  grid-column: 1 / -1;
}

.stat-item {
  padding: 24px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.section-dark .stat-number {
  color: var(--primary);
}

.section-dark .stat-label {
  color: rgba(255, 255, 255, 0.6);
}

.menu-section {
  display: grid;
  gap: 24px;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px dashed var(--border);
  align-items: start;
}

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

.menu-item h4 {
  font-size: 1rem;
  font-weight: 600;
}

.menu-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  grid-column: 1;
}

.menu-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.section-divider {
  display: block;
  width: 100%;
  height: auto;
  margin: -1px 0;
  line-height: 0;
}

.section-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

.section-divider.flip {
  transform: scaleY(-1);
}

.social-links {
  display: grid;
  grid-auto-flow: column;
  gap: 12px;
  justify-content: start;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.1);
  color: var(--primary);
  font-size: 1rem;
  transition: all var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.badge-primary {
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.1);
}

.badge-secondary {
  color: var(--secondary);
  background: rgba(var(--secondary-rgb), 0.1);
}

.badge-accent {
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.1);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-muted { color: var(--text-muted); }
.text-primary { color: var(--primary); }
.text-white { color: var(--white); }

.mb-0 { margin-bottom: 0; }
.mb-12 { margin-bottom: 12px; }
.mb-24 { margin-bottom: 24px; }
.mb-36 { margin-bottom: 36px; }
.mb-48 { margin-bottom: 48px; }

.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }

.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }

.hidden { display: none; }

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade-in"] {
  transform: none;
}

[data-animate="fade-in"].visible {
  opacity: 1;
}

[data-animate="slide-left"] {
  transform: translateX(-30px);
}

[data-animate="slide-left"].visible {
  opacity: 1;
  transform: translateX(0);
}

[data-animate="slide-right"] {
  transform: translateX(30px);
}

[data-animate="slide-right"].visible {
  opacity: 1;
  transform: translateX(0);
}

[data-animate="scale-in"] {
  transform: scale(0.9);
}

[data-animate="scale-in"].visible {
  opacity: 1;
  transform: scale(1);
}

[data-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

[data-stagger] > *.visible {
  opacity: 1;
  transform: translateY(0);
}

footer.footer-minimal {
  padding: 36px 24px;
  background: var(--section-dark);
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

footer.footer-minimal .footer-content {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

footer.footer-minimal .footer-brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  justify-self: start;
}

footer.footer-minimal .footer-links {
  display: grid;
  grid-auto-flow: column;
  gap: 24px;
}

footer.footer-minimal .footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  transition: color var(--transition);
}

footer.footer-minimal .footer-links a:hover {
  color: var(--primary);
}

footer.footer-minimal .footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  justify-self: end;
}

footer.footer-minimal .footer-copy p {
  color: rgba(255, 255, 255, 0.35);
  margin: 0;
  font-size: 0.8rem;
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(var(--primary-rgb), 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 900;
  border: none;
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.4);
}

.map-embed {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid var(--border);
}

.hours-table td {
  padding: 12px 0;
  font-size: 0.9rem;
}

.hours-table td:first-child {
  font-weight: 600;
  color: var(--text);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--text-muted);
}

.tag-list {
  display: grid;
  grid-auto-flow: column;
  gap: 8px;
  justify-content: start;
}

.tag {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all var(--transition);
}

.tag:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.05);
}

.pagination {
  display: grid;
  grid-auto-flow: column;
  gap: 8px;
  justify-content: center;
  margin-top: 48px;
}

.pagination a,
.pagination span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all var(--transition);
}

.pagination a:hover,
.pagination span.current {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.alert {
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-bottom: 24px;
  border-left: 4px solid;
}

.alert-success {
  background: rgba(16, 185, 129, 0.08);
  border-color: #10B981;
  color: #065F46;
}

.alert-info {
  background: rgba(var(--secondary-rgb), 0.08);
  border-color: var(--secondary);
  color: var(--secondary);
}

.testimonial-slider {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slider .testimonial {
  display: none;
  animation: fadeInUp 0.5s ease;
}

.testimonial-slider .testimonial.active {
  display: block;
}

.slider-controls {
  display: grid;
  grid-auto-flow: column;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.slider-dot.active {
  background: var(--primary);
  transform: scale(1.3);
}

.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text);
  transition: all var(--transition);
  z-index: 5;
}

.slider-prev:hover,
.slider-next:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.slider-prev { left: -20px; }
.slider-next { right: -20px; }

.accent-bar {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin-bottom: 24px;
}

.accent-bar.center {
  margin-left: auto;
  margin-right: auto;
}

.highlight-box {
  padding: 32px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05), rgba(var(--accent-rgb), 0.03));
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
}

.highlight-box h3 {
  margin-bottom: 8px;
}

.highlight-box p {
  margin: 0;
  color: var(--text-muted);
}

.icon-list {
  display: grid;
  gap: 16px;
  list-style: none;
}

.icon-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 0.95rem;
  color: var(--text);
}

.icon-list li i {
  color: var(--primary);
  margin-top: 3px;
}

.pricing-card {
  padding: 36px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.35s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border-color: var(--primary);
  position: relative;
}

.pricing-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 16px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-full);
}

.pricing-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin: 16px 0;
}

.pricing-amount span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

@media screen and (max-width: 1280px) {
  .navbar {
    max-width: 960px;
  }
}

@media screen and (max-width: 1024px) {
  .container {
    gap: 24px;
  }

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

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

  .split-section {
    gap: 48px;
  }

  .gallery-masonry {
    grid-auto-rows: 180px;
  }
}

@media screen and (max-width: 768px) {
  .navbar {
    grid-template-columns: 1fr auto;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    top: 12px;
    width: calc(100% - 24px);
  }

  .nav-menu {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  main {
    padding-top: 80px;
  }

  .hero {
    min-height: 85vh;
    padding: 72px 20px;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .hero-actions {
    grid-auto-flow: row;
    justify-items: center;
  }

  .container,
  .container-narrow {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }

  .col-half,
  .col-third,
  .col-quarter,
  .col-two-thirds,
  .col-three-quarters {
    grid-column: 1 / -1;
  }

  .content-section {
    padding: 48px 20px;
  }

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

  .grid-asymmetric,
  .grid-asymmetric-reverse {
    grid-template-columns: 1fr;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .split-section.reverse {
    direction: ltr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }

  .gallery-masonry .gallery-item:nth-child(6n+3) {
    grid-column: span 1;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .testimonials-area {
    grid-template-columns: 1fr;
  }

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

  .news-item {
    grid-template-columns: 1fr;
  }

  .news-date-badge {
    display: grid;
    grid-auto-flow: column;
    gap: 8px;
    justify-content: start;
    align-items: baseline;
  }

  footer.footer-minimal .footer-content {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
  }

  footer.footer-minimal .footer-brand {
    justify-self: center;
  }

  footer.footer-minimal .footer-copy {
    justify-self: center;
  }

  footer.footer-minimal .footer-links {
    grid-auto-flow: row;
    justify-items: center;
  }

  .reservation-form-area {
    padding: 28px 20px;
  }

  .journey-timeline::before {
    left: 16px;
  }

  .timeline-item {
    grid-template-columns: 34px 1fr;
    gap: 16px;
  }

  .slider-prev { left: 0; }
  .slider-next { right: 0; }

  .page-hero {
    padding: 80px 20px 48px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.35rem; }
}

@media screen and (max-width: 480px) {
  .hero {
    min-height: 80vh;
    padding: 60px 16px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

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

  .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .content-section {
    padding: 36px 16px;
  }

  .feature {
    padding: 24px;
  }

  .testimonial {
    padding: 24px;
  }

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

  .gallery-masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-masonry .gallery-item:nth-child(4n+1) {
    grid-row: span 1;
  }

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

  .stat-number {
    font-size: 1.75rem;
  }

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

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

  .cta-banner {
    padding: 48px 16px;
  }

  .navbar {
    padding: 10px 16px;
    top: 8px;
  }

  .logo {
    font-size: 1.1rem;
  }

  footer.footer-minimal {
    padding: 24px 16px;
  }

  .page-hero {
    padding: 72px 16px 36px;
  }
}

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

  [data-animate] {
    opacity: 1;
    transform: none;
  }

  [data-stagger] > * {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .navbar,
  .mobile-menu-toggle,
  .mobile-overlay,
  .back-to-top,
  .hero-scroll {
    display: none !important;
  }

  main {
    padding-top: 0;
  }

  .content-section {
    padding: 24px 0;
  }

  body {
    color: #000;
    background: #fff;
  }
}
