/* ==========================================================================
   Variables
   ========================================================================== */
:root {
  --dark: #443425;
  --coffee: #4B3528;
  --coffee-2: #5A4433;
  --beige: #D7B498;
  --sand: #E9D5C3;
  --ivory: #F8F0E5;
  --ivory-2: #F2E8DA;
  --bronze: #A97C52;
  --bronze-dark: #8F6540;
  --ink: #2E2318;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Manrope', system-ui, sans-serif;
  --radius: 18px;
  --shadow: 0 18px 50px -18px rgba(59, 42, 32, .28);
  --maxw: 1200px;
}

/* ==========================================================================
   Reset
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 110px 0;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ==========================================================================
   Typography
   ========================================================================== */
body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  color: var(--ink);
}

h2 {
  font-size: clamp(30px, 4.2vw, 46px);
  letter-spacing: -.01em;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--bronze);
  margin-bottom: 18px;
}

.eyebrow--beige {
  color: var(--beige);
}

.lead {
  font-size: 18px;
  color: #5f4d3c;
  max-width: 640px;
}

.lead--spaced {
  margin-top: 22px;
}

.lead--spaced-sm {
  margin-top: 16px;
}

.lead--centered {
  margin: 18px auto 0;
}

.center {
  text-align: center;
}

.center .lead {
  margin: 0 auto;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  padding: 16px 30px;
  border-radius: 999px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
}

.btn-primary {
  background: var(--bronze);
  color: #fff;
  box-shadow: 0 12px 30px -12px rgba(169, 124, 82, .6);
}

.btn-primary:hover {
  background: var(--bronze-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, .45);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--dark);
  color: var(--ivory);
}

.btn-dark:hover {
  background: var(--coffee-2);
  transform: translateY(-2px);
}

/* ==========================================================================
   Header
   ========================================================================== */
.navbar-top {
  background: #fff;
  border-bottom: 1px solid rgba(68, 52, 37, .08);
  padding: 12px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  box-shadow: 0 2px 12px -4px rgba(0, 0, 0, .08);
}

.navbar-top .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand img {
  height: 40px;
  width: auto;
  border-radius: 6px;
}

.brand span {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: .01em;
}

.search-box {
  flex: 1;
  max-width: 500px;
  position: relative;
}

.search-box input {
  width: 100%;
  padding: 12px 18px;
  border: 1.5px solid rgba(68, 52, 37, .2);
  border-radius: 999px;
  font-size: 14px;
  color: var(--ink);
  background: #f8f6f2;
  transition: border-color .2s, box-shadow .2s;
}

.search-box input::placeholder {
  color: rgba(68, 52, 37, .5);
}

.search-box input:focus {
  outline: none;
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(169, 124, 82, .15);
}

.search-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bronze);
}

.search-box input.no-match {
  border-color: #c0392b;
  animation: searchShake .4s;
}

@keyframes searchShake {
  10%, 90% { transform: translateX(-1px); }
  20%, 80% { transform: translateX(2px); }
  30%, 50%, 70% { transform: translateX(-4px); }
  40%, 60% { transform: translateX(4px); }
}

.search-target-flash {
  animation: searchTargetFlash 1.6s ease;
}

@keyframes searchTargetFlash {
  0% { box-shadow: 0 0 0 4px rgba(169, 124, 82, .55) inset; }
  100% { box-shadow: 0 0 0 0 rgba(169, 124, 82, 0) inset; }
}

.nav-login {
  flex: 0 0 auto;
}

.nav-login .btn {
  padding: 10px 26px;
  font-size: 14px;
}

.navbar-menu {
  background: var(--dark);
  border-bottom: 1px solid rgba(0, 0, 0, .15);
  position: sticky;
  top: 64px;
  z-index: 99;
}

.navbar-menu .wrap {
  display: flex;
  align-items: center;
  gap: 0;
}

.navbar-menu a {
  flex: 1;
  padding: 14px 20px;
  text-align: center;
  color: var(--ivory);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: .02em;
  transition: background .2s, color .2s;
  border-bottom: 3px solid transparent;
}

.navbar-menu a:hover {
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.navbar-menu a.active {
  background: rgba(255, 255, 255, .15);
  border-bottom-color: var(--beige);
  color: #fff;
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding: 200px 0 90px;
  margin-top: 0;
}

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

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(46, 32, 20, .93) 0%, rgba(46, 32, 20, .72) 45%, rgba(46, 32, 20, .35) 100%);
  z-index: 1;
}

