/* ════════════════════════════════════
   JBS TRADING & SERVICES
   Main Stylesheet
════════════════════════════════════ */

/* ── DESIGN TOKENS ── */
:root {
  --gold:       #C9A84C;
  --gold-lt:    #E8C96A;
  --gold-dim:   rgba(201,168,76,0.15);
  --black:      #0A0A0A;
  --white:      #FFFFFF;
  --off-white:  #F8F6F2;
  --warm-50:    #F4F1EC;
  --border:     #E5E0D8;
  --text-h:     #14110E;
  --text-b:     #48433C;
  --text-muted: #8C8478;
  --gold-line:  rgba(201,168,76,0.30);
  --wa-green:   #25D366;
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-b);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ── LAYOUT WRAPPER ── */
.wrap { max-width: 1360px; margin: 0 auto; padding: 0 48px; }

/* ── UTILITY: SECTION LABEL ── */
.tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .65rem; font-weight: 600; letter-spacing: .32em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.tag::before, .tag::after {
  content: ''; display: block; width: 24px; height: 1px; background: var(--gold);
}

/* ── UTILITY: HEADINGS ── */
.heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  font-weight: 600; line-height: 1.1; letter-spacing: -.01em; color: var(--text-h);
}
.heading--white { color: #fff; }

/* ── UTILITY: BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: 'Montserrat', sans-serif; font-size: .68rem; font-weight: 700;
  letter-spacing: .17em; text-transform: uppercase;
  padding: 13px 30px; border: 2px solid; cursor: pointer;
  transition: background .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn-primary:hover { background: var(--black); color: var(--gold); border-color: var(--black); }
.btn-ghost-white { background: transparent; color: #fff; border-color: rgba(201,168,76,.55); }
.btn-ghost-white:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost-dark { background: transparent; color: var(--text-h); border-color: var(--border); }
.btn-ghost-dark:hover { border-color: var(--gold); color: var(--gold); }

/* ── REVEAL ANIMATIONS ── */
.js-reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity .75s ease, transform .75s ease;
}
.js-reveal.from-left  { transform: translateX(-32px); }
.js-reveal.from-right { transform: translateX(32px); }
.js-reveal.visible    { opacity: 1; transform: none; }


/* ════════════════════════════════════
   HEADER
════════════════════════════════════ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: var(--black);
  border-bottom: 1px solid rgba(201,168,76,.12);
  transition: background .4s, box-shadow .4s;
}
.site-header.scrolled {
  background: rgba(10,10,10,.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
  border-bottom-color: rgba(201,168,76,.22);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px; max-width: 1360px; margin: 0 auto; padding: 0 48px;
}

/* Logo */
.site-logo { display: flex; align-items: center; flex-shrink: 0; }
.site-logo img { height: 72px; width: auto; object-fit: contain; }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-size: .67rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.70); position: relative; padding-bottom: 3px; transition: color .25s;
}
.main-nav a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width .3s;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

/* Header right */
.header-right { display: flex; align-items: center; gap: 18px; }
.header-phone {
  display: flex; align-items: center; gap: 7px;
  font-size: .76rem; font-weight: 600; color: var(--gold); letter-spacing: .05em;
  transition: color .25s;
}
.header-phone:hover { color: var(--gold-lt); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 6px; cursor: pointer;
}
.hamburger span {
  display: block; width: 23px; height: 2px; background: var(--gold); transition: .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  display: none; position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
  background: var(--black); z-index: 800;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 24px; padding: 40px 24px;
}
.mobile-drawer.open { display: flex; }
.mobile-drawer a {
  font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 600;
  color: #fff; letter-spacing: .05em; transition: color .25s;
}
.mobile-drawer a:hover { color: var(--gold); }
.mobile-drawer .mob-phone {
  margin-top: 12px; font-size: 1rem; font-weight: 600;
  color: var(--gold); letter-spacing: .05em;
}


