/* =========================================================
   ARW BARBEARIA — Stylesheet v2 (Premium, bug-free)
   Tema: Preto + Dourado | Chique / Luxo
   ========================================================= */

:root {
  --bg: #0a0a0a;
  --bg-2: #0f0f0f;
  --bg-3: #161616;
  --bg-4: #1c1c1c;

  --gold: #c9a24b;
  --gold-2: #e7c878;
  --gold-3: #f5e6b8;
  --gold-dark: #8c6a24;

  --text: #ebe7df;
  --text-soft: #cfc9bf;
  --muted: #8a857d;

  --border: rgba(201, 162, 75, 0.18);
  --border-soft: rgba(255, 255, 255, 0.06);

  --shadow-gold: 0 10px 40px -10px rgba(201, 162, 75, 0.45);
  --shadow-card: 0 20px 50px -25px rgba(0, 0, 0, 0.8);

  --radius: 14px;
  --container: 1240px;

  --ff-display: 'Cinzel', serif;
  --ff-serif: 'Cormorant Garamond', serif;
  --ff-body: 'Inter', system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.6, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold-2);
}

::selection {
  background: var(--gold);
  color: #111;
}

/* Scrollbar */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-dark), var(--gold));
  border-radius: 10px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section {
  padding: clamp(70px, 10vw, 130px) 0;
  position: relative;
}

.section.dark {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}

.section.dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 0%, rgba(201, 162, 75, 0.05), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(201, 162, 75, 0.04), transparent 50%);
  pointer-events: none;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
  position: relative;
  z-index: 1;
}

.section-pre {
  display: inline-block;
  font-family: var(--ff-display);
  letter-spacing: 6px;
  font-size: 11px;
  color: var(--gold);
  margin-bottom: 20px;
  position: relative;
  padding: 0 36px;
  font-weight: 700;
}

.section-pre::before,
.section-pre::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.section-pre::before { left: 0; }
.section-pre::after { right: 0; transform: scaleX(-1); }

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: 0.2px;
}

.section-title em {
  font-style: italic;
  font-weight: 500;
}

.section-desc {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.gold-shine {
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 25%, var(--gold-3) 50%, var(--gold) 75%, var(--gold-dark) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  display: inline-block;
}

@keyframes shine {
  to { background-position: 200% center; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  user-select: none;
}

.btn-sm { padding: 10px 22px; font-size: 11px; }
.btn-lg { padding: 18px 38px; font-size: 14px; }
.btn-block { display: flex; width: 100%; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-2) 100%);
  color: #1a1a1a;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  color: #1a1a1a;
  transform: translateY(-3px);
  box-shadow: 0 14px 50px -10px rgba(201, 162, 75, 0.7);
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.4), transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.8s var(--ease);
}

.btn-gold:hover::before { transform: translateX(120%); }

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(4px);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-2);
  background: rgba(201, 162, 75, 0.08);
}

