/* Basic reset */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  background: #000;
  color: #fff;
  font-family: 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.card {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  padding: clamp(24px, 6vw, 72px);
  align-items: center;
}

.left {
  max-width: 820px;
  color: #fff;
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 0 auto;
  min-height: calc(min(460px, 42vw) / 0.78); /* match photo height */
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical centering */
}

.title {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  letter-spacing: 0.4px;
  font-size: clamp(36px, 5.6vw, 84px);
  line-height: 0.95;
  margin: 0 0 20px 0;
}
.title span { display: block; }

.roles {
  border: 2px solid rgba(255,255,255,.7);
  border-radius: 20px;
  padding: clamp(12px, 2.2vw, 18px) clamp(16px, 3vw, 28px);
  width: min(560px, 95%);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(2px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12) inset;
  margin: 0 auto;
}
.roles p {
  margin: 4px 0;
  font-size: clamp(15px, 1.6vw, 20px);
  text-align: center;
}

.addr {
  margin: clamp(16px, 3.6vw, 28px) 0 clamp(12px, 2.6vw, 24px) 0;
  font-style: normal;
  opacity: .98;
}
.addr p {
  margin: 2px 0;
  font-size: clamp(13px, 1.4vw, 18px);
  text-align: center;
}

.socials {
  display: flex;
  gap: clamp(10px, 2.2vw, 28px);
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.icon {
  width: clamp(40px, 6.2vw, 70px);
  height: clamp(40px, 6.2vw, 70px);
  border-radius: 18%;
  display: inline-grid;
  place-items: center;
  background: transparent;
  transition: transform .15s ease, background .2s ease;
}
.icon:hover { transform: translateY(-2px); background: rgba(255,255,255,0.06); }
.icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.icon:hover { transform: translateY(-2px); background: #222; }
.icon svg { width: 60%; height: 60%; fill: #eaeaea; }

/* Right side oval image */
.right { display:flex; justify-content:center; align-items:center; position:relative; z-index:1; }
.oval {
  width: min(460px, 42vw);
  max-width: 100%;
  aspect-ratio: 0.78; /* width/height ratio */
  overflow: hidden;
  position: relative;
  border-radius: 50%;
  clip-path: ellipse(50% 50% at 50% 50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.oval img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .card { grid-template-columns: 1fr; gap: 2rem; padding: clamp(18px, 5vw, 40px); }
  .right { order: 2; }
  .left  { order: 1; min-height: auto; } /* allow natural height on mobile */
  .roles { width: 100%; }
}
  .right { order: 2; }
  .left {
  max-width: 820px;
  color: #fff;
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 0 auto;
  min-height: calc(min(460px, 42vw) / 0.78); /* match photo height */
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical centering */
}
  .roles {
  border: 2px solid rgba(255,255,255,.7);
  border-radius: 20px;
  padding: clamp(12px, 2.2vw, 18px) clamp(16px, 3vw, 28px);
  width: min(560px, 95%);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(2px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12) inset;
  margin: 0 auto;
}
  .socials {
  display: flex;
  gap: clamp(10px, 2.2vw, 28px);
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
}
  .right { display:flex; justify-content:center; align-items:center; position:relative; z-index:1; }
  .oval {
  width: min(460px, 42vw);
  max-width: 100%;
  aspect-ratio: 0.78; /* width/height ratio */
  overflow: hidden;
  position: relative;
  border-radius: 50%;
  clip-path: ellipse(50% 50% at 50% 50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
}


.phone-text {
  font-size: clamp(14px, 2vw, 20px);
  margin-left: 10px;
  vertical-align: middle;
  color: #eaeaea;
  letter-spacing: 0.5px;
}
