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

:root {
  --color-primary: #E62727;
  --color-secondary: #1E93AB;
  --color-light: #F3F2EC;
  --color-neutral: #DCDCDC;
  --color-dark: #1a1a1a;
  --color-white: #ffffff;
  
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 2rem;
  
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
  
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.6s ease;
}

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-dark);
  background: var(--color-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 900;
}

h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: var(--space-md);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: var(--space-sm);
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-sm);
  font-weight: 300;
}

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

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-sm) 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 100%);
  transition: var(--transition-base);
}

.header.scrolled {
  position: fixed;
  background: rgba(243, 242, 236, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transform: translateY(-100%);
  animation: slideDown 0.4s ease forwards;
}

@keyframes slideDown {
  to {
    transform: translateY(0);
  }
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-white);
  transition: var(--transition-base);
}

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

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  gap: var(--space-md);
  list-style: none;
}

.nav-desktop a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  padding: var(--space-xs) 0;
}

.header.scrolled .nav-desktop a {
  color: var(--color-dark);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition-base);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.burger {
  width: 30px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
}

.burger span {
  width: 100%;
  height: 3px;
  background: var(--color-white);
  transition: var(--transition-base);
  border-radius: 2px;
}

.header.scrolled .burger span {
  background: var(--color-dark);
}

.burger.active span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

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

.burger.active span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

.nav-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: var(--color-light);
  transition: var(--transition-slow);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-mobile.active {
  right: 0;
}

.nav-mobile ul {
  list-style: none;
  text-align: center;
}

.nav-mobile li {
  margin: var(--space-md) 0;
  opacity: 0;
  transform: translateX(50px);
  transition: var(--transition-base);
}

.nav-mobile.active li {
  opacity: 1;
  transform: translateX(0);
}

.nav-mobile.active li:nth-child(1) { transition-delay: 0.1s; }
.nav-mobile.active li:nth-child(2) { transition-delay: 0.2s; }
.nav-mobile.active li:nth-child(3) { transition-delay: 0.3s; }
.nav-mobile.active li:nth-child(4) { transition-delay: 0.4s; }
.nav-mobile.active li:nth-child(5) { transition-delay: 0.5s; }

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-dark);
  display: inline-block;
  position: relative;
}

.nav-mobile a::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 3px;
  background: var(--color-primary);
  transition: var(--transition-base);
}

.nav-mobile a:hover::before {
  width: 20px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  background-image: url('../pictures/BG.jpg');
  background-position: center;
  background-size: cover;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  animation: fadeInUp 1s ease;
}

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

.hero h1 {
  color: var(--color-white);
  text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero p {
  font-size: 1rem;
  max-width: 600px;
  margin-bottom: var(--space-md);
  opacity: 0.95;
}

.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  transition: var(--transition-base);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  margin: 15px 0;
}

.btn-primary {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
  margin-left: var(--space-sm);
}

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

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

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  color: var(--color-dark);
}

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

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

.card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

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

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

.card-content {
  padding: var(--space-md);
}

.card-title {
  font-size: 1.3rem;
  margin-bottom: var(--space-xs);
  color: var(--color-dark);
}

.card-text {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: var(--space-sm);
}

.card-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 700;
}

.asymmetric-section {
  display: grid;
  gap: var(--space-md);
  align-items: center;
}

.asymmetric-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transform: rotate(-2deg);
  transition: var(--transition-base);
}

.asymmetric-img:hover {
  transform: rotate(0deg) scale(1.02);
}

.asymmetric-content {
  padding: var(--space-md);
}

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

.feature-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.feature-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.feature-icon {
  font-size: 2rem;
  color: var(--color-primary);
  min-width: 50px;
}

.feature-text h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

.feature-text p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

.contact-section {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--color-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid var(--color-neutral);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

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

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0.3rem;
  width: auto;
}

.checkbox-group label {
  font-size: 0.8rem;
  color: #666;
}

.checkbox-group a {
  color: var(--color-primary);
  text-decoration: underline;
}

