:root {
  --cream: #FBF8F3;
  --warm-white: #FFFCF7;
  --sepia-brown: #8B7355;
  --deep-brown: #5D4E37;
  --accent-coral: #E8927C;
  --soft-blue: #A8C5D1;
  --shadow-light: rgba(93, 78, 55, 0.08);
  --shadow-medium: rgba(93, 78, 55, 0.15);
  --shadow-heavy: rgba(93, 78, 55, 0.25);
  --polaroid-border: 14px;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  color: #3A3A3A;
  background: var(--warm-white);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

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

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

button, .btn {
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-coral) 0%, #D67B68 100%);
  color: white;
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 1.0625rem;
  box-shadow: 
    0 4px 12px var(--shadow-light),
    0 8px 24px var(--shadow-medium);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 6px 16px var(--shadow-medium),
    0 12px 32px var(--shadow-heavy);
}

.btn-secondary {
  background: white;
  color: var(--sepia-brown);
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 1.0625rem;
  border: 2px solid var(--sepia-brown);
}

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

header {
  background: var(--cream);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px var(--shadow-light);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--deep-brown);
}

.logo img {
  width: 48px;
  height: 48px;
}

nav {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: var(--sepia-brown);
  font-weight: 500;
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-coral);
  transition: width 0.35s ease;
}

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

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 2px 8px var(--shadow-light);
}

.lang-btn {
  font-weight: 600;
  color: var(--sepia-brown);
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.lang-btn.active {
  color: var(--accent-coral);
  background: var(--cream);
}

.lang-btn:hover {
  color: var(--accent-coral);
}

.lang-divider {
  color: #D0C4B8;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  padding: 8px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--deep-brown);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
  padding: 120px 0 140px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(232, 146, 124, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  margin-bottom: 28px;
}

.hero-text h1 span {
  color: var(--accent-coral);
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--sepia-brown);
  margin-bottom: 48px;
  line-height: 1.8;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.benefit-item {
  text-align: center;
}

.benefit-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  background: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent-coral);
  box-shadow: 
    0 4px 12px var(--shadow-light),
    0 8px 24px var(--shadow-medium);
  transform: rotate(-2deg);
  transition: all 0.35s ease;
}

.benefit-item:hover .benefit-icon {
  transform: rotate(0deg) translateY(-4px);
}

.benefit-item h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}

.benefit-item p {
  font-size: 0.9375rem;
  color: var(--sepia-brown);
  margin: 0;
}

.hero-form-card {
  background: white;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 
    0 8px 24px var(--shadow-light),
    0 16px 48px var(--shadow-medium),
    0 24px 72px rgba(93, 78, 55, 0.08);
  border: 1px solid rgba(139, 115, 85, 0.1);
  transform: rotate(-1deg);
  transition: all 0.4s ease;
}

.hero-form-card:hover {
  transform: rotate(0deg) translateY(-8px);
  box-shadow: 
    0 12px 32px var(--shadow-medium),
    0 20px 56px var(--shadow-heavy);
}

.hero-form-card h3 {
  margin-bottom: 28px;
  text-align: center;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--deep-brown);
  font-size: 0.9375rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #E8E3DC;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  background: var(--warm-white);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-coral);
  background: white;
  box-shadow: 0 0 0 3px rgba(232, 146, 124, 0.1);
}

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

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0;
}

.privacy-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
}

.privacy-check label {
  font-size: 0.9375rem;
  color: var(--sepia-brown);
  line-height: 1.6;
  cursor: pointer;
}

.privacy-check a {
  color: var(--accent-coral);
  text-decoration: underline;
}

.hero-form-card button[type="submit"] {
  width: 100%;
}

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.section-header h2 {
  margin-bottom: 24px;
}

.section-header p {
  font-size: 1.1875rem;
  color: var(--sepia-brown);
}

.highlight-text {
  background: linear-gradient(135deg, rgba(232, 146, 124, 0.2) 0%, rgba(168, 197, 209, 0.2) 100%);
  padding: 4px 12px;
  border-radius: 6px;
  display: inline-block;
  transition: all 0.4s ease;
}

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

