/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #C8922A;
  --gold-light: #E8B84B;
  --dark: #0f0f0f;
  --dark-2: #1a1a1a;
  --dark-3: #242424;
  --dark-4: #2e2e2e;
  --cream: #F5F0E8;
  --white: #ffffff;
  --muted: #888888;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── NAV ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  transition: background 0.3s, padding 0.3s;
}

#navbar.scrolled {
  background: rgba(10, 10, 10, 0.97);
  padding: 0.85rem 2.5rem;
  border-bottom: 1px solid #2a2a2a;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}

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

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ccc;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  padding: 0.5rem 1.25rem !important;
  border-radius: 2px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--gold-light) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.65) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 11rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  color: var(--white);
  font-style: normal;
  margin-bottom: 2rem;
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.8), 0 0 60px rgba(0,0,0,0.5);
}

.hero-tagline em {
  color: var(--gold);
  font-style: normal;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hero-badges span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
  border: 1px solid rgba(200, 146, 42, 0.4);
  padding: 0.3rem 0.85rem;
  border-radius: 2px;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.2s;
  cursor: pointer;
}

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

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 146, 42, 0.3);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  z-index: 2;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── SECTION LABELS ── */
.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-sub {
  color: var(--muted);
  max-width: 560px;
  margin-bottom: 3rem;
  font-size: 1rem;
}

/* ── ABOUT ── */
#about {
  padding: 7rem 0;
  background: var(--dark-2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "text image" "text pillars";
  gap: 2rem 5rem;
  margin-top: 2rem;
}

.about-text { grid-area: text; align-self: start; padding-top: 1rem; }

.about-image {
  grid-area: image;
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(15%);
  transition: filter 0.4s;
}

.about-image:hover img { filter: grayscale(0%); }

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.about-text p {
  color: #aaa;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid #2a2a2a;
}

.pillar:first-child { border-top: 1px solid #2a2a2a; }

.pillar-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  min-width: 3rem;
}

.pillar-text {
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

/* ── STATS ── */
#stats {
  position: relative;
  padding: 5rem 0;
  background-image: url('images/image5.jpeg');
  background-size: cover;
  background-position: center;
}

#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

#stats .container { position: relative; z-index: 1; }

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
}

.stat {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 1px 6px rgba(0,0,0,0.8);
}

/* ── CAPABILITIES ── */
#capabilities {
  padding: 7rem 0;
  background: var(--dark);
}

#capabilities h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 3rem;
  line-height: 1.05;
}

.caps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.cap-card {
  background: var(--dark-2);
  border: 1px solid #2a2a2a;
  border-top: 3px solid var(--gold);
  padding: 2rem;
  border-radius: 2px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cap-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.cap-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}

.cap-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.cap-card:hover .cap-img img { transform: scale(1.04); }

.cap-size {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.cap-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.cap-card p {
  color: #999;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Secret Weapon */
.secret-weapon {
  position: relative;
  border-radius: 6px;
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  min-height: 480px;
  justify-content: center;
}

.secret-weapon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.75) 100%);
}

.secret-weapon > * { position: relative; z-index: 1; }

.sw-badge {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--gold);
  border: 1px solid rgba(200,146,42,0.5);
  padding: 0.4rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.sw-content {
  max-width: 680px;
}

.sw-content h3 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 1.25rem;
}

.sw-content p {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.sw-content strong { color: var(--gold-light); }

.sw-stats {
  display: flex;
  gap: 4rem;
  margin-top: 3rem;
  justify-content: center;
}

.sw-stats > div { text-align: center; }

.sw-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
}

.sw-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #999;
  margin-top: 0.25rem;
  display: block;
}

/* ── FORMATS ── */
#formats {
  padding: 7rem 0;
  background: var(--dark-2);
}

#formats h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.05;
}

.formats-table {
  margin-top: 2rem;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  overflow: hidden;
}

.fmt-header, .fmt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 1rem 1.5rem;
}

.fmt-header {
  background: var(--dark-3);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.fmt-row {
  border-top: 1px solid #222;
  font-size: 0.95rem;
  color: #ccc;
  transition: background 0.15s;
}

.fmt-row:hover { background: #1f1f1f; }

.fmt-row span:last-child {
  color: var(--gold-light);
  font-weight: 500;
}

.licenses {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
  font-size: 0.85rem;
}

.licenses span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 600;
}

.licenses strong {
  background: rgba(200, 146, 42, 0.15);
  color: var(--gold);
  padding: 0.3rem 0.75rem;
  border-radius: 2px;
  font-size: 0.8rem;
  border: 1px solid rgba(200, 146, 42, 0.3);
}

/* ── BEVERAGES ── */
#beverages {
  padding: 7rem 0;
  background: var(--dark);
}

#beverages h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 3rem;
  line-height: 1.05;
}

