/* ============================================================
   CSS VARIABLES — A105 BRAND PALETTE
============================================================ */
:root {
  --copper:     #C08A62;
  --copper-lt:  #D4A882;
  --copper-dk:  #8B5E3C;
  --charcoal:   #1C1C1C;
  --granite:    #2C2C2C;
  --cream:      #EBE6D8;
  --cream-dk:   #D6CEBC;
  --white:      #FFFFFF;
  --text-dark:  #1A1A1A;
  --text-mid:   #4A4A4A;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Raleway', sans-serif;
  --nav-h:        80px;
  --transition:   0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--charcoal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ============================================================
   NAVBAR
============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1002;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1), opacity 0.45s ease;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 40px 0 42vw;
  background: transparent;
  overflow: visible;
  pointer-events: none;
  justify-content: flex-end;
  gap: 32px;
}
.navbar > * { pointer-events: all; }

.navbar.hide-up {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.navbar-bar {
  position: fixed;
  top: 0;
  left: 40vw;
  right: 0;
  height: var(--nav-h);
  z-index: 1001;
  pointer-events: none;
  overflow: hidden;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1), opacity 0.45s ease;
}
.navbar-bar.hide-up {
  transform: translateY(-100%);
  opacity: 0;
}
.navbar-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    transparent 0px,
    rgba(28,28,28,0.90) 60px,
    rgba(28,28,28,0.90) 100%
  );
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(192,138,98,0.18);
}

/* Logo */
.nav-logo {
  position: fixed;
  top: 50px;
  left: 50px;
  z-index: 1003;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding-top: 0;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1), opacity 0.45s ease;
}
.nav-logo.hide-up {
  transform: translateY(-40px);
  opacity: 0;
  pointer-events: none;
}
.nav-logo img {
  width: 20vw;
  max-width: 350px;
  min-width: 140px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 6px 24px rgba(0,0,0,0.65));
  transition: transform var(--transition), width 0.3s ease;
}
.nav-logo img:hover { transform: translateY(-2px); }
.logo-wrap { line-height: 1; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a,
.nav-links > li > span {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > span:hover,
.nav-links > li:hover > a,
.nav-links > li:hover > span,
.nav-links > li.dd-open > a,
.nav-links > li.dd-open > span { color: var(--copper); }
.nav-links .chevron {
  font-size: 0.55rem;
  transition: transform 0.3s;
}
.nav-links > li:hover .chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(28,28,28,0.97);
  border: 1px solid rgba(192,138,98,0.2);
  border-radius: 2px;
  min-width: 220px;
  padding: 12px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  backdrop-filter: blur(20px);
}
/* Bridge invisible que cubre el gap entre el trigger y el dropdown
   para que el mouse no pierda el hover al atravesar el espacio */
.dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0; right: 0;
  height: 12px;
}
/* Abre con clase JS (.dd-open) O con :hover como fallback */
.nav-links > li:hover .dropdown,
.nav-links > li.dd-open .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
/* Rota el chevron con ambos triggers */
.nav-links > li:hover .chevron,
.nav-links > li.dd-open .chevron { transform: rotate(180deg); }
.dropdown a {
  display: block;
  padding: 10px 22px;
  font-size: 0.70rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color 0.25s, padding-left 0.25s;
}
.dropdown a:hover { color: var(--copper); padding-left: 28px; }
.dropdown-divider {
  height: 1px;
  background: rgba(192,138,98,0.15);
  margin: 8px 16px;
}

/* Dev button */
.nav-btn-dev {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  background-image: url('rod-100x1800-H.jpg');
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(192,138,98,0.4);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.nav-btn-dev::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28,28,28,0.45);
  transition: background var(--transition);
}
.nav-btn-dev span { position: relative; z-index: 1; }
.nav-btn-dev:hover::before { background: rgba(28,28,28,0.2); }
.nav-btn-dev:hover {
  box-shadow: 0 0 20px rgba(192,138,98,0.45);
  border-color: var(--copper);
}

/* Social icons */
.nav-socials {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 10px;
}
.nav-socials a {
  color: var(--copper);
  font-size: 0.9rem;
  transition: color 0.25s, transform 0.25s;
}
.nav-socials a:hover {
  color: var(--copper-lt);
  transform: translateY(-2px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(22,22,22,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 24px 28px 36px;
  border-bottom: 1px solid rgba(192,138,98,0.2);
  flex-direction: column;
  gap: 0;
  transform: translateY(-10px);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  border-bottom: 1px solid rgba(192,138,98,0.1);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--copper); }
.mobile-menu .mob-sub {
  padding-left: 16px;
  font-size: 0.68rem;
  color: rgba(235,230,216,0.65);
}
.mob-section-label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--copper);
  padding: 16px 0 6px;
}