.hero .wrap {
  max-width: 1440px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-bottom: 0;
  padding-bottom: 40px;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-visual::before {
  content: '';
  position: absolute;
  top: -12%;
  left: 50%;
  width: 46%;
  height: 130%;
  transform: translateX(-50%) rotate(4deg);
  background: linear-gradient(180deg, rgba(215, 180, 152, .5) 0%, rgba(215, 180, 152, .18) 45%, rgba(215, 180, 152, 0) 75%);
  filter: blur(38px);
  z-index: 0;
  pointer-events: none;
}

.hero-visual::after {
  content: '';
  position: absolute;
  bottom: 4%;
  left: 50%;
  width: 62%;
  height: 16%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(215, 180, 152, .55) 0%, rgba(215, 180, 152, 0) 72%);
  filter: blur(18px);
  z-index: 0;
  pointer-events: none;
}

.hero-gado {
  width: 100%;
  max-width: 900px;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 50px 90px -20px rgba(0, 0, 0, .75));
  animation: heroEntrance 1.2s cubic-bezier(.34, .1, .68, 1) .4s both;
  display: block;
  margin: 0 auto;
  image-rendering: -webkit-optimize-contrast;
}

@keyframes heroEntrance {
  0% {
    opacity: 0;
    transform: scale(.82) translateY(30px);
  }
  50% {
    opacity: .9;
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.hero .eyebrow {
  color: var(--beige);
}

.hero h1 {
  font-size: clamp(38px, 5.6vw, 66px);
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -.015em;
}

.hero h1 em {
  font-style: italic;
  color: var(--beige);
}

.hero p {
  font-size: 19px;
  color: rgba(248, 240, 229, .88);
  max-width: 600px;
  margin-bottom: 38px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.trust {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  padding-top: 26px;
  border-top: 1px solid rgba(248, 240, 229, .22);
}

.trust div {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(248, 240, 229, .8);
  display: flex;
  align-items: center;
  gap: 9px;
}

/* ==========================================================================
   Authority (Quem Somos)
   ========================================================================== */
.authority .grid2 {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}

.pillars-img {
  width: 100%;
  aspect-ratio: 600 / 546;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.pillars-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 50px;
}

.pillar {
  background: #fff;
  border: 1px solid rgba(68, 52, 37, .08);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .3s ease, box-shadow .3s ease;
}

.pillar:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.pillar h3 {
  font-size: 18px;
  margin: 14px 0 8px;
}

.pillar p {
  font-size: 14px;
  color: #6b573f;
}

.pillar-ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Card Carousels (Netflix-style focus)
   ========================================================================== */
.carousel {
  position: relative;
}

.svc-grid,
.proj-grid,
.auction-grid,
.testi-grid,
.blog-grid {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
}

.svc-grid::-webkit-scrollbar,
.proj-grid::-webkit-scrollbar,
.auction-grid::-webkit-scrollbar,
.testi-grid::-webkit-scrollbar,
.blog-grid::-webkit-scrollbar {
  display: none;
}

.svc,
.proj,
.auction,
.testi,
.blog-card {
  transition: opacity .4s ease, transform .3s ease, box-shadow .3s ease;
}

.svc-grid .svc:not(.is-active),
.proj-grid .proj:not(.is-active),
.auction-grid .auction:not(.is-active),
.testi-grid .testi:not(.is-active),
.blog-grid .blog-card:not(.is-active) {
  opacity: .4;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--dark);
  color: var(--ivory);
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .2s ease;
  box-shadow: var(--shadow);
}

.carousel:hover .carousel-btn,
.carousel:focus-within .carousel-btn {
  opacity: 1;
  pointer-events: auto;
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.08);
}

.carousel-btn:disabled {
  opacity: 0 !important;
  pointer-events: none;
}

.carousel-prev {
  left: -14px;
}

.carousel-next {
  right: -14px;
}

@media (max-width: 760px) {
  .carousel-btn {
    display: none;
  }
}

/* Touch devices (incl. tablets) can't :hover, so the arrows would
   otherwise stay invisible; keep them visible and tappable there. */
@media (hover: none) {
  .carousel-btn {
    opacity: 1;
    pointer-events: auto;
  }
}

/* ==========================================================================
   Services
   ========================================================================== */
.services {
  background: var(--ivory-2);
}

.svc-grid {
  gap: 22px;
  margin-top: 56px;
}

.svc {
  flex: 0 0 min(300px, 82vw);
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(68, 52, 37, .07);
  display: flex;
  flex-direction: column;
}

.svc:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: var(--shadow);
}

