/* ===================================
   Le Glacier de Marie B - Styles
   =================================== */

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

/* CSS Custom Properties */
:root {
  --primary: #ca006d;
  --primary-dark: #a80059;
  --primary-light: #e8007a;
  --secondary: #ecb207;
  --secondary-dark: #c99606;
  --secondary-light: #f5c830;
  --white: #ffffff;
  --off-white: #fdf8f5;
  --light-gray: #f5f0ec;
  --gray: #888888;
  --dark: #1a1a1a;
  --text: #333333;
  --font-title: 'Adamina', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, sans-serif;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 20px rgba(202, 0, 109, 0.12);
  --shadow-lg: 0 8px 40px rgba(202, 0, 109, 0.18);
  --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul { list-style: none; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }

p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
}

/* Utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(202, 0, 109, 0.35);
  color: var(--white);
}

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

.btn-secondary:hover {
  background: var(--secondary-dark);
  border-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236, 178, 7, 0.4);
  color: var(--dark);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

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

.btn-white:hover {
  background: var(--secondary);
  color: var(--dark);
  border-color: var(--secondary);
  transform: translateY(-2px);
}

/* Section Titles */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-title span {
  color: var(--primary);
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--secondary);
  margin: 1rem auto 1.5rem;
  border-radius: 2px;
}

.section-divider.left {
  margin: 1rem 0 1.5rem;
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: var(--white);
  padding: 0.85rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

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

.navbar-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 50%;
}

.navbar-brand-text {
  font-family: var(--font-title);
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.2;
  transition: var(--transition);
}

.navbar-brand-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

.navbar.scrolled .navbar-brand-text {
  color: var(--dark);
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.9);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--secondary);
  background: rgba(255,255,255,0.1);
}

.navbar.scrolled .nav-link {
  color: var(--text);
}

.navbar.scrolled .nav-link:hover {
  color: var(--primary);
  background: rgba(202, 0, 109, 0.06);
}

.nav-cta {
  background: var(--primary);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
}

.nav-cta:hover {
  background: var(--primary-dark) !important;
  color: var(--white) !important;
}

.navbar.scrolled .nav-cta {
  color: var(--white) !important;
}

/* Burger Menu */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .burger span {
  background: var(--dark);
}

.burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(202, 0, 109, 0.75) 0%,
    rgba(26, 26, 26, 0.6) 50%,
    rgba(236, 178, 7, 0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 8rem 0 4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(236, 178, 7, 0.2);
  border: 1px solid rgba(236, 178, 7, 0.5);
  color: var(--secondary-light);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero h1 em {
  font-style: normal;
  color: var(--secondary-light);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  max-width: 600px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

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

.hero-stat-number {
  display: block;
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--secondary-light);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 20px;
  height: 20px;
}

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

/* ===================================
   SECTION : NOS SPÉCIALITÉS
   =================================== */
.specialties {
  background: var(--off-white);
}

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

.specialties-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.specialty-img {
  border-radius: var(--radius-lg);
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.specialty-img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.specialty-img-main {
  height: 280px;
  grid-column: 1 / -1;
}

.specialty-img-sm {
  height: 160px;
}

.specialties-text .section-tag {
  display: block;
}

.specialty-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.5rem 0 2rem;
}

.specialty-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  padding: 0.6rem 0.75rem;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--secondary);
}

.specialty-item-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ===================================
   SECTION : VOTRE GLACIER
   =================================== */
.about {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(236, 178, 7, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

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

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

.about-img-main {
  border-radius: var(--radius-lg);
  object-fit: cover;
  width: 100%;
  height: 420px;
  box-shadow: var(--shadow-lg);
}

.about-badge-box {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--primary);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-badge-number {
  display: block;
  font-family: var(--font-title);
  font-size: 2.5rem;
  line-height: 1;
}

.about-badge-label {
  font-size: 0.8rem;
  opacity: 0.9;
  line-height: 1.3;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--light-gray);
  border-radius: var(--radius);
  transition: var(--transition);
}

.about-feature:hover {
  background: rgba(202, 0, 109, 0.05);
  transform: translateX(4px);
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--secondary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.about-feature-content h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--dark);
}

.about-feature-content p {
  font-size: 0.85rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.5;
}

/* ===================================
   SECTION : FABRICATION ARTISANALE
   =================================== */
.crafting {
  background: var(--primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.crafting::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/img_07.jpg') center/cover no-repeat;
  opacity: 0.12;
}

.crafting .section-tag {
  color: var(--secondary-light);
}

.crafting .section-title {
  color: var(--white);
}

.crafting p {
  color: rgba(255,255,255,0.85);
}

.crafting .section-divider {
  background: var(--secondary);
}

.crafting-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.crafting-points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
}