/* ============================================================
   LEFT ROD STRIP
============================================================ */
.rod-strip {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 100%;
  min-height: 100vh;
  background-image: url('rod-100x1800.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  z-index: 999;
  pointer-events: none;
}

/* ============================================================
   INDEX HERO (slideshow)
============================================================ */
.hero {
  position: relative;
  height: 60vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.2s ease, transform 12s ease;
}
.hero-bg.active { opacity: 1; }
.hero-bg.active.zoomed { transform: scale(1); }
.hero-bg-0 { background-image: url('hero-bg-1.jpg'); }
.hero-bg-1 { background-image: url('hero-bg-2.jpg'); }
.hero-bg-2 { background-image: url('hero-bg-3.jpg'); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(18,14,10,0.72) 0%,
    rgba(28,22,14,0.58) 45%,
    rgba(18,14,10,0.80) 100%
  );
  z-index: 1;
}
.hero-slides {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  top: calc(50% + 24px);
  left: 30vw;
  right: 4vw;
  transform: translateY(-50%);
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
  text-align: left;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: all;
}
.hero-overline {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s 0.3s, transform 0.8s 0.3s;
  display: block;
}
.hero-slide.active .hero-overline { opacity: 1; transform: translateY(0); }
.hero-h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.08;
  color: var(--cream);
  letter-spacing: 0.01em;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s 0.5s, transform 0.9s 0.5s;
}
.hero-h1 em { font-style: italic; color: var(--copper-lt); }
.hero-slide.active .hero-h1 { opacity: 1; transform: translateY(0); }
.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.8vw, 1.35rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(235,230,216,0.72);
  line-height: 1.35;
  margin-top: 6px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.9s 0.7s, transform 0.9s 0.7s;
}
.hero-slide.active .hero-sub { opacity: 1; transform: translateY(0); }
.hero-cta-wrap {
  margin-top: 28px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.9s 0.9s, transform 0.9s 0.9s;
}
.hero-slide.active .hero-cta-wrap { opacity: 1; transform: translateY(0); }
.hero-cta {
  display: inline-block;
  padding: 14px 40px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(192,138,98,0.65);
  border-radius: 1px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}
.hero-cta:hover { border-color: var(--copper); color: var(--charcoal); }
.hero-cta:hover::before { transform: scaleX(1); }

.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 28px;
  height: 2px;
  background: rgba(235,230,216,0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.4s, width 0.4s;
}
.hero-dot.active { background: var(--copper); width: 48px; }

/* ============================================================
   INNER PAGE HERO (banner)
============================================================ */
.page-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 52px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  transition: transform 12s ease;
}
.page-hero-bg.zoomed { transform: scale(1); }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(14,10,6,0.80) 0%,
    rgba(28,20,12,0.62) 50%,
    rgba(14,10,6,0.85) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-left: calc(30vw);
  padding-right: 4vw;
}
.page-hero-overline {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 12px;
}
.page-hero-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.06;
  color: var(--cream);
}
.page-hero-title em { font-style: italic; color: var(--copper-lt); }

/* ============================================================
   DIVIDER BAR (rod image)
============================================================ */
.rod-divider {
  height: 22px;
  background-image: url('rod-100x1800-H.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: repeat-x;
  position: relative;
}

/* ============================================================
   INNER PAGE — SHARED SECTION STYLES
============================================================ */
.inner-section {
  padding: 96px 0;
}
.inner-section--dark {
  background: var(--charcoal);
}
.inner-section--white {
  background-color: var(--white);
  background-image: url('bg-granito.jpg');
  background-repeat: repeat;
  background-size: 400px;
}
.inner-section--granite {
  background: var(--granite);
}
.inner-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}
.inner-eyebrow {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 18px;
  display: block;
}
.inner-h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 24px;
}
.inner-h2 em { font-style: italic; color: var(--copper-lt); }
.inner-h2--dark { color: var(--granite); }
.inner-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(235,230,216,0.70);
  max-width: 660px;
}
.inner-lead--dark { color: var(--text-mid); }

/* Two-column layout */
.inner-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.inner-cols--wide { grid-template-columns: 1.1fr 0.9fr; }

