
/* --- CORPORATE GLOBAL --- */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', 'Poppins', Arial, sans-serif;
}

body.corporate-theme {
  background: linear-gradient(135deg, #f8f6f1 0%, #f3ede7 100%);
  color: #222;
  overflow-x: hidden;
}

/* --- HEADER --- */
.corporate-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 0 0 0;
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  border-bottom: 1px solid #e5e8ef;
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo {
  font-size: 2.2em;
  font-weight: 700;
  color: #a67c52;
  letter-spacing: 2px;
}
.logo span {
  color: #d4a373;
}
.tagline {
  font-size: 1.1em;
  color: #d4a373;
  margin-bottom: 18px;
  font-weight: 500;
}
nav {
  display: flex;
  gap: 28px;
  margin-bottom: 12px;
}
nav a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 1em;
  padding: 8px 18px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
nav a.active,
nav a:hover {
  background: #d4a373;
  color: #fff;
}

/* --- HERO --- */
.corporate-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(120deg, #d4a373 0%, #a67c52 100%);
  color: #fff;
}
.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;
  background: url('https://images.unsplash.com/photo-1465101046530-73398c7f28ca?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
  opacity: 0.13;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-content h1 {
  font-size: 3.2em;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 2px;
}
.hero-content p {
  font-size: 1.3em;
  margin-bottom: 28px;
  color: #f8f6f1;
}
.btn-corporate {
  display: inline-block;
  background: linear-gradient(90deg, #a67c52, #d4a373);
  color: #fff;
  padding: 14px 38px;
  border-radius: 32px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  box-shadow: 0 2px 12px #a67c5280;
  transition: box-shadow 0.3s, background 0.3s;
}
.btn-corporate:hover {
  box-shadow: 0 4px 24px #d4a37399;
  background: linear-gradient(90deg, #d4a373, #a67c52);
}

/* --- SECTION --- */
.corporate-section {
  padding: 80px 8% 60px 8%;
  text-align: center;
}
.corporate-section h2 {
  font-size: 2.2em;
  margin-bottom: 32px;
  color: #a67c52;
  font-weight: 700;
}
.corporate-section p {
  max-width: 800px;
  margin: 0 auto 32px auto;
  line-height: 1.7;
  color: #444;
  font-size: 1.1em;
}
.corporate-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 24px;
}
.card {
  background: #fff;
  border: 1px solid #e5e8ef;
  border-radius: 18px;
  padding: 36px 24px;
  box-shadow: 0 2px 12px rgba(166, 124, 82, 0.06);
  transition: box-shadow 0.3s, transform 0.3s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(166, 124, 82, 0.12);
  transform: translateY(-8px) scale(1.03);
}

/* --- LEADERSHIP --- */
.leadership-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.leader-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px #a67c5220;
  padding: 28px 18px;
  text-align: center;
  width: 220px;
}
.leader-card img {
  display: none;
}
.leader-card h3 {
  font-size: 1.2em;
  color: #a67c52;
  margin-bottom: 6px;
}
.leader-card p {
  color: #d4a373;
  font-weight: 600;
}

/* --- PRESS --- */
.press-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
}
.press-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px #a67c5220;
  padding: 22px 28px;
  max-width: 600px;
  width: 100%;
  text-align: left;
}
.press-item h4 {
  color: #a67c52;
  font-size: 1.1em;
  margin-bottom: 8px;
}
.press-item span {
  color: #d4a373;
  font-size: 0.95em;
}

/* --- CAREERS --- */
#careers .btn-corporate {
  margin-top: 18px;
}

/* --- FOOTER --- */
.corporate-footer {
  background: #a67c52;
  color: #fff;
  padding: 48px 8% 32px 8%;
  font-size: 1em;
  border-top: 4px solid #d4a373;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  align-items: start;
}
.corporate-footer h4 {
  color: #d4a373;
  margin-bottom: 12px;
  font-size: 1.1em;
}
.corporate-footer a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.2s;
}
.corporate-footer a:hover {
  color: #d4a373;
}
