/* ═══════════════════════════════════════════════════════════════
   OZKAN BULUT — PLASTERING & RENDERING PORTFOLIO
   Design Language: Taste-Skill anti-slop + ui-ux-pro-max
   Palette: Stone #f5f4f2 | Burnt Orange #ff6b00 | Charcoal #0a0a0a
   Fonts: Manrope (sans) + Playfair Display (display/italic)
═══════════════════════════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --bg:        #f5f4f2;
  --bg-tint:   #edecea;
  --fg:        #0a0a0a;
  --fg-muted:  #555;
  --fg-subtle: #888;
  --accent:    #ff6b00;
  --accent-lo: rgba(255,107,0,0.10);
  --accent-md: rgba(255,107,0,0.18);
  --border:    rgba(10,10,10,0.10);
  --border-md: rgba(10,10,10,0.16);
  --white:     #ffffff;
  --wa-green:  #25D366;
  --radius-sm: 12px;
  --radius:    18px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px -2px rgba(10,10,10,0.08), 0 1px 2px rgba(10,10,10,0.04);
  --shadow:    0 8px 24px -8px rgba(10,10,10,0.14), 0 1px 3px rgba(10,10,10,0.05);
  --shadow-lg: 0 20px 48px -12px rgba(10,10,10,0.20), 0 2px 4px rgba(10,10,10,0.06);
  --font-sans: 'Manrope', system-ui, sans-serif;
  --font-disp: 'Playfair Display', Georgia, serif;
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --trans: 300ms var(--ease-out);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── NOISE OVERLAY ─── */
.noise-overlay {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0.028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
  mix-blend-mode: multiply;
}

/* ─── CONTAINER ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ════════════════════════════════════════════
   NAV
════════════════════════════════════════════ */
.site-header {
  position: fixed;
  inset-x: 0;
  top: 16px;
  z-index: 500;
  padding: 0 24px;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 6px 18px -6px rgba(10,10,10,0.14), 0 1px 2px rgba(10,10,10,0.04);
  transition: box-shadow var(--trans), border-color var(--trans);
}
.nav-inner:hover {
  box-shadow: 0 10px 28px -8px rgba(10,10,10,0.18), 0 1px 3px rgba(10,10,10,0.05);
  border-color: var(--border-md);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  transition: transform var(--trans);
}
.nav-logo:hover { transform: translateY(-1px); }
.nav-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--fg);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  transition: transform 500ms var(--ease-spring), background var(--trans);
}
.nav-logo:hover .nav-logo-mark {
  transform: rotate(-6deg) scale(1.06);
  background: var(--accent);
}
.nav-logo-text {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.02em;
  color: var(--fg);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  position: relative;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: -0.01em;
  background: transparent;
  transition: color var(--trans), background-color var(--trans), transform var(--trans);
}
.nav-link:hover {
  color: var(--accent) !important;
  background-color: var(--bg-tint);
  transform: translateY(-1px);
}

/* Nav CTAs */
.nav-ctas { display: flex; align-items: center; gap: 8px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  transition: all 400ms var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
}
.btn-ghost {
  padding: 8px 16px;
  color: var(--fg-muted);
  border: 1px solid var(--border-md);
  background: transparent;
}
.btn-ghost:hover {
  color: var(--fg);
  border-color: var(--fg);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.btn-primary {
  padding: 9px 20px;
  background: var(--fg);
  color: var(--white);
  border: 1px solid transparent;
  box-shadow: 0 4px 12px -4px rgba(10,10,10,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
}
.btn-primary:hover {
  background: var(--accent);
  box-shadow: 0 12px 28px -8px rgba(255,107,0,0.45), 0 4px 8px -4px rgba(10,10,10,0.3);
  transform: translateY(-2px);
}
.btn-large { padding: 14px 28px; font-size: 16px; border-radius: var(--radius-sm); }

/* Hero buttons */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 16px 32px;
  background: var(--fg);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  box-shadow: 0 12px 32px -10px rgba(10,10,10,0.6), inset 0 1px 0 rgba(255,255,255,0.1);
  transition: all 500ms var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn-hero-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: translateX(-100%);
  transition: transform 600ms var(--ease-out);
}
.btn-hero-primary:hover::before { transform: translateX(100%); }
.btn-hero-primary:hover {
  background: var(--accent);
  box-shadow: 0 20px 44px -10px rgba(255,107,0,0.55), 0 8px 16px -8px rgba(10,10,10,0.4);
  transform: translateY(-3px) scale(1.01);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 16px 28px;
  background: white;
  color: var(--fg);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  border: 1px solid var(--border-md);
  box-shadow: var(--shadow-sm);
  transition: all 400ms var(--ease-out);
}
.btn-hero-secondary:hover {
  border-color: var(--wa-green);
  color: var(--wa-green);
  box-shadow: 0 10px 24px -8px rgba(37,211,102,0.22);
  transform: translateY(-2px);
}

/* ─── HAMBURGER ─── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-md);
  background: white;
  gap: 5px;
  transition: background var(--trans), box-shadow var(--trans);
  flex-shrink: 0;
}
.hamburger:hover { background: var(--bg-tint); box-shadow: var(--shadow-sm); }
.ham-bar {
  display: block;
  width: 16px;
  height: 1.6px;
  background: var(--fg);
  border-radius: 99px;
  transition: transform 300ms var(--ease-spring), opacity 200ms;
}
.hamburger.open .ham-bar:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.hamburger.open .ham-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .ham-bar:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(245,244,242,0.92) 0%,
    rgba(245,244,242,0.75) 50%,
    rgba(245,244,242,0.40) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 680px;
  padding: 120px 24px 80px;
  text-align: left;
}

/* ─── HERO AVATAR ─── */
.hero-avatar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.hero-avatar-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--accent), #ffaa44);
  box-shadow: 0 6px 20px -4px rgba(255,107,0,0.45), 0 2px 6px rgba(10,10,10,0.12);
  flex-shrink: 0;
  transition: transform 400ms var(--ease-spring), box-shadow var(--trans);
}
.hero-avatar:hover .hero-avatar-ring {
  transform: scale(1.06) rotate(-3deg);
  box-shadow: 0 12px 28px -6px rgba(255,107,0,0.55);
}
.hero-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  border: 3px solid white;
  display: block;
}
.hero-avatar-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-avatar-name {
  font-family: var(--font-disp);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.hero-avatar-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.01em;
}