/* Feature cards grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.feature-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(192,138,98,0.15);
  border-radius: 2px;
  padding: 36px 32px;
  transition: border-color 0.35s, background 0.35s;
}
.feature-card:hover {
  border-color: rgba(192,138,98,0.4);
  background: rgba(255,255,255,0.06);
}
.feature-icon {
  font-size: 1.6rem;
  color: var(--copper);
  margin-bottom: 20px;
  display: block;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.25;
}
.feature-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(235,230,216,0.60);
}

/* Feature card — white bg variant */
.feature-card--light {
  background: rgba(255,255,255,0.85);
  border-color: rgba(192,138,98,0.2);
}
.feature-card--light .feature-title { color: var(--granite); }
.feature-card--light .feature-text { color: var(--text-mid); }
.feature-card--light:hover { background: #fff; border-color: var(--copper); }

/* Step / process list */
.process-list {
  list-style: none;
  counter-reset: steps;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-item {
  counter-increment: steps;
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(192,138,98,0.12);
  align-items: flex-start;
}
.process-item:last-child { border-bottom: none; }
.process-num {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border: 1px solid var(--copper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--copper);
  letter-spacing: 0;
  margin-top: 3px;
}
.process-body {}
.process-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 8px;
}
.process-text {
  font-size: 0.96rem;
  line-height: 1.75;
  color: rgba(235,230,216,0.60);
}

/* CTA band */
.cta-band {
  background-image: url('rod-100x1800-H.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 72px 48px;
  text-align: center;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14,10,6,0.62);
}
.cta-band-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.cta-band-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 16px;
}
.cta-band-title em { font-style: italic; color: var(--copper-lt); }
.cta-band-sub {
  font-size: 0.88rem;
  color: rgba(235,230,216,0.65);
  margin-bottom: 36px;
  letter-spacing: 0.05em;
}
.btn-copper {
  display: inline-block;
  padding: 15px 48px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--copper);
  border: 1px solid var(--copper);
  border-radius: 1px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-copper:hover {
  background: var(--copper-lt);
  border-color: var(--copper-lt);
  box-shadow: 0 0 28px rgba(192,138,98,0.45);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-block;
  padding: 14px 40px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid rgba(192,138,98,0.65);
  border-radius: 1px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}
.btn-outline:hover { border-color: var(--copper); color: var(--charcoal); }
.btn-outline:hover::before { transform: scaleX(1); }

/* ============================================================
   WHY US (index)
============================================================ */
.why-section {
  background-color: var(--white);
  background-image: url('bg-granito.jpg');
  background-repeat: repeat;
  background-size: 400px;
  padding: 100px 0;
  position: relative;
}
.why-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-bullets-col {}
.why-bullets-label {
  font-size: 0.725rem;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 32px;
}
.why-bullet {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.7s, transform 0.7s;
}
.why-bullet.visible { opacity: 1; transform: translateX(0); }
.why-bullet-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--copper);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--copper);
  letter-spacing: 0;
  margin-top: 2px;
}
.why-bullet-title {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--granite);
  margin-bottom: 5px;
}
.why-bullet-text {
  font-size: 1.025rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-mid);
}
.why-statement-col { text-align: right; }
.why-slogan-pre {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 24px;
}
.why-statement {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.4vw, 2.25rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--granite);
  margin-bottom: 32px;
}
.why-statement strong { font-weight: 600; color: var(--copper-dk); }
.why-statement em { font-style: italic; }
.why-paragraph {
  font-size: 1.0875rem;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-mid);
  border-left: none;
  border-right: 3px solid var(--copper);
  padding-right: 22px;
}
.why-ornament {
  display: inline-block;
  width: 48px;
  height: 1px;
  background: var(--copper);
  margin-top: 32px;
}

