:root {
  --primary: #2D5F3F;
  --primary-dark: #1F4230;
  --primary-light: #4A8060;
  --secondary: #7BA05B;
  --accent: #F4A261;
  --accent-dark: #E76F51;
  --bg-cream: #FAF8F5;
  --bg-white: #FEFEFE;
  --text-dark: #2A2A2A;
  --text-medium: #5A5A5A;
  --text-light: #8A8A8A;
  --border-light: #E8E4DF;
  
  --shadow-sm: 0 1px 2px rgba(45, 95, 63, 0.04), 0 2px 4px rgba(45, 95, 63, 0.06);
  --shadow-md: 0 2px 4px rgba(45, 95, 63, 0.06), 0 4px 8px rgba(45, 95, 63, 0.08), 0 8px 16px rgba(45, 95, 63, 0.1);
  --shadow-lg: 0 4px 8px rgba(45, 95, 63, 0.08), 0 8px 16px rgba(45, 95, 63, 0.1), 0 16px 32px rgba(45, 95, 63, 0.12);
  
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  
  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(1rem, 2vw, 1.5rem);
  --space-md: clamp(2rem, 4vw, 3rem);
  --space-lg: clamp(3rem, 6vw, 5rem);
  --space-xl: clamp(5rem, 10vw, 8rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Figtree', sans-serif;
  color: var(--text-dark);
  background: var(--bg-cream);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Literata', serif;
  line-height: 1.2;
  font-weight: 700;
  color: var(--primary-dark);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: var(--space-sm);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--space-sm);
}

h3 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  margin-bottom: var(--space-xs);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: var(--space-xs);
}

p {
  margin-bottom: 1.25rem;
  max-width: 70ch;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

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

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: var(--space-sm) 0;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

header.scrolled {
  padding: var(--space-xs) 0;
  box-shadow: var(--shadow-md);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Literata', serif;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--primary);
  transition: all 0.3s ease;
}

.logo:hover {
  color: var(--primary-light);
  transform: translateY(-2px);
}

.logo svg {
  width: clamp(32px, 5vw, 42px);
  height: clamp(32px, 5vw, 42px);
  transition: transform 0.3s ease;
}

.logo:hover svg {
  transform: rotate(5deg);
}

nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--space-md);
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

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

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

.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(--bg-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

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

.lang-btn:hover {
  color: var(--primary);
  background: var(--bg-cream);
}

.lang-btn.active {
  color: var(--primary);
  background: var(--primary);
  color: white;
}

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

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

.mobile-menu-toggle:hover {
  color: var(--primary-light);
  transform: scale(1.1);
}

main {
  margin-top: 80px;
}

.hero {
  position: relative;
  padding: var(--space-xl) 0 var(--space-lg);
  background: linear-gradient(135deg, var(--bg-cream) 0%, #F0EDE7 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(123, 160, 91, 0.08) 0%, transparent 70%);
  border-radius: 48% 52% 45% 55% / 52% 48% 52% 48%;
  animation: blob-float 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(244, 162, 97, 0.06) 0%, transparent 70%);
  border-radius: 52% 48% 55% 45% / 48% 52% 48% 52%;
  animation: blob-float 25s ease-in-out infinite reverse;
}

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-20px, 20px) scale(1.05); }
  50% { transform: translate(20px, -20px) scale(0.95); }
  75% { transform: translate(-10px, -10px) scale(1.02); }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  color: var(--primary-dark);
  margin-bottom: var(--space-sm);
}

.rotating-words {
  color: var(--accent-dark);
  display: inline-block;
  min-width: 280px;
  text-align: left;
}

.word {
  display: none;
  animation: word-rotate 12s infinite;
}

.word.active {
  display: inline-block;
}

@keyframes word-rotate {
  0%, 25% { opacity: 1; transform: translateY(0); }
  30%, 100% { opacity: 0; transform: translateY(-20px); }
}

