:root {
  --bg-dark: #141217;
  --bg-surface: #f2f0eb;
  --ink-main: #c2b8a2;
  --ink-light: #e8e4db;
  --accent-gold: #8c7a5b;
  --accent-terracotta: #d46a35;
  --accent-terracotta-hover: #b85525;
  --border-subtle: rgba(140, 122, 91, 0.2);
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-card: 0 12px 30px rgba(0, 0, 0, 0.5);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --font-primary: 'Manrope', system-ui, -apple-system, sans-serif;
  --transition-fast: 0.2s ease;
  --transition-med: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

body {
  background-color: var(--bg-dark);
  color: var(--ink-main);
  font-family: var(--font-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea {
  font-family: inherit;
  background: transparent;
  border: none;
  color: var(--ink-light);
  outline: none;
}

/* Scroll Progress */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-terracotta));
  z-index: 1001;
  transition: width 0.1s linear;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(20, 18, 23, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: box-shadow var(--transition-fast);
}

.site-header.scrolled {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

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

.brand-logo {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: var(--accent-gold);
  text-transform: uppercase;
}

#menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--ink-main);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

#main-nav {
  display: flex;
  gap: 25px;
}

#main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 0;
  border-bottom: 1px solid transparent;
}

#main-nav a:hover, #main-nav a:focus {
  border-bottom-color: var(--accent-gold);
  color: var(--accent-terracotta);
}

/* Hero */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #000;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  transition: transform 0.1s linear;
}

.hero-lines line, .hero-lines circle {
  stroke: var(--accent-gold);
  fill: var(--ink-light);
}

.hero-lines circle {
  animation: pulse 3s infinite alternate;
}

@keyframes pulse {
  from { opacity: 0.5; r: 4px; }
  to { opacity: 1; r: 7px; }
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  color: var(--bg-surface);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 650px;
  margin-bottom: 40px;
  color: var(--accent-gold);
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  text-align: center;
}

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

.btn.primary:hover, .btn.primary:focus {
  background-color: var(--accent-terracotta-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 106, 53, 0.4);
}

.btn.secondary {
  background: transparent;
  color: var(--accent-gold);
  border: 1px solid var(--accent-gold);
}

.btn.secondary:hover, .btn.secondary:focus {
  background: rgba(140, 122, 91, 0.1);
  transform: translateY(-2px);
}

.btn.tertiary {
  background: var(--bg-surface);
  color: var(--bg-dark);
}

.btn.tertiary:hover, .btn.tertiary:focus {
  background: var(--accent-gold);
  color: #fff;
}

.btn.small {
  padding: 8px 16px;
  font-size: 0.8rem;
}

/* Stats */
.stats-section {
  padding: 80px 0;
  background-color: var(--bg-dark);
  border-top: 1px solid var(--border-subtle);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-terracotta);
  margin-bottom: 5px;
}

/* About */
.about-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #1a181e 100%);
}

.offset-card {
  background-color: var(--bg-surface);
  color: var(--bg-dark);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  position: relative;
  margin-left: 16px;
  margin-bottom: 16px;
  border: 2px solid var(--bg-dark);
  transition: transform var(--transition-med);
}

.offset-card:hover {
  transform: translate(-2px, -2px);
}

.offset-card h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--bg-dark);
}

.offset-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #2a2620;
}

.section-markers {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  opacity: 0.6;
}

.marker-square {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--accent-gold);
}

.marker-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: var(--accent-terracotta);
}

/* Process */
.process-section {
  padding: 100px 0;
  background-color: #111;
}

.process-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--bg-surface);
  margin-bottom: 60px;
}

.process-steps {
  display: grid;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  padding: 30px;
  background: rgba(242, 240, 235, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.step-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-gold);
  text-align: right;
}

.step h3 {
  font-size: 1.5rem;
  color: var(--bg-surface);
  margin-bottom: 10px;
}

.step p {
  color: var(--ink-main);
}

/* Features */
.features-section {
  padding: 100px 0;
  background-color: var(--bg-dark);
}

.features-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--bg-surface);
  margin-bottom: 60px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: #1a181e;
  padding: 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: transform var(--transition-med);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold);
}

.feature-icon {
  width: 40px;
  height: 40px;
  stroke: var(--accent-terracotta);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.3rem;
  color: var(--bg-surface);
  margin-bottom: 15px;
}

.feature-card p {
  color: var(--ink-main);
  font-size: 0.95rem;
}

/* Benefits */
.benefits-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #111 0%, var(--bg-dark) 100%);
}

.benefits-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--bg-surface);
  margin-bottom: 60px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.benefit-card {
  padding: 25px;
  background: transparent;
  border-left: 3px solid var(--accent-gold);
}

.benefit-icon {
  width: 32px;
  height: 32px;
  stroke: var(--accent-gold);
  margin-bottom: 15px;
}

.benefit-card h3 {
  color: var(--bg-surface);
  margin-bottom: 10px;
}

/* Testimonials */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--bg-dark);
}

.testimonials-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--bg-surface);
  margin-bottom: 60px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #1a181e;
  padding: 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.stars {
  color: var(--accent-gold);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimonial-card blockquote {
  font-style: italic;
  color: var(--ink-light);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar {
  width: 40px;
  height: 40px;
  background-color: var(--accent-terracotta);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-info .name {
  font-weight: 600;
  color: var(--bg-surface);
}

.author-info .role {
  font-size: 0.85rem;
  color: var(--accent-gold);
}

/* FAQ */
.faq-section {
  padding: 100px 0;
  background-color: #111;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--bg-surface);
  margin-bottom: 60px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-subtle);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bg-surface);
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent-gold);
  transition: transform var(--transition-fast);
}