.map-container {
  width: 100%;
  height: 350px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: var(--space-md);
}

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

.footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: var(--space-md) 0;
  text-align: center;
  font-size: 0.8rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
}

.footer-links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--color-neutral);
  font-size: 0.75rem;
  transition: var(--transition-fast);
}

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

.footer p {
  margin: 0;
  opacity: 0.7;
  font-size: 0.75rem;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.4s ease;
}

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

.modal-close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-dark);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: var(--color-neutral);
}

.modal h2 {
  margin-bottom: var(--space-md);
  color: var(--color-primary);
}

.modal p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #666;
}

.thank-you-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--color-light) 0%, var(--color-neutral) 100%);
}

.thank-you-content {
  animation: fadeInUp 0.8s ease;
}

.thank-you-icon {
  font-size: 5rem;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--color-light);
}

.error-content h1 {
  font-size: 8rem;
  color: var(--color-primary);
  margin-bottom: 0;
}

.error-content h2 {
  margin-bottom: var(--space-md);
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-slow);
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 320px) {
  html { font-size: 85%; }
  .container { width: 95%; padding: 0 0.5rem; }
  .header-content { padding: 0 0.5rem; }
  .logo { font-size: 1.2rem; }
  .burger { width: 26px; height: 20px; }
  .hero { min-height: 70vh; padding: 1rem 0; }
  .hero h1 { font-size: 1.8rem; line-height: 1.1; }
  .hero p { font-size: 0.8rem; margin-bottom: 1.5rem; }
  .btn { padding: 0.6rem 1.2rem; font-size: 0.7rem; margin: 8px 0; }
  .section { padding: 1.5rem 0; }
  .section-title { margin-bottom: 1.5rem; font-size: 1.5rem; }
  .grid { gap: 1rem; }
  .card-img { height: 180px; }
  .card-content { padding: 1rem; }
  .card-title { font-size: 1.1rem; }
  .card-text { font-size: 0.8rem; }
  .card-price { font-size: 1.2rem; }
  .nav-mobile a { font-size: 1.3rem; }
  .nav-mobile li { margin: 1.5rem 0; }
  .contact-section { padding: 1.2rem; border-radius: 0.8rem; }
  .form-group { margin-bottom: 1rem; }
  .form-group label { font-size: 0.8rem; }
  .form-group input, .form-group textarea { padding: 0.6rem; font-size: 0.8rem; }
  .form-group textarea { min-height: 100px; }
  .map-container { height: 220px; border-radius: 0.8rem; }
  .feature-item { padding: 1rem; flex-direction: column; text-align: center; }
  .feature-icon { font-size: 1.5rem; min-width: auto; }
  .feature-text h3 { font-size: 1rem; }
  .feature-text p { font-size: 0.8rem; }
  .asymmetric-content { padding: 1rem; }
  .asymmetric-img { border-radius: 1rem; }
  .thank-you-icon { font-size: 3rem; margin-bottom: 1rem; }
  .thank-you-content h1 { font-size: 1.6rem; }
  .thank-you-content p { font-size: 0.85rem !important; padding: 0 0.5rem; }
  .error-content h1 { font-size: 4rem; }
  .error-content h2 { font-size: 1.3rem; }
  .footer { padding: 1.5rem 0; }
  .footer-links { gap: 1rem; font-size: 0.7rem; }
  .modal-content { padding: 1.5rem; width: 95%; }
}

@media (min-width: 321px) and (max-width: 375px) {
  html { font-size: 90%; }
  .container { width: 92%; }
  .logo { font-size: 1.3rem; }
  .hero { min-height: 72vh; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 0.85rem; }
  .btn { padding: 0.65rem 1.3rem; font-size: 0.75rem; }
  .section { padding: 1.8rem 0; }
  .grid { gap: 1.2rem; }
  .card-img { height: 190px; }
  .card-content { padding: 1.2rem; }
  .nav-mobile a { font-size: 1.5rem; }
  .contact-section { padding: 1.5rem; }
  .map-container { height: 250px; }
  .feature-item { padding: 1.2rem; }
  .thank-you-icon { font-size: 3.5rem; }
  .thank-you-content p { font-size: 0.9rem !important; }
  .error-content h1 { font-size: 5rem; }
}

