/* ============================================================
   AuraLens AI — Inner Pages Styles (services, gallery,
   about, contact)
   ============================================================ */

/* ===================================================
   SERVICES PAGE
   =================================================== */

.core-services { background: var(--bg-void); }

.svc-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-lg);
}

.svc-card {
  background: var(--g-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s-xl);
  transition: all var(--t-bounce);
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0;
  background: var(--g-champ);
  transition: height var(--t-base);
  opacity: 0.08;
}

.svc-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-5px);
  box-shadow: var(--shadow-champ), var(--shadow-card);
}

.svc-card:hover::before { height: 100%; }

.svc-card-header {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
  margin-bottom: var(--s-md);
  padding-bottom: var(--s-md);
  border-bottom: 1px solid var(--border);
}

.svc-icon {
  font-size: 1.8rem;
}

.svc-card-header h3 {
  font-size: 1.3rem;
  color: var(--text-bright);
}

.svc-lead {
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.72;
  margin-bottom: var(--s-lg);
}

.svc-details {
  display: flex;
  flex-direction: column;
  gap: var(--s-sm);
  margin-bottom: var(--s-lg);
}

.svc-detail-row {
  background: rgba(212, 168, 85, 0.04);
  border: 1px solid rgba(212, 168, 85, 0.1);
  border-radius: var(--r-md);
  padding: var(--s-sm) var(--s-md);
}

.svc-dt-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 700;
  margin-bottom: 4px;
}

.svc-detail-row p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.svc-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--champagne);
  padding: 0.22rem 0.75rem;
  border: 1px solid rgba(212, 168, 85, 0.28);
  border-radius: var(--r-pill);
  background: rgba(212, 168, 85, 0.06);
}

/* Comparison Table */
.comp-table-section { background: var(--bg-deep); }

.table-wrap {
  overflow-x: auto;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
}

.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.comp-table th,
.comp-table td {
  padding: 1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comp-table thead th {
  background: rgba(18, 27, 48, 0.9);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--f-body);
  font-weight: 700;
  color: var(--text-muted);
}

.comp-table th.col-trad { color: #c05858; }
.comp-table th.col-ours { color: var(--champagne); }

.comp-table tbody tr {
  transition: background var(--t-fast);
}

.comp-table tbody tr:hover {
  background: rgba(212, 168, 85, 0.03);
}

.comp-table tbody tr:last-child td {
  border-bottom: none;
}

.comp-table tbody td:first-child {
  font-weight: 600;
  color: var(--text-bright);
  font-size: 0.88rem;
}

.comp-table td {
  color: var(--text-muted);
}

.chk-y {
  color: var(--emerald-lt);
  font-weight: 700;
  margin-right: 6px;
}

/* Who Section */
.who-section { background: var(--bg-void); }

.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-md);
}

.who-card {
  background: var(--g-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-xl) var(--s-lg);
  text-align: center;
  transition: all var(--t-bounce);
}

.who-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-5px);
  box-shadow: var(--shadow-champ);
}

.who-ico {
  display: block;
  font-size: 2.2rem;
  margin-bottom: var(--s-md);
}

.who-card h3 {
  font-size: 1.1rem;
  color: var(--text-bright);
  margin-bottom: var(--s-xs);
}

.who-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Steps Grid */
.steps-section { background: var(--bg-deep); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-md);
  max-width: 1000px;
  margin: 0 auto;
}

.step-box {
  background: var(--g-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-xl) var(--s-lg);
  text-align: center;
  transition: all var(--t-bounce);
  position: relative;
  overflow: hidden;
}

.step-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--g-champ);
  transform: scaleX(0);
  transition: transform var(--t-base);
  transform-origin: left;
}

.step-box:hover { border-color: var(--border-bright); transform: translateY(-5px); }
.step-box:hover::before { transform: scaleX(1); }

.step-box-num {
  font-family: var(--f-display);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--g-champ);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--s-sm);
}