/* ════════════════════════════════════
   HERO
════════════════════════════════════ */
.hero {
  min-height: 100svh; padding-top: 80px;
  background: var(--black);
  display: grid; grid-template-columns: 1fr 1fr;
}
.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 72px 56px 72px clamp(20px,6vw,80px);
  position: relative; z-index: 2;
}
.hero-content::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(
    135deg, transparent, transparent 48px,
    rgba(201,168,76,.012) 48px, rgba(201,168,76,.012) 49px
  );
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(201,168,76,.28); padding: 6px 16px;
  font-size: .62rem; font-weight: 600; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 30px; width: fit-content;
}
.hero-eyebrow .dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 300; color: #fff; line-height: 1.07; margin-bottom: 24px;
}
.hero-title strong { font-weight: 700; color: var(--gold); }
.hero-title em { font-style: italic; color: rgba(255,255,255,.45); }
.hero-desc {
  font-size: .86rem; line-height: 1.9; font-weight: 300;
  color: rgba(255,255,255,.50); max-width: 400px; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; margin-top: 52px; padding-top: 36px;
  border-top: 1px solid rgba(201,168,76,.14);
}
.hero-stat { flex: 1; }
.hero-stat:not(:last-child) {
  border-right: 1px solid rgba(201,168,76,.14); margin-right: 24px; padding-right: 24px;
}
.hero-stat__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 700; color: var(--gold); line-height: 1;
}
.hero-stat__lbl {
  font-size: .59rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-top: 5px;
}

/* Hero mosaic */
.hero-mosaic {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr; gap: 3px;
  overflow: hidden; position: relative;
}
.hero-mosaic__item { overflow: hidden; position: relative; }
.hero-mosaic__item:first-child { grid-row: span 2; }
.hero-mosaic__item img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.75); transition: transform .7s ease, filter .5s;
}
.hero-mosaic__item:hover img { transform: scale(1.05); filter: brightness(.88); }
.hero-mosaic__item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(0,0,0,.18) 0%, transparent 60%);
  pointer-events: none;
}

/* Floating badge */
.hero-badge {
  position: absolute; bottom: 32px; right: 24px; z-index: 5;
  background: var(--gold); padding: 18px 22px; text-align: center;
  box-shadow: 12px 12px 40px rgba(0,0,0,.45);
  animation: float 4s ease-in-out infinite;
}
.hero-badge__num {
  font-family: 'Cormorant Garamond', serif; font-size: 2rem;
  font-weight: 700; color: var(--black); line-height: 1; display: block;
}
.hero-badge__lbl {
  font-size: .55rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(0,0,0,.6); margin-top: 4px;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}


/* ════════════════════════════════════
   MARQUEE
════════════════════════════════════ */
.marquee-strip { background: var(--gold); overflow: hidden; padding: 12px 0; }
.marquee-track {
  display: flex; width: max-content;
  animation: scroll-x 30s linear infinite;
}
.marquee-item {
  display: flex; align-items: center; gap: 16px; padding: 0 24px;
  font-size: .62rem; font-weight: 700; letter-spacing: .24em;
  text-transform: uppercase; color: var(--black); white-space: nowrap;
}
.marquee-sep {
  width: 4px; height: 4px; background: rgba(0,0,0,.35);
  border-radius: 50%; flex-shrink: 0;
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ════════════════════════════════════
   ABOUT  (white bg)
════════════════════════════════════ */
.about-section { padding: 110px 0; background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center;
}

/* Visual */
.about-visual { position: relative; padding-bottom: 56px; }
.about-deco {
  position: absolute; top: -16px; left: -16px; width: 100px; height: 100px;
  border-top: 2px solid var(--gold); border-left: 2px solid var(--gold);
  pointer-events: none;
}
.about-main-img {
  aspect-ratio: 4/5; overflow: hidden; position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.10);
}
.about-main-img img { width: 100%; height: 100%; object-fit: cover; }
.about-inset {
  position: absolute; bottom: 0; right: -28px;
  width: 50%; aspect-ratio: 4/3; overflow: hidden;
  border: 5px solid #fff; box-shadow: 12px 12px 40px rgba(0,0,0,.12);
}
.about-inset img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; top: 44px; left: -20px;
  background: var(--black); color: var(--gold);
  padding: 20px 22px; text-align: center;
  box-shadow: 8px 8px 28px rgba(0,0,0,.18); z-index: 2;
}
.about-badge__num {
  font-family: 'Cormorant Garamond', serif; font-size: 2.2rem;
  font-weight: 700; display: block; line-height: 1;
}
.about-badge__lbl { font-size: .52rem; letter-spacing: .18em; text-transform: uppercase; margin-top: 4px; opacity: .65; }

