:root {
  --paper-white: #faf8f5;
  --paper-cream: #f5f2ed;
  --ink-black: #1a1614;
  --ink-soft: #3d3835;
  --accent-rust: #a85e3f;
  --accent-rust-light: #c87d5e;
  --accent-warm: #d4a574;
  --border-subtle: #e5e0d8;
  --shadow-warm: rgba(138, 98, 78, 0.08);
  --shadow-warm-md: rgba(138, 98, 78, 0.12);
  --shadow-warm-lg: rgba(138, 98, 78, 0.16);
  --glass-bg: rgba(250, 248, 245, 0.85);
  --glass-border: rgba(212, 165, 116, 0.2);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Urbanist', sans-serif;
  background: var(--paper-white);
  color: var(--ink-black);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(138, 98, 78, 0.015) 2px, rgba(138, 98, 78, 0.015) 4px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

.site-wrapper {
  position: relative;
  z-index: 2;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink-black);
  letter-spacing: -0.02em;
}

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

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

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

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  margin-bottom: 0.875rem;
}

p {
  margin-bottom: 1.25rem;
  color: var(--ink-soft);
}

a {
  color: var(--accent-rust);
  text-decoration: none;
  transition: all 0.3s ease;
}

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

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

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 
    0 2px 8px var(--shadow-warm),
    0 8px 24px rgba(138, 98, 78, 0.04);
  transition: all 0.4s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink-black);
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo:hover {
  color: var(--accent-rust);
  transform: translateY(-1px);
}

.logo img {
  height: 42px;
  width: auto;
  transition: all 0.3s ease;
}

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

nav {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

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

.nav-links a:hover {
  color: var(--accent-rust);
}

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

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--paper-cream);
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
}

.lang-btn {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  color: var(--accent-rust);
  background: var(--paper-white);
}

.lang-btn.active {
  color: var(--accent-rust);
  background: var(--paper-white);
  box-shadow: 0 1px 3px var(--shadow-warm);
}

.lang-divider {
  color: var(--border-subtle);
  font-weight: 300;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--ink-black);
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  color: var(--accent-rust);
}

@media (max-width: 968px) {
  .header-content {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

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

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: var(--paper-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 0;
    box-shadow: -4px 0 24px var(--shadow-warm-lg);
    transition: right 0.4s ease;
    overflow-y: auto;
  }

  nav.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 0;
    width: 100%;
    align-items: flex-start;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 1.25rem 0;
    font-size: 1.1rem;
  }

  .lang-switcher {
    margin-top: 2rem;
  }

  .mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(26, 22, 20, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1;
  }

  .mobile-menu-overlay.active {
    display: block;
  }

  nav {
    z-index: 999;
  }
}

.hero {
  display: grid;
  grid-template-columns: 45fr 55fr;
  min-height: 85vh;
  align-items: center;
  gap: 4rem;
  padding: 4rem 0;
  position: relative;
}

.hero-content {
  padding-right: 2rem;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-rust);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--paper-cream);
  border-radius: 6px;
  border: 1px solid var(--border-subtle);
}

.hero h1 {
  margin-bottom: 1.75rem;
  line-height: 1.1;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: var(--ink-black);
  color: var(--paper-white);
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 
    0 4px 12px var(--shadow-warm-md),
    0 8px 24px rgba(138, 98, 78, 0.08);
  border: 2px solid var(--ink-black);
}

.hero-cta:hover {
  background: var(--paper-white);
  color: var(--ink-black);
  transform: translateY(-2px);
  box-shadow: 
    0 8px 20px var(--shadow-warm-md),
    0 16px 40px rgba(138, 98, 78, 0.12);
}

.hero-image {
  position: relative;
  height: 600px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 
    0 8px 24px var(--shadow-warm-md),
    0 16px 48px rgba(138, 98, 78, 0.1),
    inset 0 0 0 1px var(--glass-border);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

@media (max-width: 968px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto;
    padding: 3rem 0;
  }

  .hero-content {
    padding-right: 0;
  }

  .hero-image {
    height: 400px;
  }

  .hero-description {
    font-size: 1.1rem;
  }
}

.section {
  padding: 6rem 0;
  position: relative;
}

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

.section-eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-rust);
  margin-bottom: 1rem;
}

.section-title {
  margin-bottom: 1.5rem;
}

.section-description {
  font-size: 1.15rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

.accordion-section {
  max-width: 1000px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--paper-white);
  border: 2px solid var(--border-subtle);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 2px 8px var(--shadow-warm);
}