.svc-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.svc-content {
  padding: 30px 30px 34px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.svc h3 {
  font-size: 21px;
  margin-bottom: 14px;
}

.svc ul {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}

.svc li {
  font-size: 14px;
  color: #6b573f;
  padding: 6px 0 6px 22px;
  position: relative;
}

.svc li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--beige);
}

.svc a {
  font-weight: 700;
  font-size: 14px;
  color: var(--bronze);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.svc a:hover {
  color: var(--bronze-dark);
}

/* ==========================================================================
   Contact Form
   ========================================================================== */
.contact-form {
  max-width: 720px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row--full {
  grid-column: 1 / -1;
}

.form-row label {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}

.form-optional {
  font-weight: 400;
  color: rgba(68, 52, 37, .5);
}

.form-row input,
.form-row textarea {
  padding: 14px 16px;
  border: 1.5px solid rgba(68, 52, 37, .18);
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: rgba(68, 52, 37, .45);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(169, 124, 82, .15);
}

.form-row textarea {
  resize: vertical;
  min-height: 110px;
}

.form-error {
  display: none;
  font-size: 12.5px;
  color: #b3261e;
}

.form-row.has-error input,
.form-row.has-error textarea {
  border-color: #b3261e;
}

.form-row.has-error .form-error {
  display: block;
}

.form-row--consent {
  gap: 6px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.form-consent input {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--bronze);
}

.form-consent span {
  font-size: 13px;
  line-height: 1.5;
  color: #6b573f;
}

.form-consent span a {
  color: var(--bronze);
  text-decoration: underline;
}

.form-row--consent.has-error .form-consent span {
  color: #b3261e;
}

.form-actions {
  align-items: center;
  text-align: center;
  gap: 14px;
}

.form-note {
  font-size: 13px;
  color: #6b573f;
  max-width: 460px;
}

/* ==========================================================================
   Auctions
   ========================================================================== */
.auction-grid {
  gap: 26px;
  margin-top: 56px;
}

.auction {
  flex: 0 0 min(340px, 85vw);
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(68, 52, 37, .07);
}

.auction:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: var(--shadow);
}

.auction-banner {
  position: relative;
  height: 190px;
}

.auction-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.date-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--ivory);
  border-radius: 12px;
  padding: 8px 14px;
  text-align: center;
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, .35);
}

.date-badge b {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--dark);
  display: block;
  line-height: 1;
}

.date-badge span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--bronze);
  text-transform: uppercase;
}

.auction-body {
  padding: 26px 26px 30px;
}

.auction-body h3 {
  font-size: 19.5px;
  margin-bottom: 12px;
}

.auction-meta {
  font-size: 13.5px;
  color: #6b573f;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.auction-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.auction-body .btn {
  padding: 12px 24px;
  font-size: 14px;
}

/* ==========================================================================
   Genex
   ========================================================================== */
.genex {
  background: var(--dark);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.genex .wrap {
  position: relative;
  z-index: 1;
}

.genex .grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.genex h2 {
  color: var(--ivory);
}

.genex .lead {
  color: rgba(248, 240, 229, .8);
}

.genex-list {
  list-style: none;
  margin: 30px 0 38px;
}

.genex-list li {
  padding: 13px 0 13px 38px;
  position: relative;
  font-size: 16px;
  color: rgba(248, 240, 229, .92);
  border-bottom: 1px solid rgba(248, 240, 229, .12);
}

.genex-list li:last-child {
  border: 0;
}

.genex-list svg {
  position: absolute;
  left: 0;
  top: 15px;
}

.genex-badge {
  background: rgba(248, 240, 229, .07);
  border: 1px solid rgba(248, 240, 229, .18);
  border-radius: 22px;
  padding: 46px 40px;
  text-align: center;
}

.genex-badge .big {
  font-family: var(--serif);
  font-size: 44px;
  color: var(--beige);
  line-height: 1.1;
  margin-bottom: 10px;
}

.genex-badge p {
  color: rgba(248, 240, 229, .75);
  font-size: 15px;
  max-width: 340px;
  margin: 0 auto;
}

/* ==========================================================================
   Projects
   ========================================================================== */
.projects {
  background: var(--ivory-2);
}

.proj-grid {
  gap: 26px;
  margin-top: 56px;
}

.proj {
  flex: 0 0 min(360px, 85vw);
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(68, 52, 37, .07);
  display: flex;
  flex-direction: column;
}

.proj:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: var(--shadow);
}