.hero-badge {

  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,107,0,0.3);
  background: var(--accent-lo);
  color: #cc5500;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,0,0.5); }
  50% { box-shadow: 0 0 0 5px rgba(255,107,0,0); }
}

.hero-title {
  font-family: var(--font-disp);
  font-size: clamp(44px, 6vw, 78px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 600;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--fg-muted);
  font-weight: 400;
  line-height: 1.55;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 48px;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  width: fit-content;
}
.stat { text-align: center; padding: 0 20px; }
.stat-num {
  display: block;
  font-family: var(--font-disp);
  font-size: 26px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.stat-label { font-size: 12px; color: var(--fg-subtle); font-weight: 600; letter-spacing: 0.02em; text-transform: uppercase; }
.stat-divider { width: 1px; height: 40px; background: var(--border-md); flex-shrink: 0; }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-md);
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  color: var(--fg-muted);
  animation: bounce-arrow 2.5s ease-in-out infinite;
  transition: background var(--trans), color var(--trans), box-shadow var(--trans);
}
.scroll-cue:hover { background: white; color: var(--accent); box-shadow: var(--shadow); }
@keyframes bounce-arrow {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ════════════════════════════════════════════
   SECTIONS
════════════════════════════════════════════ */
.section { padding: 100px 0; }
.section-tinted { background: var(--bg-tint); }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-disp);
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 16px;
}
.section-sub { font-size: 17px; color: var(--fg-muted); line-height: 1.6; font-weight: 400; }

