@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:ital,wght@0,700;0,900;1,700&display=swap');

:root {
  --primary: #9791a0;
  --primary-dark: #6e6878;
  --primary-light: #c4bfd0;
  --bg-deep: #1a1620;
  --bg-rich: #2a2435;
  --bg-cream: #f5f0e8;
  --bg-warm: #ede6dc;
  --accent-coral: #e85d4c;
  --accent-gold: #d4a853;
  --accent-teal: #3d8b7a;
  --text-light: #f5f0e8;
  --text-dark: #1a1620;
  --text-muted: #4a4455;
  --contrast-icon: #d4a853;
  --shadow-sm: 0 2px 8px rgba(26, 22, 32, 0.06);
  --shadow-md: 0 4px 20px rgba(26, 22, 32, 0.1);
  --shadow-lg: 0 8px 32px rgba(26, 22, 32, 0.14);
  --shadow-xl: 0 16px 48px rgba(26, 22, 32, 0.18);
  --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 8px 24px rgba(212, 168, 83, 0.2);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--bg-cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-teal);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent-coral);
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.disclaimer-bar {
  background: var(--bg-deep);
  color: var(--text-light);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  box-shadow: var(--shadow-md);
}

.site-header {
  background: rgba(42, 36, 53, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-lg);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 1rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-light);
  flex-shrink: 0;
}

.logo-link:hover {
  color: var(--accent-gold);
}

.logo-link img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(0.85rem, 2.5vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text-light);
  font-size: 1.4rem;
  padding: 0.45rem 0.7rem;
  cursor: pointer;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-md);
}

.main-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
}

.main-nav a {
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text-light);
  background: rgba(212, 168, 83, 0.2);
  box-shadow: var(--shadow-sm);
}

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,22,32,0.92) 0%, rgba(151,145,160,0.55) 50%, rgba(26,22,32,0.88) 100%);
  z-index: 1;
}

.hero-decor {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  z-index: 2;
  pointer-events: none;
  filter: blur(40px);
}

.hero-decor-1 {
  top: 10%;
  left: 5%;
  width: 160px;
  height: 160px;
  background: var(--accent-gold);
  box-shadow: 0 0 80px var(--accent-gold);
}

.hero-decor-2 {
  bottom: 15%;
  right: 8%;
  width: 120px;
  height: 120px;
  background: var(--accent-coral);
  box-shadow: 0 0 60px var(--accent-coral);
}

.hero-decor-3 {
  top: 40%;
  right: 20%;
  width: 100px;
  height: 100px;
  background: var(--primary-light);
  box-shadow: 0 0 50px var(--primary-light);
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 4rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-content h1 {
  color: var(--text-light);
  margin-bottom: 1.25rem;
  max-width: 700px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  color: var(--bg-cream);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  max-width: 600px;
  margin-bottom: 2rem;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  max-width: 800px;
}

.hero-card {
  background: rgba(245, 240, 232, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1.5rem;
  border-radius: var(--radius);
  color: var(--text-light);
  box-shadow: var(--shadow-dark);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  cursor: default;
}

.hero-card:hover {
  transform: translateY(-8px);
  background: rgba(212, 168, 83, 0.18);
  box-shadow: var(--shadow-glow), var(--shadow-xl);
}

.hero-card i {
  color: var(--accent-gold);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.hero-card h3 {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 0.35rem;
}

.hero-card p {
  font-size: 0.85rem;
  margin: 0;
  color: var(--primary-light);
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--accent-coral);
  color: var(--text-light);
  box-shadow: 0 4px 16px rgba(232, 93, 76, 0.35);
}

.btn-primary:hover {
  background: #d44f3f;
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(232, 93, 76, 0.45);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  box-shadow: var(--shadow-md);
}

.btn-outline:hover {
  background: var(--accent-gold);
  color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

section {
  padding: 4.5rem 0;
  position: relative;
}

.section-dark {
  background: var(--bg-deep);
  color: var(--text-light);
}

.section-dark h2,
.section-dark h3 {
  color: var(--text-light);
}

.section-dark p {
  color: var(--bg-warm);
}

.section-primary {
  background: var(--primary);
  color: var(--text-dark);
}

.section-cream {
  background: var(--bg-cream);
  color: var(--text-dark);
}

.section-rich {
  background: var(--bg-rich);
  color: var(--text-light);
}

.section-rich h2,
.section-rich h3 {
  color: var(--text-light);
}

.section-rich p {
  color: var(--bg-warm);
}

.section-warm {
  background: var(--bg-warm);
  color: var(--text-dark);
}

.section-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header .subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
}

.section-dark .section-header .subtitle,
.section-rich .section-header .subtitle {
  color: var(--primary-light);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent-coral);
  margin-bottom: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: rgba(232, 93, 76, 0.1);
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}

.section-dark .section-label,
.section-rich .section-label {
  color: var(--accent-gold);
  background: rgba(212, 168, 83, 0.15);
}

.modular-grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.modular-block {
  padding: 1.75rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.modular-block:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.section-dark .modular-block,
.section-rich .modular-block {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-light);
  box-shadow: var(--shadow-dark);
}

.section-dark .modular-block:hover,
.section-rich .modular-block:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.section-primary .modular-block {
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-md);
}