.tabs-nav {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  border-bottom: 2px solid #E8E3DC;
  overflow-x: auto;
  overflow-y: hidden;
}

.tab-btn {
  padding: 16px 32px;
  background: none;
  color: var(--sepia-brown);
  font-size: 1.0625rem;
  font-weight: 600;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: all 0.3s ease;
}

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

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

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

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

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

.tab-panel {
  background: white;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 
    0 4px 12px var(--shadow-light),
    0 8px 24px var(--shadow-medium);
}

.tab-panel h3 {
  margin-bottom: 24px;
}

.tab-panel ul {
  list-style: none;
  margin-left: 0;
}

.tab-panel li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  font-size: 1.0625rem;
  line-height: 1.8;
}

.tab-panel li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-coral);
  font-weight: 700;
  font-size: 1.25rem;
}

.polaroid-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.polaroid-card {
  background: white;
  padding: var(--polaroid-border);
  padding-bottom: 64px;
  border-radius: 4px;
  box-shadow: 
    0 4px 16px var(--shadow-light),
    0 8px 32px var(--shadow-medium),
    0 16px 48px rgba(93, 78, 55, 0.06);
  transform: rotate(-2deg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.polaroid-card:nth-child(even) {
  transform: rotate(2deg);
}

.polaroid-card:hover {
  transform: rotate(0deg) translateY(-12px);
  box-shadow: 
    0 8px 24px var(--shadow-medium),
    0 16px 48px var(--shadow-heavy);
}

.polaroid-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
  filter: sepia(0.15) brightness(1.05);
  transition: filter 0.4s ease;
}

.polaroid-card:hover img {
  filter: sepia(0.05) brightness(1.1);
}

.polaroid-caption {
  text-align: center;
  margin-top: 20px;
  font-family: 'Caveat', cursive;
  font-size: 1.25rem;
  color: var(--sepia-brown);
}

.compact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.info-card {
  background: white;
  padding: 36px;
  border-radius: 12px;
  box-shadow: 
    0 2px 8px var(--shadow-light),
    0 4px 16px var(--shadow-medium);
  border: 1px solid rgba(139, 115, 85, 0.08);
  transition: all 0.35s ease;
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: 
    0 6px 16px var(--shadow-medium),
    0 12px 32px var(--shadow-heavy);
}

.info-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent-coral) 0%, #D67B68 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: white;
  margin-bottom: 20px;
  transform: rotate(-3deg);
}

.info-card h3 {
  font-size: 1.375rem;
  margin-bottom: 16px;
}

.info-card p {
  color: var(--sepia-brown);
  margin: 0;
  font-size: 1rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--sepia-brown) 0%, var(--deep-brown) 100%);
  padding: 100px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 146, 124, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: white;
  margin-bottom: 24px;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 48px;
  opacity: 0.95;
}

.cta-content .btn-primary {
  background: white;
  color: var(--deep-brown);
}

.cta-content .btn-primary:hover {
  background: var(--cream);
}

footer {
  background: var(--cream);
  padding: 80px 0 40px;
}

.footer-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-bottom: 60px;
}

.footer-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shadow-light);
}

.footer-card h4 {
  font-size: 1.125rem;
  margin-bottom: 20px;
  color: var(--deep-brown);
}

.footer-card ul {
  list-style: none;
}

.footer-card li {
  margin-bottom: 12px;
}

