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

:root {
  --bg:           #0D1117;
  --bg-alt:       #161B22;
  --card:         #21262D;
  --border:       #30363D;
  --accent:       #F03CB4;
  --accent-h:     #D4219E;
  --text:         #E6EDF3;
  --muted:        #8B949E;
  --white:        #ffffff;
  --nav-h:        72px;
  --radius:       12px;
  --radius-sm:    8px;
  --max-w:        1200px;
  --f-display:    'League Spartan', sans-serif;
  --f-body:       'Inter', sans-serif;
  /* Brand palette */
  --brand-pink:   #F03CB4;
  --brand-red:    #DC3C3C;
  --brand-orange: #FF8C3C;
  --brand-yellow: #FFC828;
  --brand-green:  #28C864;
  --brand-purple: #8C28DC;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--f-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* ── Utilities ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 24px; }
.section-alt { background: var(--bg-alt); }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.eyebrow-light { color: rgba(255,255,255,0.55); }

.section-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-header { text-align: center; margin-bottom: 64px; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-h); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(240,60,180,0.35); }

.btn-outline { border: 1.5px solid var(--border); color: var(--text); background: transparent; }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }

.btn-white { background: var(--white); color: #0D1117; }
.btn-white:hover { background: #f0f0f0; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.2); }

.btn-outline-white { border: 1.5px solid rgba(255,255,255,0.4); color: var(--white); background: transparent; }
.btn-outline-white:hover { border-color: var(--white); transform: translateY(-2px); }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(13,17,23,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav-logo span { color: var(--accent); }

.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { color: var(--muted); font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-links a.nav-cta {
  background: var(--accent);
  color: var(--white);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
}
.nav-links a.nav-cta:hover { background: var(--accent-h); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}
.hero-bg-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% -5%, rgba(240,60,180,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 85% 95%, rgba(140,40,220,0.08) 0%, transparent 60%);
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; max-width: 860px; }
.hero .eyebrow { font-size: 0.75rem; margin-bottom: 20px; }

.hero-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 7.5vw, 6.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-title span { color: var(--accent); }

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text);
  max-width: 700px;
  margin: 0 auto 14px;
  line-height: 1.75;
}
.hero-support {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Section Silhouettes ── */
.sil-host { position: relative; overflow: hidden; }
.section-sil {
  position: absolute;
  color: white;
  opacity: 0.07;
  pointer-events: none;
}

/* ── Hero Silhouettes ── */
.hero-silhouettes {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-sil {
  position: absolute;
  color: white;
  opacity: 0.09;
}
.hero-sil-gumball {
  width: 210px;
  left: -35px;
  top: 10%;
  transform: rotate(-8deg);
  transform-origin: center center;
}
.hero-sil-claw {
  width: 270px;
  right: -45px;
  top: 6%;
  transform: rotate(5deg);
  transform-origin: center center;
}

/* ── Who We Are ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-photo {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  display: block;
  background: #fff;
  padding: 16px 12px 8px;
}

.about-text .eyebrow { margin-bottom: 16px; }
.about-text .section-title { margin-bottom: 24px; }
.about-text > p { color: var(--muted); line-height: 1.85; font-size: 1rem; }

.mission {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
}
.mission-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.65;
  font-style: italic;
}

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.2s;
}
.stat-card:hover { border-color: var(--accent); }
.stat-card-wide { grid-column: span 2; }
.stat-number {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2.8rem, 4vw, 3.8rem);
  color: var(--brand-pink);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
}
.about-stats .stat-card:nth-child(1) .stat-number { color: var(--brand-pink); }
.about-stats .stat-card:nth-child(2) .stat-number { color: var(--brand-green); }
.about-stats .stat-card:nth-child(3) .stat-number { color: var(--brand-purple); }
.stat-number span { font-size: 65%; }
.stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Properties ── */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.properties-grid .property-card:nth-child(1) { grid-column: 1 / 3; }
.properties-grid .property-card:nth-child(2) { grid-column: 3 / 5; }
.properties-grid .property-card:nth-child(3) { grid-column: 5 / 7; }
.properties-grid .property-card:nth-child(4) { grid-column: 2 / 4; }
.properties-grid .property-card:nth-child(5) { grid-column: 4 / 6; }
.properties-grid .property-card:nth-child(6) { grid-column: 3 / 5; }

.property-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.property-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 16px 48px rgba(240,60,180,0.12);
}
.property-logo {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px;
  overflow: hidden;
}
.property-logo img { max-height: 100%; max-width: 100%; object-fit: contain; }
.property-info h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.property-info p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }
.property-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255,200,40,0.15);
  color: var(--brand-yellow);
  margin-bottom: 8px;
}
.property-arrow {
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform 0.2s;
  margin-top: auto;
  align-self: flex-end;
}
.property-card:hover .property-arrow { transform: translateX(5px); }

