@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ========== VARIABLES ========== */
:root {
  --bg: #0a0a0a;
  --bg-elevated: #141414;
  --bg-card: #1a1a1a;
  --surface: #222222;
  --text: #f0f0f0;
  --text-secondary: #999999;
  --text-muted: #666666;
  --accent: #c8ff00;
  --accent-hover: #d4ff33;
  --accent-dim: rgba(200, 255, 0, 0.08);
  --border: #2a2a2a;
  --border-light: #333333;
  --turf: #2d7a3a;
  --turf-dark: #1a4d24;
  --white: #ffffff;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1280px;
  --gutter: 20px;
}

@media (min-width: 768px) {
  :root {
    --gutter: 40px;
  }
}

@media (min-width: 1024px) {
  :root {
    --gutter: 60px;
  }
}

/* ========== UTILITY ========== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ========== NOISE OVERLAY ========== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.nav.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.nav__brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1;
}

.nav__brand span {
  color: var(--accent);
}

.nav__links {
  display: none;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .nav__links {
    display: flex;
  }
}

.nav__links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.nav__links a:hover {
  color: var(--accent);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, transform 0.15s ease;
}

.nav__cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.nav__cta svg {
  width: 16px;
  height: 16px;
}

/* Mobile Menu Toggle */
.nav__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

@media (min-width: 768px) {
  .nav__toggle {
    display: none;
  }
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

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

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.95) 0%,
    rgba(10, 10, 10, 0.6) 40%,
    rgba(10, 10, 10, 0.3) 70%,
    rgba(10, 10, 10, 0.15) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.hero__label {
  display: inline-block;
  padding: 6px 14px;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 24px;
  animation: fadeSlideUp 0.6s ease both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 10vw, 8rem);
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 20px;
  animation: fadeSlideUp 0.6s ease 0.1s both;
}

.hero__title span {
  display: block;
  color: var(--accent);
  font-size: 0.55em;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.hero__tagline {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.5;
  margin-bottom: 36px;
  animation: fadeSlideUp 0.6s ease 0.2s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: fadeSlideUp 0.6s ease 0.3s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.btn--primary {
  background: var(--accent);
  color: var(--bg);
}

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

.btn--outline {
  border: 1px solid var(--border-light);
  color: var(--text);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* ========== SECTION COMMON ========== */
section {
  padding: 100px 0;
}

@media (min-width: 768px) {
  section {
    padding: 140px 0;
  }
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.6;
}

/* ========== MARQUEE ========== */
.marquee {
  padding: 20px 0;
  background: var(--accent);
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  display: flex;
  animation: marquee 25s linear infinite;
}

.marquee__item {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bg);
  padding: 0 40px;
  flex-shrink: 0;
}

.marquee__item::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--bg);
  border-radius: 50%;
  margin-left: 40px;
  vertical-align: middle;
}

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

/* ========== PRODUCTS / LOOKBOOK ========== */
.lookbook {
  background: var(--bg);
}

.lookbook__header {
  margin-bottom: 60px;
}

.lookbook__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .lookbook__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .lookbook__grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
}

.lookbook__item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bg-card);
}

.lookbook__item--wide {
  grid-column: span 1;
}

@media (min-width: 640px) {
  .lookbook__item--wide {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
  }
}

.lookbook__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0, 0.25, 1);
}

.lookbook__item:hover img {
  transform: scale(1.04);
}

.lookbook__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.8) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.lookbook__item-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 4px;
}

.lookbook__item-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ========== SERVICES ========== */
.services {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services__header {
  margin-bottom: 60px;
}

.services__grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  grid-template-columns: 1fr;
}

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

.service-card {
  background: var(--bg-card);
  padding: 40px 32px;
  transition: background 0.3s ease;
}

.service-card:hover {
  background: var(--surface);
}

.service-card__number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.3;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 12px;
}

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

/* ========== REVIEWS ========== */
.reviews {
  background: var(--bg);
  position: relative;
}

.reviews__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin-top: 48px;
}

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

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  position: relative;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 32px;
  right: 32px;
  height: 2px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.review-card:hover::before {
  opacity: 1;
}

.review-card__quote {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 24px;
  font-style: italic;
}

.review-card__quote::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent);
  line-height: 0;
  display: block;
  margin-bottom: 16px;
  opacity: 0.5;
}

.review-card__author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

.review-card__source {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.reviews__cta {
  margin-top: 40px;
  text-align: center;
}

.reviews__cta a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.2s ease;
}

.reviews__cta a:hover {
  opacity: 0.8;
}

/* ========== ABOUT / STORY ========== */
.about {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.about__layout {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  align-items: center;
}

@media (min-width: 768px) {
  .about__layout {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.about__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-card);
}

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

.about__text {
  max-width: 500px;
}

.about__text p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about__text p:first-of-type {
  font-size: 1.1rem;
  color: var(--text);
}

/* ========== INFO / VISIT ========== */
.visit {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.visit__layout {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .visit__layout {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.visit__info {
  max-width: 500px;
}

.visit__block {
  margin-bottom: 40px;
}

.visit__block-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.visit__block p,
.visit__block a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.visit__block a:hover {
  color: var(--accent);
}

.visit__hours-grid {
  display: grid;
  gap: 8px;
}

.visit__hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.visit__hours-row span:first-child {
  color: var(--text);
  font-weight: 500;
}

.visit__map {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  min-height: 320px;
}

.visit__map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: none;
  filter: grayscale(1) invert(1) contrast(1.1) brightness(0.7);
}

/* ========== CONTACT FORM ========== */
.contact-form-section {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.contact-form-section__layout {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .contact-form-section__layout {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.contact-form-section iframe {
  width: 100%;
  min-height: 500px;
  border: none;
  border-radius: var(--radius-md);
}

/* ========== FOOTER ========== */
.footer {
  padding: 60px 0 40px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: var(--white);
}

.footer__brand span {
  color: var(--accent);
}

.footer__social {
  display: flex;
  gap: 16px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.footer__social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer__social svg {
  width: 18px;
  height: 18px;
}

.footer__copy {
  font-size: 0.78rem;
  color: var(--text-muted);
  width: 100%;
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ========== FLOATING WHATSAPP ========== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: #25d366;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
}

.wa-float svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 767px) {
  .wa-float span {
    display: none;
  }
  .wa-float {
    padding: 14px;
    border-radius: 50%;
  }
  .wa-float svg {
    width: 24px;
    height: 24px;
  }
}

/* ========== DIAGONAL STRIPE ACCENT ========== */
.stripe-accent {
  height: 6px;
  background: repeating-linear-gradient(
    -45deg,
    var(--accent),
    var(--accent) 8px,
    transparent 8px,
    transparent 16px
  );
}

/* ========== ANIMATIONS ========== */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Stagger delays */
.fade-in[data-delay="1"] { transition-delay: 0.1s; }
.fade-in[data-delay="2"] { transition-delay: 0.2s; }
.fade-in[data-delay="3"] { transition-delay: 0.3s; }
.fade-in[data-delay="4"] { transition-delay: 0.4s; }
