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

:root {
  --color-primary: #2D241E;
  --color-bg: #F7F3E9;
  --color-error: #991B1B;
  --color-secondary: #D6D3D1;
  --color-accent: #B45309;
  
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  
  --shadow-sm: 0 2px 8px rgba(45, 36, 30, 0.08);
  --shadow-md: 0 4px 16px rgba(45, 36, 30, 0.12);
  --shadow-lg: 0 8px 32px rgba(45, 36, 30, 0.16);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-luxury: 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

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

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

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

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

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

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

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

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  margin-left: 1.5rem;
  margin-bottom: var(--space-sm);
}

li {
  margin-bottom: 0.5rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) var(--space-md);
  background: rgba(247, 243, 233, 0.95);
  backdrop-filter: blur(10px);
  transform: translateY(0);
  transition: transform var(--transition-base), background var(--transition-base);
}

.header.hidden {
  transform: translateY(-100%);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  z-index: -1;
  transition: color var(--transition-base);
}

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

.nav-desktop {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

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

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

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

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 24px;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  transition: all var(--transition-base);
}

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

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

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

.nav-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--color-bg);
  padding: var(--space-xl) var(--space-md);
  transition: right var(--transition-slow);
  z-index: 999;
  box-shadow: var(--shadow-lg);
}

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

.nav-mobile a {
  display: block;
  padding: var(--space-sm) 0;
  font-size: 1.2rem;
  font-family: var(--font-display);
  border-bottom: 1px solid var(--color-secondary);
  transition: all var(--transition-base);
}

.nav-mobile a:hover {
  color: var(--color-accent);
  padding-left: var(--space-sm);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: var(--space-xl) var(--space-md);
}

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

.hero-bg canvas {
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp var(--transition-luxury) forwards;
}

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

.hero h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  margin-bottom: var(--space-md);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: var(--space-lg);
  color: rgba(45, 36, 30, 0.8);
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

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

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left var(--transition-slow);
}

.btn-primary:hover::before {
  left: 100%;
}

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

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

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

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

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

.section-title {
  text-align: center;
  margin-bottom: var(--space-lg);
  font-size: clamp(2rem, 5vw, 3rem);
  position: relative;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--color-accent);
}

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

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

.card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
}

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

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

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

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

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

.card-text {
  font-size: 0.85rem;
  color: rgba(45, 36, 30, 0.7);
  line-height: 1.6;
}

.price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: var(--space-sm);
  font-family: var(--font-display);
}

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

.asymmetric-content {
  transform: translateX(-20px);
  opacity: 0;
  transition: all var(--transition-luxury);
}

.asymmetric-content.visible {
  transform: translateX(0);
  opacity: 1;
}

.asymmetric-image {
  position: relative;
  transform: rotate(-2deg) translateY(20px);
  opacity: 0;
  transition: all var(--transition-luxury);
}

.asymmetric-image.visible {
  transform: rotate(0deg) translateY(0);
  opacity: 1;
}

.asymmetric-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.overlap-section {
  position: relative;
  margin-top: var(--space-xl);
}

.overlap-bg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 60%;
  height: 80%;
  background: var(--color-secondary);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.overlap-content {
  position: relative;
  z-index: 1;
  padding: var(--space-lg);
  margin-left: 10%;
}

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

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.1);
}

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

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

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.8rem;
  line-height: 1.4;
  cursor: pointer;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.contact-item i {
  font-size: 1.5rem;
  color: var(--color-accent);
}

.map-container {
  margin-top: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
}

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

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

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

.footer-links a {
  opacity: 0.8;
  transition: opacity var(--transition-base);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--color-accent);
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 36, 30, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.modal.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: var(--color-bg);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform var(--transition-base);
}

.modal.active .modal-content {
  transform: scale(1);
}

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

.modal-close:hover {
  background: var(--color-secondary);
  transform: rotate(90deg);
}

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-md);
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-secondary) 100%);
}

.error-content {
  max-width: 600px;
  background: #fff;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.error-content h1 {
  font-size: clamp(4rem, 15vw, 10rem);
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.thank-you-content {
  max-width: 600px;
  background: #fff;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.thank-you-content i {
  font-size: 5rem;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  animation: scaleIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.policy-page {
  padding-top: 100px;
  min-height: 100vh;
  background: linear-gradient(to bottom, var(--color-bg) 0%, #fff 100%);
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.policy-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--color-secondary);
}

.policy-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-sm);
  color: var(--color-primary);
}