.faq-question[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-med);
}

.faq-answer p {
  padding-bottom: 20px;
  color: var(--ink-main);
  line-height: 1.6;
}

.contact-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0a090c 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.2rem;
  color: var(--bg-surface);
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 15px;
  color: var(--ink-main);
}

.contact-info .address, .contact-info .phone {
  color: var(--accent-terracotta);
  font-weight: 500;
}

.contact-info .email {
  color: var(--accent-gold);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--bg-surface);
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--bg-surface);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

.form-group input:focus, .form-group textarea:focus {
  border-bottom-color: var(--accent-terracotta);
}

.form-group input.focus-active, .form-group textarea.focus-active {
  background: rgba(140, 122, 91, 0.05);
  border-bottom-color: var(--accent-gold);
  box-shadow: 0 2px 0 var(--accent-gold);
}

.field-error {
  display: block;
  color: var(--accent-terracotta);
  font-size: 0.85rem;
  margin-top: 5px;
  min-height: 1.2em;
}

.form-actions {
  margin-top: 10px;
}

.cta-banner {
  background-color: var(--accent-terracotta);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.cta-banner p {
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  opacity: 0.9;
}

.cta-banner .btn {
  background: #fff;
  color: var(--accent-terracotta);
}

.cta-banner .btn:hover, .cta-banner .btn:focus {
  background: var(--bg-dark);
  color: #fff;
}

/* Footer */
.site-footer {
  background-color: #0a090c;
  padding: 80px 0 40px;
  border-top: 1px solid var(--border-subtle);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-col h3 {
  color: var(--accent-gold);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-col p, .footer-col a {
  color: var(--ink-main);
  font-size: 0.9rem;
  line-height: 1.8;
  display: block;
  margin-bottom: 8px;
}

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

.footer-col a:hover, .footer-col a:focus {
  color: var(--accent-terracotta);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(20, 18, 23, 0.95);
  border-top: 1px solid var(--accent-gold);
  padding: 20px 0;
  z-index: 999;
  backdrop-filter: blur(5px);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.cookie-content p {
  font-size: 0.9rem;
  max-width: 700px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

/* Legal Pages */
.breadcrumbs {
  padding: 20px 0;
  font-size: 0.9rem;
  color: var(--ink-main);
  border-bottom: 1px solid var(--border-subtle);
}

.breadcrumbs span {
  margin: 0 8px;
  opacity: 0.6;
}

.breadcrumbs .current {
  color: var(--accent-gold);
  font-weight: 600;
}

.legal-page {
  padding: 60px 0 100px;
  background-color: var(--bg-dark);
}

.legal-page h1 {
  font-size: 2.5rem;
  color: var(--bg-surface);
  margin-bottom: 20px;
}

.effective-info {
  font-style: italic;
  color: var(--accent-gold);
  margin-bottom: 40px;
}

.legal-content {
  max-width: 900px;
}

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-subtle);
}

.legal-section h2 {
  font-size: 1.5rem;
  color: var(--accent-terracotta);
  margin-bottom: 15px;
}

.legal-section p {
  margin-bottom: 15px;
  line-height: 1.7;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.cookie-table th, .cookie-table td {
  text-align: left;
  padding: 12px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--ink-main);
}

.cookie-table th {
  color: var(--accent-gold);
  font-weight: 600;
}

/* Thank You Page */
.thank-you-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-dark);
}

.thank-you-card {
  background: #1a181e;
  padding: 60px 40px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--accent-gold);
  text-align: center;
  max-width: 700px;
  box-shadow: var(--shadow-soft);
}

.success-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
  animation: scaleIn 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes scaleIn {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.thank-you-card h1 {
  font-size: 2rem;
  color: var(--bg-surface);
  margin-bottom: 20px;
}

.thank-you-card p {
  margin-bottom: 15px;
  color: var(--ink-main);
}

/* About Specifics */
.about-hero {
  padding: 120px 0 80px;
  background: linear-gradient(180deg, #0a090c 0%, var(--bg-dark) 100%);
  text-align: center;
}

.pill-badge {
  display: inline-block;
  background: rgba(140, 122, 91, 0.1);
  color: var(--accent-gold);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  border: 1px solid var(--accent-gold);
}

.about-visual {
  width: 100%;
  max-width: 600px;
  height: auto;
  margin: 40px 0;
}

.about-hero-text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.2rem;
  color: var(--ink-light);
}

.reversed-about {
  padding: 100px 0;
  background-color: #111;
}

.philosophy-grid, .team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.philosophy-item {
  background: rgba(242, 240, 235, 0.03);
  padding: 25px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.philosophy-item h3 {
  color: var(--accent-terracotta);
  margin-bottom: 10px;
}

.team-card {
  text-align: center;
  background: transparent;
  padding: 20px;
}

.team-initial {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: var(--accent-gold);
  color: var(--bg-dark);
  border-radius: 50%;
  font-weight: 800;
  margin-bottom: 15px;
}

.team-card h4 {
  color: var(--bg-surface);
  margin-bottom: 5px;
}

.team-card .role {
  color: var(--accent-terracotta);
  font-size: 0.9rem;
  margin-bottom: 10px;
}

/* Fade Up Animation */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible, .fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    width: 95%;
  }

  #menu-toggle {
    display: flex;
  }

  #main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #1a181e;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    border-bottom: 1px solid var(--border-subtle);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-fast);
  }

  #main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .offset-card {
    margin-left: 8px;
    padding: 25px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions {
    justify-content: center;
  }

  .step {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .step-number {
    text-align: center;
    margin-bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 2px solid var(--accent-terracotta);
  outline-offset: 4px;
}
.sf-inline-d2fba0f353{width:0%}
