/* ================================================
   TINY SERVICES — Premium Dark Gold CSS
   ================================================ */

/* ---- Tokens ---- */
:root {
  --gold: #c9952a;
  --gold-light: #f0b429;
  --gold-dim: #8a6520;
  --gold-glow: rgba(201, 149, 42, 0.35);
  --black: #050505;
  --dark: #0d0d0d;
  --dark-2: #111111;
  --dark-3: #181818;
  --dark-4: #222222;
  --surface: #141414;
  --surface-2: #1c1c1c;
  --text: #f0ede8;
  --text-muted: #9a918a;
  --border: rgba(201, 149, 42, 0.15);

  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 0 40px rgba(201, 149, 42, 0.22);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.55);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---- Utilities ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.gold-text { color: var(--gold-light); }
.section { padding: 100px 0; }
.section--dark { background: var(--dark-2); }

/* ==============================
   NAVBAR
   ============================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
#navbar.scrolled {
  background: rgba(5, 5, 5, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.7), 0 1px 0 var(--border);
  padding: 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.nav-logo {
  flex-shrink: 0;
}
#nav-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 8px var(--gold-glow));
  transition: filter var(--transition);
}
#nav-logo-img:hover { filter: drop-shadow(0 0 16px rgba(240, 180, 41, 0.6)) brightness(1.1); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.btn-gold {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black) !important;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  box-shadow: 0 0 20px var(--gold-glow);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 30px rgba(240, 180, 41, 0.5);
  filter: brightness(1.1);
}
.btn-gold::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==============================
   HERO
   ============================== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5,5,5,0.55) 0%,
    rgba(5,5,5,0.4) 30%,
    rgba(5,5,5,0.72) 75%,
    rgba(5,5,5,0.98) 100%
  );
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--gold-light);
  border-radius: 50%;
  box-shadow: 0 0 6px 2px var(--gold-glow);
  animation: floatUp linear infinite;
  opacity: 0;
}
@keyframes floatUp {
  0%   { transform: translateY(0) scale(1);   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-80vh) scale(0.3); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding-top: 80px;
  animation: fadeUp 1.1s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-logo-wrap {
  animation: fadeUp 1s ease 0.1s both;
}
.hero-logo {
  height: 160px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 32px rgba(201, 149, 42, 0.6));
}
.hero-tagline {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  animation: fadeUp 1s ease 0.2s both;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 9rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
  animation: fadeUp 1s ease 0.3s both;
}
.hero-services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  animation: fadeUp 1s ease 0.45s both;
}
.pill {
  padding: 6px 18px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(201, 149, 42, 0.08);
  backdrop-filter: blur(4px);
  transition: background var(--transition), box-shadow var(--transition);
}
.pill:hover {
  background: rgba(201, 149, 42, 0.2);
  box-shadow: 0 0 16px var(--gold-glow);
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.55s both;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}
.btn-gold-solid {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  box-shadow: 0 0 28px var(--gold-glow);
}
.btn-gold-solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(240, 180, 41, 0.55);
  filter: brightness(1.08);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid rgba(240, 240, 240, 0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 4px 20px var(--gold-glow);
}
.btn-full { width: 100%; justify-content: center; }

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: fadeUp 1s ease 1s both;
}
.hero-scroll-hint span {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ==============================
   MARQUEE STRIP
   ============================== */
.hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
}
.marquee-strip {
  background: linear-gradient(90deg, var(--gold-dim), var(--gold), var(--gold-light), var(--gold), var(--gold-dim));
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: var(--black);
}
.marquee-track .dot {
  font-size: 0.7rem;
  opacity: 0.5;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==============================
   SECTION HEADER
   ============================== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.section-sub {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ==============================
   SERVICES GRID
   ============================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px 0;
  overflow: hidden;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: rgba(201, 149, 42, 0.45);
  box-shadow: var(--shadow-gold), var(--shadow-card);
  transform: translateY(-4px);
}
.service-card:hover::before { opacity: 1; }

.service-card--wide {
  grid-column: 1 / -1;
}

.service-icon {
  width: 56px;
  height: 56px;
  color: var(--gold-light);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 12px;
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.96rem;
  margin-bottom: 28px;
  flex: 1;
}
.service-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  margin: 0 -32px;
}
.service-img-wrap--wide { height: 260px; }
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.05); }
.service-img-glow {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(5,5,5,0.8), transparent);
}

