/* Meet Your Sommelier — page styles on top of marketing.css */

.meet {
  padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(4rem, 8vw, 6rem);
  background: var(--cream);
}

.meet-inner {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Hero photo + title + overlapping circle */
.meet-hero {
  position: relative;
  margin-bottom: 3rem;
}

.meet-hero-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1570 / 885;
  background: var(--cream-alt);
}

.meet-hero-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.meet-hero-title {
  position: absolute;
  top: 1rem;
  left: 1rem;
  margin: 0;
  max-width: 55%;
  font-family: var(--font);
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--burgundy);
  /* Cream letter border — readable on light sky and dark foliage */
  text-shadow:
    -2px 0 0 #f8f1ef,
    2px 0 0 #f8f1ef,
    0 -2px 0 #f8f1ef,
    0 2px 0 #f8f1ef,
    -1.5px -1.5px 0 #f8f1ef,
    1.5px -1.5px 0 #f8f1ef,
    -1.5px 1.5px 0 #f8f1ef,
    1.5px 1.5px 0 #f8f1ef,
    0 0 6px #f8f1ef;
}

.meet-circle {
  position: absolute;
  right: 1rem;
  bottom: -3rem;
  width: clamp(88px, 18vw, 112px);
  height: clamp(88px, 18vw, 112px);
  border-radius: 50%;
  object-fit: cover;
  pointer-events: none;
}

.meet-identity {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.meet-name {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.6rem);
  font-weight: 700;
  color: var(--burgundy);
  line-height: 1.25;
}

.meet-role {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.4;
}

.meet-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0;
}

.meet-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
  background: #f6e8d9;
  border-radius: 8px;
  padding: 0.65rem 0.4rem;
}

.meet-chip img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.meet-chip span {
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
}

.meet-bio {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.meet-bio p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink);
}

.meet-divider {
  display: block;
  width: min(100%, 420px);
  height: auto;
  margin: 0.5rem auto;
}

.meet-promises {
  list-style: none;
  margin: 0;
  padding: 0;
}

.meet-promise {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.meet-promise:last-child {
  border-bottom: none;
}

.meet-promise img {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.meet-promise p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: var(--ink);
}

.meet-quote {
  display: flex;
  gap: 0.35rem;
  align-items: flex-start;
  background: #f6e8d9;
  border-radius: 8px;
  padding: 1rem 1.1rem;
  margin: 0.25rem 0 0;
}

.meet-quote-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  color: var(--burgundy);
  flex: 0 0 auto;
}

.meet-quote-mark--close {
  align-self: flex-end;
}

.meet-quote-body {
  flex: 1;
  min-width: 0;
}

.meet-quote-body p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.875rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
}

.meet-quote-attr {
  display: block;
  margin-top: 0.65rem;
  font-family: var(--font);
  font-size: 0.75rem;
  font-style: normal;
  color: var(--ink-muted);
  text-align: right;
}

.nav-links a[aria-current="page"] {
  color: var(--burgundy);
  font-weight: 700;
}

@media (max-width: 420px) {
  .meet-chip span {
    font-size: 0.625rem;
  }

  .meet-hero-title {
    max-width: 62%;
  }
}
