:root {
  --yellow: #FFD60A;
  --yellow-deep: #F5B800;
  --yellow-soft: #FFF4B8;
  --ink: #0A0A0A;
  --ink-soft: #1a1a1a;
  --paper: #FFFDF5;
  --line: #0A0A0A;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', 'Noto Sans SC', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
}

/* === BACKGROUND TEXTURE === */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 214, 10, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 214, 10, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

/* === MARQUEE BAR === */
.marquee {
  background: var(--ink);
  color: var(--yellow);
  padding: 10px 0;
  overflow: hidden;
  border-bottom: 3px solid var(--yellow);
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.15em;
  font-size: 0.95rem;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: scroll 30s linear infinite;
  width: max-content;
}
.marquee-track span { padding: 0 2rem; }
.marquee-track span::after { content: '★'; margin-left: 2rem; color: var(--yellow); }

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* === NAV === */
nav {
  position: sticky;
  top: 0;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo-sub {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: #666;
  font-family: 'Bebas Neue', sans-serif;
}
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 3px 3px 0 var(--ink);
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding: 0.3rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--yellow-deep);
  transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

@media (max-width: 720px) {
  .nav-links { display: none; }
}

/* === HERO === */
.hero {
  position: relative;
  padding: 5rem 2rem 6rem;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  min-height: 80vh;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--ink);
  color: var(--yellow);
  padding: 0.4rem 0.9rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.hero h1 .accent {
  display: inline-block;
  background: var(--yellow);
  padding: 0 0.4rem;
  transform: rotate(-1deg);
  box-shadow: 4px 4px 0 var(--ink);
}
.hero h1 .cn {
  display: block;
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
  color: var(--ink);
}
.hero p.lead {
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 2rem;
  color: var(--ink-soft);
}
.hero p.lead .cn {
  display: block;
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 1rem;
  margin-top: 0.5rem;
  color: #555;
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.8rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: 2px solid var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
}
.btn-primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
}
.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--ink);
}
.btn-secondary {
  background: var(--paper);
  color: var(--ink);
  box-shadow: 5px 5px 0 var(--yellow-deep);
}
.btn-secondary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--yellow-deep);
}

/* === HERO VISUAL === */
.hero-visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.key-display {
  position: relative;
  width: 100%;
  height: 100%;
}
.floating-card {
  position: absolute;
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 1.2rem 1.4rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.1em;
  box-shadow: 5px 5px 0 var(--ink);
  animation: float 6s ease-in-out infinite;
}
.floating-card .num {
  font-size: 2.2rem;
  display: block;
  color: var(--ink);
}
.floating-card .label {
  font-size: 0.8rem;
  color: #666;
}
.fc-1 { top: 10%; left: 5%; background: var(--yellow); animation-delay: 0s; }
.fc-2 { top: 35%; right: 8%; animation-delay: 1.5s; }
.fc-3 { bottom: 15%; left: 18%; animation-delay: 3s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.key-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  animation: spin 30s linear infinite;
}
@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .hero-visual { height: 320px; order: -1; }
  .key-svg { width: 200px; height: 200px; }
}

/* === SERVICES === */
.services {
  background: var(--ink);
  color: var(--paper);
  padding: 6rem 2rem;
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0 40px, var(--ink) 40px 80px);
}
.section-head {
  max-width: 1280px;
  margin: 0 auto 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
}
.section-head h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
}
.section-head h2 .cn {
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 900;
  font-size: 0.5em;
  display: block;
  margin-top: 0.5rem;
  color: var(--yellow);
  letter-spacing: 0.1em;
}
.section-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  color: var(--yellow);
  letter-spacing: 0.2em;
}

.service-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--ink-soft);
  border: 2px solid #2a2a2a;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
  transform: translateY(-4px);
}
.service-card:hover .service-icon { color: var(--ink); }
.service-card:hover .service-meta { color: var(--ink); border-color: var(--ink); }

.service-icon {
  font-size: 2.4rem;
  color: var(--yellow);
  margin-bottom: 1.2rem;
  transition: color 0.3s;
}
.service-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.4rem;
}
.service-card h3 .cn {
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 700;
  font-size: 0.7em;
  display: block;
  margin-top: 0.3rem;
  opacity: 0.85;
}
.service-card p {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 1.2rem;
}
.service-meta {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--yellow);
  padding-top: 1rem;
  border-top: 1px solid #333;
  transition: all 0.3s;
}

/* === WHY US === */
.why {
  padding: 6rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.why-item {
  border-left: 4px solid var(--yellow);
  padding: 0.5rem 0 0.5rem 1.5rem;
}
.why-item .big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--ink);
}
.why-item .big sup {
  font-size: 1.2rem;
  color: var(--yellow-deep);
}
.why-item h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  margin: 0.8rem 0 0.4rem;
}
.why-item h4 .cn {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 0.85em;
  font-weight: 700;
  display: block;
  margin-top: 0.2rem;
}
.why-item p {
  font-size: 0.92rem;
  color: #555;
}