.step-box h3 {
  font-size: 1.05rem;
  color: var(--text-bright);
  margin-bottom: var(--s-xs);
  font-family: var(--f-body);
}

.step-box p {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===================================================
   GALLERY PAGE
   =================================================== */

.gallery-section {
  background: var(--bg-void);
  padding: var(--s-xl) 0 var(--s-3xl);
}

/* Filter Bar */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: var(--s-2xl);
}

.filter-chip {
  padding: 0.55rem 1.4rem;
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--t-base);
}

.filter-chip:hover {
  border-color: rgba(212, 168, 85, 0.4);
  color: var(--champagne-lt);
}

.filter-chip.active {
  background: var(--g-champ);
  border-color: transparent;
  color: #1a1000;
  box-shadow: 0 4px 18px rgba(212, 168, 85, 0.3);
}

/* Gallery Grid */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gal-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  aspect-ratio: 4/5;
  transition: border-color var(--t-base);
}

.gal-item.square   { aspect-ratio: 1/1; }
.gal-item.landscape { aspect-ratio: 16/9; grid-column: span 2; }

.gal-item:hover { border-color: var(--border-bright); }

.gal-bg {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-sm);
  transition: transform var(--t-slow);
  position: relative;
}

.gal-item:hover .gal-bg { transform: scale(1.05); }

.gal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform var(--t-slow);
}

.gal-item:hover .gal-img { transform: scale(1.05); }

