/* ════════════════════════════════════════════════
   LUZES & CORES — Stylesheet
   Dark Navy + Warm Gold · Architectural Luxury
   ════════════════════════════════════════════════ */

:root {
  /* Palette */
  --c-bg:        #b5ada5;
  --c-surface:   #c2bab2;
  --c-card:      #cac2ba;
  --c-card-hover:#d2cac2;
  --c-border:    rgba(0,0,0,0.12);
  --c-gold:      #8b6f47;
  --c-gold-lt:   #a0844d;
  --c-gold-dim:  rgba(139,111,71,0.12);
  --c-gold-line: rgba(139,111,71,0.25);
  --c-white:     #0d0d0d;
  --c-muted:     #3d3d3d;
  --c-soft:      #1a1a1a;

  /* Typography */
  --f-serif:  'Playfair Display', 'Georgia', serif;
  --f-body:   'Jost', system-ui, sans-serif;

  /* Spacing */
  --gap:    clamp(60px, 8vw, 120px);
  --radius: 6px;

  /* Transitions */
  --t: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--f-body);
  background: var(--c-bg);
  color: var(--c-white);
  overflow-x: hidden;
  line-height: 1.65;
}

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

/* ════════════════════════════════════════════════
   LAYOUT
   ════════════════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--c-gold-line) 30%, var(--c-gold-line) 70%, transparent 100%);
}

/* Section headers */
.section-head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 72px);
}

.eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 14px;
}

.section-head h2 {
  font-family: var(--f-serif);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.18;
  color: var(--c-white);
}

