@charset "UTF-8";

:root {
  --ochre-primary: #C4882F;
  --ochre-dark: #A66B1E;
  --sage-fresh: #87A878;
  --sage-light: #A8C49A;
  --terracotta-warm: #C4633A;
  --terracotta-dark: #A84A28;
  --cream-light: #FDF8F3;
  --charcoal-dark: #1A1A1A;
  --metallic-gold: #D4AF37;
  --glass-white: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.25);
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.1);
  --shadow-brutalist: 4px 4px 0px var(--charcoal-dark);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: var(--cream-light);
  color: var(--charcoal-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

strong, p, b {
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.2;
}


.navbar {
  background: var(--glass-white);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-container {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--ochre-primary) 0%, var(--terracotta-warm) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-brutalist);
}

.logo-icon {
  font-size: 1.5rem;
  color: white;
}

.brand-text {
  font-family: 'Georgia', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal-dark);
  text-decoration: none;
  white-space: nowrap;
}

.brand-text span {
  color: var(--ochre-primary);
}

.navbar-menu {
  justify-content: flex-end;
}

.navbar-item {
  font-weight: 500;
  color: var(--charcoal-dark);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ochre-primary), var(--terracotta-warm));
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.navbar-item:hover::after,
.navbar-item.active::after {
  width: 60%;
}

.navbar-item:hover {
  color: var(--ochre-primary);
}

.navbar-burger {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.navbar-burger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--charcoal-dark);
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}


.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, 
    var(--cream-light) 0%, 
    rgba(196, 136, 47, 0.08) 50%, 
    rgba(135, 168, 120, 0.08) 100%);
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: var(--ochre-primary);
  top: -200px;
  right: -100px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: var(--sage-fresh);
  bottom: -100px;
  left: -100px;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: var(--terracotta-warm);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--glass-white);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ochre-primary);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--ochre-primary), var(--terracotta-warm));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #555;
  max-width: 600px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}


.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--ochre-primary), var(--ochre-dark));
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-brutalist);
  white-space: nowrap;
  min-height: 52px;
}

.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px var(--charcoal-dark);
  color: white;
}

.btn-primary .icon {
  font-size: 1.25rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: white;
  color: var(--charcoal-dark);
  font-weight: 600;
  border: 3px solid var(--charcoal-dark);
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  min-height: 52px;
}

.btn-secondary:hover {
  background: var(--cream-light);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px var(--charcoal-dark);
  color: var(--charcoal-dark);
}

.hero-image-container {
  position: relative;
  animation: fadeIn 1s ease 0.4s both;
}

.contact-form-container {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}

.hero-image-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-image-frame::before {
  content: '';
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 3px solid var(--charcoal-dark);
  border-radius: 16px;
  z-index: -1;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
}


.page-header-section {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, 
    var(--cream-light) 0%, 
    rgba(196, 136, 47, 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.page-header-content {
  text-align: center;
}

.page-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  animation: fadeInUp 0.6s ease;
}

.page-subtitle {
  font-size: 1.125rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp 0.6s ease 0.2s both;
}


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

.section-dark {
  background: var(--charcoal-dark);
  color: white;
}

.section-accent {
  background: linear-gradient(135deg, rgba(196, 136, 47, 0.1), rgba(135, 168, 120, 0.1));
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: #666;
  max-width: 700px;
  margin: 0 auto 3rem;
}


.service-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ochre-primary), var(--sage-fresh), var(--terracotta-warm));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--ochre-primary), var(--terracotta-warm));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-description {
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ochre-primary);
  margin-bottom: 1rem;
}

.service-price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: #999;
}


.team-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-info {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--ochre-primary);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.team-bio {
  color: #666;
  font-size: 0.9rem;
}


.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--ochre-primary);
  opacity: 0.3;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
}

.testimonial-text {
  font-style: italic;
  color: #555;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--ochre-primary);
}

