/* ============================================
   beba.digital — styles.css
   Dark glassmorphism portfolio theme
============================================ */

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

:root {
  --bg-primary: #080a0f;
  --bg-secondary: #0d1017;
  --bg-card: rgba(255,255,255,0.04);
  --bg-glass: rgba(255,255,255,0.05);
  --bg-glass-strong: rgba(255,255,255,0.08);
  --border-subtle: rgba(255,255,255,0.08);
  --border-glass: rgba(255,255,255,0.12);

  --text-primary: #f0f2f5;
  --text-secondary: rgba(240,242,245,0.6);
  --text-muted: rgba(240,242,245,0.35);

  --accent: #a01520;
  --accent-light: #c41e28;
  --accent-dim: rgba(160,21,32,0.15);
  --accent-glow: rgba(160,21,32,0.25);

  --purple: #7c6fcd;
  --blue: #4f8ef7;
  --teal: #3ecfcf;

  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-card: 0 4px 32px rgba(0,0,0,0.4);
  --shadow-glass: 0 8px 48px rgba(0,0,0,0.5);
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --transition-fast: 0.2s cubic-bezier(0.4,0,0.2,1);

  --section-pad: 120px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent-dim); color: var(--accent-light); }

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; border: none; outline: none; background: none; }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(160,21,32,0.3); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* === UTILITY === */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: var(--section-pad) 0; }
.glass {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-glass);
}

/* === TYPOGRAPHY === */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-label.light { color: rgba(196,30,40,0.8); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--accent); }

.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 480px;
}

.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-desc { margin: 0 auto; }

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(160,21,32,0.3);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(160,21,32,0.45); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary svg { width: 16px; height: 16px; transition: transform var(--transition); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-primary.large { font-size: 17px; padding: 18px 40px; }
.btn-primary.full-width { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 50px;
  border: 1px solid var(--border-glass);
  transition: var(--transition);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  color: var(--text-primary);
  border-color: var(--accent);
  background: var(--accent-dim);
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(8,10,15,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 0;
}
.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.nav-logo-img {
  height: 32px;
  width: auto;
  display: block;
  filter: brightness(1);
  transition: opacity var(--transition);
}
.nav-logo:hover .nav-logo-img { opacity: 0.8; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
  margin-left: auto;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition-fast);
}
.nav-link:hover { color: var(--text-primary); background: var(--bg-glass); }
.nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  padding: 9px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--accent);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--accent); color: #ffffff; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px;
  background: rgba(8,10,15,0.97);
  border-bottom: 1px solid var(--border-subtle);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 12px 8px;
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-fast);
}
.mobile-link:last-child { border-bottom: none; }
.mobile-link:hover { color: var(--accent); }

/* === HERO SECTION === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  animation: orb-float 8s ease-in-out infinite;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(160,21,32,0.5) 0%, rgba(160,21,32,0) 70%);
  top: -200px; left: -150px;
  animation-delay: 0s;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,111,205,0.4) 0%, rgba(124,111,205,0) 70%);
  bottom: -150px; right: -100px;
  animation-delay: 3s;
}
.orb-3 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(62,207,207,0.25) 0%, rgba(62,207,207,0) 70%);
  top: 50%; right: 15%;
  animation-delay: 5s;
  opacity: 0.2;
}
@keyframes orb-float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(20px, -30px) scale(1.05); }
  66% { transform: translate(-15px, 20px) scale(0.97); }
}

.hero-content {
  text-align: center;
  max-width: 820px;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 32px;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74,222,128,0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 8px rgba(74,222,128,0.6); }
  50% { box-shadow: 0 0 16px rgba(74,222,128,0.9); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 88px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.title-line { display: block; }
.title-line.italic { font-style: italic; color: var(--accent); }

/* === HERO LOGO === */
.hero-logo-wrap {
  margin-bottom: 32px;
}
.hero-logo-img {
  height: clamp(56px, 10vw, 100px);
  width: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 40px rgba(160,21,32,0.3));
  transition: filter var(--transition);
}
.hero-logo-wrap:hover .hero-logo-img {
  filter: drop-shadow(0 0 60px rgba(160,21,32,0.5));
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 40px);
  font-weight: 700;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: clamp(14px, 2vw, 17px);
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  font-weight: 400;
  margin-bottom: 44px;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(0.6); opacity: 1; }
}

