* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background-color: #f9f6f0;
  color: #1e1e1e;
  line-height: 1.5;
}

/* ================= BLACK HEADER ================= */
.header {
  background-color: #000000;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo i {
  color: #d4af37;
  font-size: 2rem;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  font-weight: 500;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.2s ease;
  letter-spacing: 0.3px;
}

.nav-links a:hover { color: #d4af37; }

.contact-number {
  background-color: #d4af37;
  color: black;
  padding: 0.6rem 1.2rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition: all 0.2s ease;
  text-decoration: none;
}

.contact-number:hover {
  background-color: #f0c96e;
  transform: scale(1.02);
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #d4af37;
  border-radius: 3px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 900;
}

.menu-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-image: url('https://images.unsplash.com/photo-1569529465841-dfecdab7503b?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.55) 45%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 4rem 1.5rem;
  color: white;
}

.hero-content h1 {
  font-size: 4.2rem;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-content h1 span {
  background: linear-gradient(145deg, #d4af37, #f5d76e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.25rem;
  color: #e8e8e8;
  max-width: 700px;
  margin: 0 auto 2.2rem;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ================= BUTTONS ================= */
.hero-buttons,
.symphony-buttons,
.glass-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn i { font-size: 1.1rem; }

.btn-primary {
  background: linear-gradient(145deg, #d4af37, #b8860b);
  color: #000;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.5);
  background: linear-gradient(145deg, #f0c96e, #d4af37);
}

.btn-whatsapp {
  background-color: #25d366;
  color: white;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  background-color: #1ebe5b;
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
}

/* ================= SYMPHONY ================= */
.symphony {
  background: #ffffff;
  padding: 5rem 1.5rem;
}

.symphony-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.symphony-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.25);
  aspect-ratio: 4 / 5;
}

.symphony-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}

.symphony-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.symphony-image:hover img { transform: scale(1.05); }

.symphony-text h2 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #111;
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.symphony-text h2 span {
  background: linear-gradient(145deg, #b8860b, #d4af37);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.symphony-lead {
  font-size: 1.1rem;
  color: #4a4a4a;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.symphony-list {
  list-style: none;
  margin-bottom: 2.5rem;
  display: grid;
  gap: 0.9rem;
}

.symphony-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 1.05rem;
  font-weight: 500;
  color: #222;
  padding: 0.7rem 1rem;
  background: #faf7f1;
  border-radius: 14px;
  border-left: 4px solid #d4af37;
  transition: transform 0.2s ease, background 0.2s ease;
}

.symphony-list li:hover {
  transform: translateX(5px);
  background: #f5efe2;
}

.symphony-list li i {
  color: #b8860b;
  font-size: 1.15rem;
  width: 22px;
  text-align: center;
}

.symphony-buttons { justify-content: flex-start; }

/* ================= THE ART OF AGING ================= */
.aging {
  background: linear-gradient(135deg, #f5efe2 0%, #faf7f1 100%);
  padding: 5rem 1.5rem;
}

.aging-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.aging-text { order: 1; }

.aging-image {
  order: 2;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.25);
  aspect-ratio: 4 / 5;
}

.aging-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}

.aging-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.aging-image:hover img { transform: scale(1.05); }

.aging-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #b8860b;
  background: rgba(212, 175, 55, 0.12);
  padding: 0.45rem 1rem;
  border-radius: 30px;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.aging-text h2 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #111;
  margin-bottom: 1.4rem;
  line-height: 1.15;
}

.aging-text h2 span {
  background: linear-gradient(145deg, #b8860b, #d4af37);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.aging-lead {
  font-size: 1.1rem;
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.aging-sub {
  font-size: 1.05rem;
  color: #2c2c2c;
  font-weight: 500;
  line-height: 1.7;
  padding-left: 1.2rem;
  border-left: 4px solid #d4af37;
  margin-bottom: 2.2rem;
  font-style: italic;
}

.aging-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid #e0d5be;
}

.aging-stats .stat {
  display: flex;
  flex-direction: column;
}

.aging-stats .stat strong {
  font-size: 2rem;
  font-weight: 800;
  color: #b8860b;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.aging-stats .stat span {
  font-size: 0.85rem;
  color: #6a6a6a;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ================= TESTIMONIALS ================= */
.testimonials {
  background: #0d0d0d;
  padding: 5.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.testimonials-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #d4af37;
  background: rgba(212, 175, 55, 0.1);
  padding: 0.45rem 1.1rem;
  border-radius: 30px;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.testimonials-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.testimonials-header h2 span {
  background: linear-gradient(145deg, #d4af37, #f5d76e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonials-sub {
  font-size: 1.05rem;
  color: #b0b0b0;
  max-width: 600px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  position: relative;
  background: linear-gradient(145deg, #1a1a1a 0%, #141414 100%);
  border: 1px solid #262626;
  border-radius: 24px;
  padding: 2.2rem 1.8rem 1.8rem;
  color: #e6e6e6;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 25px 50px -15px rgba(212, 175, 55, 0.25);
}

.testimonial-quote-mark {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  font-size: 2.2rem;
  color: rgba(212, 175, 55, 0.18);
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  color: #d4af37;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.testimonial-text {
  font-size: 1.02rem;
  line-height: 1.75;
  color: #d0d0d0;
  margin-bottom: 1.6rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.4rem;
  border-top: 1px solid #242424;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(145deg, #d4af37, #b8860b);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-info strong {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 600;
}

.testimonial-info span {
  font-size: 0.82rem;
  color: #8a8a8a;
  letter-spacing: 0.3px;
}

/* ================= LIQUIDZ CLUB ================= */
.liquidz-club {
  position: relative;
  padding: 6rem 1.5rem;
  overflow: hidden;
  background-image: url('https://images.unsplash.com/photo-1470337458703-46ad1756a187?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.liquidz-club-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.55) 50%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 1;
}

.liquidz-club-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  padding: 3.5rem 3rem;
  text-align: center;
  color: white;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45),
              inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.6),
    transparent
  );
}

.glass-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  font-size: 1.9rem;
  color: #d4af37;
  animation: pulse-gold 3s ease-in-out infinite;
}

@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  50% { box-shadow: 0 0 0 14px rgba(212, 175, 55, 0); }
}

.glass-card h2 {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1.2rem;
  line-height: 1.15;
  color: #ffffff;
}

.glass-card h2 span {
  background: linear-gradient(145deg, #d4af37, #f5d76e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass-card p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #e6e6e6;
  max-width: 700px;
  margin: 0 auto 2.2rem;
}

/* ================= LAYOUT ================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

/* ================= COLLECTION ================= */
.collection {
  margin-top: 3rem;
  background: white;
  border-radius: 40px;
  padding: 2.5rem 2rem;
  box-shadow: 0 15px 35px -10px rgba(0, 0, 0, 0.08);
  border: 1px solid #f0e8d8;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
  color: #111;
}

.section-title i { color: #d4af37; font-size: 2rem; }

.section-sub {
  color: #5a5a5a;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  border-left: 4px solid #d4af37;
  padding-left: 1.2rem;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.collection-item {
  background: #fefcf8;
  border-radius: 28px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #ede5d5;
}

.collection-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 30px -12px rgba(0, 0, 0, 0.12);
  border-color: #d4af37;
}

.collection-item i {
  font-size: 2.6rem;
  color: #b8860b;
  margin-bottom: 1rem;
}

.collection-item h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.collection-item p {
  color: #5f5f5f;
  font-size: 0.95rem;
}

/* ================= OUR CLUB ================= */
.club {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, #111111 0%, #1f1f1f 100%);
  color: white;
  border-radius: 40px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.4);
}

.club-content { flex: 2; min-width: 260px; }

.club-content h2 {
  font-size: 2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.club-content h2 i { color: #d4af37; }

.club-content p {
  color: #cccccc;
  font-size: 1.05rem;
  max-width: 550px;
  margin-bottom: 1.2rem;
}

.club-badge {
  display: inline-block;
  background: #d4af37;
  color: #000;
  font-weight: 600;
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}

.club-cta { flex: 1; min-width: 200px; text-align: right; }

.club-cta .big-phone {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  font-size: 1.6rem;
  font-weight: 600;
  background: #2a2a2a;
  padding: 0.8rem 1.8rem;
  border-radius: 60px;
  text-decoration: none;
  color: white;
  transition: background 0.2s;
  border: 1px solid #444;
  white-space: nowrap;
}

.club-cta .big-phone i { color: #d4af37; font-size: 1.8rem; }
.club-cta .big-phone:hover { background: #3a3a3a; border-color: #d4af37; }

/* ================= FOOTER ================= */
.footer {
  background-color: #000000;
  color: #cfcfcf;
  padding: 4rem 1.5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

/* Gold accent line on top */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #1f1f1f;
}

/* Brand block */
.footer-brand .footer-logo {
  font-size: 1.7rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand .footer-logo i {
  color: #d4af37;
  font-size: 1.9rem;
}

.footer-tagline {
  font-size: 0.95rem;
  color: #9a9a9a;
  line-height: 1.7;
  max-width: 320px;
}

/* Column headings */
.footer-col h4 {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.6rem;
  letter-spacing: 0.5px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: #d4af37;
  border-radius: 2px;
}

/* Links */
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a,
.footer-links span {
  color: #b5b5b5;
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: #d4af37;
  transform: translateX(4px);
}

.footer-links i {
  color: #d4af37;
  width: 16px;
  font-size: 0.9rem;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #151515;
  border: 1px solid #262626;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.footer-social a:hover {
  transform: translateY(-4px);
  background: linear-gradient(145deg, #d4af37, #b8860b);
  color: #000;
  border-color: #d4af37;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.8rem;
  font-size: 0.9rem;
}

.footer-copy {
  color: #8a8a8a;
}

.footer-powered {
  color: #8a8a8a;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-powered .codemax {
  background: linear-gradient(145deg, #d4af37, #f5d76e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  letter-spacing: 0.4px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1000px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 900px) {
  .symphony-container,
  .aging-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .symphony-image,
  .aging-image {
    aspect-ratio: 16 / 10;
    max-width: 600px;
    margin: 0 auto;
  }

  .symphony-text,
  .aging-text { text-align: center; }

  .symphony-text h2,
  .aging-text h2 { font-size: 2.2rem; }

  .symphony-list li { justify-content: flex-start; text-align: left; }
  .symphony-buttons { justify-content: center; }

  .aging-sub {
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .aging-stats {
    justify-content: center;
    text-align: center;
  }

  .glass-card { padding: 3rem 2rem; }
  .glass-card h2 { font-size: 2.1rem; }
}

@media (max-width: 800px) {
  .header {
    padding: 1rem 1.2rem;
    flex-wrap: nowrap;
  }

  .hamburger { display: flex; }

  .logo {
    font-size: 1.4rem;
    flex: 1;
    justify-content: center;
    order: 0;
  }

  .nav-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 80%;
    max-width: 320px;
    background: #0a0a0a;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1000;
    border-left: 1px solid #d4af37;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

  .nav-wrapper.open { transform: translateX(0); }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    width: 100%;
  }

  .nav-links a {
    font-size: 1.3rem;
    width: 100%;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid #222;
  }

  .contact-number {
    width: 100%;
    justify-content: center;
    font-size: 0.95rem;
    padding: 0.9rem 1rem;
  }

  .hero {
    min-height: 85vh;
    background-attachment: scroll;
  }

  .hero-content { padding: 3rem 1.2rem; }
  .hero-content h1 { font-size: 2.6rem; }
  .hero-content p { font-size: 1.05rem; }

  .btn { padding: 0.85rem 1.5rem; font-size: 0.95rem; }

  .symphony,
  .aging { padding: 3.5rem 1.2rem; }

  .symphony-text h2,
  .aging-text h2 { font-size: 1.9rem; }

  .symphony-lead,
  .aging-lead { font-size: 1rem; }

  .symphony-list li { font-size: 0.98rem; padding: 0.6rem 0.9rem; }

  .aging-stats {
    gap: 1.5rem;
    padding-top: 1.2rem;
  }

  .aging-stats .stat strong { font-size: 1.6rem; }
  .aging-stats .stat span { font-size: 0.75rem; }

  .testimonials { padding: 4rem 1.2rem; }
  .testimonials-header h2 { font-size: 2rem; }
  .testimonials-sub { font-size: 0.98rem; }
  .testimonials-grid { gap: 1.5rem; }
  .testimonial-card { padding: 1.8rem 1.5rem 1.5rem; }

  .liquidz-club {
    padding: 4rem 1.2rem;
    background-attachment: scroll;
  }

  .glass-card {
    padding: 2.5rem 1.5rem;
    border-radius: 24px;
  }

  .glass-card h2 { font-size: 1.8rem; }
  .glass-card p { font-size: 1rem; }

  .glass-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .club { flex-direction: column; text-align: center; }
  .club-cta { text-align: center; width: 100%; }

  .club-cta .big-phone {
    justify-content: center;
    font-size: 1.3rem;
    padding: 0.7rem 1.5rem;
  }

  .section-title { font-size: 1.8rem; }

  /* Footer responsive */
  .footer { padding: 3rem 1.2rem 1.5rem; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer-brand .footer-logo { justify-content: center; }
  .footer-tagline { margin: 0 auto; }
  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-links a,
  .footer-links span { justify-content: center; }
  .footer-links a:hover { transform: translateX(0); }
  .footer-social { justify-content: center; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.6rem;
  }
}

@media (max-width: 480px) {
  .logo { font-size: 1.2rem; }
  .logo i { font-size: 1.5rem; }

  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 1rem; }

  .hero-buttons,
  .glass-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn { width: 100%; justify-content: center; }

  .symphony-image,
  .aging-image { aspect-ratio: 4 / 3; }

  .symphony-text h2,
  .aging-text h2 { font-size: 1.6rem; }

  .symphony-buttons { flex-direction: column; width: 100%; }

  .aging-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .testimonials-header h2 { font-size: 1.7rem; }
  .testimonial-text { font-size: 0.95rem; }
  .testimonial-avatar { width: 42px; height: 42px; font-size: 0.85rem; }

  .glass-card h2 { font-size: 1.5rem; }

  .collection { padding: 1.8rem 1.2rem; }
  .club { padding: 1.8rem 1.2rem; }

  .nav-wrapper { width: 85%; }

  .footer-brand .footer-logo { font-size: 1.4rem; }
  .footer-brand .footer-logo i { font-size: 1.6rem; }
}

/* ============================================================
   CONTACT / ENQUIRY FORM SECTION
   ============================================================ */
.contact-form-section {
  padding: 60px 0 20px;
  margin-top: 80px;
}

.contact-form {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 42px;
  background: linear-gradient(135deg, var(--black-elevated) 0%, var(--black-card) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dark);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-md);
  outline: none;
  transition: all var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--grey-dark);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.form-actions .btn {
  flex: 1 1 auto;
  min-width: 180px;
}

.form-note {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--gold);
  min-height: 1.2em;
  letter-spacing: 0.3px;
}

.form-note.success { color: #4ade80; }
.form-note.error   { color: #f87171; }

/* ---------- Responsive form ---------- */
@media (max-width: 700px) {
  .contact-form {
    padding: 34px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions .btn {
    width: 100%;
  }
}