.proj img {
  height: 210px;
  object-fit: cover;
  width: 100%;
}

.proj-body {
  padding: 30px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.proj-body h3 {
  font-size: 21px;
  margin-bottom: 16px;
}

.proj-line {
  font-size: 14px;
  color: #6b573f;
  margin-bottom: 10px;
}

.proj-line b {
  color: var(--ink);
  font-weight: 700;
}

.metrics {
  display: flex;
  gap: 14px;
  margin-top: auto;
  padding-top: 20px;
}

.metric {
  flex: 1;
  background: var(--ivory);
  border-radius: 14px;
  padding: 14px 12px;
  text-align: center;
}

.metric b {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--bronze-dark);
  display: block;
}

.metric span {
  font-size: 11.5px;
  color: #8a7458;
  font-weight: 600;
  letter-spacing: .04em;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials {
  margin-top: 64px;
}

.testimonials h3 {
  font-size: clamp(22px, 2.6vw, 28px);
  max-width: 600px;
  margin: 0 auto;
}

.testi-grid {
  gap: 22px;
  margin-top: 40px;
}

.testi {
  flex: 0 0 min(360px, 85vw);
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(68, 52, 37, .07);
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
}

.testi-quote {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--ink);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 22px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bronze);
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-info {
  display: flex;
  flex-direction: column;
}

.testi-info b {
  font-size: 14px;
  color: var(--ink);
}

.testi-info span {
  font-size: 12.5px;
  color: #8a7458;
}

/* ==========================================================================
   Blog
   ========================================================================== */
.blog-grid {
  gap: 22px;
  margin-top: 56px;
}

.blog-card {
  flex: 0 0 min(300px, 82vw);
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(68, 52, 37, .07);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: var(--shadow);
}

.blog-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.blog-card-body {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-tag {
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--bronze-dark);
  background: var(--ivory-2);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.blog-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.blog-card p {
  font-size: 14px;
  color: #6b573f;
  margin-bottom: 18px;
  flex: 1;
}

.blog-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--bronze-dark);
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final {
  background: linear-gradient(160deg, var(--dark), #312417);
  color: var(--ivory);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final .wrap {
  position: relative;
  z-index: 1;
}

.final h2 {
  color: var(--ivory);
  max-width: 720px;
  margin: 0 auto 20px;
}

.final p {
  color: rgba(248, 240, 229, .8);
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto 42px;
}

.final-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  background: #312417;
  color: rgba(248, 240, 229, .75);
  padding: 70px 0 34px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}

.foot-brand img {
  height: 48px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.foot-brand p {
  font-size: 14px;
  max-width: 280px;
}

footer h4 {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--ivory);
  margin-bottom: 18px;
  font-weight: 500;
}

footer ul {
  list-style: none;
}

footer li {
  margin-bottom: 11px;
}

footer a {
  font-size: 14px;
  transition: color .2s;
}

footer a:hover {
  color: #fff;
}

.foot-map {
  margin-bottom: 50px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(248, 240, 229, .14);
}

.foot-map-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: rgba(248, 240, 229, .04);
  font-size: 14px;
  color: var(--ivory);
}

.foot-map iframe {
  width: 100%;
  height: 220px;
  border: 0;
  display: block;
  filter: grayscale(.2) sepia(.12);
}

.foot-bottom {
  border-top: 1px solid rgba(248, 240, 229, .14);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(248, 240, 229, .5);
}

/* ==========================================================================
   Scroll reveal animation & floating social buttons
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.wa-float,
.ig-float {
  position: fixed;
  right: 22px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, .35);
  transition: transform .25s;
}

.wa-float {
  bottom: 22px;
  background: #25D366;
}

.ig-float {
  bottom: 90px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.wa-float:hover,
.ig-float:hover {
  transform: scale(1.08);
}

/* ==========================================================================
   Service Detail Pages
   ========================================================================== */
.service-hero {
  background: var(--dark);
  color: var(--ivory);
  padding: 160px 0 70px;
}

.breadcrumb {
  font-size: 13px;
  color: rgba(248, 240, 229, .65);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--beige);
  font-weight: 600;
}

.breadcrumb a:hover {
  color: #fff;
}

.service-hero h1 {
  color: #fff;
  font-size: clamp(32px, 4.4vw, 50px);
  max-width: 720px;
  margin-bottom: 18px;
}

