@import url('https://fonts.googleapis.com/css2?family=Didot:wght@400;700&family=Inter:wght@400;500;600&family=Source+Code+Pro:wght@400;700&display=swap');

:root {
  --showroom-white: #FCFAF8;
  --salon-cream: #F8F5F0;
  --leather-ivory: #F0EBE3;
  --deep-navy: #1E3A5F;
  --ocean-blue: #2D5A87;
  --sky-blue: #3D6A99;
  --auto-amber: #D97706;
  --deep-copper: #B45309;
  --amber-light: rgba(217, 119, 6, 0.12);
  --amber-glow: rgba(180, 83, 9, 0.42);
  --particle-glow: rgba(217, 119, 6, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--showroom-white);
  color: var(--ocean-blue);
  line-height: 1.78;
  font-size: 18px;
  overflow-x: hidden;
}

strong, p, span {
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Didot', serif;
  color: var(--deep-navy);
  line-height: 0.9;
  letter-spacing: 0.01em;
}

h1 {
  font-weight: 700;
  font-size: clamp(3.5rem, 10vw, 9rem);
}

h2 {
  font-weight: 400;
  font-size: clamp(2rem, 6vw, 5.4rem);
}

h3 {
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
}

a {
  text-decoration: none;
  color: inherit;
}

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

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 22px 52px;
  background: linear-gradient(135deg, var(--auto-amber), var(--deep-copper));
  color: white;
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  font-size: 14px;
  border: none;
  border-radius: 32px;
  cursor: pointer;
  box-shadow: 0 20px 80px var(--amber-glow);
  transition: all 0.32s ease;
  white-space: nowrap;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 28px 100px var(--amber-glow);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--ocean-blue);
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  border: 2px solid var(--auto-amber);
  border-radius: 28px;
  cursor: pointer;
  transition: all 0.32s ease;
}

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  transition: all 0.3s ease-out;
}

header.scrolled {
  background: rgba(252, 250, 248, 0.96);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(180, 83, 9, 0.14);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Didot', serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--deep-navy);
  letter-spacing: -0.01em;
}

.logo svg {
  width: 36px;
  height: 36px;
  stroke: var(--auto-amber);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-item {
  position: relative;
  font-family: 'Didot', serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--deep-navy);
  cursor: pointer;
  padding: 24px 0;
  transition: all 0.3s ease;
}

.nav-item:hover {
  color: var(--auto-amber);
}

.nav-item:hover::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--auto-amber);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: all 0.3s ease;
}

.mega-dropdown {
  position: fixed;
  top: 64px;
  left: 0;
  width: 100vw;
  height: 50vh;
  background: rgba(252, 250, 248, 0.98);
  backdrop-filter: blur(40px);
  border-bottom: 1px solid rgba(180, 83, 9, 0.18);
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 48px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.88s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-item:hover .mega-dropdown {
  display: grid;
  transform: translateY(0);
  opacity: 1;
}

.dropdown-col h4 {
  font-family: 'Didot', serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--deep-navy);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--auto-amber);
  display: inline-block;
}

.dropdown-col ul {
  list-style: none;
}

.dropdown-col li {
  padding: 8px 0;
}

.dropdown-col a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ocean-blue);
  transition: all 0.3s ease;
}

.dropdown-col a:hover {
  color: var(--auto-amber);
  padding-left: 8px;
}

.header-cta {
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--auto-amber), var(--deep-copper));
  color: white;
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  font-size: 11px;
  border-radius: 28px;
  box-shadow: 0 12px 48px var(--amber-glow);
  transition: all 0.32s ease;
}

.header-cta:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 16px 64px var(--amber-glow);
}

.mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  background: rgba(252, 250, 248, 0.96);
  backdrop-filter: blur(24px);
  border: 2px solid rgba(180, 83, 9, 0.2);
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.mobile-toggle svg {
  stroke: var(--auto-amber);
  stroke-width: 2.5;
}

@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(252, 250, 248, 0.98);
  backdrop-filter: blur(40px);
  z-index: 10001;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-family: 'Didot', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--deep-navy);
  transition: all 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--auto-amber);
}

.mobile-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 32px;
  color: var(--deep-navy);
}

main {
  padding-top: 64px;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  padding: 0 48px;
  gap: 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, var(--particle-glow) 0%, transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(217, 119, 6, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 40% 80%, rgba(180, 83, 9, 0.05) 0%, transparent 42%);
  pointer-events: none;
}

.hero-content {
  padding-right: 64px;
}

.hero-content h1 {
  margin-bottom: 24px;
  animation: slideUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
  transform: translateY(30px);
}

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