.section-sub {
  margin-top: 16px;
  color: var(--c-soft);
  font-size: 1rem;
  font-weight: 300;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn-outline {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid var(--c-gold);
  color: var(--c-gold);
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background var(--t), color var(--t);
}
.btn-outline:hover {
  background: var(--c-gold);
  color: var(--c-bg);
}

/* ════════════════════════════════════════════════
   SCROLL REVEAL
   ════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.reveal-delay  { transition-delay: 0.15s; }
.reveal.reveal-delay2 { transition-delay: 0.3s; }
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 22px 0;
  transition: padding var(--t), background var(--t), box-shadow var(--t), border-color var(--t);
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  padding: 14px 0;
  background: rgba(181, 173, 165, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom-color: var(--c-border);
  box-shadow: 0 4px 28px rgba(0,0,0,0.16);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ── LC Logo Component — 3D Isometric ─────────── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.28));
  transition: transform 0.45s cubic-bezier(0.34,1.2,0.64,1), filter var(--t), opacity var(--t);
}

.brand-logo--nav {
  max-height: 52px;
  max-width: 220px;
}

.brand-logo--hero {
  width: min(200px, calc(100vw - 48px));
  height: clamp(80px, 12vw, 110px);
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.brand-logo--footer {
  max-height: 56px;
  max-width: 220px;
}

.nav-logo:hover .brand-logo,
.lc-logo-footer:hover .brand-logo {
  transform: translateY(-1px);
  filter: drop-shadow(0 12px 26px rgba(201,160,69,0.2));
}

/* SVG Mark base */
.lc-svg-mark {
  flex-shrink: 0;
  height: 52px;
  width: auto;
  overflow: visible;
  transition: transform 0.45s cubic-bezier(0.34,1.2,0.64,1), filter var(--t);
}

/* 3D face fills */
.lc-face-left  { fill: #080f1a; transition: fill var(--t); }
.lc-face-right { fill: #0f2136; transition: fill var(--t); }
.lc-face-top   { fill: #6e5318; transition: fill var(--t); }
.lc-svg-peak   { transition: stroke var(--t), filter var(--t); }

/* Navbar hover — perspective tilt reveals 3D depth */
.nav-logo:hover .lc-svg-mark {
  transform: perspective(240px) rotateY(-9deg) rotateX(4deg);
  filter: drop-shadow(5px 9px 18px rgba(0,0,0,0.65));
}
.nav-logo:hover .lc-face-left  { fill: #0d1f32; }
.nav-logo:hover .lc-face-right { fill: #162d48; }
.nav-logo:hover .lc-face-top   { fill: #8a6820; }
.nav-logo:hover .lc-svg-peak   { stroke: var(--c-gold-lt); filter: drop-shadow(0 -3px 8px rgba(232,200,117,0.6)); }
.nav-logo:hover .lc-name       { color: var(--c-gold-lt); }

/* Wordmark */
.lc-wordmark {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.lc-name {
  display: block;
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.33em;
  color: var(--c-white);
  text-transform: uppercase;
  line-height: 1;
  transition: color var(--t);
}
.lc-sub {
  display: block;
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.28em;
  color: var(--c-gold);
  text-transform: uppercase;
  line-height: 1;
}

/* Footer logo */
.lc-logo-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.lc-logo-footer .lc-svg-mark { height: 58px; }
.lc-logo-footer .lc-name     { font-size: 12px; letter-spacing: 0.35em; }
.lc-logo-footer .lc-sub      { font-size: 11px; }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--c-soft);
  transition: color var(--t);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--c-gold);
  transition: width var(--t);
}
.nav-link:hover, .nav-link.active { color: var(--c-white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-cta {
  padding: 9px 22px;
  border: 1px solid var(--c-gold);
  color: var(--c-gold) !important;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background var(--t), color var(--t) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--c-gold);
  color: var(--c-bg) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t), background var(--t);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7,17,31,0.7);
  z-index: 850;
  opacity: 0;
  transition: opacity var(--t);
}
.mobile-overlay.show {
  display: block;
  opacity: 1;
}

/* ════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--c-bg);
}

/* Animated blueprint grid */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,160,69,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,160,69,0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  animation: gridMove 25s linear infinite;
  will-change: background-position;
}
@keyframes gridMove {
  from { background-position: 0 0; }
  to   { background-position: 72px 72px; }
}

/* Radial vignette */
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 75% 70% at 50% 50%, transparent 10%, var(--c-bg) 75%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 60px;
  max-width: 760px;
  animation: heroIn 1.1s cubic-bezier(0.4,0,0.2,1) 0.2s both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-logo-wrap {
  margin-bottom: 36px;
}

/* Hero logo — vertical stack, large format */
.lc-logo-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.lc-logo-hero .lc-svg-mark {
  height: 116px;
  filter: drop-shadow(0 8px 30px rgba(201,160,69,0.18));
}

.lc-logo-hero .lc-svg-peak {
  animation: heroPeakGlow 3.8s ease-in-out infinite;
}
@keyframes heroPeakGlow {
  0%, 100% { filter: none; stroke: #c9a045; }
  50%       { filter: drop-shadow(0 -4px 10px rgba(232,200,117,0.7)); stroke: #e8c875; }
}

.lc-logo-hero .lc-wordmark {
  align-items: center;
  gap: 8px;
}
.lc-logo-hero .lc-name {
  font-size: 19px;
  letter-spacing: 0.44em;
}
.lc-logo-hero .lc-sub {
  font-size: 14px;
  letter-spacing: 0.36em;
}

.hero-rule {
  width: 64px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
  margin: 0 auto 36px;
}

.hero-headline {
  font-family: var(--f-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 22px;
  color: var(--c-white);
}

.hero-line1 { display: block; }
.hero-line2 {
  display: block;
  font-style: italic;
  color: var(--c-gold);
  font-weight: 400;
}

.hero-sub {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: var(--c-soft);
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-bottom: 44px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: heroIn 1s ease 1.3s both;
}
.scroll-label {
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.scroll-track {
  width: 1px; height: 52px;
  background: rgba(201,160,69,0.2);
  position: relative;
  overflow: hidden;
}
.scroll-thumb {
  position: absolute;
  top: 0; left: 0;
  width: 1px; height: 52px;
  background: var(--c-gold);
  animation: scrollDrop 2.2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%   { transform: translateY(-100%); opacity: 1; }
  70%  { transform: translateY(100%); opacity: 1; }
  71%  { opacity: 0; }
  100% { transform: translateY(100%); opacity: 0; }
}

/* ════════════════════════════════════════════════
   SOBRE
   ════════════════════════════════════════════════ */
#sobre {
  padding: var(--gap) 0;
  background: var(--c-surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}

.about-body {
  font-size: 1.02rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--c-soft);
  margin-bottom: 36px;
}

.about-img-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-border);
  background: var(--c-card);
}

.about-img-frame img {
  width: 100%;
  display: block;
  transition: transform var(--t-slow);
}
.about-img-frame:hover img { transform: scale(1.02); }

.about-emblema {
  min-height: 300px;
  padding: clamp(30px, 5vw, 54px) clamp(24px, 5vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--c-surface);
  border-left: 3px solid var(--c-gold);
}
.about-emblema-title {
  margin-bottom: 28px;
  font-family: var(--f-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-style: italic;
  line-height: 1;
  color: var(--c-gold-lt);
}
.about-emblema p {
  max-width: 480px;
  color: var(--c-white);
  font-size: clamp(0.95rem, 1.5vw, 1.08rem);
  font-weight: 400;
  line-height: 1.65;
}
.about-emblema p + p {
  margin-top: 12px;
  color: var(--c-soft);
  font-weight: 300;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ════════════════════════════════════════════════
   PROJETOS
   ════════════════════════════════════════════════ */
#projetos {
  padding: var(--gap) 0;
  background: var(--c-bg);
}

/* Tabs navigation */
.tabs-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 52px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs-nav::-webkit-scrollbar { display: none; }

.tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 15px 30px;
  color: var(--c-muted);
  font-family: var(--f-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color var(--t), border-color var(--t);
  white-space: nowrap;
  margin-bottom: -1px;
}
.tab-btn:hover { color: var(--c-gold-lt); }
.tab-btn.active {
  color: var(--c-gold);
  border-bottom-color: var(--c-gold);
}

/* Tab panels */
.tab-panel {
  display: none;
  animation: panelIn 0.45s cubic-bezier(0.4,0,0.2,1);
}
.tab-panel.active { display: block; }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tab-intro {
  margin-bottom: 36px;
}
.tab-intro h3 {
  font-family: var(--f-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--c-gold);
  margin-bottom: 10px;
}
.tab-intro p {
  color: var(--c-soft);
  font-weight: 300;
  max-width: 580px;
  font-size: 0.97rem;
  line-height: 1.75;
}

/* Project grid */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.proj-card {
  aspect-ratio: 4/3;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius);
}

.proj-inner {
  width: 100%;
  height: 100%;
  position: relative;
  background: linear-gradient(145deg, var(--c-card) 0%, var(--c-card-hover) 100%);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: flex-end;
  padding: 18px 20px;
  overflow: hidden;
  transition: border-color var(--t), transform var(--t);
}

.proj-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t);
}
.proj-inner:has(img) { padding: 0; }
.proj-inner:has(img)::before,
.proj-inner:has(img)::after { display: none; }

/* Architectural micro-grid inside cards */
.proj-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,160,69,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,160,69,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  transition: opacity var(--t);
}

/* Bottom gradient overlay */
.proj-inner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(7,17,31,0.85), transparent);
  pointer-events: none;
}