@media (min-width: 376px) and (max-width: 480px) {
  html { font-size: 93.75%; }
  .container { width: 90%; }
  .logo { font-size: 1.4rem; }
  .hero { min-height: 75vh; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 0.9rem; }
  .btn { padding: 0.7rem 1.5rem; font-size: 0.8rem; }
  .section { padding: 2rem 0; }
  .grid { gap: 1.5rem; }
  .card-img { height: 210px; }
  .card-content { padding: 1.3rem; }
  .nav-mobile a { font-size: 1.6rem; }
  .contact-section { padding: 1.8rem; }
  .map-container { height: 280px; }
  .feature-item { padding: 1.3rem; }
  .thank-you-icon { font-size: 4rem; }
  .thank-you-content p { font-size: 0.95rem !important; }
  .error-content h1 { font-size: 5.5rem; }
}

@media (min-width: 481px) and (max-width: 600px) {
  html { font-size: 96%; }
  .container { width: 88%; }
  .logo { font-size: 1.45rem; }
  .hero { min-height: 78vh; }
  .hero h1 { font-size: 2.5rem; }
  .btn-secondary { margin-left: 0; margin-top: 0.8rem; }
  .section { padding: 2.2rem 0; }
  .grid { gap: 1.6rem; }
  .card-img { height: 220px; }
  .nav-mobile a { font-size: 1.7rem; }
  .contact-section { padding: 2rem; }
  .map-container { height: 300px; }
  .feature-item { padding: 1.4rem; }
  .thank-you-icon { font-size: 4.2rem; }
  .error-content h1 { font-size: 6rem; }
}