.policy-date {
  font-size: 0.9rem;
  color: rgba(45, 36, 30, 0.6);
  font-style: italic;
}

.policy-section {
  margin-bottom: var(--space-lg);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

.policy-section:nth-child(2) { animation-delay: 0.1s; }
.policy-section:nth-child(3) { animation-delay: 0.2s; }
.policy-section:nth-child(4) { animation-delay: 0.3s; }
.policy-section:nth-child(5) { animation-delay: 0.4s; }

.policy-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: var(--space-md);
  color: var(--color-accent);
  position: relative;
  padding-left: var(--space-md);
}

.policy-section h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 70%;
  background: var(--color-accent);
  border-radius: 2px;
}

.policy-section h3 {
  font-size: 1.2rem;
  margin: var(--space-md) 0 var(--space-sm);
  color: var(--color-primary);
}

.policy-section p {
  margin-bottom: var(--space-sm);
  line-height: 1.8;
  color: rgba(45, 36, 30, 0.8);
}

.policy-section ul,
.policy-section ol {
  margin: var(--space-sm) 0 var(--space-md) var(--space-md);
}

.policy-section li {
  margin-bottom: var(--space-xs);
  line-height: 1.7;
  color: rgba(45, 36, 30, 0.8);
}

.policy-cta {
  text-align: center;
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 2px solid var(--color-secondary);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all var(--transition-luxury);
}

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

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all var(--transition-luxury);
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all var(--transition-luxury);
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition-luxury);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* ============================================
   NEW HERO SECTIONS WITH ANIMATIONS
   ============================================ */

/* Home Hero Section */
.hero-home {
  min-height: 100vh;
  background: linear-gradient(135deg, #F7F3E9 0%, #E8E0D0 50%, #F7F3E9 100%);
  position: relative;
  overflow: hidden;
}

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

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: floatOrb 20s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(180, 83, 9, 0.3) 0%, transparent 70%);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(45, 36, 30, 0.2) 0%, transparent 70%);
  bottom: 20%;
  right: 15%;
  animation-delay: 5s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(180, 83, 9, 0.25) 0%, transparent 70%);
  top: 50%;
  right: 20%;
  animation-delay: 10s;
}

@keyframes floatOrb {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(180, 83, 9, 0.1);
  animation: floatShape 15s ease-in-out infinite;
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: 20%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 80px;
  height: 80px;
  bottom: 30%;
  left: 15%;
  animation-delay: 3s;
  border-radius: 20% 80% 20% 80%;
}

.shape-3 {
  width: 100px;
  height: 100px;
  top: 60%;
  right: 10%;
  animation-delay: 6s;
  border-radius: 80% 20% 80% 20%;
}

.shape-4 {
  width: 60px;
  height: 60px;
  top: 10%;
  right: 25%;
  animation-delay: 9s;
}

@keyframes floatShape {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translate(100px, -100px) rotate(180deg);
    opacity: 0.6;
  }
}

.hero-content-home {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--space-md);
}

.hero-badge {
  display: inline-block;
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: translateY(-20px);
  animation: slideDown 1s ease-out 0.3s forwards;
}

.badge-text {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(180, 83, 9, 0.1);
  border: 1px solid rgba(180, 83, 9, 0.3);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  backdrop-filter: blur(10px);
}

.hero-title-home {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: var(--space-md);
  line-height: 1.1;
  opacity: 0;
  animation: fadeInScale 1.2s ease-out 0.6s forwards;
}

.title-line {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 28px;
  animation: gradientShift 5s ease-in-out infinite;
}

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

.hero-description-home {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(45, 36, 30, 0.8);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out 1s forwards;
}

.hero-cta {
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.3s forwards;
}

.btn-hero {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 3rem;
  transition: all var(--transition-base);
}

.btn-hero i {
  transition: transform var(--transition-base);
}

.btn-hero:hover i {
  transform: translateX(5px);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease-out 2s forwards;
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}

.scroll-indicator span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
}

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

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