/* Text */
.about-body { font-size: .88rem; line-height: 1.95; font-weight: 300; color: var(--text-b); margin: 22px 0 32px; }
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pillar {
  padding: 18px 16px; border: 1px solid var(--border);
  border-left: 3px solid var(--gold); transition: .3s;
}
.pillar:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,.06); }
.pillar h4 { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-h); margin-bottom: 5px; }
.pillar p { font-size: .75rem; color: var(--text-muted); line-height: 1.65; font-weight: 300; }


/* ════════════════════════════════════
   SERVICES  (black bg)
════════════════════════════════════ */
.services-section { padding: 110px 0; background: var(--black); }
.services-hdr { text-align: center; margin-bottom: 64px; }
.services-hdr .tag { justify-content: center; }
.services-hdr p { font-size: .87rem; font-weight: 300; color: rgba(255,255,255,.42); max-width: 460px; margin: 16px auto 0; line-height: 1.85; }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; }
.svc-card { position: relative; overflow: hidden; aspect-ratio: 3/4; cursor: pointer; }
.svc-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: brightness(.58);
  transition: transform .65s ease, filter .45s;
}
.svc-card:hover img { transform: scale(1.07); filter: brightness(.4); }
.svc-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.1) 55%, transparent 100%);
  transition: .4s;
}
.svc-card:hover .svc-grad { background: linear-gradient(to top, rgba(0,0,0,.97) 0%, rgba(0,0,0,.55) 100%); }
.svc-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 24px; z-index: 2; }
.svc-icon {
  width: 42px; height: 42px; border: 1px solid rgba(201,168,76,.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 12px; transition: .3s;
}
.svc-card:hover .svc-icon { background: var(--gold); border-color: var(--gold); color: var(--black); }
.svc-body h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
  font-weight: 600; color: #fff; line-height: 1.2; margin-bottom: 8px;
}
.svc-body p {
  font-size: .75rem; color: rgba(255,255,255,.52); line-height: 1.7; font-weight: 300;
  max-height: 0; overflow: hidden; opacity: 0; transition: max-height .4s, opacity .4s;
}
.svc-card:hover .svc-body p { max-height: 90px; opacity: 1; }
.svc-corner {
  position: absolute; top: 18px; right: 18px; z-index: 2;
  width: 32px; height: 32px; border: 1px solid rgba(201,168,76,.22);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: .85rem; transition: .3s;
}
.svc-card:hover .svc-corner { background: var(--gold); border-color: var(--gold); color: var(--black); }
.services-cta { text-align: center; margin-top: 54px; }