/* ════════════════════════════════════════════
   SERVICES GRID
════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  padding: 32px 28px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 400ms var(--ease-out), box-shadow 400ms var(--ease-out), border-color var(--trans);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-lo) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 400ms var(--ease-out);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255,107,0,0.25);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--accent);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: background var(--trans), transform 400ms var(--ease-spring);
}
.service-card:hover .service-icon {
  background: var(--accent);
  color: white;
  transform: scale(1.08) rotate(-4deg);
}
.service-title {
  font-family: var(--font-disp);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--fg);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.service-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.service-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-subtle);
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  transition: background var(--trans), color var(--trans), border-color var(--trans);
}
.service-card:hover .service-tag {
  background: var(--accent-lo);
  border-color: rgba(255,107,0,0.3);
  color: #cc5500;
}

/* ════════════════════════════════════════════
   GALLERY
════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  background: var(--bg-tint);
}
.gallery-item--large {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
  min-height: 500px;
}
.gallery-item:nth-child(2) { grid-column: 8 / 13; grid-row: 1; }
.gallery-item:nth-child(3) { grid-column: 8 / 13; grid-row: 2; }
.gallery-item--wide { grid-column: 1 / 13; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(10,10,10,0.75) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 2px;
  transform: translateY(4px);
  opacity: 0;
  transition: opacity 300ms var(--ease-out), transform 300ms var(--ease-out);
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: none; }
.gallery-caption-title {
  font-family: var(--font-disp);
  font-size: 16px;
  font-weight: 600;
  color: white;
  letter-spacing: -0.01em;
}
.gallery-caption-loc { font-size: 13px; color: rgba(255,255,255,0.72); font-weight: 500; }

/* ════════════════════════════════════════════
   WHY CHOOSE US
════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-text { padding-right: 20px; }
.why-para {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.why-features { display: flex; flex-direction: column; gap: 20px; }
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.why-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
  border-color: rgba(255,107,0,0.2);
}
.why-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-lo);
  color: var(--accent);
  flex-shrink: 0;
  border: 1px solid rgba(255,107,0,0.2);
}
.why-item h3 { font-size: 15px; font-weight: 700; color: var(--fg); margin-bottom: 4px; letter-spacing: -0.01em; }
.why-item p { font-size: 14px; color: var(--fg-muted); line-height: 1.55; }

/* ════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.about-img-card img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
}
.about-badge svg { color: var(--accent); flex-shrink: 0; }
.about-para {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.about-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-md);
  background: var(--white);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-muted);
  box-shadow: var(--shadow-sm);
  transition: all var(--trans);
}
.contact-pill:hover {
  color: var(--fg);
  border-color: var(--fg);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ════════════════════════════════════════════
   CONTACT CARDS
════════════════════════════════════════════ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 400ms var(--ease-out), box-shadow 400ms var(--ease-out), border-color var(--trans);
  cursor: default;
}
a.contact-card { cursor: pointer; }
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.contact-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  flex-shrink: 0;
  transition: transform 400ms var(--ease-spring);
}
.contact-card:hover .contact-card-icon { transform: scale(1.1) rotate(-4deg); }
.contact-card--call { border-top: 3px solid var(--fg); }
.contact-card--call .contact-card-icon { background: rgba(10,10,10,0.07); color: var(--fg); }
.contact-card--wa { border-top: 3px solid var(--wa-green); }
.contact-card--wa .contact-card-icon { background: rgba(37,211,102,0.12); color: var(--wa-green); }
.contact-card--email { border-top: 3px solid var(--accent); }
.contact-card--email .contact-card-icon { background: var(--accent-lo); color: var(--accent); }
.contact-card--location { border-top: 3px solid #6b7280; }
.contact-card--location .contact-card-icon { background: rgba(107,114,128,0.1); color: #6b7280; }

.contact-card-body { flex: 1; min-width: 0; }
.contact-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}
.contact-card-body p { font-size: 13px; color: var(--fg-subtle); margin-bottom: 6px; }
.contact-card-value { font-size: 15px; font-weight: 700; color: var(--fg-muted); letter-spacing: -0.01em; word-break: break-all; }
.contact-card-arrow {
  font-size: 20px;
  color: var(--fg-subtle);
  transition: transform var(--trans), color var(--trans);
  flex-shrink: 0;
}
a.contact-card:hover .contact-card-arrow { transform: translateX(4px); color: var(--fg); }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.site-footer {
  background: var(--fg);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 28px;
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent);
  color: white;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.footer-name { font-size: 16px; font-weight: 700; color: white; letter-spacing: -0.01em; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer-nav a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  transition: color var(--trans);
}
.footer-nav a:hover { color: white; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; text-align: right; }
.footer-contact a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  transition: color var(--trans);
}
.footer-contact a:hover { color: var(--accent); }
.footer-bottom { text-align: center; font-size: 13px; color: rgba(255,255,255,0.35); }

/* ════════════════════════════════════════════
   FLOATING WA BUTTON
════════════════════════════════════════════ */
.fab-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--wa-green);
  color: white;
  box-shadow: 0 8px 24px -6px rgba(37,211,102,0.55), 0 3px 8px rgba(10,10,10,0.15);
  transition: transform 400ms var(--ease-spring), box-shadow 400ms var(--ease-out);
}
.fab-wa:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 16px 36px -8px rgba(37,211,102,0.65), 0 4px 10px rgba(10,10,10,0.18);
}
.fab-wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--wa-green);
  animation: fab-pulse 2.5s ease-out infinite;
}
@keyframes fab-pulse {
  0% { transform: scale(1); opacity: 0.65; }
  100% { transform: scale(1.75); opacity: 0; }
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-text { padding-right: 0; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .gallery-item--large { grid-column: 1 / 13; grid-row: auto; min-height: 360px; }
  .gallery-item:nth-child(2) { grid-column: 1 / 7; grid-row: auto; }
  .gallery-item:nth-child(3) { grid-column: 7 / 13; grid-row: auto; }
}

@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: calc(100% + 12px); left: 0; right: 0; flex-direction: column; background: rgba(255,255,255,0.98); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px; box-shadow: var(--shadow-lg); }
  .nav-links.open { display: flex; animation: slide-in 200ms var(--ease-out); }
  @keyframes slide-in { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
  .nav-link { padding: 11px 16px; border-radius: 10px; }
  .nav-ctas .btn-ghost { display: none; }
  .hamburger { display: flex; }
  .site-header { top: 12px; padding: 0 16px; }
  .nav-inner { padding: 8px 12px 8px 10px; }

  .hero-content { padding: 100px 24px 60px; }
  .hero-title { font-size: clamp(36px, 10vw, 54px); }
  .hero-stats { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .stat-divider { display: none; }
  .stat { padding: 0 12px; }

  .services-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 28px; }
  .footer-contact { text-align: left; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item, .gallery-item--large, .gallery-item--wide,
  .gallery-item:nth-child(2), .gallery-item:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: auto;
    min-height: 260px;
  }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
  .about-badge { right: 8px; bottom: -12px; }
  .fab-wa { bottom: 20px; right: 20px; width: 54px; height: 54px; }
}
