/*
Theme Name: LB Holdings
Theme URI: https://lbholdings.io
Author: LB Holdings
Author URI: https://lbholdings.io
Description: A premium corporate theme for LB Holdings - Building Value Through Global Vision
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lb-holdings
*/

/* ==========================================================================
   CSS Custom Properties (Design Tokens)
   ========================================================================== */

:root {
  /* Brand Colors */
  --brand-green: #0f3d2e;
  --brand-gold: #c9a44c;
  --brand-ivory: #f5f5f0;
  --brand-mint: oklch(0.89 0.13 175);

  /* Dark Theme (Default) */
  --background: #071a13;
  --foreground: #fafafa;
  --card: #0b231a;
  --card-foreground: #fafafa;
  --primary: oklch(0.89 0.13 175);
  --primary-foreground: #071a13;
  --accent: oklch(0.89 0.13 175);
  --accent-foreground: #071a13;
  --secondary: rgba(245, 245, 240, 0.08);
  --secondary-foreground: #fafafa;
  --muted: rgba(245, 245, 240, 0.06);
  --muted-foreground: rgba(245, 245, 240, 0.72);
  --border: rgba(245, 245, 240, 0.16);
  --input: rgba(245, 245, 240, 0.14);
  --ring: oklch(0.89 0.13 175);

  /* Spacing */
  --container-padding: 1.5rem;
  --section-padding-y: 5rem;

  /* Border Radius */
  --radius: 0.625rem;
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);

  /* Typography */
  --font-sans: 'Work Sans', ui-sans-serif, system-ui, sans-serif;
  --font-serif: 'DM Serif Display', ui-serif, Georgia, serif;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 600;
}

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

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

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Navigation
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: rgba(7, 26, 19, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-logo img {
  height: 2.25rem;
  width: auto;
}

@media (min-width: 768px) {
  .site-logo img {
    height: 2.5rem;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  color: var(--muted-foreground);
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 2rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  outline: none;
}

.btn:disabled {
  pointer-events: none;
  opacity: 0.5;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--accent-foreground);
  border-radius: 5px;
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline {
  background-color: transparent;
  border: 2px solid rgba(245, 245, 240, 0.14);
  color: #86efce;
}

.btn-outline:hover {
  background-color: rgba(134, 239, 206, 0.1);
}

.btn-lg {
  font-size: 1.125rem;
  height: 3rem;
  padding-left: 2rem;
  padding-right: 2rem;
}

.btn-ghost {
  background: transparent;
  color: var(--foreground);
  padding: 0.5rem;
}

.btn-ghost:hover {
  background-color: var(--secondary);
}

/* Mobile Navigation */
.nav-mobile-toggle {
  display: flex;
}

@media (min-width: 768px) {
  .nav-mobile-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 320px;
  background-color: var(--card);
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 99;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.mobile-menu-header img {
  height: 2rem;
  width: auto;
}

.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
}

.mobile-menu-link {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  color: var(--muted-foreground);
  transition: all 0.2s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
  background-color: rgba(134, 239, 206, 0.1);
  color: var(--accent);
}

.mobile-menu-footer {
  margin-top: auto;
  padding: 1.5rem;
}

.mobile-menu-footer .btn {
  width: 100%;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-gradient-top {
  position: absolute;
  top: -8rem;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 520px;
  background-color: rgba(134, 239, 206, 0.1);
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.7;
}

.hero-gradient-bottom {
  position: absolute;
  bottom: -10rem;
  right: -10%;
  width: 520px;
  height: 520px;
  background-color: rgba(134, 239, 206, 0.1);
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.6;
}

.hero-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, 
    rgba(7, 26, 19, 0.1) 0%,
    rgba(7, 26, 19, 0.35) 50%,
    rgba(7, 26, 19, 0.85) 100%
  );
}

.hero-overlay-readability {
  position: absolute;
  inset: 0;
  background-color: rgba(7, 26, 19, 0.45);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 0 var(--container-padding);
  max-width: 1280px;
  margin: 0 auto;
}

.hero-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-description {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto 3rem;
  line-height: 1.625;
  text-wrap: pretty;
}

@media (min-width: 640px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.5rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    padding: 0;
  }
}

.hero-buttons .btn {
  width: 100%;
}

@media (min-width: 640px) {
  .hero-buttons .btn {
    width: auto;
  }
}

/* ==========================================================================
   Data Points Section
   ========================================================================== */

.data-points {
  border-top: 1px solid var(--border);
  background-color: var(--muted);
  padding: var(--section-padding-y) 0;
}

.data-points-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .data-points-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.data-point {
  text-align: center;
}

.data-point-icon {
  width: 3rem;
  height: 3rem;
  color: var(--accent);
  margin: 0 auto 1rem;
  transition: transform 0.3s ease;
}

