


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

:root {
  
  --copper: #b87333;
  --copper-light: #d4956a;
  --copper-dark: #8b5a2b;
  --gold: #d4af37;
  --gold-light: #f4d160;
  --gold-dark: #b8960c;
  
  
  --charcoal: #1a1a1a;
  --charcoal-light: #2d2d2d;
  --charcoal-dark: #0f0f0f;
  --cream: #f5f0e8;
  --cream-dark: #e8e0d4;
  
  
  --emerald: #50c878;
  --emerald-dark: #3da35d;
  --terracotta: #e2725b;
  --terracotta-dark: #c65d47;
  
  
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  
  
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}


strong, b, p, span, h1, h2, h3, h4, h5, h6, a, li, td, th {
  color: inherit;
}



h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.display-text {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}



.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-normal);
  white-space: nowrap;
  min-height: 52px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--copper) 0%, var(--copper-dark) 100%);
  color: white;
  border-color: var(--copper);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--copper-light) 0%, var(--copper) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184, 115, 51, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.btn-secondary:hover {
  background: var(--charcoal);
  color: white;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--charcoal);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  transform: translateY(-2px);
}

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

.btn-white:hover {
  background: transparent;
  color: white;
  border-color: white;
}

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

.btn-emerald:hover {
  background: var(--emerald-dark);
  transform: translateY(-2px);
}



.glass-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all var(--transition-normal);
}

.glass-card-dark {
  background: rgba(45, 45, 45, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
}

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



.section {
  padding: 5rem 1.5rem;
}

.section-large {
  padding: 8rem 1.5rem;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

header {
  z-index: 10000;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

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



.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.hero-cream {
  background: var(--cream);
  color: var(--charcoal);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(45, 45, 45, 0.85) 100%);
  z-index: 1;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

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

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

.hero-text p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

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

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}



.asymmetric-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

.asymmetric-grid-reversed {
  grid-template-columns: 1.5fr 1fr;
}

.asymmetric-grid-reversed .grid-image {
  order: 2;
}

.asymmetric-grid-reversed .grid-content {
  order: 1;
}

.grid-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}



.service-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  transition: all var(--transition-normal);
  height: 100%;
  color: var(--charcoal-light);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.service-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.service-card-content {
  padding: 1.5rem;
}

.service-card-content h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.service-price {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--copper);
  margin-bottom: 1rem;
}



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

.team-card-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  border: 4px solid var(--gold);
  padding: 4px;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

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

.team-card p {
  color: var(--copper);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-card span {
  font-size: 0.9rem;
  opacity: 0.8;
}



.review-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  color: var(--charcoal-light);
}

.review-stars {
  color: var(--gold);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

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

.review-author-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.review-author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-author-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.review-author-info span {
  font-size: 0.85rem;
  opacity: 0.7;
}



.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-item button,
.faq-question {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
  color: var(--charcoal-dark);
}

.faq-question:hover {
  background: var(--cream-dark);
}

.faq-question span {
  flex: 1;
  padding-right: 1rem;
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--copper);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
  color: var(--charcoal-light);
}

.faq-answer-content {
  padding: 0 1.5rem 1.5rem;
  opacity: 0.8;
}



.contact-form {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
  background: var(--cream);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--copper);
}

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



.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 450px;
  background: var(--charcoal);
  color: white;
  border-radius: 16px;
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cookie-banner h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
}

.cookie-banner p {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

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

.cookie-banner .btn {
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  min-height: 44px;
}



.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: all var(--transition-normal);
}

.header.scrolled {
  padding: 0.75rem 0;
  background: rgba(26, 26, 26, 0.98);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: white;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--copper) 0%, var(--gold) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--copper);
  transition: width var(--transition-fast);
}

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

.nav-cta {
  background: var(--copper);
  color: white !important;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
}

.nav-cta:hover {
  background: var(--copper-light);
}

.nav-cta::after {
  display: none !important;
}


.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  width: 25px;
  height: 2px;
  background: white;
  transition: all var(--transition-fast);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--charcoal);
  z-index: 999;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.mobile-menu.active {
  display: flex !important;
  opacity: 1;
}

.mobile-menu a {
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  font-weight: 600;
}

.mobile-menu-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: transparent;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}



.footer {
  background: var(--charcoal);
  color: white;
  padding: 5rem 1.5rem 2rem;
}

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

.footer-brand p {
  margin-top: 1rem;
  opacity: 0.8;
  max-width: 300px;
}

.footer h4 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.footer ul {
  list-style: none;
}

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

.footer ul a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity var(--transition-fast);
}

.footer ul a:hover {
  opacity: 1;
  color: var(--copper);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  opacity: 0.7;
  font-size: 0.9rem;
}



.text-center {
  text-align: center;
}

.text-copper {
  color: var(--copper);
}

.text-gold {
  color: var(--gold);
}

.text-emerald {
  color: var(--emerald);
}

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

.bg-cream {
  background: var(--cream);
  color: var(--charcoal);
}

.bg-terracotta {
  background: var(--terracotta);
  color: white;
}



@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .asymmetric-grid,
  .asymmetric-grid-reversed {
    grid-template-columns: 1fr;
  }
  
  .asymmetric-grid-reversed .grid-image,
  .asymmetric-grid-reversed .grid-content {
    order: unset;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .section {
    padding: 4rem 1rem;
  }
  
  .section-large {
    padding: 5rem 1rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand {
    align-items: center;
  }
  
  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
  
  .hero {
    min-height: auto;
    padding: 6rem 1rem 4rem;
  }
  
  .display-text {
    font-size: 2.5rem;
  }
  
  .btn {
    width: 100%;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
}



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

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

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.95) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

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

.portfolio-overlay h4 {
  color: white;
  font-size: 1.1rem;
}

.portfolio-overlay p {
  color: var(--gold);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}



.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 40px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--copper) 0%, var(--copper-light) 100%);
}

.process-step:last-child::after {
  display: none;
}

.process-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--copper) 0%, var(--gold) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.process-step h4 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.process-step p {
  font-size: 0.95rem;
  opacity: 0.8;
}

@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-step::after {
    display: none;
  }
}

@media (max-width: 600px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}



.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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