.hero-text p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--text-medium);
  margin-bottom: var(--space-md);
  max-width: 600px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1.0625rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--bg-white);
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero-image {
  position: relative;
  border-radius: 48% 52% 45% 55% / 52% 48% 52% 48%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

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

.section-wave {
  position: relative;
  margin-top: -1px;
}

.section-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

.features-bento {
  padding: var(--space-lg) 0;
  background: var(--bg-white);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--text-medium);
  margin: 0 auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-sm);
  max-width: 1400px;
  margin: 0 auto;
}

.bento-card {
  background: var(--bg-cream);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(123, 160, 91, 0.06) 0%, transparent 70%);
  border-radius: 45% 55% 52% 48% / 48% 52% 45% 55%;
  transition: all 0.6s ease;
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.bento-card:hover::before {
  top: -30%;
  right: -30%;
  transform: rotate(20deg);
}

.bento-card.large {
  grid-column: span 6;
}

.bento-card.medium {
  grid-column: span 4;
}

.bento-card.small {
  grid-column: span 3;
}

.bento-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: 50% 48% 52% 50% / 52% 50% 48% 52%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: white;
  margin-bottom: var(--space-sm);
  transition: all 0.4s ease;
  box-shadow: var(--shadow-sm);
}

.bento-card:hover .bento-icon {
  transform: rotate(10deg) scale(1.1);
  border-radius: 52% 48% 45% 55% / 48% 52% 55% 45%;
}

.bento-card h3 {
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.bento-card p {
  color: var(--text-medium);
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.bento-card.with-image {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.bento-card-image {
  width: 100%;
  height: 280px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}

.bento-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.bento-card:hover .bento-card-image img {
  transform: scale(1.08);
}

.bento-card-content {
  padding: var(--space-md);
  position: relative;
  z-index: 1;
}

.work-areas {
  padding: var(--space-lg) 0;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-cream) 100%);
  position: relative;
}

.work-areas::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -5%;
  width: 40%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(244, 162, 97, 0.04) 0%, transparent 70%);
  border-radius: 48% 52% 55% 45% / 52% 48% 45% 55%;
  pointer-events: none;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-md);
}

.work-card {
  background: var(--bg-white);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.work-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.work-card:hover::after {
  transform: scaleX(1);
}

.work-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--secondary), var(--primary-light));
  border-radius: 45% 55% 48% 52% / 52% 48% 55% 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
}

.work-card:hover .work-card-icon {
  transform: rotate(-10deg) scale(1.1);
  border-radius: 52% 48% 55% 45% / 45% 55% 48% 52%;
}

.work-card h3 {
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.work-card p {
  color: var(--text-medium);
  margin-bottom: 0;
}

.faq-section {
  padding: var(--space-lg) 0;
  background: var(--bg-white);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background: none;
  border: none;
  text-align: left;
  font-family: 'Literata', serif;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--primary-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  font-size: 1.25rem;
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 var(--space-md);
}

.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 0 var(--space-md) var(--space-sm);
}

.faq-answer p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.cta-section {
  padding: var(--space-xl) 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 48% 52% 45% 55% / 52% 48% 52% 48%;
}

.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: white;
  margin-bottom: var(--space-sm);
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  margin: 0 auto var(--space-md);
  max-width: 700px;
}

.cta-content .btn-primary {
  background: var(--accent);
  color: var(--text-dark);
}

.cta-content .btn-primary:hover {
  background: var(--accent-dark);
  color: white;
}

footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.9);
  padding: var(--space-lg) 0 var(--space-sm);
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.footer-section h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

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

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

.footer-contact-info {
  list-style: none;
}

.footer-contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-info i {
  color: var(--accent);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-legal a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.floating-contact {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
}

.floating-contact-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-contact-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 16px rgba(231, 111, 81, 0.3), 0 16px 32px rgba(231, 111, 81, 0.2);
}

.floating-contact-menu {
  position: absolute;
  bottom: 80px;
  right: 0;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 1rem;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.floating-contact-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.floating-contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
}

.floating-contact-item:last-child {
  margin-bottom: 0;
}

.floating-contact-item:hover {
  background: var(--bg-cream);
  transform: translateX(-4px);
}

.floating-contact-item i {
  color: var(--primary);
  font-size: 1.25rem;
}