.proj-inner span {
  position: relative;
  z-index: 1;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--c-gold-lt);
  opacity: 0.85;
  transition: opacity var(--t);
}

.proj-card:hover .proj-inner {
  border-color: var(--c-gold-line);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.3), 0 0 0 1px var(--c-gold-dim);
}
.proj-card:hover .proj-inner img { transform: scale(1.04); }
.proj-card:hover .proj-inner span { opacity: 1; }

/* ════════════════════════════════════════════════
   CLIENTES
   ════════════════════════════════════════════════ */
#clientes {
  padding: var(--gap) 0;
  background: var(--c-surface);
  overflow: hidden;
}

.carousel-outer {
  position: relative;
  padding: 12px 0;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}
.carousel-outer.is-dragging { cursor: grabbing; }

/* Fade edges */
.carousel-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 140px;
  z-index: 2;
  pointer-events: none;
}
.carousel-fade-l {
  left: 0;
  background: linear-gradient(to right, var(--c-surface) 20%, transparent);
}
.carousel-fade-r {
  right: 0;
  background: linear-gradient(to left, var(--c-surface) 20%, transparent);
}

.carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: carouselRoll 55s linear infinite;
  will-change: transform;
  user-select: none;
}
.carousel-track:hover { animation-play-state: paused; }

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