/* ===== Scroll progress ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-2), var(--gold-3));
  z-index: 10000;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--gold-2);
}

/* ===== Preloader ===== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner { text-align: center; }

.preloader-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 24px;
  overflow: hidden;
  border: 1px solid var(--gold);
  box-shadow: 0 0 40px rgba(201, 162, 75, 0.5);
  animation: float 3s ease-in-out infinite;
}

.preloader-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0 auto 18px;
  overflow: hidden;
  border-radius: 2px;
}

.preloader-bar span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-2), transparent);
  animation: load 1.4s ease-in-out infinite;
  transform: translateX(-100%);
}

@keyframes load {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.preloader-text {
  display: block;
  font-family: var(--ff-display);
  letter-spacing: 8px;
  color: var(--gold-2);
  font-weight: 700;
  font-size: 14px;
}

/* ===== Header ===== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: padding 0.4s ease, background 0.4s ease, backdrop-filter 0.4s ease;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.75) 0%, rgba(10, 10, 10, 0) 100%);
}

#header.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 25px rgba(201, 162, 75, 0.35);
  transition: transform 0.4s var(--ease);
}

.logo-link:hover .logo-img {
  transform: rotate(8deg) scale(1.06);
}

.logo-text {
  font-family: var(--ff-display);
  font-weight: 900;
  letter-spacing: 3px;
  font-size: 1.15rem;
  color: var(--gold-2);
  line-height: 1;
}

.logo-text small {
  display: block;
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 4px;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0;
}

.nav-menu li a:not(.btn) {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}

.nav-menu li a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
  transform: translateX(-50%);
}

.nav-menu li a:not(.btn):hover::after,
.nav-menu li a:not(.btn).active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  width: 28px;
  height: 2px;
  background: var(--gold-2);
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: block;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-2);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transition: right 0.5s var(--ease);
    border-left: 1px solid var(--border);
    padding: 60px 30px;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
  }
  .nav-menu.open { right: 0; }
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1599351431202-1e0f0137899a?w=1920&q=80');
  background-size: cover;
  background-position: center;
  filter: grayscale(60%) contrast(1.05) brightness(0.85);
  animation: kenburns 22s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes kenburns {
  0% { transform: scale(1.02) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1%, -1%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.92) 80%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.98) 100%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.5) 0, rgba(255,255,255,0.5) 1px, transparent 1px, transparent 3px);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.4;
  box-shadow: 0 0 6px var(--gold);
  animation: floatp linear infinite;
}

@keyframes floatp {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.7; }
  90% { opacity: 0.7; }
  100% { transform: translateY(-110vh) translateX(30px); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-family: var(--ff-display);
  letter-spacing: 5px;
  font-size: 11px;
  color: var(--gold-2);
  margin-bottom: 32px;
  font-weight: 700;
}

.tag-line {
  display: inline-block;
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.tag-line:last-child { background: linear-gradient(-90deg, transparent, var(--gold)); }

.hero-title {
  font-family: var(--ff-serif);
  font-weight: 500;
  font-size: clamp(2.8rem, 8vw, 6rem);
  line-height: 1.05;
  letter-spacing: 0.5px;
  margin-bottom: 32px;
}

.hero-title em { font-style: italic; font-weight: 600; }

.reveal-line {
  display: block;
  overflow: hidden;
  padding: 0.05em 0;
}

.reveal-text {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 1s var(--ease) forwards;
}

.reveal-line:nth-child(1) .reveal-text { animation-delay: 0.3s; }
.reveal-line:nth-child(2) .reveal-text { animation-delay: 0.5s; }
.reveal-line:nth-child(3) .reveal-text { animation-delay: 0.7s; }

@keyframes rise {
  to { transform: translateY(0); }
}

.hero-subtitle {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--text-soft);
  max-width: 660px;
  margin: 0 auto 38px;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

.hero-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  max-width: 760px;
  margin: 0 auto;
}

.hero-meta > div:not(.sep) {
  text-align: center;
  min-width: 100px;
}

.hero-meta .sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-meta strong {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--gold-2);
  font-weight: 700;
  margin-bottom: 6px;
}

.hero-meta span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--gold-2);
  font-family: var(--ff-display);
  font-weight: 700;
}

.hero-scroll .dot {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--gold), transparent);
  position: relative;
  overflow: hidden;
}

.hero-scroll .dot::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, transparent, var(--gold-2));
  animation: scrollDown 2s linear infinite;
}

@keyframes scrollDown {
  0% { top: -50%; }
  100% { top: 100%; }
}

@media (max-width: 600px) {
  .hero-meta .sep { display: none; }
  .hero-meta { gap: 24px; }
}

/* ===== Marquee ===== */
.marquee {
  background: linear-gradient(90deg, #0a0a0a, #161616 50%, #0a0a0a);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 22px 0;
  position: relative;
}

.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(90deg, #0a0a0a, transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(-90deg, #0a0a0a, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: scroll-marquee 40s linear infinite;
}

.marquee-track span {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--text);
  white-space: nowrap;
  font-weight: 500;
}

.marquee-track i {
  color: var(--gold);
  font-size: 0.9rem;
}

@keyframes scroll-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 80px; }
}

.about-img {
  position: relative;
  max-width: 460px;
}

.img-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gold);
  padding: 18px;
  background: linear-gradient(135deg, #111, #1a1a1a);
  box-shadow: var(--shadow-card);
}

.img-frame::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(201, 162, 75, 0.4);
  border-radius: calc(var(--radius) - 4px);
  pointer-events: none;
  z-index: 2;
}