/* === ABOUT SECTION === */
.about { background: var(--bg-secondary); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap { position: relative; overflow: visible; }
.about-image-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-xl);
  display: block;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.about-image-wrap:hover .about-photo { transform: scale(1.03); }
/* keep overflow visible only for the decoration ring */
.about-image-frame .image-decoration,
.about-image-frame .image-tag { overflow: visible; }
.about-image-placeholder {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  background: var(--bg-glass-strong);
  border: 1px solid var(--border-glass);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  backdrop-filter: blur(10px);
  aspect-ratio: 4/5;
}
.about-image-placeholder svg { width: 100px; height: 100px; }
.placeholder-label {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.image-decoration {
  position: absolute;
  inset: -12px;
  border-radius: calc(var(--radius-xl) + 12px);
  border: 1px solid var(--accent-dim);
  pointer-events: none;
  z-index: 2;
}
.glass-tag {
  position: absolute;
  bottom: -20px;
  right: -20px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  box-shadow: var(--shadow-glass);
}
.about-text {}
.about-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-desc em { color: var(--accent); font-style: italic; }
.accent-word { color: var(--accent); font-weight: 700; }
.about-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid var(--border-subtle);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-num {
  font-size: 36px;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stat-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border-subtle);
}

/* === SERVICES SECTION === */
.services { background: var(--bg-primary); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-decoration: none;
  color: inherit;
  group: true;
}
.service-card:nth-child(4), .service-card:nth-child(5) {
  grid-column: auto;
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  background: var(--bg-glass-strong);
  box-shadow: 0 16px 64px rgba(0,0,0,0.4), 0 0 0 1px rgba(160,21,32,0.15);
}
.service-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, var(--accent-glow) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.service-card:hover .service-glow { opacity: 1; }
.service-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--accent-dim);
  border: 1px solid rgba(160,21,32,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.service-icon svg { width: 24px; height: 24px; color: var(--accent); }
.service-card:hover .service-icon {
  background: var(--accent);
  border-color: var(--accent);
}
.service-card:hover .service-icon svg { color: #ffffff; }
.service-content { flex: 1; }
.service-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.25;
  transition: var(--transition);
}
.service-card:hover .service-content h3 { color: var(--accent); }
.service-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.service-arrow {
  align-self: flex-end;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.service-arrow svg { width: 16px; height: 16px; color: var(--text-muted); transition: var(--transition); }
.service-card:hover .service-arrow {
  background: var(--accent);
  border-color: var(--accent);
  transform: rotate(45deg);
}
.service-card:hover .service-arrow svg { color: #ffffff; }

/* Services last row: 5-card layout => row 2 centered via subgrid trick */
@supports (grid-template-columns: subgrid) {
  .services-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .service-card:nth-child(1) { grid-column: 1 / 3; }
  .service-card:nth-child(2) { grid-column: 3 / 5; }
  .service-card:nth-child(3) { grid-column: 5 / 7; }
  .service-card:nth-child(4) { grid-column: 1 / 4; }
  .service-card:nth-child(5) { grid-column: 4 / 7; }
}

/* === CTA SECTION === */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 140px 0;
}
.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.orb-cta-1 {
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(160,21,32,0.18) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
}
.orb-cta-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,111,205,0.12) 0%, transparent 65%);
  bottom: -100px; right: -100px;
  filter: blur(80px);
}
.cta-content { position: relative; z-index: 1; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
}
.cta-title em { font-style: italic; color: var(--accent); }
.cta-desc {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 440px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* === ABOUT 2 SECTION === */
.about2 { background: var(--bg-secondary); }
.about2-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.about2-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 20px;
}
.about2-desc strong { color: var(--accent); font-weight: 600; }
.about2-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.value-pill {
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--border-glass);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  background: var(--bg-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition);
}
.value-pill:hover { border-color: var(--accent); color: var(--accent); }
.about2-visual { display: flex; flex-direction: column; gap: 20px; }
.quote-card {
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  box-shadow: var(--shadow-glass);
}
.quote-marks {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 0.8;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 16px;
}
.quote-text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 20px;
}
.quote-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.about2-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.number-card {
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.big-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.num-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* === GEAR SECTION === */
.gear { background: var(--bg-primary); }
.gear-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.gear-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: var(--transition);
  cursor: default;
}
.gear-card:hover {
  border-color: var(--border-glass);
  transform: translateY(-4px);
  background: var(--bg-glass);
  box-shadow: var(--shadow-card);
}
.gear-image-wrap {
  position: relative;
  margin-bottom: 20px;
}
.gear-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gear-bg-red {
  background: radial-gradient(ellipse at 60% 40%, rgba(160,21,32,0.85) 0%, rgba(90,8,14,0.95) 60%, rgba(18,4,6,1) 100%);
  border-color: rgba(160,21,32,0.3);
}
.gear-image-placeholder svg { width: 80px; height: 60px; }
.gear-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--accent-dim);
  border: 1px solid rgba(160,21,32,0.2);
  border-radius: 50px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.gear-info h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.gear-info p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === CONTACT SECTION === */