/* ── Brands ── */
.brand-category { margin-bottom: 56px; }
.brand-category:last-child { margin-bottom: 0; }

.brand-category-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.brands-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.brands-grid-single {
  grid-template-columns: repeat(3, 1fr);
}
.brands-grid-single .brand-card {
  grid-column: 2;
}

.brand-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.brand-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 16px 48px rgba(240,60,180,0.12);
}
.brand-logo {
  width: 180px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px;
  overflow: hidden;
  flex-shrink: 0;
}
.brand-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.brand-name {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: -0.01em;
}
.brand-desc { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

/* ── Capabilities ── */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.capability-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.2s, transform 0.2s;
}
.capability-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.capability-icon {
  width: 52px; height: 52px;
  background: rgba(240,60,180,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-pink);
  margin-bottom: 20px;
}
.capabilities-grid .capability-card:nth-child(1) .capability-icon { background: rgba(240,60,180,0.12); color: var(--brand-pink); }
.capabilities-grid .capability-card:nth-child(2) .capability-icon { background: rgba(40,200,100,0.12); color: var(--brand-green); }
.capabilities-grid .capability-card:nth-child(3) .capability-icon { background: rgba(140,40,220,0.12); color: var(--brand-purple); }
.capabilities-grid .capability-card:nth-child(4) .capability-icon { background: rgba(255,200,40,0.12); color: var(--brand-yellow); }
.capability-card h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.capability-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

/* ── Who We Serve ── */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.serve-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color 0.2s;
}
.serve-item:hover { border-color: var(--accent); }
.serve-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand-pink);
  flex-shrink: 0;
}
.serve-item:nth-child(1) .serve-dot { background: var(--brand-pink); }
.serve-item:nth-child(2) .serve-dot { background: var(--brand-red); }
.serve-item:nth-child(3) .serve-dot { background: var(--brand-orange); }
.serve-item:nth-child(4) .serve-dot { background: var(--brand-yellow); }
.serve-item:nth-child(5) .serve-dot { background: var(--brand-green); }
.serve-item:nth-child(6) .serve-dot { background: var(--brand-purple); }
.serve-item:nth-child(7) .serve-dot { background: var(--brand-pink); }
.serve-item:nth-child(8) .serve-dot { background: var(--brand-red); }
.serve-item:nth-child(9) .serve-dot { background: var(--brand-orange); }

/* ── Partnership CTA ── */
.cta-section { background: linear-gradient(135deg, #F03CB4 0%, #8C28DC 100%); }
.cta-inner { text-align: center; max-width: 700px; margin: 0 auto; }
.cta-title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.05;
}
.cta-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin-bottom: 40px;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Careers ── */
.careers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.job-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s;
}
.job-card:hover { border-color: var(--accent); }
.job-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}
.job-badge-fulltime   { background: rgba(40,200,100,0.15);  color: var(--brand-green); }
.job-badge-contract   { background: rgba(140,40,220,0.15);  color: var(--brand-purple); }
.job-badge-internship { background: rgba(240,60,180,0.15);  color: var(--brand-pink); }
.job-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.job-meta {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}
.job-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