.img-frame img {
  border-radius: 10px;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.badge-years {
  position: absolute;
  bottom: -25px;
  right: -25px;
  width: 130px;
  height: 130px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #111;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-gold);
  border: 4px solid var(--bg);
  animation: float 4s ease-in-out infinite;
  z-index: 3;
}

@media (max-width: 480px) {
  .badge-years {
    width: 110px;
    height: 110px;
    bottom: -15px;
    right: -10px;
  }
}

.badge-years strong {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.badge-years span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.floating-icon {
  position: absolute;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #1a1a1a, #111);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-2);
  font-size: 1.2rem;
  box-shadow: var(--shadow-card);
  z-index: 3;
}

.floating-icon.icon-1 {
  top: -20px;
  left: -20px;
  animation: float 5s ease-in-out infinite;
}

.floating-icon.icon-2 {
  top: 40%;
  right: -30px;
  animation: float 6s ease-in-out infinite 1s;
}

@media (max-width: 600px) {
  .floating-icon { display: none; }
}

.about-text .section-pre { padding-left: 0; padding-right: 36px; }
.about-text .section-pre::before { display: none; }

.about-text p {
  color: var(--text-soft);
  margin: 16px 0;
  font-size: 1rem;
}

.about-features {
  list-style: none;
  margin: 26px 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 480px) {
  .about-features { grid-template-columns: 1fr; }
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}

.about-features i {
  color: var(--gold);
  background: rgba(201, 162, 75, 0.12);
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 11px;
  border: 1px solid var(--border);
}

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}

.service-card {
  position: relative;
  padding: 50px 32px;
  background: linear-gradient(160deg, #141414 0%, #0d0d0d 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.5s var(--ease), border-color 0.4s, box-shadow 0.4s;
  overflow: hidden;
  isolation: isolate;
}

.card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(201, 162, 75, 0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-12px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.service-card:hover .card-glow { opacity: 1; }

.service-card.featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, #1a1610 0%, #0d0d0d 100%);
  box-shadow: 0 10px 30px -15px rgba(201, 162, 75, 0.3);
}

.badge-top {
  position: absolute;
  top: 18px;
  right: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 50px;
  font-weight: 800;
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(201, 162, 75, 0.18), rgba(201, 162, 75, 0.04));
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold-2);
  transition: transform 0.6s var(--ease);
}

.service-card:hover .service-icon {
  transform: rotateY(360deg);
}

.service-card h3 {
  font-family: var(--ff-serif);
  font-size: 1.55rem;
  margin-bottom: 12px;
  color: #fff;
  font-weight: 600;
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 22px;
  min-height: 60px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-2);
  padding-top: 16px;
  border-top: 1px solid var(--border);
  width: 100%;
  justify-content: center;
  font-weight: 700;
}

.card-link i {
  transition: transform 0.3s var(--ease);
}

.card-link:hover i {
  transform: translateX(6px);
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  cursor: pointer;
}

.gallery-item.big { grid-column: span 2; grid-row: span 2; }
.gallery-item.tall { grid-row: span 2; }

@media (max-width: 900px) {
  .gallery-item.big, .gallery-item.tall {
    grid-column: span 2;
    grid-row: span 1;
  }
}

.gallery-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(40%);
  transition: transform 0.8s var(--ease), filter 0.5s;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
  filter: grayscale(0%);
}

.gallery-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.9) 100%);
  opacity: 0;
  transition: opacity 0.4s;
}

.gallery-item:hover .gallery-caption { opacity: 1; }

.gallery-caption small {
  font-family: var(--ff-display);
  letter-spacing: 3px;
  font-size: 10px;
  color: var(--gold);
  margin-bottom: 6px;
  text-transform: uppercase;
  font-weight: 700;
}

.gallery-caption span {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: 1.4rem;
  color: #fff;
  font-weight: 500;
}

/* ===== Team ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.team-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--border);
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
  position: relative;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-gold);
}

.team-photo {
  height: 360px;
  background-size: cover;
  background-position: center top;
  filter: grayscale(70%);
  transition: filter 0.5s, transform 0.8s;
}

.team-card:hover .team-photo {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.team-info {
  padding: 26px 20px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.team-info h3 {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  margin-bottom: 4px;
  font-weight: 600;
}

.team-info > span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.team-social {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.team-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-2);
  transition: all 0.3s;
}

.team-social a:hover {
  background: var(--gold);
  color: #111;
  transform: translateY(-3px);
  border-color: var(--gold);
}

/* ===== Hours ===== */
.hours-card {
  background: linear-gradient(135deg, #141414, #0d0d0d);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 60px 50px;
  display: grid;
  grid-template-columns: auto 1fr 1.2fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hours-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(201, 162, 75, 0.08), transparent 50%);
  pointer-events: none;
}

@media (max-width: 900px) {
  .hours-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 28px;
    gap: 30px;
  }
}

.hours-deco {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #111;
  box-shadow: var(--shadow-gold);
  margin: 0 auto;
  animation: float 4s ease-in-out infinite;
}

.hours-content .section-pre { padding-left: 0; padding-right: 36px; }
.hours-content .section-pre::before { display: none; }
.hours-content .section-title { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 0; }