.accordion-item:hover {
  border-color: var(--accent-warm);
  box-shadow: 
    0 4px 16px var(--shadow-warm-md),
    0 8px 32px rgba(138, 98, 78, 0.08);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 2.5rem;
  cursor: pointer;
  background: var(--paper-cream);
  transition: all 0.3s ease;
  user-select: none;
}

.accordion-header:hover {
  background: var(--paper-white);
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

.accordion-icon {
  font-size: 1.5rem;
  color: var(--accent-rust);
  transition: transform 0.4s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.accordion-item.active .accordion-content {
  max-height: 2000px;
  padding: 2rem 2.5rem;
}

.accordion-content p:last-child {
  margin-bottom: 0;
}

.accordion-content ul {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.accordion-content li {
  margin-bottom: 0.75rem;
  color: var(--ink-soft);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .accordion-header {
    padding: 1.5rem;
  }

  .accordion-header h3 {
    font-size: 1.25rem;
  }

  .accordion-item.active .accordion-content {
    padding: 1.5rem;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  box-shadow: 
    0 4px 12px var(--shadow-warm),
    0 8px 24px rgba(138, 98, 78, 0.06);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 8px 24px var(--shadow-warm-md),
    0 16px 48px rgba(138, 98, 78, 0.1);
  border-color: var(--accent-warm);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--paper-cream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent-rust);
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--accent-rust);
  color: var(--paper-white);
  transform: scale(1.05);
}

.service-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-card p {
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 2rem;
  }
}

.glossary-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.glossary-term {
  background: var(--paper-white);
  border: 2px solid var(--border-subtle);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px var(--shadow-warm);
}

.glossary-term:hover {
  border-color: var(--accent-warm);
  box-shadow: 
    0 4px 16px var(--shadow-warm-md),
    0 8px 32px rgba(138, 98, 78, 0.08);
}

.glossary-term h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--accent-rust);
}

.glossary-term p {
  margin-bottom: 0;
  line-height: 1.7;
}

.contact-section {
  background: var(--paper-cream);
  border-radius: 20px;
  padding: 4rem;
  margin: 4rem 0;
  box-shadow: 
    0 8px 24px var(--shadow-warm-md),
    0 16px 48px rgba(138, 98, 78, 0.08);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--paper-white);
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

.contact-item:hover {
  border-color: var(--accent-warm);
  box-shadow: 0 4px 12px var(--shadow-warm);
  transform: translateX(4px);
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: var(--paper-cream);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent-rust);
  flex-shrink: 0;
  border: 1px solid var(--border-subtle);
}

.contact-item-content h4 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-rust);
  margin-bottom: 0.25rem;
}

.contact-item-content p {
  margin: 0;
  color: var(--ink-black);
  font-weight: 500;
}

.contact-item-content a {
  color: var(--ink-black);
  font-weight: 500;
}

.contact-item-content a:hover {
  color: var(--accent-rust);
}

.contact-form-wrapper {
  background: var(--paper-white);
  padding: 2.5rem;
  border-radius: 16px;
  border: 2px solid var(--border-subtle);
  box-shadow: 0 4px 16px var(--shadow-warm);
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--ink-black);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border-subtle);
  border-radius: 10px;
  font-family: 'Urbanist', sans-serif;
  font-size: 1rem;
  background: var(--paper-white);
  color: var(--ink-black);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-rust);
  box-shadow: 0 0 0 3px rgba(168, 94, 63, 0.1);
}

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

.form-checkbox {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 0.25rem;
  cursor: pointer;
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink-soft);
  cursor: pointer;
}

.form-checkbox a {
  color: var(--accent-rust);
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  padding: 1.25rem;
  background: var(--ink-black);
  color: var(--paper-white);
  font-weight: 600;
  font-size: 1.05rem;
  border: 2px solid var(--ink-black);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px var(--shadow-warm-md);
}

.submit-btn:hover {
  background: var(--paper-white);
  color: var(--ink-black);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--shadow-warm-md);
}

.submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 968px) {
  .contact-section {
    padding: 2.5rem 1.5rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }
}

.map-container {
  margin-top: 3rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 
    0 8px 24px var(--shadow-warm-md),
    0 16px 48px rgba(138, 98, 78, 0.08);
  border: 2px solid var(--border-subtle);
}

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

.about-preview {
  background: var(--paper-cream);
  padding: 5rem 0;
}

.about-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-content h2 {
  margin-bottom: 2rem;
}