.contact { background: var(--bg-secondary); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
}
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}
.contact-item:hover {
  border-color: var(--accent);
  color: var(--text-primary);
  background: var(--accent-dim);
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--accent-dim);
  border: 1px solid rgba(160,21,32,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; color: var(--accent); }

/* Contact Form */
.contact-form {
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-glass);
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  transition: var(--transition);
  outline: none;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(160,21,32,0.05);
  box-shadow: 0 0 0 3px rgba(160,21,32,0.08);
}
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.2);
  color: #4ade80;
  font-size: 14px;
  font-weight: 500;
}
.form-success svg { width: 18px; height: 18px; flex-shrink: 0; }
.form-success.show { display: flex; }

/* === FOOTER === */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0;
}
.footer-content { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.footer-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  transition: opacity var(--transition);
}
.footer-logo:hover { opacity: 0.75; }
.footer-logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.footer-tagline { font-size: 14px; color: var(--text-muted); }
.footer-socials { display: flex; gap: 12px; margin: 8px 0; }
.social-link {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }
.footer-copy { font-size: 13px; color: var(--text-muted); }

/* === SCROLL ANIMATIONS === */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

.reveal-up.in-view,
.reveal-left.in-view,
.reveal-right.in-view {
  opacity: 1;
  transform: translate(0,0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.35s; }
.delay-4 { transition-delay: 0.5s; }
.delay-5 { transition-delay: 0.65s; }

/* === SERVICE PAGE STYLES === */
.service-page-hero {
  min-height: 55vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 120px 0 64px;
  overflow: hidden;
}
.service-page-hero .hero-bg { position: absolute; inset: 0; }
.service-page-hero .container { position: relative; z-index: 1; }
.service-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
  transition: var(--transition);
}
.service-back:hover { color: var(--accent); }
.service-back svg { width: 16px; height: 16px; }
.service-page-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 20px;
}
.service-page-desc {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}
.service-gallery-section { padding: 80px 0 120px; }
.service-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: var(--bg-glass);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover { transform: scale(1.02); border-color: var(--border-glass); }
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }
.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
}
.gallery-placeholder svg { width: 32px; height: 32px; opacity: 0.5; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .service-card { grid-column: auto !important; }
  .gear-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid, .about2-grid, .contact-grid { gap: 52px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 80px; }

  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero { padding: 100px 24px 80px; }
  .hero-title { font-size: clamp(38px, 10vw, 60px); }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-frame { max-width: 360px; margin: 0 auto; }

  .services-grid { grid-template-columns: 1fr !important; }
  .service-card { grid-column: auto !important; }

  .about2-grid { grid-template-columns: 1fr; gap: 48px; }
  .about2-numbers { grid-template-columns: 1fr 1fr; }

  .gear-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; gap: 52px; }
  .contact-form { padding: 32px 24px; }

  .service-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; }

  .footer-socials { gap: 10px; }
}

@media (max-width: 480px) {
  :root { --section-pad: 60px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .gear-grid { grid-template-columns: repeat(2, 1fr); }
  .service-gallery-grid { grid-template-columns: 1fr; }
  .about2-numbers { grid-template-columns: 1fr 1fr; }
  .hero-scroll { display: none; }
}