/* === GALLERY === */
.gallery {
  padding: 6rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
  background: var(--paper);
}
.gallery-category {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  margin: 3rem 0 1.4rem;
  padding-bottom: 0.6rem;
  border-bottom: 3px solid var(--ink);
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.gallery-category:first-of-type { margin-top: 1rem; }
.gallery-category .cn {
  font-family: 'Noto Sans SC', sans-serif;
  font-size: 0.7em;
  font-weight: 700;
  color: #555;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--yellow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: #f5f5f5;
}
.gallery-item:hover {
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 var(--yellow);
}
.gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(10, 10, 10, 0.85);
  color: var(--paper);
  padding: 0.5rem 0.8rem;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.gallery-item:hover figcaption { opacity: 1; }
.gallery-empty {
  grid-column: 1 / -1;
  padding: 2rem;
  border: 2px dashed #999;
  text-align: center;
  color: #777;
  font-size: 0.9rem;
}

/* === CTA SECTION === */
.cta-section {
  background: var(--yellow);
  padding: 5rem 2rem;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before, .cta-section::after {
  content: '★';
  position: absolute;
  font-size: 12rem;
  color: rgba(0,0,0,0.05);
  font-family: serif;
}
.cta-section::before { top: -3rem; left: -2rem; }
.cta-section::after { bottom: -5rem; right: -2rem; }

.cta-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  position: relative;
}
.cta-section h2 .cn {
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 900;
  font-size: 0.45em;
  display: block;
  margin-top: 0.8rem;
  letter-spacing: 0.1em;
}
.cta-section p {
  max-width: 600px;
  margin: 1.5rem auto 2rem;
  font-size: 1.05rem;
  position: relative;
}
.cta-section .btn-primary {
  background: var(--ink);
  color: var(--yellow);
  box-shadow: 5px 5px 0 var(--paper), 5px 5px 0 2px var(--ink);
  position: relative;
}

/* === VISIT === */
.visit {
  padding: 6rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.visit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.visit-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 2rem;
  box-shadow: 6px 6px 0 var(--yellow);
}
.visit-card h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.visit-card p {
  font-size: 0.98rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.visit-card a { color: var(--ink); text-decoration: underline; }
.visit-card a.btn { text-decoration: none; }
.visit-card .btn { margin-top: 1.2rem; }
.visit-card .muted {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: #555;
}
.visit-card .small-mt { margin-top: 0.6rem; }
.visit-card .reg-line { margin-top: 0.8rem; font-size: 0.9rem; color: #555; }

/* === CONTACT FORM === */
.contact {
  padding: 6rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.contact-form {
  background: var(--paper);
  border: 2px solid var(--ink);
  padding: 3rem;
  box-shadow: 8px 8px 0 var(--yellow);
  margin-top: 2rem;
}
.contact-form .intro { margin-bottom: 1.5rem; color: #555; }
.contact-form .intro .cn { font-family: 'Noto Sans SC', sans-serif; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}
.field-block { margin-bottom: 1.2rem; }
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.8rem; }
}
.field label {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.field label .cn {
  font-family: 'Noto Sans SC', sans-serif;
  font-weight: 400;
  font-size: 0.85em;
  color: #777;
  margin-left: 0.5rem;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--ink);
  background: var(--paper);
  font-family: 'Space Grotesk', 'Noto Sans SC', sans-serif;
  font-size: 1rem;
  transition: background 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  background: var(--yellow-soft);
}
.btn-submit { width: 100%; justify-content: center; }
/* Honeypot: hidden field that real users never see; bots fill it. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.form-status {
  margin-top: 1rem;
  padding: 0.8rem;
  font-size: 0.95rem;
  display: none;
}
.form-status.show { display: block; }
.form-status.success { background: var(--yellow-soft); border-left: 4px solid var(--yellow-deep); }
.form-status.error { background: #fee; border-left: 4px solid #c00; }

/* === FOOTER === */
footer {
  background: var(--ink);
  color: var(--paper);
  padding: 4rem 2rem 2rem;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
.footer-brand h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  color: var(--yellow);
  margin-bottom: 0.8rem;
}
.footer-brand p { opacity: 0.7; font-size: 0.95rem; max-width: 380px; }
.footer-brand p + p { margin-top: 0.8rem; }
.footer-brand .reg-line { font-size: 0.82rem; opacity: 0.6; }
.footer-col h4 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.15em;
  color: var(--yellow);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; font-size: 0.92rem; opacity: 0.8; }
.footer-col a { color: var(--paper); text-decoration: none; }
.footer-col a:hover { color: var(--yellow); }
.footer-col .hours-block { margin-top: 0.4rem; }

.footer-bottom {
  max-width: 1280px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid #333;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* === FLOATING WHATSAPP === */
.fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  z-index: 99;
  transition: transform 0.2s;
  border: 3px solid var(--ink);
}
.fab:hover { transform: scale(1.1); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