.contact-page {
  padding: var(--space-lg) 0;
  background: var(--bg-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.contact-info {
  background: var(--bg-cream);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-info h3 {
  margin-bottom: var(--space-sm);
}

.contact-details {
  list-style: none;
  margin-bottom: var(--space-md);
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: white;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.contact-details li:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}

.contact-details i {
  color: var(--primary);
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.contact-details strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 300px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form-wrapper {
  background: var(--bg-cream);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h3 {
  margin-bottom: var(--space-sm);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: 'Figtree', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  background: white;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(45, 95, 63, 0.1);
}

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

.iti {
  width: 100%;
}

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

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
  cursor: pointer;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
  cursor: pointer;
}

.checkbox-group a {
  color: var(--primary);
  text-decoration: underline;
}

.checkbox-group a:hover {
  color: var(--primary-dark);
}

.page-header {
  padding: var(--space-lg) 0 var(--space-md);
  background: linear-gradient(135deg, var(--bg-cream) 0%, #F0EDE7 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -20%;
  right: 10%;
  width: 40%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(123, 160, 91, 0.06) 0%, transparent 70%);
  border-radius: 48% 52% 45% 55% / 52% 48% 52% 48%;
}

.page-header h1 {
  position: relative;
  z-index: 1;
}

.page-header p {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--text-medium);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.content-section {
  padding: var(--space-lg) 0;
  background: var(--bg-white);
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.content-wrapper h2 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
}

.content-wrapper h3 {
  margin-top: var(--space-sm);
  margin-bottom: 1rem;
}

.content-wrapper ul,
.content-wrapper ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.content-wrapper li {
  margin-bottom: 0.75rem;
  color: var(--text-medium);
  line-height: 1.8;
}

.timeline {
  position: relative;
  padding-left: var(--space-md);
  margin: var(--space-md) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  border-radius: 3px;
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-md);
  padding-left: var(--space-sm);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 8px;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border: 3px solid var(--bg-white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.timeline-item h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.thanks-page {
  padding: var(--space-xl) 0;
  text-align: center;
  background: linear-gradient(135deg, var(--bg-cream) 0%, #F0EDE7 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thanks-content {
  max-width: 700px;
  margin: 0 auto;
}

.thanks-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  margin: 0 auto var(--space-md);
  box-shadow: var(--shadow-lg);
  animation: success-pop 0.6s ease;
}

@keyframes success-pop {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.thanks-content h1 {
  margin-bottom: var(--space-sm);
}

.thanks-content p {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--text-medium);
  margin: 0 auto var(--space-md);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  padding: var(--space-sm) 0;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

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

.cookie-text p {
  margin-bottom: 0;
  color: var(--text-medium);
}

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

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

.cookie-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
}

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm);
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: white;
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.cookie-modal-content h3 {
  margin-bottom: var(--space-sm);
}

.cookie-category {
  padding: 1rem;
  background: var(--bg-cream);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

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

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

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

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

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

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

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

.cookie-category p {
  font-size: 0.9375rem;
  color: var(--text-medium);
  margin-bottom: 0;
}

.cookie-modal-buttons {
  display: flex;
  gap: 1rem;
  margin-top: var(--space-sm);
  flex-wrap: wrap;
}

@media (max-width: 968px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    padding: var(--space-lg) var(--space-md);
    box-shadow: var(--shadow-lg);
    transition: right 0.4s ease;
    align-items: flex-start;
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

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

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-image {
    order: -1;
    border-radius: var(--radius-lg);
  }

  .bento-card.large,
  .bento-card.medium,
  .bento-card.small {
    grid-column: span 12;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .floating-contact {
    bottom: 1rem;
    right: 1rem;
  }

  .floating-contact-toggle {
    width: 56px;
    height: 56px;
  }

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

  .cookie-buttons {
    width: 100%;
  }

  .cookie-buttons .btn {
    flex: 1;
  }
}

@media (max-width: 640px) {
  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    padding-left: var(--space-sm);
  }

  .timeline-item {
    padding-left: 1rem;
  }

  .timeline-item::before {
    left: -22px;
  }
}