.data-point:hover .data-point-icon {
  transform: scale(1.1);
}

.data-point-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .data-point-title {
    font-size: 1.5rem;
  }
}

.data-point-text {
  font-family: var(--font-serif);
  color: var(--muted-foreground);
  line-height: 1.75;
}

/* ==========================================================================
   Who We Are Section
   ========================================================================== */

.who-we-are {
  background-color: var(--background);
  padding: 3rem 0;
}

.who-we-are-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .who-we-are-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.who-we-are-visual {
  position: relative;
  height: 30rem;
  background: linear-gradient(to bottom right, var(--card), var(--muted));
  overflow: hidden;
  border: 1px solid var(--border);
}

@media (min-width: 1024px) {
  .who-we-are-visual {
    height: 600px;
  }
}

.who-we-are-visual-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--muted) 0%, var(--background) 50%, rgba(134, 239, 206, 0.1) 100%);
}

.cityscape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.5rem;
  padding: 0 3rem 3rem;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.who-we-are-visual:hover .cityscape {
  opacity: 0.6;
}

.building {
  border: 1px solid rgba(134, 239, 206, 0.15);
}

.building-1 { width: 4rem; height: 16rem; background: linear-gradient(to top, rgba(134, 239, 206, 0.2), transparent); }
.building-2 { width: 5rem; height: 20rem; background: linear-gradient(to top, rgba(134, 239, 206, 0.25), transparent); }
.building-3 { width: 4rem; height: 18rem; background: linear-gradient(to top, rgba(134, 239, 206, 0.2), transparent); }
.building-4 { width: 6rem; height: 24rem; background: linear-gradient(to top, rgba(134, 239, 206, 0.3), transparent); }
.building-5 { width: 4rem; height: 16rem; background: linear-gradient(to top, rgba(134, 239, 206, 0.2), transparent); }
.building-6 { width: 5rem; height: 22rem; background: linear-gradient(to top, rgba(134, 239, 206, 0.22), transparent); }

.who-we-are-content h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.875rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .who-we-are-content h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .who-we-are-content h2 {
    font-size: 3rem;
  }
}

.who-we-are-text {
  margin-bottom: 2rem;
}

.who-we-are-text p {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.625;
  margin-bottom: 1rem;
}

.who-we-are-text p:last-child {
  margin-bottom: 0;
}

.btn-with-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-with-arrow svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s ease;
}

.btn-with-arrow:hover svg {
  transform: translateX(4px);
}

/* ==========================================================================
   What We Do Section (Four Pillars)
   ========================================================================== */

.what-we-do {
  background-color: var(--background);
  padding: var(--section-padding-y) 0;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-header h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.875rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .section-header h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 3rem;
  }
}

.section-header p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.75;
  text-wrap: pretty;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pillar-card {
  position: relative;
  background-color: var(--card);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: all 0.3s ease;
}

.pillar-card:hover {
  border-color: rgba(134, 239, 206, 0.5);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
}

.pillar-icon-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.pillar-icon-glow {
  position: absolute;
  inset: 0;
  background-color: rgba(134, 239, 206, 0.2);
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pillar-card:hover .pillar-icon-glow {
  opacity: 1;
}

.pillar-icon {
  position: relative;
  z-index: 10;
  width: 3rem;
  height: 3rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.pillar-card:hover .pillar-icon {
  transform: scale(1.1);
}

.pillar-card h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.pillar-card p {
  font-family: var(--font-serif);
  color: var(--muted-foreground);
  line-height: 1.625;
  text-wrap: pretty;
}

.pillar-card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.pillar-card:hover .pillar-card-accent {
  transform: scaleX(1);
}

.section-cta {
  text-align: center;
}

/* ==========================================================================
   Vision Statement Section
   ========================================================================== */

.vision-statement {
  background-color: var(--muted);
  padding: 8rem 0;
  border-top: 1px solid var(--border);
}

.vision-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.vision-quote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: rgba(250, 250, 250, 0.9);
  line-height: 1.75;
  margin-bottom: 2rem;
  text-wrap: balance;
}

@media (min-width: 640px) {
  .vision-quote {
    font-size: 1.875rem;
  }
}

@media (min-width: 768px) {
  .vision-quote {
    font-size: 2.25rem;
  }
}

.vision-accent {
  width: 6rem;
  height: 4px;
  background-color: var(--accent);
  margin: 0 auto;
  opacity: 0.6;
}

/* ==========================================================================
   Investment Focus Section
   ========================================================================== */

.investment-focus {
  background-color: var(--background);
  padding: var(--section-padding-y) 0;
}

.focus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .focus-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.focus-card {
  background-color: var(--card);
  padding: 2rem;
  border-left: 4px solid var(--accent);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.focus-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.focus-card h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .focus-card h3 {
    font-size: 1.5rem;
  }
}

.focus-card p {
  font-family: var(--font-serif);
  color: var(--muted-foreground);
  line-height: 1.75;
}

/* ==========================================================================
   Partner CTA Section
   ========================================================================== */

.partner-cta {
  background-color: var(--muted);
  padding: 8rem 0;
  border-top: 1px solid var(--border);
}

.partner-content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.partner-content h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.875rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .partner-content h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .partner-content h2 {
    font-size: 3rem;
  }
}

