@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,300;1,400;1,700&display=swap');

:root {
  --navy: #1a1a2e;
  --navy-light: #2a2a4e;
  --gold: #c9a96e;
  --gold-light: #d4bc8e;
  --gold-dark: #b08a4e;
  --white: #ffffff;
  --light-gray: #f8f8f8;
  --mid-gray: #e8e8e8;
  --dark-gray: #333333;
  --text-muted: #777777;
  --whatsapp: #25D366;
  --whatsapp-dark: #1da851;
  --instagram-1: #f09433;
  --instagram-2: #e6683c;
  --instagram-3: #dc2743;
  --instagram-4: #cc2366;
  --instagram-5: #bc1888;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Lato', sans-serif;
  color: var(--dark-gray);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

img {
  max-width: 100%;
  height: auto;
  display: block;
  background-color: var(--navy);
  min-height: 200px;
}

ul { list-style: none; }

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

.section-padding {
  padding: 80px 0;
}

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

.section-header h2 {
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 0;
  border-radius: 2px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

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

.btn-navy:hover {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* ===================== NAVBAR ===================== */

/* ── INITIAL STATE (top of page) ── */
nav,
header,
.navbar {
  background-color: transparent !important;
  background: transparent !important;
  box-shadow: none !important;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Logo at top — remove any background */
.navbar .logo,
.navbar .logo img,
nav .logo,
nav img {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0 !important;
}

/* Links at top — white and no shadow */
nav a,
nav .nav-link,
.navbar a {
  color: #ffffff !important;
  text-shadow: none !important;
  opacity: 1 !important;
}

nav a.active {
  color: #c9a96e !important;
  border-bottom: 2px solid #c9a96e;
}

nav a:hover {
  color: #c9a96e !important;
  transition: color 0.3s ease;
}

/* ── SCROLLED STATE (after scrolling down) ── */
nav.scrolled,
header.scrolled,
.navbar.scrolled {
  background-color: #ffffff !important;
  background: #ffffff !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
}

nav.scrolled a,
header.scrolled a,
.navbar.scrolled a {
  color: #1a1a2e !important;
  text-shadow: none !important;
}

nav.scrolled a:hover,
.navbar.scrolled a:hover {
  color: #c9a96e !important;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
}

.navbar.scrolled {
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo .logo-img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: invert(1);
  transition: filter 0.3s ease;
}

.navbar.scrolled .navbar-logo .logo-img {
  filter: none;
}

.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 16px;
  filter: invert(1);
  opacity: 0.9;
}

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

.navbar-nav a {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}

.navbar.scrolled .navbar-nav a {
  color: var(--dark-gray);
}

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

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

.navbar-nav a:hover {
  color: var(--gold);
}

.navbar.scrolled .navbar-nav a:hover {
  color: var(--gold);
}

.navbar-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar-social a {
  color: var(--white);
  font-size: 1.2rem;
  transition: color var(--transition);
}

.navbar.scrolled .navbar-social a {
  color: var(--dark-gray);
}

.navbar-social a:hover {
  color: var(--gold);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

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

.navbar.scrolled .hamburger span {
  background: var(--navy);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--navy);
  background-size: cover;
  background-position: center top;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,26,46,0.6) 0%,
    rgba(26,26,46,0.4) 40%,
    rgba(26,26,46,0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 24px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 6vw, 4rem);
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 36px;
  opacity: 0.9;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-page {
  min-height: 60vh;
}

.hero-page .hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}

/* ===================== PRODUCT LINES CARDS ===================== */
.lines-section {
  background: var(--light-gray);
}

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

.line-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

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

.line-card-img {
  position: relative;
  height: 320px;
  overflow: hidden;
  background-color: var(--navy);
}

.line-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.line-card:hover .line-card-img img {
  transform: scale(1.05);
}

.line-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(26,26,46,0.8));
}

.line-card-overlay span {
  color: var(--gold);
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.line-card-body {
  padding: 24px;
}

.line-card-body h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.line-card-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.line-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: gap var(--transition);
}

.line-card:hover .line-card-link {
  gap: 12px;
}

