/* ═══════════════════════════════════════════════════════════════
   KALMAZ GRUP – STYLE SHEET
   Aesthetic: Monolithic Minimalism · Luxury Editorial · Stone & Gold
   ═══════════════════════════════════════════════════════════════ */

/* ─── Tokens ─── */
:root {
  --gold:        #C9A84C;
  --gold-light:  #E2C06D;
  --gold-dim:    rgba(201,168,76,0.15);
  --black:       #0C0C0C;
  --surface:     #111111;
  --surface-2:   #181818;
  --surface-3:   #1E1E1E;
  --border:      rgba(255,255,255,0.07);
  --text:        #E8E4DC;
  --text-muted:  #7A776E;
  --text-dim:    #4A4742;

  --nav-h:       72px;
  --radius:      4px;
  --radius-lg:   10px;
  --trans:       0.35s cubic-bezier(0.4,0,0.2,1);

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
::selection { background: var(--gold); color: var(--black); }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 4px; }

/* ─── Container ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ═══ NAV ═══════════════════════════════════════════════════════ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: calc(var(--nav-h) + 8px);
  background: rgba(12,12,12,0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background var(--trans), border-color var(--trans), transform var(--trans);
}
#site-header.scrolled {
  background: rgba(12,12,12,0.92);
  border-color: var(--border);
}
#site-header.hero-transparent {
  background: transparent;
  border-color: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
#site-header.nav-hidden { transform: translateY(-100%); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 6px clamp(24px, 6vw, 90px) 0;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0px;
  text-decoration: none;
}
.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
}
.logo-text {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text);
  text-transform: uppercase;
  line-height: 1;
}
.logo-text em {
  font-style: normal;
  font-weight: 300;
  opacity: 0.7;
  letter-spacing: 0.12em;
}

/* Nav links */
.nav-links {
  display: flex;
  flex: none;
  justify-content: center;
  gap: 70px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  transition: color var(--trans);
}
.nav-links a:hover { color: var(--text); }

/* Nav right */
.nav-right { display: flex; align-items: center; gap: 20px; }

.btn-cta {
  padding: 9px 22px;
  background: var(--gold);
  color: var(--black);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--trans), box-shadow var(--trans);
}
.btn-cta:hover {
  background: var(--gold-light);
  box-shadow: 0 0 24px rgba(201,168,76,0.35);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
}
.burger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  transition: transform var(--trans), opacity var(--trans);
}
.burger.open span:first-child { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:last-child  { transform: translateY(-6.5px) rotate(-45deg); }

/* ═══ MOBILE MENU ════════════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--black);
  display: flex;
  flex-direction: column;
  padding: 40px 36px;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-close {
  align-self: flex-end;
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.mob-link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 8vw, 40px);
  color: var(--text-muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--trans);
}
.mob-link:hover { color: var(--text); }
.mob-cta { color: var(--gold) !important; border-color: var(--gold-dim); }

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(0,0,0,0.5);
  display: none;
}
.menu-overlay.show { display: block; }
.mob-footer { padding-top: 24px; }
.mob-footer a { font-size: 14px; color: var(--gold); letter-spacing: 0.06em; }

/* ═══ HERO ═══════════════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Slides */
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.06);
  animation: heroKen 16s linear infinite alternate;
}
.hero-slide.active { opacity: 1; }

.hero-slide.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide.hero-video-shift video {
  object-position: 50% 20%;
}

@keyframes heroKen {
  0%   { transform: scale(1); }
  100% { transform: scale(1.08); }
}

/* Veil */
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(12,12,12,0.55) 0%, rgba(12,12,12,0.3) 40%, rgba(12,12,12,0.85) 100%);
  z-index: 1;
}

/* Grain overlay */
.grain {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  opacity: 0.04;
  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-size: 200px;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 clamp(20px, 6vw, 80px);
  max-width: 1000px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.tag-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 28px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  color: rgba(232,228,220,0.7);
  max-width: 560px;
  margin: 0 auto 44px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 14px 32px;
  background: var(--gold);
  color: var(--black);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--trans), box-shadow var(--trans), transform var(--trans);
}
.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 0 30px rgba(201,168,76,0.4);
  transform: translateY(-2px);
}

.btn-ghost {
  padding: 14px 32px;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: border-color var(--trans), color var(--trans);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost span { display: inline-block; transition: transform var(--trans); }
.btn-ghost:hover span { transform: translateY(3px); }

/* Stats bar */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12,12,12,0.75);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 20px 40px;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 100px;
  transform: translateX(-50%);
  z-index: 10;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50%       { opacity: 1;   transform: scaleY(1); }
}