/* ════════════════════════════════════
   PROCESS  (off-white bg)
════════════════════════════════════ */
.process-section { padding: 110px 0; background: var(--off-white); }
.process-hdr { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: end; margin-bottom: 72px; }
.process-hdr p { font-size: .87rem; line-height: 1.9; font-weight: 300; color: var(--text-b); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 41px; left: 12%; right: 12%; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-line), var(--gold-line), transparent);
}
.step { padding: 0 20px; text-align: center; }
.step-ring {
  width: 82px; height: 82px; border: 1px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; background: var(--white);
  position: relative; z-index: 1; transition: .3s;
}
.step:hover .step-ring { background: var(--gold); box-shadow: 0 0 0 8px var(--gold-dim); }
.step-ring span {
  font-family: 'Cormorant Garamond', serif; font-size: 1.55rem;
  font-weight: 700; color: var(--gold); transition: color .3s;
}
.step:hover .step-ring span { color: var(--black); }
.step h4 { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-h); margin-bottom: 10px; }
.step p { font-size: .77rem; color: var(--text-muted); line-height: 1.75; font-weight: 300; }


/* ════════════════════════════════════
   PROJECTS  (white bg)
════════════════════════════════════ */
.projects-section { padding: 110px 0; background: var(--white); }
.projects-hdr { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; gap: 24px; flex-wrap: wrap; }
.proj-mosaic {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 12px;
}
.proj-card { position: relative; overflow: hidden; cursor: pointer; }
.proj-card:first-child { grid-row: span 2; }
.proj-card img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: brightness(.72);
  transition: transform .6s ease, filter .4s;
}
.proj-card:hover img { transform: scale(1.06); filter: brightness(.5); }
.proj-grad {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, transparent 55%);
  transition: .4s;
}
.proj-card:hover .proj-grad { background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.3) 100%); }
.proj-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 22px 20px; }
.proj-cat { font-size: .58rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.proj-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: #fff; line-height: 1.25; }
.proj-card:first-child .proj-info h3 { font-size: 1.75rem; }
.proj-detail {
  font-size: .72rem; color: rgba(255,255,255,.55); margin-top: 6px; font-weight: 300;
  max-height: 0; overflow: hidden; opacity: 0; transition: max-height .4s, opacity .4s;
}
.proj-card:hover .proj-detail { max-height: 56px; opacity: 1; }


/* ════════════════════════════════════
   WHY US  (warm off-white bg)
════════════════════════════════════ */
.why-section { padding: 110px 0; background: var(--off-white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: center; }
.why-img-wrap { position: relative; }
.why-img-main { aspect-ratio: 3/4; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,.12); }
.why-img-main img { width: 100%; height: 100%; object-fit: cover; }
.why-deco {
  position: absolute; top: -16px; right: -16px; width: 100px; height: 100px;
  border-top: 2px solid var(--gold); border-right: 2px solid var(--gold); pointer-events: none;
}
.why-float {
  position: absolute; bottom: 36px; left: -28px;
  background: var(--gold); padding: 22px 26px; text-align: center;
  box-shadow: 10px 10px 36px rgba(0,0,0,.22);
}
.why-float__num { font-family: 'Cormorant Garamond', serif; font-size: 2.6rem; font-weight: 700; color: var(--black); line-height: 1; display: block; }
.why-float__lbl { font-size: .56rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: rgba(0,0,0,.62); margin-top: 5px; }
.why-content > p { font-size: .88rem; line-height: 1.9; font-weight: 300; color: var(--text-b); margin: 22px 0 40px; }
.why-pts { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-pt {
  padding: 22px 20px; background: var(--white);
  border: 1px solid var(--border); border-bottom: 3px solid transparent; transition: .3s;
}
.why-pt:hover { border-bottom-color: var(--gold); box-shadow: 0 8px 28px rgba(0,0,0,.07); transform: translateY(-2px); }
.why-pt .icon { font-size: 1.2rem; color: var(--gold); margin-bottom: 10px; display: block; }
.why-pt h4 { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-h); margin-bottom: 7px; }
.why-pt p { font-size: .76rem; color: var(--text-muted); line-height: 1.7; font-weight: 300; }


/* ════════════════════════════════════
   TESTIMONIALS  (white bg)
════════════════════════════════════ */
.testi-section { padding: 110px 0; background: var(--white); }
.testi-hdr { text-align: center; margin-bottom: 60px; }
.testi-hdr .tag { justify-content: center; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  padding: 38px 32px; background: var(--off-white);
  border-bottom: 3px solid transparent; position: relative; transition: .3s;
}
.testi-card:hover { border-bottom-color: var(--gold); box-shadow: 0 14px 40px rgba(0,0,0,.08); transform: translateY(-4px); }
.quote { font-family: 'Cormorant Garamond', serif; font-size: 4.5rem; color: rgba(201,168,76,.14); line-height: 1; font-weight: 700; position: absolute; top: 12px; left: 26px; }
.stars { color: var(--gold); font-size: .6rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text { font-size: .86rem; line-height: 1.9; font-weight: 300; font-style: italic; color: var(--text-b); margin-bottom: 24px; position: relative; z-index: 1; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 700; color: var(--black); flex-shrink: 0; }
.testi-name { font-size: .76rem; font-weight: 700; color: var(--text-h); }
.testi-role { font-size: .68rem; color: var(--text-muted); font-weight: 300; }


/* ════════════════════════════════════
   CONTACT  (warm-50 bg)
════════════════════════════════════ */
.contact-section { padding: 110px 0; background: var(--warm-50); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; }
.contact-info > p { font-size: .88rem; line-height: 1.95; font-weight: 300; color: var(--text-b); margin: 22px 0 40px; }
.c-items { display: flex; flex-direction: column; gap: 20px; }
.c-item { display: flex; align-items: flex-start; gap: 14px; }
.c-icon-box {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: .9rem;
}
.c-lbl { font-size: .59rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.c-val { font-size: .85rem; color: var(--text-h); line-height: 1.5; }
.c-val a { color: inherit; transition: color .25s; }
.c-val a:hover { color: var(--gold); }

/* Form box */
.form-box { background: var(--white); padding: 44px 40px; box-shadow: 0 8px 40px rgba(0,0,0,.07); }
.form-title { font-family: 'Cormorant Garamond', serif; font-size: 1.75rem; font-weight: 600; color: var(--text-h); margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 6px; }
.fg label { font-size: .6rem; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted); }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--border); background: var(--off-white);
  font-family: 'Montserrat', sans-serif; font-size: .82rem; color: var(--text-h);
  outline: none; transition: border-color .3s, background .3s;
  -webkit-appearance: none; border-radius: 0;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); background: var(--white); }