.section-dark .modular-block p,
.section-rich .modular-block p {
  color: var(--bg-warm);
}

.modular-block i {
  color: var(--accent-coral);
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.section-dark .modular-block i,
.section-rich .modular-block i {
  color: var(--accent-gold);
}

.modular-block h3 {
  margin-bottom: 0.75rem;
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.split-layout.reverse {
  direction: rtl;
}

.split-layout.reverse > * {
  direction: ltr;
}

.split-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: transform var(--transition), box-shadow var(--transition);
}

.split-image:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(26, 22, 32, 0.22);
}

.split-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.split-content h2 {
  margin-bottom: 1rem;
}

.split-content p {
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
  margin: 1.25rem 0;
}

.feature-list li {
  padding: 0.75rem 0 0.75rem 2rem;
  position: relative;
}

.feature-list li + li {
  margin-top: 0.25rem;
}

.feature-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--accent-teal);
}

.section-dark .feature-list li::before,
.section-rich .feature-list li::before {
  color: var(--accent-gold);
}

.numbered-list {
  counter-reset: item;
  list-style: none;
}

.numbered-list li {
  counter-increment: item;
  padding: 1.15rem 1.25rem 1.15rem 3.75rem;
  margin-bottom: 0.75rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}

.numbered-list li:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.section-dark .numbered-list li,
.section-rich .numbered-list li {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-dark);
}

.numbered-list li::before {
  content: counter(item);
  position: absolute;
  left: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--accent-coral);
}

.section-dark .numbered-list li::before,
.section-rich .numbered-list li::before {
  color: var(--accent-gold);
}

.flip-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.flip-card {
  perspective: 1000px;
  height: 220px;
  cursor: pointer;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.2));
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.flip-card-front {
  background: var(--bg-rich);
  color: var(--text-light);
}