.hero-content p {
  font-size: 20px;
  max-width: 520px;
  margin-bottom: 32px;
  animation: fadeUp 0.6s ease 0.4s forwards;
  opacity: 0;
}

@keyframes fadeUp {
  to {
    opacity: 1;
  }
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeUp 0.6s ease 0.6s forwards;
  opacity: 0;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
}

.particles-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--auto-amber);
  border-radius: 50%;
  opacity: 0.25;
  animation: pulse 3s ease-in-out infinite alternate;
}

@keyframes pulse {
  0% { opacity: 0.05; transform: scale(1); }
  100% { opacity: 0.12; transform: scale(1.2); }
}

.overlapping-frame {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 4/3;
  border: 2px solid rgba(180, 83, 9, 0.22);
  border-radius: 8px 16px 24px 32px;
  box-shadow: 0 48px 192px rgba(180, 83, 9, 0.14);
  overflow: hidden;
  transform: rotate(-2deg);
  transition: all 0.88s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 88;
}

.overlapping-frame:hover {
  transform: rotate(0deg) scale(1.04);
  z-index: 100;
  box-shadow: 0 64px 256px rgba(180, 83, 9, 0.24);
}

.overlapping-frame::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 2px solid rgba(180, 83, 9, 0.15);
  border-radius: 12px 20px 28px 36px;
  z-index: -1;
}

.overlapping-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: var(--ocean-blue);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 96px 24px 48px;
    gap: 48px;
  }
  
  .hero-content {
    padding-right: 0;
    text-align: center;
  }
  
  .hero-content p {
    max-width: 100%;
  }
  
  .hero-cta {
    align-items: center;
  }
  
  .hero-visual {
    height: 50vh;
  }
  
  h1 {
    font-size: clamp(2.5rem, 7vw, 3.5rem);
  }
}

.section {
  padding: 96px 0;
}

.section-light {
  background: var(--salon-cream);
}

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

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
}

.overlapping-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.overlapping-card {
  position: relative;
  background: white;
  border-radius: 8px 16px 24px 32px;
  padding: 32px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.08);
  transition: all 0.88s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 86;
}

.overlapping-card:nth-child(1) { z-index: 86; }
.overlapping-card:nth-child(2) { z-index: 88; margin-left: 32px; }
.overlapping-card:nth-child(3) { z-index: 90; margin-left: 64px; }
.overlapping-card:nth-child(4) { z-index: 92; margin-left: 96px; }
.overlapping-card:nth-child(5) { z-index: 94; margin-left: 128px; }
.overlapping-card:nth-child(6) { z-index: 96; margin-left: 160px; }
.overlapping-card:nth-child(7) { z-index: 98; margin-left: 192px; }

.overlapping-card:hover {
  z-index: 100;
  transform: scale(1.04) translateX(-32px);
  box-shadow: 0 24px 96px rgba(180, 83, 9, 0.24);
  border: 2px solid var(--auto-amber);
}

.overlapping-card:nth-child(odd) {
  align-self: flex-end;
}

@media (max-width: 768px) {
  .overlapping-cards {
    gap: 16px;
  }
  
  .overlapping-card {
    margin-left: 0 !important;
    align-self: center !important;
    width: 100%;
    max-width: 400px;
  }
}

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

.accessory-card {
  background: white;
  border-radius: 8px 16px 24px 32px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.08);
  transition: all 0.88s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.accessory-card:hover {
  transform: scale(1.04);
  box-shadow: 0 24px 96px rgba(180, 83, 9, 0.24);
}

.accessory-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.accessory-card-content {
  padding: 24px;
}

.accessory-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.accessory-card p {
  font-size: 14px;
  margin-bottom: 16px;
}

.accessory-card .price {
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  font-size: 15px;
  color: var(--auto-amber);
}