.careers-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}
.careers-inner .section-title { margin-bottom: 12px; }
.careers-text { color: var(--muted); font-size: 0.95rem; line-height: 1.75; max-width: 500px; }
.careers-cta { flex-shrink: 0; }

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.2s;
}
.contact-card:hover { border-color: var(--accent); }
.contact-icon {
  width: 48px; height: 48px;
  background: rgba(240,60,180,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin: 0 auto 16px;
}
.contact-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 10px;
}
.contact-value {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
  font-style: normal;
  display: block;
  transition: color 0.2s;
}
a.contact-value:hover { color: var(--accent); }

/* ── Footer ── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 24px 40px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-logo {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.footer-logo span { color: var(--accent); }
.footer-tagline { font-size: 0.85rem; color: var(--muted); max-width: 300px; line-height: 1.6; }

.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: flex-end; max-width: 420px; }
.footer-nav a { font-size: 0.875rem; color: var(--muted); transition: color 0.2s; }
.footer-nav a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }

/* ── News (home) ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.news-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s;
}
.news-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.news-card-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.news-grid-3 { grid-template-columns: repeat(3, 1fr); }
.news-tag {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 2px 9px;
  border-radius: 100px;
  background: rgba(240,60,180,0.15);
  color: var(--brand-pink);
}
.news-tag-milestone { background: rgba(40,200,100,0.15); color: var(--brand-green); }
.news-date { font-size: 0.8rem; color: var(--muted); }
.news-title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.news-excerpt { font-size: 0.875rem; color: var(--muted); line-height: 1.7; flex: 1; }
.news-read-more { font-size: 0.875rem; font-weight: 600; color: var(--accent); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .section { padding: 80px 24px; }

  .careers-grid { grid-template-columns: 1fr 1fr; }
  .news-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }

  .properties-grid { grid-template-columns: repeat(2, 1fr); }
  .properties-grid .property-card:nth-child(n) { grid-column: auto; }

  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid-single { grid-template-columns: 1fr; }
  .brands-grid-single .brand-card { grid-column: auto; max-width: 380px; margin: 0 auto; width: 100%; }

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

  .careers-inner { flex-direction: column; text-align: center; }
  .careers-text { max-width: 100%; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(13,17,23,0.99);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { display: block; padding: 14px 24px; font-size: 1rem; }
  .nav-links a.nav-cta { margin: 8px 24px; padding: 12px 24px; text-align: center; }
  .nav-toggle { display: flex; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .hero-sil-gumball { width: 140px; left: -25px; }
  .hero-sil-claw    { width: 170px; right: -30px; }
  .hero-sil         { opacity: 0.06; }
  .section { padding: 64px 20px; }

  .properties-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: 1fr; }
  .capabilities-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: 1fr; }

  .careers-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-grid-3 { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .stat-card-wide { grid-column: span 2; }

  .footer-top { flex-direction: column; gap: 32px; }
  .footer-nav { justify-content: flex-start; max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-silhouettes { display: none; }
  .section-sil { display: none; }
  .hero-cta, .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn { width: 100%; max-width: 300px; text-align: center; }

  .about-stats { grid-template-columns: 1fr; }
  .stat-card-wide { grid-column: auto; }

  /* Reduce card padding on small screens */
  .property-card,
  .brand-card,
  .capability-card,
  .job-card,
  .contact-card,
  .stat-card { padding: 24px 20px; }
  .news-card { padding: 20px; }
}

/* ── Lightbox ── */
.property-card--lightbox { cursor: pointer; }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.lightbox--open {
  display: flex;
}
.lightbox-content {
  position: relative;
  width: 100%;
  max-width: 1400px;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img {
  width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  pointer-events: none;
  display: block;
}
.lightbox-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(48px, 7vw, 110px);
  font-weight: 900;
  letter-spacing: 0.08em;
  color: rgba(180, 0, 0, 0.6);
  border: 6px solid rgba(180, 0, 0, 0.55);
  border-radius: 6px;
  padding: 12px 36px;
  white-space: nowrap;
  pointer-events: none;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.15);
}
