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

:root {
  --color-bg: #ffffff;
  --color-surface: #f7f4f2;
  --color-text: #1a1a1a;
  --color-muted: #555555;
  --color-accent: #1a1a1a;
  --color-border: #e0dad6;
  --font-main: 'Cairo', sans-serif;
  --max-width: 1100px;
  --radius: 8px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
}

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

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

/* === Layout === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5rem 0;
}

/* === Typography === */
.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 1.25rem;
}

/* === Button === */
.btn {
  display: inline-block;
  background-color: var(--color-accent);
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
  text-decoration: none;
}

.btn:hover {
  opacity: 0.8;
}

/* === Hero === */
.hero {
  background-color: var(--color-surface);
  text-align: center;
  padding: 7rem 0;
}

.hero-name {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.divider {
  width: 60px;
  border: none;
  border-top: 2px solid var(--color-border);
  margin: 1.5rem auto;
}

.hero-title {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-muted);
  margin-bottom: 1.25rem;
}

.hero-subtitle {
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  color: var(--color-muted);
}

/* === Bio === */
.bio {
  background-color: var(--color-bg);
}

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

.bio-text p + p {
  margin-top: 1rem;
}

.bio-text .section-label {
  margin-bottom: 1.5rem;
}

.bio-image img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
}

/* === Active Roles === */
.roles {
  background-color: var(--color-surface);
}

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

.role-item {
  text-align: center;
}

.role-item a {
  display: block;
  padding: 1.5rem;
  background: var(--color-bg);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: box-shadow 0.2s ease;
  margin-bottom: 0.75rem;
}

.role-item a:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.role-item img {
  height: 60px;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
}

.role-item p {
  font-size: 0.875rem;
  color: var(--color-muted);
  font-weight: 600;
}

/* === News Highlights === */
.news {
  background-color: var(--color-bg);
}

/* Videos */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-title {
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.video-desc {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Press Grid */
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.press-item {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: box-shadow 0.2s ease;
}

.press-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.press-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.press-item p {
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
}

/* === Connect === */
.connect {
  background-color: var(--color-surface);
}

.connect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.connect-linkedin img {
  border-radius: var(--radius);
  width: 100%;
  object-fit: cover;
  margin-top: 0.5rem;
  transition: opacity 0.2s ease;
}

.connect-linkedin a:hover img {
  opacity: 0.85;
}

/* Newsletter Form */
.form-field {
  margin-bottom: 1rem;
}

.form-field input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 1rem;
  background: var(--color-bg);
  color: var(--color-text);
  outline: none;
  transition: border-color 0.2s ease;
}

.form-field input:focus {
  border-color: var(--color-accent);
}

.form-field input::placeholder {
  color: #aaa;
}

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

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

@media (max-width: 680px) {
  .hero-name {
    font-size: 2.5rem;
  }

  .bio-grid,
  .connect-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .bio-image {
    order: -1;
  }

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

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

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

  section {
    padding: 3.5rem 0;
  }
}