.service-hero p {
  color: rgba(248, 240, 229, .82);
  font-size: 17px;
  max-width: 600px;
}

.service-banner {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-top: 44px;
  box-shadow: var(--shadow);
}

.hero-genex-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: center;
  margin-top: 30px;
}

.hero-genex-grid p {
  margin-bottom: 18px;
}

.hero-genex-logo {
  width: 100%;
  height: auto;
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-hero .hero-genex-note {
  margin-top: 18px;
  font-size: 13px;
  color: rgba(248, 240, 229, .6);
  max-width: none;
}

.service-body {
  padding: 90px 0;
}

.service-body .grid2 {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: start;
}

.service-list {
  list-style: none;
  margin-top: 18px;
  margin-bottom: 24px;
}

.service-list li {
  padding: 14px 0 14px 34px;
  position: relative;
  font-size: 16px;
  color: #4a3a2a;
  border-bottom: 1px solid rgba(68, 52, 37, .1);
}

.service-list li:last-child {
  border: 0;
}

.service-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bronze);
}

.legal-content {
  max-width: 760px;
}

.legal-content .legal-updated {
  font-size: 13px;
  color: rgba(68, 52, 37, .55);
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 22px;
  margin-top: 40px;
  margin-bottom: 14px;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #4a3a2a;
  margin-bottom: 14px;
}

.legal-content .service-list {
  margin-top: 4px;
  margin-bottom: 20px;
}

.legal-content .service-list li {
  font-size: 15px;
}

.legal-content a {
  color: var(--bronze);
  font-weight: 600;
}

.legal-content a:hover {
  text-decoration: underline;
}

.service-cta {
  background: var(--ivory-2);
  border-radius: var(--radius);
  padding: 36px 30px;
  text-align: center;
}

.service-cta h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.service-cta p {
  font-size: 14px;
  color: #6b573f;
  margin-bottom: 22px;
}

.service-cta .btn {
  width: 100%;
  justify-content: center;
}

.related-services {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid rgba(68, 52, 37, .1);
}

.related-services h4 {
  font-family: var(--serif);
  font-size: 15px;
  margin-bottom: 10px;
}

.related-services a {
  display: block;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--bronze);
  border-bottom: 1px solid rgba(68, 52, 37, .08);
}

.related-services a:last-child {
  border: 0;
}

.related-services a:hover {
  color: var(--bronze-dark);
}

.content-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

.section-alt {
  background: var(--ivory-2);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1000px) {
  .authority .grid2,
  .genex .grid2,
  .service-body .grid2,
  .hero-genex-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 44px;
    margin-bottom: -20px;
  }

  .hero-gado {
    max-width: 420px;
  }

  .pillars-row {
    grid-template-columns: 1fr 1fr;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 760px) {
  .navbar-top .wrap {
    flex-direction: column;
    gap: 12px;
  }

  .brand {
    flex: 1 1 100%;
    justify-content: center;
  }

  .search-box {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .nav-login {
    flex: 1 1 100%;
    text-align: center;
  }

  /* Stacked navbar-top runs ~176px tall on mobile vs. ~64px on desktop,
     so the sticky menu's offset needs to match or it hides underneath it. */
  .navbar-menu {
    top: 176px;
  }

  .navbar-menu .wrap {
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .navbar-menu .wrap::-webkit-scrollbar {
    display: none;
  }

  .navbar-menu a {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: 13px;
    padding: 12px 16px;
  }

  .hero-gado {
    max-width: 320px;
  }

  .pillars-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .foot-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .service-hero {
    padding-top: 200px;
  }

  .service-banner {
    height: 220px;
  }

  section {
    padding: 76px 0;
  }

  .auction-grid,
  .svc-grid,
  .proj-grid,
  .testi-grid,
  .blog-grid {
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .auction,
  .svc,
  .proj,
  .testi,
  .blog-card {
    flex: 0 0 82%;
  }
}

/* ==========================================================================
   Intro Video
   ========================================================================== */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s ease;
}

.intro-overlay.hide {
  opacity: 0;
  pointer-events: none;
}

.intro-overlay video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-skip {
  position: absolute;
  bottom: 32px;
  right: 32px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  background: rgba(0, 0, 0, .3);
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  cursor: pointer;
  transition: background .2s ease;
}

.intro-skip:hover {
  background: rgba(0, 0, 0, .55);
}

body.intro-active {
  overflow: hidden;
}