/* ==============================
   ABOUT
   ============================== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: center;
}
.about-img-stack {
  position: relative;
}
.about-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-gold), var(--shadow-card);
  transition: transform 0.6s ease;
}
.about-img-main:hover { transform: scale(1.015); }
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  border-radius: 16px;
  padding: 18px 24px;
  text-align: center;
  box-shadow: 0 8px 32px var(--gold-glow);
  border: 3px solid var(--dark-2);
}
.badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
}
.badge-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}
.about-body {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin-bottom: 16px;
}

/* Service Area Badge */
.service-area-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(201, 149, 42, 0.08);
  border: 1px solid rgba(201, 149, 42, 0.3);
  border-radius: 10px;
  padding: 14px 20px;
  margin-bottom: 28px;
}
.service-area-icon { font-size: 1.5rem; flex-shrink: 0; }
.service-area-badge strong {
  display: block;
  color: var(--gold-light);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.service-area-badge span {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

/* ==============================
   GALLERY
   ============================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 18px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item--tall {
  grid-row: span 2;
  aspect-ratio: unset;
}
.gallery-item--wide {
  grid-column: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(5,5,5,0.9), transparent);
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--text);
  transform: translateY(4px);
  transition: transform var(--transition), color var(--transition);
}
.gallery-item:hover .gallery-label {
  transform: translateY(0);
  color: var(--gold-light);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  transition: border-color var(--transition);
}
.gallery-item:hover::after { border-color: rgba(201, 149, 42, 0.5); }

/* ==============================
   WHY US
   ============================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.why-card:hover {
  border-color: rgba(201, 149, 42, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.why-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.35s ease;
}
.why-card:hover .why-icon { transform: scale(1.1) rotate(-5deg); }
.why-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gold-light);
}
.why-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ==============================
   CONTACT
   ============================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-3);
  border: 1px solid rgba(201, 149, 42, 0.2);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9952a' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.form-group select option { background: var(--dark-3); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(154, 145, 138, 0.55); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 149, 42, 0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-icon { font-size: 1.1rem; transition: transform var(--transition); }
.btn-gold-solid:hover .btn-icon { transform: translateX(4px); }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 20px;
  background: rgba(201, 149, 42, 0.1);
  border: 1px solid rgba(201, 149, 42, 0.3);
  border-radius: 8px;
  color: var(--gold-light);
  font-weight: 600;
  text-align: center;
  animation: fadeUp 0.4s ease;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.contact-info-card h3 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  margin-bottom: 8px;
  color: var(--gold-light);
}
.contact-info-card > p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 0.95rem;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-icon { font-size: 1.2rem; flex-shrink: 0; }
.contact-detail a {
  color: var(--text);
  font-weight: 600;
  font-size: 1.05rem;
  transition: color var(--transition);
}
.contact-detail a:hover { color: var(--gold-light); }
.contact-hours {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.contact-hours h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.contact-hours p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 4px;
}

.contact-logo-panel {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-logo-panel img {
  max-height: 110px;
  width: auto;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 20px var(--gold-glow));
}

/* ==============================
   FOOTER
   ============================== */
#footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding-top: 72px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 12px var(--gold-glow));
  margin-bottom: 16px;
}
.footer-tagline {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}
.footer-service-area {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
}
.footer-links-col h5,
.footer-contact-col h5 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links-col ul li {
  margin-bottom: 12px;
}
.footer-links-col ul li a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition), padding-left var(--transition);
}
.footer-links-col ul li a:hover {
  color: var(--text);
  padding-left: 6px;
}
.footer-contact-col p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.footer-contact-col a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-contact-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==============================
   SCROLL REVEAL
   ============================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1000px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card--wide { grid-column: unset; }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-badge { right: 0; bottom: -16px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item--tall { grid-row: unset; aspect-ratio: 4/3; }
  .gallery-item--wide { grid-column: unset; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 700px) {
  .section { padding: 72px 0; }
  .hero-logo { height: 90px; }
  .hero-headline { font-size: clamp(3rem, 14vw, 5rem); }
  .hero-cta-group { flex-direction: column; width: 100%; }
  .btn { width: 100%; justify-content: center; }
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(5,5,5,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 32px 24px 40px;
    gap: 28px;
    transform: translateY(-160%);
    transition: transform var(--transition);
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { transform: translateY(0); }
  .hamburger { display: flex; }
  .about-stats { flex-direction: column; gap: 24px; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .services-grid { gap: 16px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-logo-col { text-align: center; }
  .footer-logo { margin: 0 auto 16px; }
}