/* ===================== FEATURE SECTION (50/50) ===================== */
.feature-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.feature-section.reversed {
  direction: rtl;
}

.feature-section.reversed > * {
  direction: ltr;
}

.feature-img {
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

.feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 80px;
}

.feature-content span {
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.feature-content h2 {
  margin-bottom: 20px;
}

.feature-content p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

/* ===================== GALLERY ===================== */
.gallery-section {
  background: var(--light-gray);
}

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

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background-color: var(--navy);
}

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

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

.gallery-item:last-child img {
  object-position: center center;
}

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

/* ===================== WHY STYLEPRO ===================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: 8px;
  background: var(--light-gray);
  transition: all var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 1.5rem;
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===================== PRODUCTS GRID ===================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card-img {
  height: 340px;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-gray);
}

.product-card-img img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
  background: transparent;
  min-height: auto;
}

.product-card-body {
  padding: 24px;
  text-align: center;
}

.product-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.product-card-body .product-volume {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.product-card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===================== CTA SECTION ===================== */
.cta-section {
  background: var(--navy);
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  font-size: 1.1rem;
}

/* ===================== ABOUT ===================== */
.about-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.8;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.value-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--light-gray);
  border-radius: 8px;
  transition: all var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-card .value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 1.3rem;
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===================== CONTACT ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

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

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--mid-gray);
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--dark-gray);
  transition: border-color var(--transition);
  background: var(--white);
}

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

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

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  padding: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  transition: all var(--transition);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.contact-card-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}

.contact-card-instagram {
  background: linear-gradient(135deg, var(--instagram-1), var(--instagram-3), var(--instagram-5));
  color: var(--white);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-card-text h3 {
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.contact-card-text p {
  opacity: 0.9;
  font-size: 0.9rem;
}

/* ===================== HERO SLIDER ===================== */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.hero-slide.active {
  opacity: 1;
}

/* ===================== STRIP GALLERY ===================== */
.strip-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  overflow: hidden;
}

.strip-gallery-item {
  height: 300px;
  overflow: hidden;
  background-color: var(--navy);
}

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

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

/* ===================== FLOATING WHATSAPP ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: var(--white);
  font-size: 1.6rem;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 24px rgba(37,211,102,0.6), 0 0 0 10px rgba(37,211,102,0.1); }
  100% { box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--navy);
  padding: 60px 0 0;
  color: rgba(255,255,255,0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 12px;
}

.footer h4 {
  color: var(--white);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 8px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ===================== INTRO TEXT ===================== */
.intro-section {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.intro-section p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

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

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

.mobile-menu,
.mobile-overlay {
  display: none;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .lines-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lines-grid .line-card:last-child {
    grid-column: span 2;
    max-width: 400px;
    margin: 0 auto;
  }

  .feature-section {
    grid-template-columns: 1fr;
  }

  .feature-section.reversed {
    direction: ltr;
  }

  .feature-img {
    min-height: 300px;
  }

  .feature-content {
    padding: 40px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-rows: repeat(2, 220px);
  }

  .values-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 60px auto 0;
  }

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

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

  .strip-gallery-item {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .navbar-nav,
  .navbar-social {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--navy);
    z-index: 1000;
    padding: 80px 32px 40px;
    transition: right var(--transition);
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
  }

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

  .mobile-menu a {
    display: block;
    padding: 14px 0;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: color var(--transition);
  }

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

  .mobile-menu-social {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    padding-top: 16px;
  }

  .mobile-menu-social a {
    border-bottom: none;
    padding: 0;
    font-size: 1.3rem;
  }

  .mobile-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }

  .mobile-overlay.visible {
    opacity: 1;
    visibility: visible;
  }

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

  .lines-grid .line-card:last-child {
    grid-column: span 1;
    max-width: none;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

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

  .why-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .section-padding {
    padding: 60px 0;
  }

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

  .strip-gallery-item {
    height: 180px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero-page {
    min-height: 50vh;
  }

  .feature-content {
    padding: 32px 24px;
  }

  .contact-form {
    padding: 24px;
  }

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

  .gallery-item {
    height: 220px;
  }

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