.partner-content > p {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--muted-foreground);
  line-height: 1.75;
  margin-bottom: 3rem;
  text-wrap: pretty;
}

.partner-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .partner-buttons {
    flex-direction: row;
  }
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--border);
  color: var(--foreground);
  padding: 1.5rem 2.5rem;
}

.btn-secondary:hover {
  background-color: var(--background);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background-color: var(--muted);
  border-top: 1px solid var(--border);
}

.footer-main {
  width: 100%;
  max-width: 80rem; /* max-w-7xl = 1280px */
  margin: 0 auto;
  padding: 4rem var(--container-padding);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.75;
  margin-top: 1rem;
}

.footer-brand img {
  height: 2.25rem;
  width: auto;
}

@media (min-width: 768px) {
  .footer-brand img {
    height: 2.5rem;
  }
}

.footer-heading {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

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

.footer-contact p,
.footer-contact a {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.75;
}

.footer-contact a {
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-copyright {
  color: rgba(245, 245, 240, 0.5);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-legal a {
  color: rgba(245, 245, 240, 0.5);
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: var(--accent);
}

/* ==========================================================================
   Animations
   ========================================================================== */

@keyframes glow {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.animate-glow {
  animation: glow 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

/* ==========================================================================
   SVG Icons (Lucide)
   ========================================================================== */

.icon {
  display: inline-block;
  width: 2em;
  height: 2em;
  stroke-width: 1.5;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-lg {
  width: 3rem;
  height: 3rem;
  stroke-width: 1;
}

/* ==========================================================================
   Who We Are Page
   ========================================================================== */

.page-who-we-are {
  padding-top: 5rem;
}

.who-we-are-hero {
  min-height: calc(100vh - 5rem);
  display: flex;
  align-items: stretch;
}

.who-we-are-layout {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 5rem 0;
}

@media (min-width: 1024px) {
  .who-we-are-layout {
   flex-direction: row-reverse; /* This puts Visual back on the left */
   align-items: center;
  }
}

.who-we-are-visual-large {
  position: relative;
  min-height: 400px;
  background: linear-gradient(to bottom right, var(--background), rgba(245, 245, 240, 0.03), rgba(11, 35, 26, 0.8));
  overflow: hidden;
}

@media (min-width: 1024px) {
  .who-we-are-visual-large {
    min-height: 100%;
  }
}

.visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--background) 0%, rgba(134, 239, 206, 0.05) 50%, rgba(134, 239, 206, 0.15) 100%);
}

.light-rays {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.light-ray {
  position: absolute;
  top: 0;
  height: 100%;
  background: linear-gradient(to bottom, rgba(134, 239, 206, 0.2), transparent, transparent);
  animation: pulse 4s ease-in-out infinite;
}

.light-ray-1 {
  left: 25%;
  width: 33%;
}

.light-ray-2 {
  right: 25%;
  width: 25%;
  animation-duration: 5s;
  animation-delay: 1s;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.buildings-large {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1rem;
  padding: 0 3rem 3rem;
}

.building-lg {
  border: 1px solid rgba(134, 239, 206, 0.25);
  border-radius: 2px 2px 0 0;
  animation: float 3s ease-in-out infinite;
}

.building-lg-1 { width: 6rem; height: 24rem; background: linear-gradient(to top, rgba(134, 239, 206, 0.4), transparent); animation-delay: 0s; }
.building-lg-2 { width: 7rem; height: 28rem; background: linear-gradient(to top, rgba(134, 239, 206, 0.45), transparent); animation-delay: 0.3s; }
.building-lg-3 { width: 6rem; height: 26rem; background: linear-gradient(to top, rgba(134, 239, 206, 0.4), transparent); animation-delay: 0.6s; }
.building-lg-4 { width: 8rem; height: 32rem; background: linear-gradient(to top, rgba(134, 239, 206, 0.5), transparent); animation-delay: 0.9s; }
.building-lg-5 { width: 6rem; height: 24rem; background: linear-gradient(to top, rgba(134, 239, 206, 0.4), transparent); animation-delay: 1.2s; }
.building-lg-6 { width: 7rem; height: 30rem; background: linear-gradient(to top, rgba(134, 239, 206, 0.42), transparent); animation-delay: 1.5s; }

.grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(#86efce 1px, transparent 1px),
    linear-gradient(90deg, #86efce 1px, transparent 1px);
  background-size: 50px 50px;
}

.who-we-are-content-side {
  background-color: var(--background);
  display: flex;
  align-items: center;
  padding: 5rem 1.5rem;
}

@media (min-width: 640px) {
  .who-we-are-content-side {
    padding: 5rem 3rem;
  }
}

@media (min-width: 1024px) {
  .who-we-are-content-side {
    padding: 5rem;
  }
}

.who-we-are-content-inner {
  width: 100%;
  max-width: 100%;
}

.page-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.875rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .page-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .page-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .page-title {
    font-size: 3.75rem;
  }
}

.page-content {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.625;
}

@media (min-width: 640px) {
  .page-content {
    font-size: 1.125rem;
  }
}

.page-content p {
  margin-bottom: 1.5rem;
}

.page-content p:last-child {
  margin-bottom: 0;
}

.page-content .lead-text {
  font-weight: 700;
}

.accent-divider {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 2px solid var(--border);
}

.tagline {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==========================================================================
   What We Do Page
   ========================================================================== */

.page-what-we-do {
  padding-top: 5rem;
  background-color: var(--background);
}

.page-hero {
  padding: 5rem 0;
}

/* What We Do page specific hero description - left aligned */
.page-what-we-do .hero-description {
  margin: 0 0 1.5rem 0;
  max-width: 48rem;
  font-size: 1.125rem;
  line-height: 1.625;
}

@media (min-width: 640px) {
  .page-what-we-do .hero-description {
    font-size: 1.25rem;
  }
}

.page-title-large {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.875rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .page-title-large {
    font-size: 2.25rem;
  }
}

@media (min-width: 768px) {
  .page-title-large {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .page-title-large {
    font-size: 3.75rem;
  }
}

@media (min-width: 1280px) {
  .page-title-large {
    font-size: 4.5rem;
  }
}

.pillars-section {
  padding-bottom: 8rem;
}

.quote-section {
  border-top: 1px solid var(--border);
  background-color: var(--muted);
  padding: 5rem 0;
  text-align: center;
}

.large-quote {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: rgba(250, 250, 250, 0.9);
  font-style: italic;
  max-width: 56rem;
  margin: 0 auto;
  line-height: 1.625;
  text-wrap: balance;
}

@media (min-width: 640px) {
  .large-quote {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.page-contact {
  padding-top: 5rem;
  background-color: var(--background);
  min-height: 100vh;
}

.contact-section {
  padding: 5rem 0;
}

.contact-wrapper {
  max-width: 42rem;
  margin: 0 auto;
}

.form-intro {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.contact-email-box {
  padding: 1.5rem;
  background-color: rgba(134, 239, 206, 0.05);
  border: 1px solid rgba(134, 239, 206, 0.2);
  margin-bottom: 3rem;
}

.contact-email-label {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--foreground);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-email-link:hover {
  color: #86efce;
}

.contact-email-link .contact-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #86efce;
  flex-shrink: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: #86efce;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--border);
  border-radius: 0;
  padding: 0.5rem 0;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--foreground);
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #86efce;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-foreground);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background-color: var(--background);
  color: var(--foreground);
}

.form-group textarea {
  resize: none;
}

.btn-submit {
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 1rem;
}

/* ==========================================================================
   Legal Pages (Privacy, Terms, Cookies)
   ========================================================================== */

.page-legal {
  padding-top: 5rem;
  background-color: var(--background);
  min-height: 100vh;
}

.legal-hero {
  position: relative;
  padding: 5rem 1.5rem 2rem;
}

.legal-container {
  max-width: 56rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.legal-title {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 2.25rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .legal-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .legal-title {
    font-size: 3.75rem;
  }
}

.legal-date {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--muted-foreground);
}

.legal-content-section {
  padding: 1.5rem 1.5rem 4rem;
}

.legal-content {
  font-family: var(--font-serif);
  color: var(--muted-foreground);
  line-height: 1.75;
}

.legal-block {
  margin-bottom: 3rem;
}

.legal-intro {
  font-size: 1.125rem;
}

.legal-content h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.875rem;
  color: var(--foreground);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}

.legal-content p {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: #86efce;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.legal-content a:hover {
  opacity: 0.8;
}

.legal-cta {
  position: relative;
  padding: 5rem 1.5rem 10rem;
  text-align: center;
}

.legal-cta-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(0deg, var(--background) 10%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.legal-cta .legal-container {
  position: relative;
  z-index: 2;
}

.legal-cta h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.875rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .legal-cta h2 {
    font-size: 2.25rem;
  }
}

.legal-cta p {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 2.5rem;
}