@media (max-width: 900px) {
  .hours-content .section-pre { padding: 0 36px; }
  .hours-content .section-pre::before { display: block; }
}

.hours-list {
  position: relative;
  z-index: 1;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.95rem;
}

.hours-row span {
  color: var(--muted);
  font-weight: 500;
}

.hours-row strong {
  font-family: var(--ff-display);
  color: var(--gold-2);
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.hours-row.closed strong { color: #d96565; }

.hours-list .btn { margin-top: 22px; }

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
  position: relative;
  z-index: 1;
}

.testimonial {
  padding: 40px 32px;
  background: linear-gradient(160deg, #141414, #0d0d0d);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  transition: transform 0.4s var(--ease), border-color 0.4s;
}

.testimonial:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.testimonial::before {
  content: '\201C';
  position: absolute;
  top: 4px;
  right: 22px;
  font-family: var(--ff-serif);
  font-size: 5.5rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
}

.stars {
  color: var(--gold);
  margin-bottom: 18px;
  font-size: 13px;
  display: flex;
  gap: 3px;
}

.testimonial p {
  font-family: var(--ff-serif);
  font-style: italic;
  color: var(--text);
  margin-bottom: 22px;
  font-size: 1.05rem;
  line-height: 1.7;
}

.testimonial h4 {
  font-family: var(--ff-display);
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--gold-2);
  font-weight: 700;
  margin-bottom: 4px;
}

.testimonial small {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1px;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: linear-gradient(135deg, #141414, #0f0f0f);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item[open] { border-color: var(--gold); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.3s;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }

.faq-item summary:hover { color: var(--gold-2); }

.faq-item summary i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 162, 75, 0.1);
  border: 1px solid var(--gold);
  color: var(--gold-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease);
}

.faq-item[open] summary i {
  transform: rotate(135deg);
}

.faq-answer {
  padding: 0 26px 24px;
  color: var(--text-soft);
  animation: fadeUp 0.5s var(--ease);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.info-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-soft);
}

.info-item h4 {
  font-family: var(--ff-display);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold-2);
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 700;
}

.info-item p {
  color: var(--text);
  font-size: 0.98rem;
}

.info-item a { color: var(--text); }
.info-item a:hover { color: var(--gold-2); }

.info-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-2);
  background: rgba(201, 162, 75, 0.08);
  font-size: 1.05rem;
}

.contact-info .btn { margin-top: 30px; }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gold);
  min-height: 500px;
  filter: grayscale(70%) contrast(1.1);
  transition: filter 0.5s;
  position: relative;
}

.contact-map:hover { filter: grayscale(0%); }

.contact-map iframe {
  display: block;
  height: 100%;
  min-height: 500px;
  width: 100%;
}

/* ===== Footer ===== */
.footer {
  background: #060606;
  padding: 80px 0 0;
  border-top: 1px solid var(--border);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
}

.footer-brand img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--gold);
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  .footer-brand img { margin: 0 auto 20px; }
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

@media (max-width: 900px) { .footer-social { justify-content: center; } }

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-2);
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
  transform: translateY(-3px);
}

.footer-col h5 {
  font-family: var(--ff-display);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--gold-2);
  margin-bottom: 22px;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-col ul { list-style: none; }

.footer-col ul li {
  padding: 8px 0;
  color: var(--muted);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 900px) { .footer-col ul li { justify-content: center; } }

.footer-col ul li i {
  color: var(--gold);
  font-size: 0.85rem;
  width: 16px;
  text-align: center;
}

.footer-col ul li a { color: var(--muted); }
.footer-col ul li a:hover { color: var(--gold-2); }

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid var(--border-soft);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1.5px;
}

/* ===== Floating WhatsApp ===== */
.float-wpp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  z-index: 999;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
  transition: transform 0.3s;
}

.float-wpp:hover {
  transform: scale(1.1) rotate(8deg);
  color: #fff;
}

.float-wpp .pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ===== Back to top ===== */
.back-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #111;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 998;
  font-size: 0.95rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s var(--ease);
  box-shadow: var(--shadow-gold);
}

.back-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-top:hover {
  transform: translateY(-4px);
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===== Small screens tweaks ===== */
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero { padding: 130px 0 60px; }
  .hero-tag { font-size: 10px; gap: 12px; }
  .tag-line { width: 30px; }
  .btn { padding: 14px 26px; font-size: 12px; }
  .service-card { padding: 40px 24px; }
  .float-wpp { width: 54px; height: 54px; font-size: 1.6rem; bottom: 18px; right: 18px; }
  .back-top { width: 42px; height: 42px; right: 22px; bottom: 84px; }
}