.fg textarea { resize: vertical; min-height: 110px; }
.fg.full { grid-column: span 2; }

/* Form status messages */
.form-msg {
  font-size: .8rem; padding: 10px 14px; border-radius: 0;
  display: none; margin-top: 4px;
}
.form-msg.error { background: #fef2f2; color: #b91c1c; border-left: 3px solid #ef4444; }
.form-msg.success { background: #f0fdf4; color: #166534; border-left: 3px solid #22c55e; }
.form-msg.show { display: block; }

.form-spinner {
  display: none; width: 18px; height: 18px;
  border: 2px solid rgba(0,0,0,.2); border-top-color: var(--black);
  border-radius: 50%; animation: spin .6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.btn-primary.loading .form-spinner { display: inline-block; }
.btn-primary.loading .btn-label { display: none; }

.wa-contact-link {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 24px; background: var(--wa-green); color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  transition: .3s; width: fit-content;
}
.wa-contact-link:hover { background: #1aad4e; transform: translateY(-2px); }

#form-success { display: none; text-align: center; padding: 48px 24px; }
#form-success .ok { font-size: 2rem; color: var(--gold); margin-bottom: 12px; }
#form-success .ok-h { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--text-h); margin-bottom: 8px; }
#form-success .ok-p { font-size: .82rem; color: var(--text-muted); }


/* ════════════════════════════════════
   FOOTER  (black bg)
════════════════════════════════════ */
.site-footer { background: var(--black); padding: 72px 0 0; border-top: 1px solid rgba(201,168,76,.08); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 52px;
  padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand img { height: 68px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: .78rem; line-height: 1.85; color: rgba(255, 255, 255, 0.502); font-weight: 300; margin-bottom: 24px; }
.socials { display: flex; gap: 10px; }
.soc {
  width: 34px; height: 34px; border: 1px solid rgba(201,168,76,.2);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.35); transition: .3s;
}
.soc:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,.08); }
.footer-col h5 { font-size: .6rem; font-weight: 700; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.foot-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.foot-links a { font-size: .77rem; color: rgba(255, 255, 255, 0.502); font-weight: 300; display: flex; align-items: center; gap: 7px; transition: color .25s; }
.foot-links a::before { content: '—'; font-size: .58rem; color: var(--gold); opacity: .4; }
.foot-links a:hover { color: var(--gold); }
.f-info-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 13px; }
.f-info-icon { color: var(--gold); font-size: .8rem; margin-top: 2px; flex-shrink: 0; }
.f-info-text { font-size: .76rem; color: rgba(255, 255, 255, 0.502); line-height: 1.6; font-weight: 300; }
.f-info-text a { color: inherit; transition: color .25s; }
.f-info-text a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: .68rem; color: rgba(255, 255, 255, 0.502); font-weight: 300; letter-spacing: .04em; }
.footer-bottom .g { color: rgba(201,168,76,.5); }


/* ════════════════════════════════════
   WHATSAPP FLOAT BUTTON
════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  display: flex; align-items: center; gap: 9px;
  background: var(--wa-green); color: #fff;
  padding: 12px 20px; border-radius: 40px;
  font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(37,211,102,.32); transition: .3s;
}
.wa-float:hover { background: #1aad4e; transform: translateY(-3px); box-shadow: 0 12px 32px rgba(37,211,102,.42); }
.wa-pulse {
  position: absolute; top: -4px; right: -4px;
  width: 12px; height: 12px; background: #ff4444;
  border-radius: 50%; border: 2px solid #fff;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.35); opacity: .7; }
}


/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 960px) {
  /* Header */
  .main-nav, .header-phone, .btn-header { display: none; }
  .hamburger { display: flex; }
  .header-inner { padding: 0 20px; }

  /* Hero */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-mosaic { height: 55vw; min-height: 280px; }
  .hero-content { padding: 56px 24px 48px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-inset { display: none; }
  .about-badge { left: 0; }

  /* Process */
  .process-hdr { grid-template-columns: 1fr; gap: 20px; }
  .steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .steps::before { display: none; }

  /* Projects */
  .proj-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .proj-card:first-child { grid-row: span 1; }
  .projects-hdr { flex-direction: column; align-items: flex-start; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; gap: 56px; }
  .why-img-wrap { order: -1; }
  .why-float { left: 0; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .form-box { padding: 32px 24px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .wrap { padding: 0 28px; }
}

@media (max-width: 600px) {
  /* Sections */
  .about-section, .services-section, .process-section,
  .projects-section, .why-section, .testi-section,
  .contact-section { padding: 72px 0; }

  /* Hero */
  .hero-stats { flex-direction: column; gap: 16px; border-top: none; margin-top: 32px; padding-top: 0; }
  .hero-stat { border-right: none !important; margin-right: 0 !important; padding-right: 0 !important; border-bottom: 1px solid rgba(201,168,76,.14); padding-bottom: 14px; }
  .hero-stat:last-child { border-bottom: none; }
  .hero-mosaic { height: 64vw; }

  /* Grids → single column */
  .svc-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .proj-mosaic { grid-template-columns: 1fr; grid-template-rows: auto; }
  .proj-card { aspect-ratio: 4/3; }
  .testi-grid { grid-template-columns: 1fr; }
  .pillars, .why-pts { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .fg.full { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* WhatsApp float — icon only */
  .wa-float span { display: none; }
.wa-float { padding: 14px; border-radius: 50%; }
}
