@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --charcoal-dark: #1a1a1a;
  --charcoal-medium: #2d2d2d;
  --burgundy-primary: #722F37;
  --burgundy-dark: #5a252c;
  --gold-accent: #D4AF37;
  --emerald-accent: #50C878;
  --white-cream: #faf9f7;
  --white-soft: #ffffff;
  --gray-light: #f5f4f2;
  --gray-medium: #e5e4e2;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-light: #faf9f7;
  --gradient-primary: linear-gradient(135deg, var(--burgundy-primary) 0%, var(--charcoal-dark) 100%);
  --gradient-gold: linear-gradient(135deg, var(--gold-accent) 0%, #b8960a 100%);
  --gradient-subtle: linear-gradient(180deg, var(--white-cream) 0%, var(--gray-light) 100%);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.4);
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 16px 48px rgba(0, 0, 0, 0.16);
  --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);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--white-cream);
  overflow-x: hidden;
}

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

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

a {
  color: var(--burgundy-primary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--burgundy-dark);
}

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

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

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: clamp(80px, 10vw, 160px) 0;
}

strong, b {
  color: inherit;
}


.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  box-shadow: var(--shadow-medium);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 32px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-symbol {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-soft);
  font-size: 24px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal-dark);
  letter-spacing: -0.02em;
}

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

.logo-tagline {
  font-size: 0.7rem;
  color: var(--burgundy-primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 4px;
}

.nav-link {
  padding: 12px 20px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--charcoal-dark);
  background: var(--gray-light);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--burgundy-primary);
  border-radius: 50%;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  background: none;
  border: none;
  cursor: pointer;
}

.toggle-bar {
  width: 28px;
  height: 2px;
  background: var(--charcoal-dark);
  border-radius: 2px;
  transition: var(--transition-smooth);
}


.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--charcoal-dark);
}

.hero-background {
  position: absolute;
  inset: 0;
  background-image: url('../media/hero-boot-display.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.6;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.92) 0%, rgba(114, 47, 55, 0.85) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  color: var(--gold-accent);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  color: var(--white-soft);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-title-accent {
  color: var(--gold-accent);
  position: relative;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 48px;
  max-width: 560px;
}

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


.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: var(--gradient-primary);
  color: var(--white-soft);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-bounce);
  box-shadow: 0 4px 20px rgba(114, 47, 55, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(114, 47, 55, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  background: transparent;
  color: var(--white-soft);
  font-size: 1rem;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white-soft);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--charcoal-dark);
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

.btn-gold:hover {
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.45);
}


.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.section-label {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(114, 47, 55, 0.1);
  color: var(--burgundy-primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 20px;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
}


.features-showcase {
  background: var(--white-soft);
}

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

.feature-card {
  background: var(--white-soft);
  border: 1px solid var(--gray-medium);
  border-radius: 20px;
  padding: 40px 32px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: transparent;
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
}

.feature-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.feature-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}


.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: var(--shadow-soft);
}


.services-section {
  background: var(--gray-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--white-soft);
  border-radius: 24px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.service-image-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.service-content {
  padding: 32px;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.service-title {
  font-size: 1.5rem;
}

.service-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--burgundy-primary);
}

.service-description {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  margin-bottom: 24px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.service-feature-icon {
  width: 20px;
  height: 20px;
  background: var(--emerald-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-soft);
  font-size: 12px;
  flex-shrink: 0;
}


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

.testimonials-section h2 {
  color: var(--white-soft);
}

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: var(--gold-accent);
  font-size: 20px;
}

.testimonial-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
}

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

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-accent);
}

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

.author-name {
  font-weight: 600;
  color: var(--white-soft);
  font-size: 1rem;
}

.author-location {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}


.gallery-section {
  background: var(--white-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 16px;
}

.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 26, 0.8) 100%);
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

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

.gallery-caption {
  color: var(--white-soft);
  font-weight: 600;
  font-size: 1.1rem;
}


.cta-section {
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
                    radial-gradient(circle at 75% 75%, rgba(80, 200, 120, 0.1) 0%, transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white-soft);
  margin-bottom: 20px;
}

.cta-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}