/* Photo Frames Hero Section */
.hero-frames {
  min-height: 70vh;
  background: linear-gradient(135deg, #F7F3E9 0%, #E8E0D0 100%);
  position: relative;
  overflow: hidden;
}

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

.geometric-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.grid-line {
  position: absolute;
  background: var(--color-accent);
  animation: gridPulse 3s ease-in-out infinite;
}

.grid-line-1 {
  width: 1px;
  height: 100%;
  left: 20%;
  animation-delay: 0s;
}

.grid-line-2 {
  width: 1px;
  height: 100%;
  left: 50%;
  animation-delay: 0.5s;
}

.grid-line-3 {
  width: 1px;
  height: 100%;
  left: 80%;
  animation-delay: 1s;
}

.grid-line-4 {
  width: 100%;
  height: 1px;
  top: 50%;
  animation-delay: 1.5s;
}

@keyframes gridPulse {
  0%, 100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.5;
  }
}

.frame-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
}

.frame-box {
  position: absolute;
  border: 3px solid rgba(180, 83, 9, 0.2);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  animation: frameFloat 8s ease-in-out infinite;
}

.frame-box-1 {
  width: 200px;
  height: 250px;
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.frame-box-2 {
  width: 180px;
  height: 220px;
  top: 50%;
  right: 15%;
  animation-delay: 2s;
  transform: rotate(5deg);
}

.frame-box-3 {
  width: 160px;
  height: 200px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
  transform: rotate(-3deg);
}

@keyframes frameFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

.parallax-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.parallax-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(180, 83, 9, 0.15);
  animation: parallaxMove 12s ease-in-out infinite;
}

.circle-1 {
  width: 150px;
  height: 150px;
  top: 20%;
  right: 20%;
  animation-delay: 0s;
}

.circle-2 {
  width: 100px;
  height: 100px;
  bottom: 30%;
  left: 25%;
  animation-delay: 4s;
}

.circle-3 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 10%;
  animation-delay: 8s;
}

@keyframes parallaxMove {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
    opacity: 0.6;
  }
}

.hero-content-frames {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: var(--space-xl) var(--space-md);
}

.hero-icon-wrapper {
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: iconSpin 1s ease-out 0.3s forwards;
}

.hero-icon {
  font-size: 4rem;
  color: var(--color-accent);
  display: inline-block;
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconSpin {
  from {
    opacity: 0;
    transform: rotate(-180deg) scale(0);
  }
  to {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}

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

.hero-title-frames {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 300;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.title-word {
  display: inline-block;
  margin: 0 0.5rem;
  opacity: 0;
  transform: translateY(50px);
  animation: wordReveal 0.8s ease-out forwards;
}

.title-word:nth-child(1) {
  animation-delay: 0.6s;
}

.title-word:nth-child(2) {
  animation-delay: 0.8s;
}

@keyframes wordReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-description-frames {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(45, 36, 30, 0.8);
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.2s forwards;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.5s forwards;
}

.stat-item {
  text-align: center;
  padding: var(--space-sm);
}

.stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-accent);
  font-family: var(--font-display);
  margin-bottom: 0.25rem;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(45, 36, 30, 0.6);
}

/* Wall Decor Hero Section */
.hero-wall {
  min-height: 70vh;
  background: linear-gradient(135deg, #F7F3E9 0%, #E8E0D0 50%, #F7F3E9 100%);
  position: relative;
  overflow: hidden;
}

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

.flowing-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

.flowing-svg {
  width: 100%;
  height: 100%;
}

.flow-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: flowDraw 8s ease-in-out infinite;
}

.path-1 {
  animation-delay: 0s;
}

.path-2 {
  animation-delay: 2s;
}

.path-3 {
  animation-delay: 4s;
}

@keyframes flowDraw {
  0% {
    stroke-dashoffset: 1000;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -1000;
  }
}

.color-blocks {
  position: absolute;
  width: 100%;
  height: 100%;
}

.color-block {
  position: absolute;
  border-radius: 20px;
  opacity: 0.1;
  animation: blockFlow 10s ease-in-out infinite;
}

.block-1 {
  width: 150px;
  height: 150px;
  background: var(--color-accent);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.block-2 {
  width: 120px;
  height: 120px;
  background: var(--color-primary);
  top: 60%;
  right: 10%;
  animation-delay: 2s;
  border-radius: 50%;
}

.block-3 {
  width: 100px;
  height: 100px;
  background: var(--color-accent);
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
  border-radius: 30% 70% 30% 70%;
}

.block-4 {
  width: 80px;
  height: 80px;
  background: var(--color-primary);
  top: 30%;
  right: 25%;
  animation-delay: 6s;
}

@keyframes blockFlow {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(50px, -50px) rotate(120deg);
  }
  66% {
    transform: translate(-30px, 30px) rotate(240deg);
  }
}

.artistic-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.art-element {
  position: absolute;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(180, 83, 9, 0.2);
  animation: artFloat 6s ease-in-out infinite;
}

.art-element i {
  font-size: 1.5rem;
  color: var(--color-accent);
}

.element-1 {
  top: 25%;
  left: 15%;
  animation-delay: 0s;
}

.element-2 {
  bottom: 30%;
  right: 20%;
  animation-delay: 2s;
}

.element-3 {
  top: 50%;
  left: 50%;
  animation-delay: 4s;
}

@keyframes artFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -20px) scale(1.1);
  }
}