.about-content p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.methodology-intro {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
}

.methodology-intro p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--ink-soft);
}

.page-hero {
  padding: 6rem 0 4rem;
  text-align: center;
  background: var(--paper-cream);
  margin-bottom: 4rem;
}

.page-hero h1 {
  margin-bottom: 1.5rem;
}

.page-hero p {
  font-size: 1.25rem;
  color: var(--ink-soft);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .page-hero {
    padding: 4rem 0 3rem;
  }
}

.thanks-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}

.thanks-content {
  max-width: 600px;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  background: var(--paper-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--accent-rust);
  margin: 0 auto 2rem;
  border: 2px solid var(--border-subtle);
}

.thanks-content h1 {
  margin-bottom: 1.5rem;
}

.thanks-content p {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}

.back-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--ink-black);
  color: var(--paper-white);
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px var(--shadow-warm-md);
}

.back-home-btn:hover {
  background: var(--accent-rust);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px var(--shadow-warm-md);
}

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

.legal-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.legal-content h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.legal-content p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.legal-content ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.legal-content strong {
  color: var(--ink-black);
  font-weight: 600;
}

.last-updated {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--paper-cream);
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  font-weight: 600;
  color: var(--accent-rust);
  margin-bottom: 2rem;
}

footer {
  background: var(--ink-black);
  color: var(--paper-cream);
  padding: 4rem 0 2rem;
  margin-top: 6rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  color: var(--paper-white);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.footer-brand p {
  color: var(--paper-cream);
  opacity: 0.8;
  line-height: 1.7;
}

.footer-links h4 {
  color: var(--paper-white);
  margin-bottom: 1.25rem;
  font-size: 1.1rem;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--paper-cream);
  opacity: 0.8;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent-warm);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(250, 248, 245, 0.1);
  text-align: center;
  color: var(--paper-cream);
  opacity: 0.7;
  font-size: 0.9rem;
}

.footer-bottom p {
  color: var(--paper-cream);
}

@media (max-width: 968px) {
  footer {
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  border-top: 2px solid var(--glass-border);
  padding: 2rem;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 
    0 -4px 24px var(--shadow-warm-md),
    0 -8px 48px rgba(138, 98, 78, 0.1);
}

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

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-text {
  flex: 1;
}

.cookie-text p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.cookie-text a {
  color: var(--accent-rust);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.875rem 1.75rem;
  border: 2px solid var(--ink-black);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: var(--ink-black);
  color: var(--paper-white);
}

.cookie-btn-accept:hover {
  background: var(--accent-rust);
  border-color: var(--accent-rust);
  transform: translateY(-2px);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--ink-black);
}

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

.cookie-btn-customize {
  background: transparent;
  color: var(--ink-black);
}

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

@media (max-width: 968px) {
  .cookie-banner {
    padding: 1.5rem;
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }
}

.cookie-settings-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 22, 20, 0.8);
  backdrop-filter: blur(8px);
  z-index: 10001;
  padding: 2rem;
  overflow-y: auto;
}

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

.cookie-settings-content {
  background: var(--paper-white);
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  padding: 3rem;
  box-shadow: 
    0 20px 60px var(--shadow-warm-lg),
    0 40px 100px rgba(138, 98, 78, 0.2);
}

.cookie-settings-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin-bottom: 2rem;
}

.cookie-settings-header h3 {
  margin: 0;
  font-size: 1.75rem;
}

.cookie-settings-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 0.25rem;
  transition: all 0.3s ease;
}

.cookie-settings-close:hover {
  color: var(--accent-rust);
}

.cookie-category {
  padding: 1.5rem;
  background: var(--paper-cream);
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid var(--border-subtle);
}

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

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

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.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: var(--border-subtle);
  border-radius: 26px;
  transition: all 0.3s ease;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--paper-white);
  border-radius: 50%;
  transition: all 0.3s ease;
}

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

.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 {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

.cookie-settings-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.cookie-settings-actions button {
  flex: 1;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-save-btn {
  background: var(--ink-black);
  color: var(--paper-white);
  border: 2px solid var(--ink-black);
}

.cookie-save-btn:hover {
  background: var(--accent-rust);
  border-color: var(--accent-rust);
}

@media (max-width: 768px) {
  .cookie-settings-content {
    padding: 2rem;
  }

  .cookie-settings-actions {
    flex-direction: column;
  }
}

.iti {
  width: 100%;
}

#phone {
  width: 100%;
}