/* Client cards */
.client-card {
  flex-shrink: 0;
  width: 176px;
  height: 108px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t), background var(--t);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.client-card:hover {
  border-color: var(--c-gold-line);
  background: var(--c-card-hover);
  transform: translateY(-5px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.35), 0 0 0 1px var(--c-gold-dim);
}

.client-logo {
  width: 84px;
  height: 40px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.6) contrast(0.85);
  transition: filter var(--t);
}
.client-logo-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--c-card-hover);
  border: 1px solid var(--c-gold-line);
  flex-shrink: 0;
}
.client-logo-wrap .client-logo {
  width: 100%;
  height: 100%;
  padding: 7px;
}
.client-card:hover .client-logo {
  filter: grayscale(0) brightness(1) contrast(1);
}

.client-initials {
  width: 48px;
  height: 48px;
  background: var(--c-card-hover);
  border: 1px solid var(--c-gold-line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-gold);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.client-name {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--c-muted);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 148px;
  transition: color var(--t);
}
.client-card:hover .client-name { color: var(--c-gold-lt); }

/* ════════════════════════════════════════════════
   CONTATO
   ════════════════════════════════════════════════ */
#contato {
  padding: var(--gap) 0;
  background: var(--c-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 860px;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 48px 28px 40px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color var(--t), transform var(--t), box-shadow var(--t), background var(--t);
  color: inherit;
}
.contact-card:hover {
  border-color: var(--c-gold-line);
  background: var(--c-card-hover);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35), 0 0 30px rgba(201,160,69,0.08);
}

.contact-icon-wrap {
  width: 62px; height: 62px;
  border: 1px solid var(--c-gold-line);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--c-gold);
  transition: background var(--t), color var(--t), border-color var(--t);
}
.contact-card:hover .contact-icon-wrap {
  background: var(--c-gold);
  color: var(--c-bg);
  border-color: var(--c-gold);
}

.contact-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-muted);
  font-weight: 500;
}

.contact-value {
  display: block;
  font-size: 0.92rem;
  color: var(--c-white);
  font-weight: 400;
}

/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
#footer {
  background: var(--c-surface);
  padding: 52px 0 36px;
}

.footer-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-border), transparent);
  margin-bottom: 52px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
}

/* footer-logo removed — now uses .lc-logo-footer component */

.footer-copy {
  font-size: 0.78rem;
  color: var(--c-muted);
  text-align: center;
  line-height: 1.7;
  font-weight: 300;
}
.footer-copy span { color: var(--c-gold); opacity: 0.7; }

.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--c-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--c-muted);
  transition: border-color var(--t), color var(--t), background var(--t);
}
.footer-social a:hover {
  border-color: var(--c-gold-line);
  color: var(--c-gold);
  background: var(--c-gold-dim);
}

/* ════════════════════════════════════════════════
   RESPONSIVE — 768px
   ════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Show hamburger, hide desktop links */
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--c-surface);
    border-left: 1px solid var(--c-border);
    flex-direction: column;
    justify-content: center;
    gap: 36px;
    padding: 40px;
    z-index: 900;
    transition: right var(--t);
  }
  .nav-links.open { right: 0; }
  .nav-link { font-size: 1rem; }
  .nav-cta { text-align: center; }

  /* About */
  .about-grid { grid-template-columns: 1fr; }

  /* Projects */
  .proj-grid { grid-template-columns: repeat(2, 1fr); }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; max-width: 360px; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
}

/* ════════════════════════════════════════════════
   RESPONSIVE — 480px
   ════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .proj-grid { grid-template-columns: 1fr; }
  .tab-btn { padding: 13px 18px; font-size: 0.74rem; }
  .hero-headline { font-size: 2.6rem; }
  .carousel-fade { width: 60px; }
}