.hero-content-wall {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: var(--space-xl) var(--space-md);
}

.hero-tag {
  display: inline-block;
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: tagSlide 0.8s ease-out 0.3s forwards;
}

.hero-tag span {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(180, 83, 9, 0.1);
  border-left: 3px solid var(--color-accent);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
}

@keyframes tagSlide {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-title-wall {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 300;
  margin-bottom: var(--space-md);
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.title-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px) rotateX(90deg);
  animation: charReveal 0.6s ease-out forwards;
}

.title-char:nth-child(1) { animation-delay: 0.5s; }
.title-char:nth-child(2) { animation-delay: 0.6s; }
.title-char:nth-child(3) { animation-delay: 0.7s; }
.title-char:nth-child(4) { animation-delay: 0.8s; }
.title-char:nth-child(5) { animation-delay: 0.9s; }
.title-char:nth-child(6) { animation-delay: 1.0s; }
.title-char:nth-child(7) { animation-delay: 1.1s; }
.title-char:nth-child(8) { animation-delay: 1.2s; }
.title-char:nth-child(9) { animation-delay: 1.3s; }

@keyframes charReveal {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
  }
}

.hero-description-wall {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(45, 36, 30, 0.8);
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.5s forwards;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.8s forwards;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  font-size: 0.85rem;
}

.feature-item i {
  color: var(--color-accent);
  font-size: 1rem;
}

/* Contact Hero Section */
.hero-contact {
  min-height: 60vh;
  background: linear-gradient(135deg, #F7F3E9 0%, #E8E0D0 100%);
  position: relative;
  overflow: hidden;
}

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

.contact-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem;
  opacity: 0.2;
}

.grid-dot {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  justify-self: center;
  align-self: center;
  animation: dotPulse 2s ease-in-out infinite;
}

.grid-dot:nth-child(1) { animation-delay: 0s; }
.grid-dot:nth-child(2) { animation-delay: 0.2s; }
.grid-dot:nth-child(3) { animation-delay: 0.4s; }
.grid-dot:nth-child(4) { animation-delay: 0.6s; }
.grid-dot:nth-child(5) { animation-delay: 0.8s; }
.grid-dot:nth-child(6) { animation-delay: 1.0s; }
.grid-dot:nth-child(7) { animation-delay: 1.2s; }
.grid-dot:nth-child(8) { animation-delay: 1.4s; }
.grid-dot:nth-child(9) { animation-delay: 1.6s; }
.grid-dot:nth-child(10) { animation-delay: 1.8s; }
.grid-dot:nth-child(11) { animation-delay: 2.0s; }
.grid-dot:nth-child(12) { animation-delay: 2.2s; }

@keyframes dotPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
}

.contact-waves {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.wave {
  position: absolute;
  width: 200%;
  height: 100px;
  background: linear-gradient(90deg, transparent, rgba(180, 83, 9, 0.05), transparent);
  animation: waveMove 8s ease-in-out infinite;
}

.wave-1 {
  bottom: 0;
  animation-delay: 0s;
}

.wave-2 {
  bottom: 20px;
  animation-delay: 2s;
  opacity: 0.5;
}

.wave-3 {
  bottom: 40px;
  animation-delay: 4s;
  opacity: 0.3;
}

@keyframes waveMove {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-20px);
  }
}

.interactive-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.interactive-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(180, 83, 9, 0.2);
  animation: circleExpand 4s ease-in-out infinite;
}

.circle-a {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.circle-b {
  width: 80px;
  height: 80px;
  bottom: 30%;
  right: 15%;
  animation-delay: 1.5s;
}

.circle-c {
  width: 60px;
  height: 60px;
  top: 50%;
  left: 50%;
  animation-delay: 3s;
}

@keyframes circleExpand {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.6;
  }
}