.timeline {
  display: flex;
  gap: 48px;
  padding: 0 48px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.timeline-item {
  flex: 0 0 200px;
  text-align: center;
  scroll-snap-align: center;
}

.timeline-node {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--auto-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all 0.88s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 32px rgba(180, 83, 9, 0.2);
}

.timeline-item:hover .timeline-node {
  transform: scale(1.12);
  box-shadow: 0 16px 64px rgba(180, 83, 9, 0.36);
  background: var(--auto-amber);
}

.timeline-item:hover .timeline-node svg {
  stroke: white;
}

.timeline-node svg {
  stroke: var(--auto-amber);
  stroke-width: 2;
}

.timeline-item h4 {
  font-family: 'Didot', serif;
  font-size: 16px;
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 13px;
}

@media (max-width: 768px) {
  .timeline {
    flex-direction: column;
    align-items: center;
    gap: 32px;
    padding: 0 24px;
  }
  
  .timeline-item {
    flex: none;
    width: 100%;
    max-width: 300px;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: white;
  border-radius: 8px 16px 24px 32px;
  padding: 32px;
  text-align: center;
  transition: all 0.88s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
  transform: scale(1.04);
  box-shadow: 0 24px 96px rgba(180, 83, 9, 0.24);
  border: 2px solid var(--auto-amber);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--salon-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.feature-icon svg {
  stroke: var(--auto-amber);
  stroke-width: 2;
}

.feature-card h4 {
  font-family: 'Didot', serif;
  font-size: 16px;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
}

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

.marquee-container {
  overflow: hidden;
  padding: 48px 0;
}

.marquee {
  display: flex;
  gap: 72px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 32px;
  border: 2px solid var(--auto-amber);
  border-radius: 8px;
  background: white;
}

.marquee-item span {
  font-family: 'Didot', serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--deep-navy);
}

.marquee-item small {
  font-size: 14px;
  color: var(--ocean-blue);
}

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

.team-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.team-member {
  padding: 24px;
  border: 2px solid transparent;
  border-radius: 8px 16px 24px 32px;
  cursor: pointer;
  transition: all 0.88s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.team-member:hover {
  border-color: var(--auto-amber);
  background: white;
}

.team-member h4 {
  font-family: 'Didot', serif;
  font-size: 18px;
  margin-bottom: 4px;
}

.team-member p {
  font-size: 14px;
}

.team-visual {
  position: sticky;
  top: 96px;
}

.team-photo {
  border-radius: 8px 16px 24px 32px;
  overflow: hidden;
  box-shadow: 0 24px 96px rgba(0, 0, 0, 0.12);
  transition: all 0.88s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.team-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .team-visual {
    position: static;
  }
}

.accordion {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background: white;
  border-radius: 8px 16px 24px 32px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.88s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.accordion-item:hover {
  box-shadow: 0 8px 48px rgba(180, 83, 9, 0.24);
  border-left: 4px solid var(--auto-amber);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  cursor: pointer;
}

.accordion-header h4 {
  font-family: 'Didot', serif;
  font-size: 16px;
}

.accordion-icon {
  width: 32px;
  height: 32px;
  border: 2px solid var(--auto-amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  background: var(--auto-amber);
}

.accordion-icon svg {
  stroke: var(--auto-amber);
  stroke-width: 2;
}

.accordion-item.active .accordion-icon svg {
  stroke: white;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease-out;
}

.accordion-content p {
  padding: 0 32px 24px;
  font-size: 14px;
}

.accordion-item.active .accordion-content {
  max-height: 300px;
}

.carousel {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 48px 0;
  overflow-x: auto;
}

.review-card {
  flex: 0 0 320px;
  background: white;
  border-radius: 8px 16px 24px 32px;
  padding: 32px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.08);
  transition: all 0.88s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 86;
}

.review-card:hover {
  z-index: 100;
  transform: scale(1.04);
  box-shadow: 0 24px 96px rgba(180, 83, 9, 0.24);
}

.review-card.active {
  transform: scale(1.15);
  z-index: 100;
}

.review-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}

.review-card h4 {
  font-family: 'Didot', serif;
  font-size: 16px;
  margin-bottom: 4px;
}

.review-card .date {
  font-size: 12px;
  color: var(--sky-blue);
  margin-bottom: 12px;
}

.review-card .stars {
  color: var(--auto-amber);
  margin-bottom: 12px;
}

.review-card p {
  font-size: 14px;
  font-style: italic;
}

.carousel-nav {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

.carousel-nav button {
  width: 48px;
  height: 48px;
  border: 2px solid var(--auto-amber);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-nav button:hover {
  background: var(--auto-amber);
}

.carousel-nav button svg {
  stroke: var(--auto-amber);
  stroke-width: 2;
}

.carousel-nav button:hover svg {
  stroke: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact-info {
  padding: 32px;
  background: var(--salon-cream);
  border-radius: 8px 16px 24px 32px;
}

.contact-info h3 {
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item svg {
  stroke: var(--auto-amber);
  stroke-width: 2;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-family: 'Didot', serif;
  font-size: 14px;
  margin-bottom: 4px;
}

.contact-item span {
  font-size: 14px;
}

.contact-form {
  background: white;
  border-radius: 8px 16px 24px 32px;
  padding: 32px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--deep-navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--auto-amber);
  border-radius: 8px 16px 24px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ocean-blue);
  background: var(--showroom-white);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--deep-copper);
  box-shadow: 0 4px 24px rgba(180, 83, 9, 0.15);
}

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

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

footer {
  background: var(--leather-ivory);
  border-top: 3px solid var(--auto-amber);
  padding: 64px 48px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col h4 {
  font-family: 'Didot', serif;
  font-size: 13px;
  color: var(--deep-navy);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--auto-amber);
  display: inline-block;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  padding: 6px 0;
}

.footer-col a {
  font-size: 14px;
  color: var(--ocean-blue);
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: var(--auto-amber);
  padding-left: 4px;
}

.footer-col p {
  font-size: 14px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(180, 83, 9, 0.18);
}

.footer-bottom span {
  font-family: 'Source Code Pro', monospace;
  font-size: 12px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

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

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  max-width: 420px;
  background: white;
  border-radius: 8px 16px 24px 32px;
  padding: 24px;
  box-shadow: 0 24px 96px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: none;
}

.cookie-banner.visible {
  display: block;
}

.cookie-banner h4 {
  font-family: 'Didot', serif;
  font-size: 16px;
  margin-bottom: 8px;
}

.cookie-banner p {
  font-size: 13px;
  margin-bottom: 16px;
}

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

.cookie-banner .btn-primary {
  padding: 12px 24px;
  font-size: 12px;
}

.cookie-banner .btn-secondary {
  padding: 12px 24px;
  font-size: 12px;
}

.lens-effect {
  position: fixed;
  width: 100px;
  height: 100px;
  border: 2.5px solid rgba(180, 83, 9, 0.5);
  border-radius: 50%;
  background: rgba(217, 147, 6, 0.15);
  pointer-events: none;
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.05s ease-out;
  transform: translate(-50%, -50%);
}

.lens-effect.active {
  opacity: 1;
}

.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.page-hero {
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 48px;
  position: relative;
  background: 
    radial-gradient(circle at 20% 30%, var(--particle-glow) 0%, transparent 50%),
    radial-gradient(circle at 80% 60%, rgba(217, 119, 6, 0.06) 0%, transparent 45%),
    var(--salon-cream);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 18px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 48px;
}

.legal-content h2 {
  font-size: 24px;
  margin: 48px 0 24px;
}

.legal-content h3 {
  font-size: 18px;
  margin: 32px 0 16px;
}

.legal-content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  margin-left: 24px;
  margin-bottom: 24px;
}

.legal-content li {
  font-size: 15px;
  margin-bottom: 8px;
}

.thanks-content {
  text-align: center;
  padding: 96px 48px;
}

.thanks-content h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  margin-bottom: 24px;
}

.thanks-content p {
  max-width: 500px;
  margin: 0 auto 32px;
}

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

.gallery-item {
  border-radius: 8px 16px 24px 32px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.08);
  transition: all 0.88s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover {
  transform: scale(1.04);
  box-shadow: 0 24px 96px rgba(180, 83, 9, 0.24);
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.gallery-item .caption {
  padding: 16px;
  background: white;
}

.gallery-item h4 {
  font-family: 'Didot', serif;
  font-size: 16px;
  margin-bottom: 4px;
}

.gallery-item span {
  font-size: 13px;
}

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

.brand-card {
  background: white;
  border-radius: 8px 16px 24px 32px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.08);
  transition: all 0.88s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.brand-card:hover {
  transform: scale(1.04);
  box-shadow: 0 24px 96px rgba(180, 83, 9, 0.24);
  border: 2px solid var(--auto-amber);
}

.brand-card h4 {
  font-family: 'Didot', serif;
  font-size: 18px;
  margin-top: 16px;
}

.brand-card span {
  font-size: 13px;
}

.careers-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.career-item {
  background: white;
  border-radius: 8px 16px 24px 32px;
  padding: 32px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.08);
  transition: all 0.88s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.career-item:hover {
  transform: scale(1.02);
  box-shadow: 0 24px 96px rgba(180, 83, 9, 0.24);
  border: 2px solid var(--auto-amber);
}

.career-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.career-item .type {
  display: inline-block;
  padding: 4px 12px;
  background: var(--salon-cream);
  border-radius: 16px;
  font-size: 12px;
  margin-bottom: 16px;
}

.career-item ul {
  list-style: none;
  margin-bottom: 16px;
}

.career-item li {
  font-size: 14px;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.career-item li::before {
  content: '✓';
  color: var(--auto-amber);
  font-weight: bold;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 8px 16px 24px 32px;
  overflow: hidden;
  margin-top: 24px;
}

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