@media (min-width: 601px) and (max-width: 767px) {
  html { font-size: 98%; }
  .container { width: 86%; }
  .logo { font-size: 1.5rem; }
  .hero { min-height: 80vh; }
  .hero h1 { font-size: 2.8rem; }
  .btn-secondary { margin-left: 0; margin-top: 1rem; }
  .section { padding: 2.5rem 0; }
  .grid { gap: 1.8rem; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
  .card-img { height: 240px; }
  .nav-mobile a { font-size: 1.8rem; }
  .contact-section { padding: 2.2rem; }
  .map-container { height: 320px; }
  .feature-item { padding: 1.5rem; }
  .thank-you-icon { font-size: 4.5rem; }
  .error-content h1 { font-size: 6.5rem; }
}

@media (min-width: 768px) {
  body { font-size: 1rem; }
  .nav-desktop { display: block; }
  .burger { display: none; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .asymmetric-section { grid-template-columns: 1fr 1fr; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .footer-content { flex-direction: row; justify-content: space-between; }
  .card-img { height: 250px; }
}

@media (min-width: 768px) and (max-width: 900px) {
  html { font-size: 100%; }
  .container { width: 88%; }
  .logo { font-size: 1.5rem; }
  .nav-desktop a { font-size: 0.8rem; gap: 1.5rem; }
  .hero { min-height: 85vh; }
  .hero h1 { font-size: 3rem; }
  .hero p { max-width: 480px; font-size: 0.95rem; }
  .section { padding: 2.8rem 0; }
  .grid { gap: 1.8rem; }
  .card-img { height: 240px; }
  .contact-section { padding: 2.3rem; }
  .map-container { height: 340px; }
  .feature-item { padding: 1.5rem; }
  .asymmetric-section { gap: 2rem; }
}

@media (min-width: 901px) and (max-width: 1023px) {
  html { font-size: 102%; }
  .container { width: 86%; }
  .logo { font-size: 1.5rem; }
  .nav-desktop ul { gap: 2rem; }
  .nav-desktop a { font-size: 0.85rem; }
  .hero { min-height: 88vh; }
  .hero h1 { font-size: 3.2rem; }
  .hero p { max-width: 520px; }
  .section { padding: 3.2rem 0; }
  .grid { gap: 2rem; }
  .card-img { height: 260px; }
  .contact-section { padding: 2.5rem; }
  .map-container { height: 360px; }
  .asymmetric-section { gap: 2.5rem; }
}

@media (min-width: 1024px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .asymmetric-section { gap: var(--space-xl); }
  .card-img { height: 280px; }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  html { font-size: 103%; }
  .container { width: 85%; max-width: 1100px; }
  .nav-desktop ul { gap: 2.2rem; }
  .hero { min-height: 90vh; }
  .hero h1 { font-size: 3.5rem; }
  .section { padding: 3.5rem 0; }
  .grid { gap: 2rem; }
  .card-img { height: 270px; }
  .contact-section { padding: 2.8rem; }
  .map-container { height: 380px; }
}

@media (min-width: 1280px) and (max-width: 1439px) {
  html { font-size: 104%; }
  .container { width: 84%; max-width: 1200px; }
  .nav-desktop ul { gap: 2.5rem; }
  .hero { min-height: 92vh; }
  .hero h1 { font-size: 3.8rem; }
  .section { padding: 4rem 0; }
  .grid { gap: 2.2rem; }
  .card-img { height: 290px; }
  .contact-section { padding: 3rem; }
  .map-container { height: 400px; }
}

@media (min-width: 1440px) and (max-width: 1919px) {
  html { font-size: 106%; }
  .container { max-width: 1350px; width: 82%; }
  .nav-desktop ul { gap: 2.8rem; }
  .hero { min-height: 95vh; }
  .hero h1 { font-size: 4rem; }
  .section { padding: 4.5rem 0; }
  .grid { gap: 2.5rem; }
  .card-img { height: 310px; }
  .contact-section { padding: 3.2rem; }
  .map-container { height: 420px; }
}

@media (min-width: 1920px) {
  html { font-size: 110%; }
  .container { max-width: 1600px; width: 80%; }
  .nav-desktop ul { gap: 3rem; }
  .hero { min-height: 100vh; }
  .hero h1 { font-size: 4.5rem; }
  .section { padding: 5rem 0; }
  .grid { gap: 3rem; }
  .card-img { height: 350px; }
  .contact-section { padding: 3.5rem; }
  .map-container { height: 450px; }
  .feature-item { padding: 2rem; }
  .asymmetric-section { gap: 4rem; }
}

@media (max-width: 767px) {
  .hero { min-height: 110vh; }
  .btn-secondary { margin-left: 0; margin-top: var(--space-sm); }
  .section { padding: var(--space-md) 0; }
}

@media (orientation: landscape) and (max-height: 500px) {
  .hero { min-height: 100vh; padding: 2rem 0; }
  .hero h1 { font-size: 2rem; margin-bottom: 1rem; }
  .hero p { font-size: 0.85rem; margin-bottom: 1.5rem; }
  .nav-mobile { padding: 2rem 0; }
  .nav-mobile a { font-size: 1.2rem; }
  .nav-mobile li { margin: 0.8rem 0; }
  .section { padding: 2rem 0; }
  .thank-you-page { padding: 2rem 0; }
  .thank-you-icon { font-size: 3rem; margin-bottom: 1rem; }
}

@media (orientation: landscape) and (min-height: 501px) and (max-height: 768px) {
  .hero { min-height: 100vh; }
  .section { padding: 3rem 0; }
}

@media (hover: hover) and (pointer: fine) {
  .card:hover { transform: translateY(-10px); }
  .feature-item:hover { transform: translateX(10px); }
  .asymmetric-img:hover { transform: rotate(0deg) scale(1.03); }
}

@media (hover: none) and (pointer: coarse) {
  .card:active { transform: scale(0.98); }
  .btn:active { transform: scale(0.96); }
  .feature-item:active { background: var(--color-neutral); }
}