.contact-section {
  background: var(--gray-light);
}

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

.contact-info-card {
  background: var(--white-soft);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-soft);
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-medium);
}

.contact-method:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-details {
  flex: 1;
}

.contact-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal-dark);
}

.contact-value a {
  color: inherit;
}

.contact-form-wrapper {
  background: var(--white-soft);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-medium);
}

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

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

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 16px 20px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--text-primary);
  background: var(--white-soft);
  border: 2px solid var(--gray-medium);
  border-radius: 12px;
  transition: var(--transition-smooth);
}

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

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


.main-footer {
  background: var(--charcoal-dark);
  color: var(--white-soft);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white-soft);
  margin-bottom: 24px;
}

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

.footer-link {
  display: block;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-contact-icon {
  color: var(--gold-accent);
  flex-shrink: 0;
}

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

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 32px;
}

.footer-legal-link {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-legal-link:hover {
  color: var(--white-soft);
}


.cookie-consent-banner {
  position: fixed;
  bottom: 32px;
  left: 32px;
  right: 32px;
  max-width: 480px;
  background: var(--white-soft);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-strong);
  z-index: 9999;
  display: block;
}

.cookie-content {
  margin-bottom: 20px;
}

.cookie-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal-dark);
  margin-bottom: 8px;
}

.cookie-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  flex: 1;
  min-width: 140px;
  padding: 14px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.cookie-btn-accept {
  background: var(--gradient-primary);
  color: var(--white-soft);
  border: none;
}

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

.cookie-btn-decline {
  background: transparent;
  color: var(--text-secondary);
  border: 2px solid var(--gray-medium);
}

.cookie-btn-decline:hover {
  border-color: var(--charcoal-dark);
  color: var(--charcoal-dark);
}


.page-header {
  padding: 160px 0 80px;
  background: var(--charcoal-dark);
  position: relative;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background-image: url('../media/hero-boot-display.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.7) 0%, var(--charcoal-dark) 100%);
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white-soft);
  margin-bottom: 16px;
}

.page-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.page-breadcrumb a {
  color: var(--gold-accent);
}


.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-main-image {
  border-radius: 24px;
  box-shadow: var(--shadow-strong);
}

.about-accent-badge {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 180px;
  height: 180px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-soft);
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
  box-shadow: var(--shadow-medium);
}

.about-content-title {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 24px;
}


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

.team-card {
  background: var(--white-soft);
  border-radius: 24px;
  overflow: hidden;
  text-align: center;
  transition: var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.team-image-wrapper {
  position: relative;
  height: 320px;
  overflow: hidden;
}

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

.team-info {
  padding: 32px 24px;
}

.team-name {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.team-role {
  color: var(--burgundy-primary);
  font-weight: 500;
  margin-bottom: 12px;
}

.team-bio {
  font-size: 0.9rem;
  color: var(--text-secondary);
}


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

.faq-item {
  background: var(--white-soft);
  border: 1px solid var(--gray-medium);
  border-radius: 16px;
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal-dark);
  cursor: pointer;
  transition: var(--transition-smooth);
}

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

.faq-icon {
  width: 28px;
  height: 28px;
  background: var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition-smooth);
}

.faq-item.active .faq-icon {
  background: var(--gradient-primary);
  color: var(--white-soft);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.faq-answer-content {
  padding: 0 28px 24px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 400px;
}


.gallery-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-showcase .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-showcase .gallery-item:nth-child(4) { grid-column: span 2; }


@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-story {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--white-soft);
    flex-direction: column;
    padding: 100px 48px 48px;
    gap: 8px;
    box-shadow: var(--shadow-strong);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .mobile-toggle.active .toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .mobile-toggle.active .toggle-bar:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.active .toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  .hero-actions {
    flex-direction: column;
  }
  
  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  
  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  
  .cookie-consent-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
  
  .gallery-grid,
  .gallery-showcase {
    grid-template-columns: 1fr;
  }
  
  .gallery-item,
  .gallery-showcase .gallery-item {
    grid-column: span 1;
    grid-row: span 1;
  }
  
  .section-padding {
    padding: 64px 0;
  }
  
  .page-header {
    padding: 120px 0 60px;
  }
}