.flip-card-front i {
  color: var(--accent-coral);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.flip-card-back {
  background: linear-gradient(145deg, var(--accent-teal), #2d6b5c);
  color: var(--text-light);
  transform: rotateY(180deg);
}

.flip-card-back i {
  color: var(--accent-gold);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.home-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.home-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.35rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.home-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.home-item i {
  color: var(--accent-coral);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.home-item .instead {
  font-weight: 700;
  color: var(--accent-teal);
}

.home-items-caption {
  text-align: center;
  margin-top: 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-dark);
  padding: 1.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.calendar-event {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: #0a0a0a;
  color: var(--text-light);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.calendar-event:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
}

.calendar-event .date {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

.calendar-event h3 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.calendar-event p {
  color: var(--primary-light);
  font-size: 0.9rem;
}

.transparency-note {
  margin-top: 2rem;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius);
  background: rgba(61, 139, 122, 0.1);
  box-shadow: var(--shadow-md);
}

.transparency-note p {
  margin: 0;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.section-dark .transparency-note {
  background: rgba(61, 139, 122, 0.15);
}

.section-dark .transparency-note p {
  color: var(--bg-warm);
}

.modular-block .fa-circle-xmark {
  color: var(--accent-coral);
}

.modular-block .fa-circle-check {
  color: var(--accent-teal);
}


.faq-item {
  margin-bottom: 0.75rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-item.open {
  box-shadow: var(--shadow-lg);
}

.section-dark .faq-item,
.section-rich .faq-item {
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-dark);
}

.section-primary .faq-item {
  background: rgba(255, 255, 255, 0.55);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.15rem 1.5rem;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.section-dark .faq-question,
.section-rich .faq-question {
  color: var(--text-light);
}

.faq-question i {
  color: var(--accent-coral);
  transition: transform var(--transition);
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.15rem;
  color: var(--text-muted);
}

.section-dark .faq-answer-inner,
.section-rich .faq-answer-inner {
  color: var(--primary-light);
}

.safety-box {
  padding: 2rem;
  border-radius: var(--radius);
  background: rgba(232, 93, 76, 0.06);
  box-shadow: var(--shadow-md);
}

.section-dark .safety-box,
.section-rich .safety-box {
  background: rgba(232, 93, 76, 0.1);
  box-shadow: var(--shadow-dark);
}

.safety-box h3 {
  color: var(--accent-coral);
  margin-bottom: 1rem;
}

.safety-box i {
  color: var(--accent-coral);
  margin-right: 0.5rem;
}

.contact-section {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.contact-info-block {
  padding: 1.75rem;
  background: var(--bg-rich);
  color: var(--text-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.contact-info-block h3 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.contact-info-block p,
.contact-info-block a {
  color: var(--bg-warm);
  margin-bottom: 0.75rem;
  display: block;
}

.contact-info-block a:hover {
  color: var(--accent-gold);
}

.contact-info-block i {
  color: var(--accent-gold);
  width: 24px;
  margin-right: 0.5rem;
}

.contact-form {
  padding: 2rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--bg-cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  box-shadow: inset 0 2px 6px rgba(26, 22, 32, 0.06);
  transition: box-shadow var(--transition), background var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(61, 139, 122, 0.25), var(--shadow-sm);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.checkbox-group input {
  margin-top: 0.3rem;
  flex-shrink: 0;
}

.checkbox-group label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.map-wrap {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.map-wrap iframe {
  width: 100%;
  height: 400px;
  display: block;
}

.site-footer {
  background: var(--bg-deep);
  color: var(--text-light);
  padding: 3rem 0 1.5rem;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-col p,
.footer-col a {
  color: var(--primary-light);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-col a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--primary-light);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--accent-gold);
  font-size: 0.9rem;
}

.footer-link-btn {
  background: none;
  border: none;
  color: var(--accent-gold);
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-link-btn:hover {
  color: var(--primary-light);
}

.footer-legal-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--primary-light);
  margin-bottom: 1rem;
  line-height: 1.5;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: var(--bg-deep);
  color: var(--text-light);
  padding: 1.5rem;
  z-index: 9999;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  transform: translateY(calc(100% + 2rem));
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-text {
  flex: 1;
  min-width: 250px;
  font-size: 0.9rem;
  color: var(--bg-warm);
}

.cookie-text a {
  color: var(--accent-gold);
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cookie-buttons .btn {
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
}

.btn-cookie-accept {
  background: var(--accent-teal);
  color: var(--text-light);
  box-shadow: 0 4px 14px rgba(61, 139, 122, 0.35);
}

.btn-cookie-accept:hover {
  background: #347a6b;
  color: var(--text-light);
  box-shadow: 0 6px 20px rgba(61, 139, 122, 0.45);
}

.btn-cookie-reject {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  box-shadow: var(--shadow-sm);
}

.btn-cookie-reject:hover {
  background: rgba(232, 93, 76, 0.2);
  color: var(--accent-coral);
  box-shadow: var(--shadow-md);
}

.btn-cookie-settings {
  background: rgba(212, 168, 83, 0.15);
  color: var(--accent-gold);
  box-shadow: var(--shadow-sm);
}

.btn-cookie-settings:hover {
  background: rgba(212, 168, 83, 0.25);
  box-shadow: var(--shadow-glow);
}

.cookie-settings-panel {
  display: none;
  width: 100%;
  margin-top: 1rem;
  padding-top: 1rem;
}

.cookie-settings-panel.open {
  display: block;
}

.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.cookie-category + .cookie-category {
  box-shadow: 0 -1px 0 rgba(255, 255, 255, 0.06);
}

.cookie-category label {
  font-weight: 600;
  color: var(--text-light);
}

.cookie-category p {
  font-size: 0.8rem;
  color: var(--primary-light);
  margin-top: 0.25rem;
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--primary-dark);
  border-radius: 26px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--text-light);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--accent-teal);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 0 12px rgba(61, 139, 122, 0.4);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

.toggle-switch input:disabled + .toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.policy-content {
  padding: 3rem 0 4rem;
}

.policy-content h1 {
  margin-bottom: 1.5rem;
}

.policy-content h2 {
  margin: 2rem 0 1rem;
  font-size: 1.4rem;
}

.policy-content p,
.policy-content li {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.policy-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.success-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.25rem;
}

.success-box {
  max-width: 600px;
  padding: 3rem;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-xl);
}

.success-box i {
  font-size: 3rem;
  color: var(--accent-teal);
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 12px rgba(61, 139, 122, 0.3));
}

.success-box h1 {
  margin-bottom: 1rem;
}

.success-box p {
  margin-bottom: 1.5rem;
  color: var(--text-muted);
}

.decor-pattern {
  position: absolute;
  width: 200px;
  height: 200px;
  opacity: 0.04;
  pointer-events: none;
  background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
}

.decor-top-right { top: 0; right: 0; }
.decor-bottom-left { bottom: 0; left: 0; }

.inner-hero {
  background: linear-gradient(160deg, var(--bg-rich) 0%, var(--bg-deep) 100%);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.inner-hero h1 {
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.inner-hero p {
  color: var(--primary-light);
  max-width: 650px;
  font-size: 1.1rem;
}

.quote-block {
  padding: 2rem;
  border-radius: var(--radius);
  background: rgba(212, 168, 83, 0.12);
  box-shadow: var(--shadow-md);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  margin: 1.5rem 0;
  color: var(--text-dark);
  position: relative;
}

.quote-block::before {
  content: '\201C';
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-size: 3rem;
  color: var(--accent-gold);
  opacity: 0.4;
  line-height: 1;
}

.section-dark .quote-block {
  color: var(--text-light);
  background: rgba(212, 168, 83, 0.08);
  box-shadow: var(--shadow-dark);
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.stat-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 1.35rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.section-dark .stat-item,
.section-rich .stat-item {
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-dark);
}

.stat-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-coral);
  display: block;
}

.section-dark .stat-item .num,
.section-rich .stat-item .num {
  color: var(--accent-gold);
}

.stat-item .label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.section-dark .stat-item .label,
.section-rich .stat-item .label {
  color: var(--primary-light);
}

@media (max-width: 900px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .split-layout,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .split-layout.reverse {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-deep);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    box-shadow: var(--shadow-xl);
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .main-nav.open {
    max-height: 400px;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 1rem 1.25rem 1.5rem;
    gap: 0.25rem;
  }

  .main-nav a {
    display: block;
    padding: 0.85rem 1rem;
  }

  .hero {
    min-height: 70vh;
  }

  section {
    padding: 3rem 0;
  }

  .hero-decor {
    display: none;
  }

  .cookie-banner {
    bottom: 0;
    left: 0;
    right: 0;
    border-radius: var(--radius) var(--radius) 0 0;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  .container {
    padding: 0 1rem;
  }

  .header-inner {
    padding: 0.6rem 1rem;
  }

  .logo-link img {
    width: 40px;
    height: 40px;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-buttons .btn {
    width: 100%;
  }

  .flip-card {
    height: 260px;
  }

  .map-wrap iframe {
    height: 280px;
  }

  .footer-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 14px;
  }

  .logo-text {
    font-size: 0.75rem;
  }

  .hero-content {
    padding: 2.5rem 1rem;
  }

  .hero-cards {
    grid-template-columns: 1fr;
  }

  .modular-block {
    padding: 1.25rem;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .success-box {
    padding: 1.5rem;
  }
}