/* ═══ MARQUEE ════════════════════════════════════════════════════ */
.marquee-strip {
  overflow: hidden;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.mark-dot { color: var(--gold) !important; }

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

/* ═══ SECTIONS ═══════════════════════════════════════════════════ */
.section {
  padding: clamp(80px, 10vw, 140px) 0;
}
.section-alt { background: var(--surface); }

/* Section header */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: clamp(48px, 6vw, 80px);
  flex-wrap: wrap;
}
.section-header.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--text);
}
.section-title em {
  font-style: italic;
  color: var(--gold-light);
}
.section-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  max-width: 340px;
  line-height: 1.7;
}

/* ═══ PROJECTS ═══════════════════════════════════════════════════ */
/* Featured */
.project-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.proj-feat-img {
  position: relative;
  height: 100%;
  overflow: hidden;
  margin-right: 12px;
}
.proj-feat-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.project-featured:hover .proj-feat-img img { transform: scale(1.05); }

.proj-feat-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: featSlide 12s infinite;
}
.proj-feat-slide.is-1 { animation-delay: 0s; }
.proj-feat-slide.is-2 { animation-delay: 6s; }

@keyframes featSlide {
  0% { opacity: 1; }
  45% { opacity: 1; }
  55% { opacity: 0; }
  100% { opacity: 0; }
}
.proj-feat-overlay {
  display: none;
}
.proj-feat-info {
  background: var(--surface-3);
  padding: clamp(32px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.proj-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.proj-feat-info h3 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
}
.proj-location {
  font-size: 13px;
  color: var(--text-muted);
}
.proj-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
}
.proj-meta {
  display: flex;
  gap: 20px;
}
.proj-meta span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-muted);
}

/* Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.proj-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-2);
  cursor: pointer;
}
.proj-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.proj-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: grayscale(20%);
}
.proj-card:hover .proj-img-wrap img { transform: scale(1.08); filter: grayscale(0); }
.proj-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,12,12,0.85) 0%, transparent 60%);
}
.proj-card-info {
  padding: 20px 24px;
}
.proj-tag-sm {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.proj-card-info h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 4px;
}
.proj-card-info p {
  font-size: 12px;
  color: var(--text-muted);
}

/* Dark card */
.proj-card-dark {
  background: var(--gold-dim);
  border-color: var(--gold);
  display: flex;
  align-items: center;
}
.proj-card-inner {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.proj-card-inner h4 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
}
.btn-primary-sm {
  display: inline-block;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--black);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--trans);
  width: fit-content;
}
.btn-primary-sm:hover { background: var(--gold-light); }

/* ═══ SERVICES ═══════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  padding: clamp(28px, 4vw, 48px) clamp(24px, 3.5vw, 44px);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background var(--trans);
}
.service-card:nth-child(3),
.service-card:nth-child(6) { border-right: none; }
.service-card:nth-child(4),
.service-card:nth-child(5),
.service-card:nth-child(6) { border-bottom: none; }
.service-card:hover { background: var(--surface-3); }

.service-card::before {
  content: attr(data-num);
  position: absolute;
  top: 20px; right: 24px;
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--border);
  line-height: 1;
  transition: color var(--trans);
}
.service-card:hover::before { color: rgba(201,168,76,0.08); }

.svc-icon {
  width: 44px; height: 44px;
  margin-bottom: 24px;
  color: var(--gold);
}
.svc-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.25;
}
.service-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══ ABOUT ══════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  filter: grayscale(30%);
  transition: filter 0.6s ease;
}
.about-img-wrap:hover img { filter: grayscale(0); }

.about-img-frame {
  position: absolute;
  top: -14px; left: -14px;
  right: 14px; bottom: 14px;
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  pointer-events: none;
  opacity: 0.3;
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  padding: 22px 28px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.badge-num {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--black);
  line-height: 1;
  font-style: italic;
}
.badge-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.7);
  text-align: center;
}

.about-text { padding-left: 10px; }
.about-p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-icon {
  color: var(--gold);
  font-size: 10px;
  margin-top: 4px;
  flex-shrink: 0;
}
.value-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: 0.03em;
}
.value-item p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ═══ PROCESS ════════════════════════════════════════════════════ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-step {
  padding: 0 32px 0 0;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-style: italic;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}
.step-line {
  height: 1px;
  background: linear-gradient(to right, var(--gold), var(--border));
  margin-bottom: 24px;
}
.step-line.last { background: var(--border); }

.step-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 10px;
}
.step-content p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ═══ TESTIMONIALS ════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color var(--trans);
}
.testimonial-card:hover { border-color: var(--gold-dim); }
.testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.testi-text {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 40px; height: 40px;
  background: var(--gold-dim);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
}
.testi-author span {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

/* ═══ CONTACT ════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}
.contact-sub {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 16px;
  margin-bottom: 36px;
}
.contact-details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 36px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.c-icon {
  width: 40px; height: 40px;
  background: var(--gold-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.c-icon svg { width: 20px; height: 20px; }
.c-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.c-val {
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  line-height: 1.5;
}
a.c-val:hover { color: var(--gold); }

.mini-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  opacity: 0.5;
  transition: opacity var(--trans);
}
.mini-map:hover { opacity: 0.85; }

/* Form */
.contact-form-wrap {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 52px);
  position: relative;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.req { color: var(--text-muted); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text);
  font-size: 14px;
  font-weight: 300;
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
  -webkit-appearance: none;
}
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A776E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-group select option { background: var(--surface-2); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 15px 28px;
  background: var(--gold);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--trans), box-shadow var(--trans), transform var(--trans);
  margin-top: 8px;
}
.btn-submit:hover {
  background: var(--gold-light);
  box-shadow: 0 0 30px rgba(201,168,76,0.35);
  transform: translateY(-2px);
}
.btn-arrow { font-size: 16px; transition: transform var(--trans); }
.btn-submit:hover .btn-arrow { transform: translateX(4px); }
.form-note { font-size: 11px; color: var(--text-dim); text-align: center; margin-top: 4px; }