/* ============================================================
   TARGETS BUTTONS (index)
============================================================ */
.targets-section {
  padding: 72px 0 96px;
  background: var(--charcoal);
  position: relative;
}
.targets-label {
  text-align: center;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(192,138,98,0.6);
  margin-bottom: 40px;
}
.targets-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  justify-content: center;
  align-items: stretch;
}
.target-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 24px 16px 20px;
  flex: 1 1 0;
  min-width: 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  background-image: url('rod-100x1800-H.jpg');
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(192,138,98,0.3);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.4s, box-shadow 0.4s;
  box-shadow: 0 0 0px rgba(192,138,98,0), inset 0 0 40px rgba(18,12,6,0.55);
}
.target-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20,14,8,0.52);
  transition: background 0.4s;
}
.target-btn .btn-icon {
  position: relative;
  z-index: 1;
  font-size: 2.18rem;
  background: linear-gradient(160deg, #ffffff 0%, #c8c8c8 40%, #888888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.55));
  margin-bottom: 10px;
  display: block;
  transition: transform 0.35s, filter 0.35s;
}
.target-btn:hover .btn-icon {
  transform: translateY(-4px);
  filter: drop-shadow(0 3px 8px rgba(255,255,255,0.25));
}
.target-btn .btn-service-label {
  position: relative;
  z-index: 1;
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 10px;
  display: block;
}
.target-btn span {
  position: relative;
  z-index: 1;
  line-height: 1.5;
  font-size: 0.81rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.92);
}
.target-btn:hover {
  border-color: rgba(192,138,98,0.75);
  box-shadow: 0 0 22px rgba(192,138,98,0.35), 0 0 50px rgba(192,138,98,0.12), inset 0 0 40px rgba(18,12,6,0.25);
}
.target-btn:hover::before { background: rgba(20,14,8,0.28); }
.target-btn--dev { border-color: rgba(192,138,98,0.5); }
.target-btn--dev:hover {
  box-shadow: 0 0 28px rgba(192,138,98,0.5), 0 0 60px rgba(192,138,98,0.18), inset 0 0 40px rgba(18,12,6,0.25);
  border-color: var(--copper-lt);
}

/* ============================================================
   PROPERTIES (index)
============================================================ */
.properties-section {
  background: #0E0E0E;
  padding: 90px 0 100px;
}
.section-header {
  text-align: center;
  margin-bottom: 54px;
}
.section-header .s-label {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 14px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 3.3rem);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.properties-grid {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.prop-card {
  background: var(--white);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
  aspect-ratio: 1;
}
.prop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55), 0 0 30px rgba(192,138,98,0.12);
}
.prop-card-img {
  width: 100%; flex: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.prop-card:hover .prop-card-img { transform: scale(1.04); }
.prop-card-img-wrap {
  overflow: hidden;
  flex: 1;
  position: relative;
}
.prop-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--copper);
  color: var(--white);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 1px;
  z-index: 2;
}
.prop-card-body { padding: 16px 18px 18px; flex-shrink: 0; }
.prop-location {
  font-size: 0.638rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 5px;
}
.prop-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--granite);
  line-height: 1.25;
  margin-bottom: 6px;
}
.prop-desc {
  font-size: 0.792rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.prop-price {
  font-family: var(--font-display);
  font-size: 1.155rem;
  font-weight: 600;
  color: var(--copper-dk);
  letter-spacing: 0.02em;
}
.prop-meta { display: flex; gap: 12px; margin-top: 6px; }
.prop-meta span {
  font-size: 0.682rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 4px;
}
.prop-meta i { color: var(--copper); font-size: 0.62rem; }

/* ============================================================
   SERVICES BAR & FOOTER
============================================================ */
.services-bar {
  background: var(--granite);
  border-top: 1px solid rgba(192,138,98,0.2);
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.svc-item {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(235,230,216,0.55);
  padding: 8px 24px;
  transition: color 0.3s;
  cursor: pointer;
  position: relative;
}
.svc-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  height: 14px; width: 1px;
  background: rgba(192,138,98,0.25);
}
.svc-item:hover { color: var(--copper); }

footer {
  background: var(--charcoal);
  padding: 48px 40px 32px;
  text-align: center;
  border-top: 1px solid rgba(192,138,98,0.1);
}
.footer-tagline {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(192,138,98,0.55);
  margin-bottom: 26px;
}
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}
.footer-socials a {
  color: var(--copper);
  font-size: 1rem;
  transition: color 0.25s, transform 0.25s;
}
.footer-socials a:hover { color: var(--copper-lt); transform: translateY(-3px); }
.footer-copy {
  font-size: 0.62rem;
  color: rgba(235,230,216,0.25);
  letter-spacing: 0.12em;
}