.bev-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.bev-card {
  background: var(--dark-2);
  border: 1px solid #2a2a2a;
  padding: 2rem 1.5rem;
  border-radius: 2px;
  transition: border-color 0.2s;
}

.bev-card:hover { border-color: var(--gold); }

.bev-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.bev-card p {
  color: #888;
  font-size: 0.9rem;
}

/* ── CLIENTS ── */
#clients {
  padding: 7rem 0;
  background: var(--dark-3);
}

#clients h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid #222;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 2.5rem;
}

.client-name {
  background: var(--dark-2);
  padding: 1.75rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: #bbb;
  transition: background 0.2s, color 0.2s;
  text-align: center;
  border-right: 1px solid #222;
  border-bottom: 1px solid #222;
}

.client-name:hover {
  background: #1f1a10;
  color: var(--gold);
}

/* ── PROPERTY ── */
#property {
  padding: 7rem 0;
  background: var(--dark);
}

#property h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.prop-img {
  aspect-ratio: 16/10 !important;
}

.aerial-banner {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 3rem;
}

.aerial-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aerial-label {
  position: absolute;
  bottom: 1.25rem;
  left: 1.5rem;
  background: rgba(0,0,0,0.7);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.4rem 0.9rem;
  border-radius: 2px;
  backdrop-filter: blur(4px);
}

.prop-card {
  background: var(--dark-2);
  border: 1px solid #2a2a2a;
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}

.prop-card:hover { transform: translateY(-3px); border-color: rgba(200,146,42,0.4); }

.prop-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.prop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.prop-card:hover .prop-img img { transform: scale(1.05); }

.prop-card h3 {
  padding: 1.25rem 1.5rem 0.4rem;
}

.prop-card p {
  padding: 0 1.5rem 1.5rem;
}

.prop-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.prop-card p {
  color: #888;
  font-size: 0.9rem;
}

/* ── LOCATION ── */
#location {
  padding: 7rem 0;
  background: var(--dark-2);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.location-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.location-text p {
  color: #aaa;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.location-text strong { color: var(--gold-light); }

.location-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.loc-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid #2a2a2a;
}

.loc-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  min-width: 4.5rem;
}

.loc-label {
  font-size: 0.9rem;
  color: #bbb;
}

.location-map {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
}

.location-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 320px;
  filter: saturate(0.7) brightness(0.85);
}

.map-pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.pin-dot {
  width: 18px;
  height: 18px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(200, 146, 42, 0.2), 0 0 0 12px rgba(200, 146, 42, 0.08);
}

.pin-label {
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.4;
}

.pin-label small { color: var(--gold); font-size: 0.75rem; }

.map-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.map-cities span {
  font-size: 0.78rem;
  color: #666;
  letter-spacing: 0.06em;
}

/* ── CONTACT ── */
#contact {
  position: relative;
  padding: 7rem 0;
  background-size: cover;
  background-position: center;
}

#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.82);
}

#contact .container { position: relative; z-index: 1; }

.cta-box {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

.cta-box h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 1.25rem;
}

.cta-box p {
  color: #999;
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.contact-info {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.contact-info a {
  color: var(--gold);
  transition: color 0.2s;
}

.contact-info a:hover { color: var(--gold-light); }

/* ── FOOTER ── */
footer {
  background: #080808;
  border-top: 1px solid #1e1e1e;
  padding: 2.5rem 0;
}

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

.footer-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: #555;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.75rem;
  color: #444;
}

/* ── PHOTO STRIP ── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 260px;
  overflow: hidden;
}

.ps-img {
  overflow: hidden;
  position: relative;
}

.ps-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  filter: brightness(0.75) saturate(0.85);
}

.ps-img:hover img {
  transform: scale(1.07);
  filter: brightness(0.9) saturate(1.1);
}

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "text" "image" "pillars";
    gap: 2rem;
  }

  .location-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .caps-grid,
  .bev-grid { grid-template-columns: 1fr 1fr; }

  .clients-grid { grid-template-columns: repeat(2, 1fr); }

  .sw-stats { gap: 2rem; }

  .photo-strip { height: 180px; }
}

@media (max-width: 640px) {
  #navbar { padding: 1rem 1.25rem; }
  #navbar.scrolled { padding: 0.75rem 1.25rem; }

  .nav-links {
    display: none;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    padding: 2rem;
    border-bottom: 1px solid #2a2a2a;
    gap: 1.25rem;
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }

  .caps-grid,
  .bev-grid { grid-template-columns: 1fr; }

  .property-grid { grid-template-columns: 1fr; }

  .clients-grid { grid-template-columns: 1fr 1fr; }

  .stats-grid { flex-direction: column; align-items: center; }

  .photo-strip { grid-template-columns: repeat(2, 1fr); height: 200px; }

  .sw-stats { flex-wrap: wrap; gap: 1.5rem; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