/* Success message */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 60px 20px;
}
.form-success.show { display: flex; }
.success-icon {
  width: 64px; height: 64px;
  background: var(--gold-dim);
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--gold);
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text);
}
.form-success p { font-size: 14px; color: var(--text-muted); }

/* ═══ FOOTER ════════════════════════════════════════════════════ */
#footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: clamp(60px, 8vw, 100px) 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(32px, 5vw, 60px);
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-logo {
  height: 150px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
  margin-right: 50px;
}
.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 280px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.footer-links a {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-dim);
  transition: color var(--trans);
}
.footer-links a:hover { color: var(--text); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.footer-contact a {
  font-size: 16px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.footer-contact p {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-dim);
  line-height: 1.6;
}
.social-links { display: flex; gap: 12px; margin-top: 8px; }
.social-link {
  width: 38px; height: 38px;
  background: var(--surface-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: background var(--trans), color var(--trans), border-color var(--trans);
}
.social-link svg { width: 16px; height: 16px; }
.social-link:hover { background: var(--gold-dim); color: var(--gold); border-color: var(--gold); }
.social-link.whatsapp:hover { background: rgba(37,211,102,0.1); color: #25D366; border-color: #25D366; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
}

/* ═══ FAB ════════════════════════════════════════════════════════ */
.fab-group {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fab {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(0,0,0,0.4);
  transition: transform var(--trans), box-shadow var(--trans);
}
.fab:hover { transform: scale(1.1); }
.fab-wp { background: #25D366; color: #fff; }
.fab-wp:hover { box-shadow: 0 12px 36px rgba(37,211,102,0.4); }
.fab-call { background: var(--gold); color: var(--black); }
.fab-call:hover { box-shadow: 0 12px 36px rgba(201,168,76,0.4); }

/* ═══ REVEAL ANIMATIONS ══════════════════════════════════════════ */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

.js-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.js-reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══ RESPONSIVE ═════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .project-featured { grid-template-columns: 1fr; }
  .proj-feat-img { aspect-ratio: 16/9; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(3) { border-right: 1px solid var(--border); }
  .service-card:nth-child(2) { border-right: none; }
  .service-card:nth-child(4) { border-bottom: 1px solid var(--border); border-right: none; }
  .service-card:nth-child(5) { border-bottom: none; }
  .service-card:nth-child(6) { border-bottom: none; border-right: none; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-badge { bottom: -16px; right: -10px; }
}

@media (max-width: 768px) {
  #site-header { height: 64px; }
  .nav-inner { padding: 0 16px; }
  .nav-logo { gap: 8px; }
  .logo-img { height: 42px; }
  .logo-text { font-size: 12px; letter-spacing: 0.12em; margin-left: 0; }
  .nav-right { gap: 12px; }
  .burger { width: 24px; }

  #hero { height: 100svh; min-height: 100svh; }

  .nav-links { display: none; }
  .btn-cta.desktop { display: none; }
  .burger { display: flex; }

  .hero-stats { display: none; }

  .scroll-cue { display: none; }

  .projects-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none !important; }
  .service-card:nth-child(6) { border-bottom: none; }
  .process-steps { grid-template-columns: 1fr; gap: 28px; }
  .step-line { display: none; }

  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .section-header { flex-direction: column; align-items: flex-start; }
  .section-desc { max-width: 100%; }

  .project-featured { display: block; }
}