.hero-content-contact {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: var(--space-xl) var(--space-md);
}

.contact-icon-container {
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: iconBounce 1s ease-out 0.3s forwards;
}

.contact-icon-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  border: 3px solid var(--color-accent);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  animation: ringRotate 20s linear infinite;
}

.contact-icon-ring i {
  font-size: 2.5rem;
  color: var(--color-accent);
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconBounce {
  from {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
  }
  60% {
    transform: scale(1.1) rotate(10deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes ringRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.hero-title-contact {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 300;
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.title-part {
  display: inline-block;
  opacity: 0;
  transform: translateX(-30px);
  animation: partSlide 0.8s ease-out forwards;
}

.title-part:nth-child(1) {
  animation-delay: 0.6s;
}

.title-part:nth-child(2) {
  animation-delay: 0.8s;
  margin-left: 0.5rem;
}

@keyframes partSlide {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-description-contact {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(45, 36, 30, 0.8);
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.2s forwards;
}

.contact-quick-links {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s ease-out 1.5s forwards;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(180, 83, 9, 0.2);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition-base);
}

.quick-link:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.quick-link i {
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  .asymmetric-section {
    grid-template-columns: 1fr 1fr;
  }
  
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
  
  .burger {
    display: flex;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.5rem; }
  
  .section {
    padding: var(--space-lg) var(--space-sm);
  }
  
  .overlap-bg {
    width: 80%;
  }
  
  .overlap-content {
    margin-left: 5%;
  }
  
  .policy-container {
    padding: var(--space-md);
  }

  /* Hero responsive adjustments */
  .hero-home {
    min-height: 90vh;
  }

  .hero-frames,
  .hero-wall,
  .hero-contact {
    min-height: 60vh;
  }

  .orb-1, .orb-2, .orb-3 {
    width: 200px;
    height: 200px;
  }

  .shape {
    width: 60px;
    height: 60px;
  }

  .frame-box-1,
  .frame-box-2,
  .frame-box-3 {
    width: 100px;
    height: 120px;
  }

  .hero-stats {
    gap: var(--space-md);
  }

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

  .hero-features {
    flex-direction: column;
    align-items: center;
  }

  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 1rem;
    padding: 1rem;
  }

  .contact-quick-links {
    flex-direction: column;
    align-items: center;
  }

  .quick-link {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 0.85rem;
  }
  
  .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.75rem;
  }
  
  .card-content {
    padding: var(--space-sm);
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    gap: var(--space-sm);
  }
}

@media (max-width: 320px) {
  :root {
    --space-xs: 0.3rem;
    --space-sm: 0.6rem;
    --space-md: 1rem;
    --space-lg: 2rem;
    --space-xl: 2.5rem;
  }
  
  html {
    font-size: 14px;
  }
  
  body {
    font-size: 0.75rem;
    line-height: 1.5;
  }
  
  /* Typography */
  h1 { 
    font-size: 1.75rem; 
    line-height: 1.2;
    margin-bottom: var(--space-sm);
  }
  
  h2 { 
    font-size: 1.5rem; 
    line-height: 1.3;
  }
  
  h3 { 
    font-size: 1.25rem; 
    line-height: 1.3;
  }
  
  h4 { 
    font-size: 1.1rem; 
  }
  
  h5 { 
    font-size: 1rem; 
  }
  
  h6 { 
    font-size: 0.9rem; 
  }
  
  /* Header & Navigation */
  .header {
    padding: var(--space-xs) var(--space-sm);
  }
  
  .logo {
    font-size: 1rem;
    letter-spacing: 0.03em;
  }
  
  .burger {
    width: 24px;
    height: 20px;
  }
  
  .nav-mobile {
    max-width: 100%;
    padding: var(--space-lg) var(--space-sm);
  }
  
  .nav-mobile a {
    font-size: 1rem;
    padding: var(--space-xs) 0;
  }
  
  /* Hero Sections */
  .hero-home {
    min-height: 85vh;
    padding: var(--space-lg) var(--space-sm);
  }
  
  .hero-frames,
  .hero-wall,
  .hero-contact {
    min-height: 50vh;
    padding: var(--space-lg) var(--space-sm);
  }
  
  .hero-content-home,
  .hero-content-frames,
  .hero-content-wall,
  .hero-content-contact {
    padding: 0 var(--space-sm);
  }
  
  .hero-title-home {
    font-size: clamp(2rem, 12vw, 3rem);
    margin-bottom: var(--space-sm);
  }
  
  .hero-title-frames,
  .hero-title-wall,
  .hero-title-contact {
    font-size: clamp(2rem, 10vw, 2.5rem);
    margin-bottom: var(--space-sm);
  }
  
  .hero-description-home,
  .hero-description-frames,
  .hero-description-wall,
  .hero-description-contact {
    font-size: 0.85rem;
    margin-bottom: var(--space-md);
    line-height: 1.6;
  }
  
  /* Hero Background Elements */
  .orb-1, .orb-2, .orb-3 {
    width: 150px;
    height: 150px;
  }
  
  .shape-1 {
    width: 60px;
    height: 60px;
  }
  
  .shape-2 {
    width: 50px;
    height: 50px;
  }
  
  .shape-3 {
    width: 55px;
    height: 55px;
  }
  
  .shape-4 {
    width: 40px;
    height: 40px;
  }
  
  .frame-box-1,
  .frame-box-2,
  .frame-box-3 {
    width: 80px;
    height: 100px;
  }
  
  .parallax-circle {
    width: 60px;
    height: 60px;
  }
  
  .circle-1,
  .circle-2,
  .circle-3 {
    width: 50px;
    height: 50px;
  }
  
  .color-block {
    width: 60px;
    height: 60px;
  }
  
  .block-1,
  .block-2,
  .block-3,
  .block-4 {
    width: 50px;
    height: 50px;
  }
  
  .art-element {
    width: 40px;
    height: 40px;
  }
  
  .art-element i {
    font-size: 1rem;
  }
  
  .contact-icon-ring {
    width: 70px;
    height: 70px;
  }
  
  .contact-icon-ring i {
    font-size: 1.8rem;
  }
  
  .hero-icon {
    font-size: 2.5rem;
  }
  
  .badge-text {
    padding: 0.4rem 1rem;
    font-size: 0.65rem;
  }
  
  .hero-tag span {
    padding: 0.3rem 0.8rem;
    font-size: 0.65rem;
  }
  
  /* Buttons */
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }
  
  .btn-hero {
    padding: 0.8rem 1.8rem;
    font-size: 0.75rem;
  }
  
  .btn-hero i {
    font-size: 0.7rem;
  }
  
  .quick-link {
    padding: 0.7rem 1.2rem;
    font-size: 0.75rem;
    width: 100%;
    max-width: 100%;
  }
  
  .quick-link i {
    font-size: 0.9rem;
  }
  
  /* Sections */
  .section {
    padding: var(--space-lg) var(--space-sm);
  }
  
  .container {
    padding: 0 var(--space-sm);
  }
  
  .section-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
    margin-bottom: var(--space-md);
  }
  
  /* Grid & Cards */
  .grid {
    gap: var(--space-sm);
  }
  
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  
  .card {
    border-radius: var(--radius-sm);
  }
  
  .card-img {
    height: 180px;
  }
  
  .card-content {
    padding: var(--space-sm);
  }
  
  .card-title {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
  }
  
  .card-text {
    font-size: 0.75rem;
    line-height: 1.5;
  }
  
  .price {
    font-size: 1.2rem;
    margin-top: var(--space-xs);
  }
  
  /* Hero Stats & Features */
  .hero-stats {
    gap: var(--space-sm);
    flex-direction: column;
  }
  
  .stat-item {
    padding: var(--space-xs);
  }
  
  .stat-number {
    font-size: 1.1rem;
  }
  
  .stat-label {
    font-size: 0.65rem;
  }
  
  .hero-features {
    flex-direction: column;
    gap: var(--space-xs);
    align-items: flex-start;
  }
  
  .feature-item {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    width: 100%;
    max-width: 100%;
  }
  
  .feature-item i {
    font-size: 0.85rem;
  }
  
  /* Asymmetric Sections */
  .asymmetric-section {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
  
  .asymmetric-content,
  .asymmetric-image {
    transform: none;
  }
  
  .asymmetric-image img {
    border-radius: var(--radius-md);
  }
  
  /* Forms */
  .form-group {
    margin-bottom: var(--space-sm);
  }
  
  .form-label {
    font-size: 0.7rem;
    margin-bottom: var(--space-xs);
  }
  
  .form-input,
  .form-textarea {
    padding: 0.7rem;
    font-size: 0.8rem;
    border-radius: var(--radius-sm);
  }
  
  .form-textarea {
    min-height: 100px;
  }
  
  .checkbox-group {
    gap: var(--space-xs);
  }
  
  .checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
  }
  
  .checkbox-group label {
    font-size: 0.7rem;
    line-height: 1.3;
  }
  
  /* Contact Info */
  .contact-info {
    gap: var(--space-sm);
    margin-top: var(--space-md);
  }
  
  .contact-item {
    padding: var(--space-xs);
    flex-direction: column;
    text-align: center;
    gap: var(--space-xs);
  }
  
  .contact-item i {
    font-size: 1.2rem;
  }
  
  .contact-item h4 {
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
  }
  
  .contact-item p {
    font-size: 0.75rem;
  }
  
  /* Map */
  .map-container {
    height: 250px;
    margin-top: var(--space-md);
  }
  
  /* Overlap Section */
  .overlap-bg {
    width: 90%;
    height: 70%;
  }
  
  .overlap-content {
    padding: var(--space-md);
    margin-left: 5%;
  }
  
  /* Footer */
  .footer {
    padding: var(--space-sm);
    font-size: 0.65rem;
  }
  
  .footer-links {
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-xs);
  }
  
  .footer-links a {
    font-size: 0.7rem;
  }
  
  /* Modal */
  .modal-content {
    padding: var(--space-md);
    max-width: 95%;
    width: 95%;
  }
  
  .modal-close {
    width: 32px;
    height: 32px;
    font-size: 1.5rem;
  }
  
  /* Policy Pages */
  .policy-container {
    padding: var(--space-sm);
    margin: var(--space-sm);
  }
  
  .policy-header {
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
  }
  
  .policy-header h1 {
    font-size: 1.5rem;
  }
  
  .policy-date {
    font-size: 0.75rem;
  }
  
  .policy-section {
    margin-bottom: var(--space-md);
  }
  
  .policy-section h2 {
    font-size: 1.1rem;
    padding-left: var(--space-sm);
    margin-bottom: var(--space-sm);
  }
  
  .policy-section h3 {
    font-size: 1rem;
    margin: var(--space-sm) 0 var(--space-xs);
  }
  
  .policy-section p {
    font-size: 0.75rem;
    line-height: 1.6;
  }
  
  .policy-section ul,
  .policy-section ol {
    margin: var(--space-xs) 0 var(--space-sm) var(--space-sm);
  }
  
  .policy-section li {
    font-size: 0.75rem;
    line-height: 1.5;
  }
  
  /* Error & Thank You Pages */
  .error-content,
  .thank-you-content {
    padding: var(--space-md);
    margin: var(--space-sm);
  }
  
  .error-content h1 {
    font-size: 4rem;
  }
  
  .thank-you-content i {
    font-size: 3rem;
  }
  
  /* Scroll Indicator */
  .scroll-indicator {
    bottom: 20px;
  }
  
  .scroll-line {
    height: 30px;
  }
  
  .scroll-indicator span {
    font-size: 0.6rem;
  }
  
  /* Contact Grid */
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 0.5rem;
    padding: 0.5rem;
  }
  
  .grid-dot {
    width: 6px;
    height: 6px;
  }
  
  /* Waves */
  .wave {
    height: 60px;
  }
  
  .wave-2 {
    bottom: 15px;
  }
  
  .wave-3 {
    bottom: 30px;
  }
  
  /* Interactive Circles */
  .circle-a {
    width: 60px;
    height: 60px;
  }
  
  .circle-b {
    width: 50px;
    height: 50px;
  }
  
  .circle-c {
    width: 40px;
    height: 40px;
  }
  
  /* Title Characters & Words */
  .title-char {
    font-size: 1.8rem;
  }
  
  .title-word {
    margin: 0 0.2rem;
  }
  
  .title-part {
    margin-left: 0.2rem;
  }
  
  /* Contact Quick Links */
  .contact-quick-links {
    flex-direction: column;
    gap: var(--space-sm);
    width: 100%;
  }
  
  /* Hero Icon Wrapper */
  .hero-icon-wrapper {
    margin-bottom: var(--space-sm);
  }
  
  /* Flowing SVG */
  .flowing-svg {
    opacity: 0.2;
  }
  
  /* Geometric Grid */
  .grid-line {
    opacity: 0.2;
  }
}