.crafting-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
}

.crafting-point:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

.crafting-point-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--secondary);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: var(--font-title);
}

.crafting-point-text h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.crafting-point-text p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

.crafting-img-wrapper {
  position: relative;
}

.crafting-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.crafting-img-overlay {
  position: absolute;
  inset: -8px;
  border: 2px solid rgba(236, 178, 7, 0.4);
  border-radius: calc(var(--radius-lg) + 8px);
  pointer-events: none;
}

/* ===================================
   SECTION : VACHERINS
   =================================== */
.vacherin {
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}

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

.vacherin-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.vacherin .section-tag {
  color: var(--primary);
}

.vacherin .section-title {
  color: var(--dark);
}

.vacherin .section-divider {
  background: var(--primary);
}

.vacherin p {
  color: rgba(26, 26, 26, 0.8);
}

.vacherin-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.vacherin-highlight {
  background: rgba(255,255,255,0.6);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  backdrop-filter: blur(5px);
  transition: var(--transition);
}

.vacherin-highlight:hover {
  background: rgba(255,255,255,0.85);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(202, 0, 109, 0.2);
}

.vacherin-highlight-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.vacherin-highlight h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery {
  background: var(--off-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-top: 2.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

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

.gallery-item:nth-child(4) {
  grid-column: 4 / 5;
  grid-row: 1 / 3;
}

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

.gallery-item:nth-child(1) .gallery-img,
.gallery-item:nth-child(4) .gallery-img {
  height: 300px;
}

.gallery-item:nth-child(4) .gallery-img {
  height: 100%;
  min-height: 460px;
}

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

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

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

.gallery-overlay-icon {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ===================================
   HORAIRES & CONTACT
   =================================== */
.contact-section {
  background: var(--dark);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 3rem;
}

.contact-block h3 {
  color: var(--secondary);
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-block p,
.contact-block li {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.25rem;
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
}

.schedule-day {
  color: rgba(255,255,255,0.6);
}

.schedule-hours {
  color: var(--secondary);
  font-weight: 500;
}

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

.contact-info-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: rgba(202, 0, 109, 0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.contact-info-text {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}

.contact-info-text a {
  color: var(--secondary);
}

.contact-info-text a:hover {
  color: var(--secondary-light);
}

/* Map placeholder */
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  height: 200px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  margin-top: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.map-frame:hover {
  background: rgba(202, 0, 109, 0.1);
  border-color: rgba(202, 0, 109, 0.3);
  color: var(--secondary);
}

/* ===================================
   FOOTER
   =================================== */
footer {
  background: #111111;
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.footer-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
  opacity: 0.85;
}

.footer-name {
  font-family: var(--font-title);
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

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

.footer-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

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

/* ===================================
   BACK TO TOP
   =================================== */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 999;
  border: none;
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

/* ===================================
   ANIMATIONS
   =================================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
  .specialties-grid,
  .crafting-grid,
  .about-grid,
  .vacherin-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .specialties-image-grid {
    order: -1;
  }

  .vacherin-img {
    height: 300px;
  }

  .about-img-main {
    height: 320px;
  }

  .crafting-img {
    height: 300px;
  }

  .about-badge-box {
    bottom: -1rem;
    right: 1rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-item:nth-child(4) .gallery-img {
    height: 220px;
    min-height: auto;
  }

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

  .contact-grid > *:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .section-padding { padding: 3.5rem 0; }

  .burger { display: flex; }

  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0.5rem;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    z-index: 998;
  }

  .navbar-menu.open {
    right: 0;
  }

  .nav-link {
    color: var(--text) !important;
    width: 100%;
    font-size: 1rem;
    padding: 0.75rem 1rem;
  }

  .hero-content {
    padding: 7rem 0 3rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .specialty-items {
    grid-template-columns: 1fr;
  }

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

  .gallery-item:nth-child(1) {
    grid-column: auto;
  }

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

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

  .footer-links {
    justify-content: center;
  }

  .vacherin-highlights {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats {
    gap: 1rem;
  }

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

  .gallery-img,
  .gallery-item:nth-child(1) .gallery-img,
  .gallery-item:nth-child(4) .gallery-img {
    height: 240px;
  }

  .specialty-items {
    grid-template-columns: 1fr;
  }

  .vacherin-highlights {
    grid-template-columns: 1fr;
  }
}