.footer-card a {
  color: var(--sepia-brown);
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.footer-card a:hover {
  color: var(--accent-coral);
  padding-left: 8px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-item i {
  color: var(--accent-coral);
  margin-top: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 2px solid #E8E3DC;
  color: var(--sepia-brown);
  font-size: 0.9375rem;
}

.footer-legal {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: var(--sepia-brown);
  text-decoration: underline;
}

.footer-legal a:hover {
  color: var(--accent-coral);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: 24px;
  box-shadow: 0 -4px 24px var(--shadow-medium);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text p {
  margin: 0;
  color: var(--sepia-brown);
  font-size: 0.9375rem;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background: var(--accent-coral);
  color: white;
}

.cookie-btn-accept:hover {
  background: #D67B68;
}

.cookie-btn-reject {
  background: #E8E3DC;
  color: var(--sepia-brown);
}

.cookie-btn-reject:hover {
  background: #D0C4B8;
}

.cookie-btn-customize {
  background: white;
  color: var(--sepia-brown);
  border: 2px solid var(--sepia-brown);
}

.cookie-btn-customize:hover {
  background: var(--cream);
}

.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10001;
  padding: 20px;
  overflow-y: auto;
}

.cookie-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-content {
  background: white;
  padding: 48px;
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-content h3 {
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--cream);
  border-radius: 8px;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.cookie-category h4 {
  font-size: 1.125rem;
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 52px;
  height: 28px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  border-radius: 28px;
  transition: 0.3s;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--accent-coral);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  font-size: 0.9375rem;
  color: var(--sepia-brown);
  margin: 0;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.contact-page-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 32px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 32px;
  padding: 24px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px var(--shadow-light);
  transition: all 0.35s ease;
}

.contact-method:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px var(--shadow-medium);
}

.contact-method-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent-coral) 0%, #D67B68 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.contact-method-content h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.contact-method-content p {
  margin: 0;
  color: var(--sepia-brown);
}

.contact-method-content a {
  color: var(--accent-coral);
  font-weight: 600;
}

.contact-form-container {
  background: white;
  padding: 48px;
  border-radius: 16px;
  box-shadow: 
    0 8px 24px var(--shadow-light),
    0 16px 48px var(--shadow-medium);
  position: sticky;
  top: 120px;
}

.map-container {
  margin-top: 80px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px var(--shadow-medium);
}

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

.thanks-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 100px 0;
}

.thanks-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, var(--accent-coral) 0%, #D67B68 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: white;
  box-shadow: 0 8px 32px var(--shadow-medium);
}

.thanks-content h1 {
  margin-bottom: 24px;
}

.thanks-content p {
  font-size: 1.25rem;
  color: var(--sepia-brown);
  margin-bottom: 48px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 0;
}

.legal-content h1 {
  margin-bottom: 16px;
}

.legal-updated {
  color: var(--sepia-brown);
  font-size: 0.9375rem;
  margin-bottom: 48px;
  font-style: italic;
}

.legal-content h2 {
  font-size: 1.75rem;
  margin-top: 48px;
  margin-bottom: 20px;
}

.legal-content h3 {
  font-size: 1.375rem;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content ul, .legal-content ol {
  margin-left: 24px;
  margin-bottom: 24px;
}

.legal-content li {
  margin-bottom: 12px;
  line-height: 1.8;
}

.iti {
  width: 100%;
}

#phone {
  width: 100%;
}

@media (max-width: 968px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  nav.mobile-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 32px 24px;
    box-shadow: 0 8px 24px var(--shadow-medium);
    gap: 24px;
    z-index: 999;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .hero-benefits {
    grid-template-columns: 1fr;
  }
  
  .contact-page-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .contact-form-container {
    position: static;
  }
  
  .tabs-nav {
    flex-wrap: wrap;
  }
  
  .tab-panel {
    padding: 32px 24px;
  }
  
  .polaroid-grid {
    grid-template-columns: 1fr;
  }
  
  .compact-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-cards {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    justify-content: stretch;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  .cookie-modal-content {
    padding: 32px 24px;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.875rem;
  }
  
  .hero {
    padding: 80px 0 100px;
  }
  
  .hero-form-card {
    padding: 32px 24px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-header {
    margin-bottom: 48px;
  }
  
  .info-card {
    padding: 28px;
  }
  
  .contact-method {
    flex-direction: column;
    text-align: center;
  }
  
  .thanks-content {
    padding: 60px 0;
  }
  
  .legal-content {
    padding: 60px 0;
  }
}