@charset "UTF-8";
:root {
  --terracotta-primary: #C4704B;
  --terracotta-dark: #A85A3A;
  --sage-accent: #8BA888;
  --sage-light: #B5CDA8;
  --cream-bg: #FDF8F3;
  --warm-white: #FFFCF9;
  --charcoal-text: #2D2A26;
  --espresso-brown: #4A3B32;
  --soft-charcoal: #5C5550;
  --glass-overlay: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.3);
  --shadow-soft: 0 4px 20px rgba(45, 42, 38, 0.08);
  --shadow-medium: 0 8px 30px rgba(45, 42, 38, 0.12);
  --shadow-strong: 0 15px 50px rgba(45, 42, 38, 0.18);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  --font-display: 'Clash Display', 'Inter', -apple-system, sans-serif;
  --font-serif: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-body);
  color: var(--charcoal-text);
  background-color: var(--warm-white);
  line-height: 1.6;
  overflow-x: hidden;
}
strong, b, p {
  color: inherit;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--espresso-brown);
}
a {
  color: var(--terracotta-primary);
  text-decoration: none;
  transition: var(--transition-smooth);
}
a:hover {
  color: var(--terracotta-dark);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.section-padding {
  padding: 5rem 1.5rem;
}
@media (min-width: 768px) {
  .section-padding {
    padding: 7rem 2rem;
  }
}
@media (min-width: 1024px) {
  .section-padding {
    padding: 9rem 3rem;
  }
}
.container-custom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .container-custom {
    padding: 0 2rem;
  }
}
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--cream-bg) 0%, #F5EDE6 100%);
  overflow: hidden;
}
.hero-background {
  position: absolute;
  inset: 0;
  background-image: url('../assets/img/hero-furniture-workshop.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(253, 248, 243, 0.7) 0%, rgba(253, 248, 243, 0.9) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 3rem 0;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--espresso-brown);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-title span {
  display: block;
  color: var(--terracotta-primary);
}
.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: var(--soft-charcoal);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: var(--terracotta-primary);
  color: white;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition-bounce);
  white-space: nowrap;
  gap: 0.5rem;
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(196, 112, 75, 0.3);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--espresso-brown);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  border: 2px solid var(--espresso-brown);
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}
.btn-secondary:hover {
  background: var(--espresso-brown);
  color: white;
}
.glass-card {
  background: var(--glass-overlay);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}
.glass-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-5px);
}
.service-card {
  position: relative;
  background: white;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: var(--transition-smooth);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--terracotta-primary), var(--sage-accent));
  transform: scaleX(0);
  transition: var(--transition-smooth);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}
.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--terracotta-primary), var(--terracotta-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}
.service-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--espresso-brown);
}
.service-description {
  color: var(--soft-charcoal);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--terracotta-primary);
  margin-bottom: 1.5rem;
}
.service-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--soft-charcoal);
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--cream-bg);
  border-radius: 16px;
  transition: var(--transition-smooth);
}
.feature-item:hover {
  background: white;
  box-shadow: var(--shadow-soft);
}
.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--sage-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--espresso-brown);
}
.feature-text {
  font-size: 0.9rem;
  color: var(--soft-charcoal);
}
.testimonial-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: var(--transition-smooth);
}
.testimonial-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-medium);
}
.testimonial-quote {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 4rem;
  color: var(--sage-light);
  opacity: 0.5;
  font-family: var(--font-serif);
  line-height: 1;
}
.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--soft-charcoal);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--sage-accent);
}
.testimonial-name {
  font-weight: 600;
  color: var(--espresso-brown);
  font-size: 1.1rem;
}
.testimonial-location {
  font-size: 0.85rem;
  color: var(--soft-charcoal);
}
.team-card {
  position: relative;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}