/* Gallery background gradients — diverse palette per item */
.gal-bg-1  { background: linear-gradient(155deg, #130528, #2d1060, #180530); }
.gal-bg-2  { background: linear-gradient(155deg, #061a10, #103825, #071510); }
.gal-bg-3  { background: linear-gradient(155deg, #1a1005, #352510, #1c1000); }
.gal-bg-4  { background: linear-gradient(155deg, #08101e, #152040, #060d1a); }
.gal-bg-5  { background: linear-gradient(155deg, #190a20, #35102e, #160820); }
.gal-bg-6  { background: linear-gradient(155deg, #101510, #1f3020, #0d1a10); }
.gal-bg-7  { background: linear-gradient(155deg, #161010, #2e1515, #100808); }
.gal-bg-8  { background: linear-gradient(155deg, #100522, #28104a, #0d0520); }
.gal-bg-9  { background: linear-gradient(155deg, #031510, #082e20, #040f0c); }
.gal-bg-10 { background: linear-gradient(155deg, #1a0e08, #30201a, #120d0a); }
.gal-bg-11 { background: linear-gradient(155deg, #18080f, #35101e, #180810); }
.gal-bg-12 { background: linear-gradient(155deg, #0a0814, #181428, #08060e); }

.gal-ornament {
  width: 52px; height: 52px;
  border: 1.5px solid rgba(212,168,85,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.gal-ornament::before {
  content: '◆';
  color: rgba(212,168,85,0.6);
  font-size: 1rem;
}

.gal-cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--champagne);
  background: rgba(212,168,85,0.1);
  border: 1px solid rgba(212,168,85,0.3);
  padding: 3px 10px;
  border-radius: var(--r-pill);
}

.gal-cat-video {
  color: var(--emerald-lt);
  background: rgba(62,201,148,0.1);
  border-color: rgba(62,201,148,0.3);
  top: 12px;
  left: auto;
  right: 12px;
}

.gal-info {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(5,8,17,0.95) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--s-md);
  opacity: 0;
  transition: opacity var(--t-base);
}

.gal-item:hover .gal-info { opacity: 1; }

.gal-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-bottom: 3px;
}

.gal-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===================================================
   ABOUT PAGE
   =================================================== */

.about-story { background: var(--bg-void); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-2xl);
  align-items: center;
}

.about-text .section-eyebrow { margin-bottom: var(--s-md); }

.about-text h2 {
  margin-bottom: var(--s-md);
  color: var(--text-bright);
}

.about-text p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.78;
  margin-bottom: var(--s-md);
}

/* Animated stat card visual */
.about-visual {
  display: flex;
  justify-content: center;
}

.about-stat-card {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.asc-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212,168,85,0.15);
}

.asc-ring:nth-child(1) {
  width: 320px; height: 320px;
  animation: asc-spin 22s linear infinite;
}

.asc-ring:nth-child(2) {
  width: 240px; height: 240px;
  border-color: rgba(62,201,148,0.12);
  animation: asc-spin 16s linear infinite reverse;
}

.asc-ring:nth-child(3) {
  width: 160px; height: 160px;
  animation: asc-spin 10s linear infinite;
}

.asc-ring:nth-child(1)::before {
  content: '';
  position: absolute;
  top: -4px; left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--champagne);
  box-shadow: 0 0 10px var(--champagne);
}

.asc-ring:nth-child(2)::before {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%;
  transform: translateX(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--emerald-lt);
  box-shadow: 0 0 8px var(--emerald-lt);
}

@keyframes asc-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.asc-inner {
  position: relative;
  z-index: 2;
  background: var(--g-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-xl);
  padding: var(--s-xl) var(--s-lg);
  text-align: center;
  box-shadow: var(--shadow-champ);
  min-width: 180px;
}

.asc-metric { }
.asc-num {
  display: block;
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--champagne);
  line-height: 1;
}
.asc-lbl {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}
.asc-divider {
  width: 40px;
  height: 1px;
  background: var(--border-bright);
  margin: var(--s-sm) auto;
  opacity: 0.5;
}

/* Stats Bar */
.stats-bar {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: var(--s-xl) 0;
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2xl);
}

.stat-big {
  text-align: center;
}

.sb-val {
  display: block;
  font-family: var(--f-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--champagne);
  line-height: 1;
}

.sb-lbl {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

.stat-sep-v {
  width: 1px;
  height: 60px;
  background: var(--border);
  opacity: 0.6;
}

/* Pillars */
.pillars-section { background: var(--bg-void); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-md);
}

.pillar-card {
  background: var(--g-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-xl);
  position: relative;
  transition: all var(--t-bounce);
}

.pillar-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-5px);
  box-shadow: var(--shadow-champ);
}

.pillar-no {
  display: block;
  font-family: var(--f-display);
  font-size: 0.8rem;
  color: var(--champagne);
  letter-spacing: 0.12em;
  margin-bottom: var(--s-sm);
  font-weight: 700;
}

.pillar-ico {
  display: block;
  font-size: 1.8rem;
  margin-bottom: var(--s-sm);
}

.pillar-card h3 {
  font-size: 1.1rem;
  color: var(--text-bright);
  margin-bottom: var(--s-xs);
}

.pillar-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Values */
.values-section { background: var(--bg-deep); }

.values-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.value-row {
  display: flex;
  align-items: flex-start;
  gap: var(--s-xl);
  padding: var(--s-xl);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--g-card);
  transition: all var(--t-base);
  margin-bottom: 10px;
}

.value-row:hover {
  border-color: var(--border-bright);
  box-shadow: var(--shadow-champ);
}

.val-num {
  font-family: var(--f-display);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--g-champ);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.val-body h3 {
  font-size: 1.15rem;
  color: var(--text-bright);
  margin-bottom: var(--s-xs);
}

.val-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.72;
}

/* ===================================================
   CONTACT PAGE
   =================================================== */

.contact-section {
  background: var(--bg-void);
  padding: var(--s-xl) 0 var(--s-3xl);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--s-2xl);
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: var(--s-md);
}

.contact-info > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: var(--s-xl);
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--s-lg);
}

.channel-card {
  display: flex;
  align-items: center;
  gap: var(--s-md);
  background: var(--g-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-md) var(--s-lg);
  transition: all var(--t-base);
  text-decoration: none;
}

.channel-card:hover {
  border-color: var(--border-bright);
  box-shadow: var(--shadow-champ);
  transform: translateX(4px);
}

.ch-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.ch-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ch-text strong {
  color: var(--text-bright);
  font-size: 0.9rem;
}

.ch-text span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Before reach out */
.before-reach-out {
  margin-top: var(--s-xl);
  padding-top: var(--s-xl);
  border-top: 1px solid var(--border);
}

.before-reach-out h4 {
  color: var(--text-bright);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: var(--s-md);
}

.before-reach-out ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.before-reach-out li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.bro-dot {
  color: var(--champagne);
  font-size: 0.6rem;
  margin-top: 5px;
  flex-shrink: 0;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--g-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s-2xl);
}

.contact-form-wrap h3 {
  font-size: 1.5rem;
  color: var(--text-bright);
  margin-bottom: var(--s-xs);
}

.contact-form-wrap > p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: var(--s-xl);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--s-md);
}

.form-lbl {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-bright);
  margin-bottom: 8px;
}

.form-field {
  background: rgba(212, 168, 85, 0.035);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1rem;
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--text-bright);
  transition: border-color var(--t-base), box-shadow var(--t-base);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-field::placeholder { color: var(--text-muted); }
.form-field:focus {
  outline: none;
  border-color: var(--border-bright);
  box-shadow: 0 0 0 3px rgba(212, 168, 85, 0.1);
}

.form-field.invalid {
  border-color: #d45a5a;
  box-shadow: 0 0 0 3px rgba(212, 90, 90, 0.1);
}

select.form-field {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4a855' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

select.form-field option {
  background: var(--bg-mid);
  color: var(--text-bright);
}

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

.form-submit {
  width: 100%;
  margin-top: var(--s-sm);
}

/* Form Success */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--s-2xl);
  gap: var(--s-md);
}

.form-success-icon {
  font-size: 2.5rem;
  color: var(--champagne);
  background: rgba(212, 168, 85, 0.1);
  border: 1px solid rgba(212, 168, 85, 0.3);
  width: 70px; height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  animation: formSuccessIn 0.5s var(--t-bounce) forwards;
}

@keyframes formSuccessIn {
  from { transform: scale(0.6); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.form-success h3 {
  color: var(--text-bright);
  font-size: 1.5rem;
}

.form-success p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 380px;
  line-height: 1.7;
}

/* ===================================================
   RESPONSIVE — Inner Pages
   =================================================== */

@media (max-width: 1024px) {
  .svc-cards       { grid-template-columns: 1fr; }
  .who-grid        { grid-template-columns: repeat(2, 1fr); }
  .steps-grid      { grid-template-columns: repeat(2, 1fr); }
  .pillars-grid    { grid-template-columns: repeat(2, 1fr); }
  .about-grid      { grid-template-columns: 1fr; }
  .about-visual    { display: none; }
  .contact-layout  { grid-template-columns: 1fr; }
  .stats-row       { gap: var(--s-xl); }
}

@media (max-width: 768px) {
  .who-grid     { grid-template-columns: 1fr; }
  .steps-grid   { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .gal-grid     { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gal-item.landscape { grid-column: span 1; aspect-ratio: 4/5; }
  .form-row     { grid-template-columns: 1fr; }
  .stats-row    { flex-wrap: wrap; gap: var(--s-lg); }
  .stat-sep-v   { display: none; }
  .value-row    { flex-direction: column; gap: var(--s-sm); }
}

@media (max-width: 480px) {
  .gal-grid     { grid-template-columns: 1fr; }
  .gal-item.square { aspect-ratio: 4/5; }
  .filter-bar   { gap: 6px; }
  .filter-chip  { padding: 0.45rem 0.9rem; font-size: 0.75rem; }
  .contact-form-wrap { padding: var(--s-lg); }
}

/* About Page Overhaul */
.about-hero {
  position: relative;
  overflow: hidden;
}

.about-visual-collage {
  position: relative;
  height: 500px;
  width: 100%;
}

.collage-main {
  position: absolute;
  top: 0; right: 0;
  width: 75%;
  z-index: 1;
}

.collage-sub {
  position: absolute;
  bottom: 0; left: 0;
  width: 60%;
  z-index: 2;
  border: 4px solid var(--bg-void); /* Creates a clean break */
}

.collage-main img, .collage-sub img {
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
}

/* Vision Cards - Large Impact */
.vision-display {
  display: flex;
  flex-direction: column;
  gap: var(--s-3xl);
  margin-top: var(--s-xl);
}

.vision-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 700px;
  border: 1px solid var(--border);
}

.vision-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.vision-card:hover img { transform: scale(1.03); }

.vision-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--s-2xl);
  background: linear-gradient(to top, rgba(5,8,17,0.95) 20%, transparent);
}

.vision-card-info h3 { font-size: 2.2rem; margin-bottom: 0.5rem; }
.vision-card-info p { max-width: 500px; color: var(--text-body); }

/* Value Boxes */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-md);
  margin-top: var(--s-2xl);
}

.value-box {
  background: var(--g-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-xl);
  transition: all var(--t-base);
}

.value-box:hover { border-color: var(--border-bright); transform: translateY(-5px); }
.val-no { display: block; font-family: var(--f-display); font-size: 2rem; color: var(--champagne); opacity: 0.4; margin-bottom: 1rem; }

@media (max-width: 1024px) {
  .values-grid { grid-template-columns: 1fr; }
  .vision-card { height: 500px; }
  .about-visual-collage { height: 400px; }
}

/* Creative Vision Layout */
.creative-vision-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 6rem;
  margin-top: var(--s-3xl);
  align-items: center;
}

.vision-box {
  display: flex;
  flex-direction: column;
  gap: var(--s-lg);
}

.box-staggered {
  margin-top: 12rem; /* Creates the staggered asymmetrical look */
}

.vision-img-container {
  position: relative;
  border-radius: var(--r-xl);
  overflow: visible; /* Allows label to float outside if desired */
}

.vision-img-container img {
  width: 100%;
  height: 650px;
  object-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform var(--t-slow);
}

.vision-img-container:hover img {
  transform: scale(1.02);
  border-color: var(--border-bright);
}

/* Glass-morphism Floating Label */
.glass-label {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: rgba(18, 27, 48, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-bright);
  padding: var(--s-lg) var(--s-xl);
  border-radius: var(--r-lg);
  z-index: 10;
  box-shadow: var(--shadow-champ);
}

.glass-label--alt {
  left: -30px;
  right: auto;
  bottom: 40px;
}

.glass-label span {
  display: block;
  font-family: var(--f-display);
  color: var(--champagne);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 5px;
}

.glass-label h4 {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-bright);
  white-space: nowrap;
}

.vision-context p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 350px;
}

/* Responsive */
@media (max-width: 1024px) {
  .creative-vision-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .box-staggered { margin-top: 0; }
  .glass-label { position: static; margin-top: -20px; width: fit-content; }
  .vision-img-container img { height: 450px; }
}

/* ===================================================
   MOBILE OVERFLOW FIXES FOR ABOUT & SERVICES PAGES
   =================================================== */

@media (max-width: 1024px) {
  /* Prevent staggered items from extending past the screen edge */
  .creative-vision-grid {
    overflow: hidden;
    width: 100%;
  }

  /* Keep the floating glass labels from causing overflow width spikes */
  .glass-label {
    position: static !important;
    margin: -10px auto 0 !important;
    transform: none !important;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  /* Safeguard section containers from stretching */
  .about-hero,
  .about-philosophy,
  .about-vision,
  .values-section {
    width: 100%;
    overflow: hidden;
    position: relative;
  }
}