.testimonial-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.testimonial-location {
  font-size: 0.85rem;
  color: #888;
}


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

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-title {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
}


.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(196, 136, 47, 0.05);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--ochre-primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  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: 300px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  color: #666;
  line-height: 1.7;
}


.contact-form-container {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
}

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

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

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--ochre-primary);
  box-shadow: 0 0 0 4px rgba(196, 136, 47, 0.1);
}

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


.contact-info-card {
  background: var(--charcoal-dark);
  color: white;
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--ochre-primary), var(--terracotta-warm));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-content h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-info-content p {
  color: #aaa;
  font-size: 0.95rem;
}

.contact-info-content a {
  color: var(--sage-fresh);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-content a:hover {
  color: var(--ochre-primary);
}


.map-container {
  border-radius: 12px;
  overflow: hidden;
  margin-top: 2rem;
}

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


.footer-section {
  background: var(--charcoal-dark);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-brand {
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo .brand-text {
  color: var(--cream-light);
}

.footer-tagline {
  color: #888;
  font-size: 0.95rem;
}

.footer-title {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--ochre-primary), var(--terracotta-warm));
  border-radius: 2px;
}

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

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

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 2rem;
  margin-top: 3rem;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
}


.cookie-consent-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 450px;
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  animation: slideUp 0.5s ease;
}

.cookie-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.cookie-content p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

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

.cookie-btn {
  flex: 1;
  min-width: 120px;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, var(--ochre-primary), var(--ochre-dark));
  color: white;
  border: none;
}

.cookie-btn-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196, 136, 47, 0.3);
}

.cookie-btn-decline {
  background: transparent;
  color: #666;
  border: 2px solid #ddd;
}

.cookie-btn-decline:hover {
  border-color: #999;
  color: #333;
}


.thank-you-section {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--sage-fresh), var(--ochre-primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 2rem;
  animation: bounceIn 0.6s ease;
}

.thank-you-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.thank-you-message {
  font-size: 1.25rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 2rem;
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}


.paint-splatter {
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--ochre-primary);
  border-radius: 50% 0 50% 50%;
  animation: splatter 2s ease infinite;
}

@keyframes splatter {
  0% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.5) rotate(180deg); }
  100% { transform: scale(1) rotate(360deg); }
}


.glass-card {
  background: var(--glass-white);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 2rem;
}


.brutalist-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.brutalist-item {
  background: white;
  border: 3px solid var(--charcoal-dark);
  border-radius: 0;
  padding: 1.5rem;
  box-shadow: 6px 6px 0px var(--charcoal-dark);
  transition: all 0.3s ease;
}

.brutalist-item:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0px var(--charcoal-dark);
}


@media screen and (max-width: 1023px) {
  .navbar-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: none;
  }

  .navbar-menu.is-active {
    display: flex;
  }

  .navbar-item {
    padding: 1rem;
    border-bottom: 1px solid #eee;
  }

  .hero-section {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero-image-container {
    margin-top: 2rem;
  }

  .section {
    padding: 3rem 0;
  }

  .cookie-consent-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}

@media screen and (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
  }

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

  .footer-section {
    padding: 3rem 0 1.5rem;
  }

  .contact-info-card {
    margin-top: 2rem;
  }
}


.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.has-text-primary { color: var(--ochre-primary); }
.has-text-secondary { color: var(--sage-fresh); }
.has-text-tertiary { color: var(--terracotta-warm); }

.text-white { color: white; }
.text-dark { color: var(--charcoal-dark); }

.bg-primary { background-color: var(--ochre-primary); }
.bg-secondary { background-color: var(--sage-fresh); }
.bg-tertiary { background-color: var(--terracotta-warm); }
.bg-dark { background-color: var(--charcoal-dark); }
.bg-light { background-color: var(--cream-light); }


.is-loading {
  position: relative;
  pointer-events: none;
}

.is-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid var(--ochre-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}