/* ============================================================
   TEAM VIDEO SECTION (index)
============================================================ */
.team-section {
  background: var(--charcoal);
  padding: 0;
  display: flex;
  min-height: 480px;
}
.team-video-side {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
}
.team-video-side iframe,
.team-video-side video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}
.team-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #111 0%, #1e1812 100%);
  cursor: pointer;
  transition: background 0.3s;
}
.team-video-placeholder:hover { background: linear-gradient(135deg, #181410 0%, #261f15 100%); }
.team-play-btn {
  width: 68px; height: 68px;
  border-radius: 50%;
  border: 2px solid rgba(192,138,98,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--copper-lt);
  font-size: 1.4rem;
  margin-bottom: 18px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.team-video-placeholder:hover .team-play-btn {
  border-color: var(--copper);
  box-shadow: 0 0 28px rgba(192,138,98,0.3);
  transform: scale(1.06);
}
.team-video-placeholder p {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(192,138,98,0.5);
}
.team-content-side {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 80px 72px 72px;
  position: relative;
}
.team-content-side::before {
  content: '';
  position: absolute;
  left: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(192,138,98,0.3) 30%, rgba(192,138,98,0.3) 70%, transparent);
}
.team-eyebrow {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 22px;
}
.team-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.18;
  color: var(--cream);
  margin-bottom: 28px;
}
.team-title strong { font-weight: 600; font-style: italic; color: var(--copper-lt); }
.team-body {
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(235,230,216,0.65);
  max-width: 420px;
  margin-bottom: 38px;
}
.team-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-lt);
  transition: gap 0.3s, color 0.3s;
  cursor: pointer;
}
.team-cta i { font-size: 0.75rem; transition: transform 0.3s; }
.team-cta:hover { color: var(--copper); gap: 18px; }
.team-cta:hover i { transform: translateX(4px); }

/* ============================================================
   SCROLL FADE-IN UTILITY
============================================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   PROPERTIES — VIDEOS 9:16
============================================================ */
.properties-grid--videos {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1100px;
  gap: 18px;
}
.prop-video {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 4px;
  background: #000;
  box-shadow: 0 12px 36px rgba(0,0,0,0.55), 0 0 24px rgba(192,138,98,0.10);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.prop-video:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 56px rgba(0,0,0,0.65), 0 0 32px rgba(192,138,98,0.18);
}
.prop-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .properties-grid { grid-template-columns: repeat(2, 1fr); }
  .prop-card { aspect-ratio: auto; }
  .prop-card-img-wrap { height: 180px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .properties-grid--videos { grid-template-columns: repeat(4, 1fr); gap: 12px; }
}

@media (max-width: 860px) {
  .why-inner { grid-template-columns: 1fr; gap: 52px; }
  .why-statement-col { text-align: left; order: -1; }
  .why-paragraph { border-right: none; border-left: 3px solid var(--copper); padding-right: 0; padding-left: 22px; }
  .team-section { flex-direction: column; }
  .team-video-side { flex: 0 0 280px; min-height: 280px; }
  .team-content-side { flex: 1; padding: 48px 32px; }
  .team-content-side::before { display: none; }
  .inner-cols { grid-template-columns: 1fr; gap: 48px; }
  .inner-cols--wide { grid-template-columns: 1fr; }
  .page-hero-content { padding-left: 40px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .navbar { padding: 0 20px 0 80px; }
  .navbar-bar { left: 0; }
  .navbar-bar::before { background: rgba(28,28,28,0.92); }
  .nav-logo { top: 0; left: 30px; padding-top: 0; height: var(--nav-h); display: flex; align-items: center; }
  .nav-logo img { height: 46px; width: auto; min-width: unset; }
  .nav-links, .nav-socials, .nav-btn-dev { display: none; }
  .hamburger { display: flex; }
  .rod-strip { width: 20px; }
  .hero-slide { left: 80px !important; right: 20px !important; }
  .navbar-bar { left: 0 !important; }
  .navbar { padding: 0 20px 0 80px !important; }
  .hero-dots { bottom: 24px; }
  .why-inner { padding: 0 28px; }
  .targets-grid { padding: 0 20px; flex-wrap: wrap; gap: 10px; }
  .target-btn { flex: 1 1 calc(50% - 5px); min-width: 0; padding: 18px 14px; }
  .properties-grid { grid-template-columns: repeat(2, 1fr); padding: 0 20px; gap: 16px; }
  .prop-card-img-wrap { height: 150px; }
  .properties-grid--videos { grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 0 16px; }
  .services-bar { padding: 16px 20px; gap: 0; }
  .svc-item { padding: 6px 14px; font-size: 0.55rem; }
  .inner-container { padding: 0 24px; }
  .inner-section { padding: 64px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .page-hero { height: 300px; padding-bottom: 36px; }
  .page-hero-content { padding-left: 32px; padding-right: 24px; }
  .cta-band { padding: 52px 28px; }
}

@media (max-width: 480px) {
  .properties-grid { grid-template-columns: 1fr; }
  .target-btn { flex: 1 1 100%; }
  .hero-h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 1rem; }
  .properties-grid--videos { grid-template-columns: repeat(4, 1fr); gap: 6px; padding: 0 12px; }
  .prop-video { border-radius: 3px; }
}