.team-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.team-info {
  padding: 1.5rem;
  text-align: center;
}
.team-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--espresso-brown);
  margin-bottom: 0.25rem;
}
.team-role {
  color: var(--terracotta-primary);
  font-weight: 500;
  font-size: 0.95rem;
}
.portfolio-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-smooth);
}
.portfolio-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-strong);
}
.portfolio-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(74, 59, 50, 0.9) 0%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition-smooth);
}
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}
.portfolio-title {
  color: white;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.portfolio-category {
  color: var(--sage-light);
  font-size: 0.9rem;
}
.faq-item {
  background: white;
  border-radius: 16px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--espresso-brown);
  text-align: left;
  transition: var(--transition-smooth);
}
.faq-question:hover {
  color: var(--terracotta-primary);
}
.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--cream-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: var(--transition-smooth);
}
.faq-item.active .faq-icon {
  background: var(--terracotta-primary);
  color: white;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
  max-height: 500px;
}
.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  color: var(--soft-charcoal);
  line-height: 1.7;
}
.contact-form-wrapper {
  background: white;
  border-radius: 24px;
  padding: 3rem 2rem;
  box-shadow: var(--shadow-strong);
}
.form-field {
  margin-bottom: 1.5rem;
}
.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--espresso-brown);
  font-size: 0.95rem;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #E8E2DD;
  border-radius: 12px;
  font-size: 1rem;
  color: var(--charcoal-text);
  background: var(--cream-bg);
  transition: var(--transition-smooth);
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--terracotta-primary);
  background: white;
  box-shadow: 0 0 0 4px rgba(196, 112, 75, 0.1);
}
.form-textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--terracotta-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-label {
  font-size: 0.85rem;
  color: var(--soft-charcoal);
  margin-bottom: 0.25rem;
}
.contact-value {
  font-weight: 600;
  color: var(--espresso-brown);
  font-size: 1.05rem;
}
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 500px;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-strong);
  z-index: 9999;
  display: block;
}
@media (max-width: 768px) {
  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    max-width: none;
    padding: 1.5rem;
  }
}
.cookie-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--espresso-brown);
}
.cookie-text {
  font-size: 0.9rem;
  color: var(--soft-charcoal);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.cookie-btn {
  flex: 1;
  min-width: 120px;
  padding: 0.875rem 1.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}
.cookie-accept {
  background: var(--terracotta-primary);
  color: white;
}
.cookie-accept:hover {
  background: var(--terracotta-dark);
}
.cookie-decline {
  background: var(--cream-bg);
  color: var(--espresso-brown);
  border: 2px solid #E8E2DD;
}
.cookie-decline:hover {
  background: #E8E2DD;
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 252, 249, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232, 226, 221, 0.5);
  transition: var(--transition-smooth);
}
.navbar-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 768px) {
  .navbar-container {
    padding: 1rem 2rem;
  }
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--espresso-brown);
}
.logo-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--terracotta-primary), var(--sage-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--espresso-brown);
}
@media (max-width: 767px) {
  .logo-text {
    display: none;
  }
}
.nav-menu {
  display: none;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
  }
}
.nav-link {
  font-weight: 500;
  color: var(--soft-charcoal);
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition-smooth);
}
.nav-link:hover,
.nav-link.active {
  color: var(--terracotta-primary);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--terracotta-primary);
  transition: var(--transition-smooth);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-phone {
  display: none;
  font-weight: 600;
  color: var(--espresso-brown);
  text-decoration: none;
}
@media (min-width: 768px) {
  .nav-phone {
    display: flex;
  }
}
.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--espresso-brown);
  transition: var(--transition-smooth);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--warm-white);
  z-index: 1001;
  padding: 2rem;
  display: none;
  flex-direction: column;
}
.mobile-menu.active {
  display: flex;
}
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--espresso-brown);
}
.mobile-menu-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu-nav li {
  margin-bottom: 1.5rem;
}
.mobile-menu-nav a {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--espresso-brown);
  text-decoration: none;
  transition: var(--transition-smooth);
}
.mobile-menu-nav a:hover {
  color: var(--terracotta-primary);
}
.footer-section {
  background: var(--espresso-brown);
  color: var(--cream-bg);
  padding: 4rem 1.5rem 2rem;
}
@media (min-width: 768px) {
  .footer-section {
    padding: 5rem 2rem 2.5rem;
  }
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1280px;
  margin: 0 auto 3rem;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
  }
}
.footer-brand {
  max-width: 350px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  text-decoration: none;
  color: var(--cream-bg);
}
.footer-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--terracotta-primary), var(--sage-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.footer-tagline {
  font-size: 0.95rem;
  color: rgba(253, 248, 243, 0.7);
  line-height: 1.6;
}
.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: white;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.75rem;
}
.footer-links a {
  color: rgba(253, 248, 243, 0.7);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}
.footer-links a:hover {
  color: var(--sage-light);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(253, 248, 243, 0.7);
  font-size: 0.95rem;
}
.footer-contact-item span {
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(253, 248, 243, 0.1);
  padding-top: 2rem;
  text-align: center;
}
.footer-copyright {
  color: rgba(253, 248, 243, 0.5);
  font-size: 0.85rem;
}
.page-header {
  background: linear-gradient(135deg, var(--cream-bg) 0%, #F5EDE6 100%);
  padding: 10rem 1.5rem 4rem;
  text-align: center;
}
@media (min-width: 768px) {
  .page-header {
    padding: 12rem 2rem 5rem;
  }
}
.page-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--espresso-brown);
  margin-bottom: 1rem;
}
.page-subtitle {
  font-size: 1.1rem;
  color: var(--soft-charcoal);
  max-width: 600px;
  margin: 0 auto;
}
.process-step {
  position: relative;
  padding-left: 3rem;
}
.process-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--terracotta-primary), var(--sage-accent));
}
.process-step:last-child::before {
  height: 50%;
}
.step-number {
  position: absolute;
  left: -1.25rem;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--terracotta-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}
.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--espresso-brown);
  margin-bottom: 0.5rem;
}
.step-description {
  color: var(--soft-charcoal);
  font-size: 0.95rem;
  line-height: 1.6;
}
.gradient-text {
  background: linear-gradient(135deg, var(--terracotta-primary), var(--sage-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-terracotta {
  color: var(--terracotta-primary);
}
.text-sage {
  color: var(--sage-accent);
}
.bg-terracotta {
  background-color: var(--terracotta-primary);
}
.bg-sage {
  background-color: var(--sage-accent);
}
.bg-cream {
  background-color: var(--cream-bg);
}
.border-terracotta {
  border-color: var(--terracotta-primary);
}
.border-radius-large {
  border-radius: 24px;
}
@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .hide-desktop {
    display: none !important;
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}
.success-message {
  display: none;
  background: linear-gradient(135deg, var(--sage-accent), #7A9A6D);
  color: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
}
.success-message.show {
  display: block;
  animation: fadeInUp 0.5s ease;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.map-container {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
@media (max-width: 767px) {
  .map-container {
    height: 300px;
    border-radius: 16px;
  }
}
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-title {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--espresso-brown);
}
.legal-text {
  color: var(--soft-charcoal);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.legal-text:last-child {
  margin-bottom: 0;
}
.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.thank-you-content {
  max-width: 600px;
}
.thank-you-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-accent), #7A9A6D);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 2rem;
}
.thank-you-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  color: var(--espresso-brown);
}
.thank-you-text {
  font-size: 1.1rem;
  color: var(--soft-charcoal);
  margin-bottom: 2rem;
}