:root {
  --brand-gold: #ab8c3d;
  --brand-green: #0e554a;
  --text: #1f2b29;
  --muted: #4a635f;
  --surface: #fffdf9;
  --border: rgba(14, 85, 74, 0.18);
  --shadow: 0 10px 38px rgba(14, 85, 74, 0.08);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: clamp(1rem, 0.35vw + 0.95rem, 1.08rem);
  line-height: 1.65;
  color: var(--text);
  background: linear-gradient(180deg, #faf8f4 0%, #f5f2eb 45%, #faf8f4 100%);
}

main {
  width: min(42rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.75rem) 0 clamp(2.5rem, 6vw, 4rem);
}

.video-wrap {
  position: relative;
  width: 100%;
  margin: 0 auto 1.75rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #0a0a0a;
  aspect-ratio: 16 / 9;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.welcome-title {
  margin: 0 0 1.25rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--brand-gold);
}

.about-heading {
  margin: 0 0 0.65rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  font-style: italic;
  color: var(--brand-gold);
}

.prose p {
  margin: 0 0 1rem;
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
}

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

.signoff {
  margin: 1.5rem 0 0.35rem;
  font-weight: 600;
  color: var(--brand-gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
}

.contact-email {
  margin: 0 0 1rem;
  text-align: center;
}

.contact-email a {
  color: var(--brand-green);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(14, 85, 74, 0.35);
}

.contact-email a:hover {
  color: var(--brand-gold);
  border-bottom-color: var(--brand-gold);
}

.ornament {
  margin: 0 0 0.25rem;
  text-align: center;
  font-size: 1.25rem;
  letter-spacing: 0.35em;
  color: var(--brand-gold);
}

.social-wrap {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(14, 85, 74, 0.12);
}

.social-kicker {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-gold);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.6rem, 2.2vw, 1rem);
  max-width: 28rem;
  margin: 0 auto;
}

@media (max-width: 22rem) {
  .social-grid {
    grid-template-columns: 1fr;
    max-width: 14rem;
  }
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 5.5rem;
  padding: 0.85rem 0.4rem;
  text-align: center;
  text-decoration: none;
  color: var(--brand-green);
  background: linear-gradient(180deg, #fffefb 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  border-radius: 1rem;
  box-shadow: 0 2px 14px rgba(14, 85, 74, 0.06);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.social-card:hover {
  color: var(--brand-gold);
  border-color: rgba(171, 140, 61, 0.42);
  box-shadow: 0 6px 22px rgba(171, 140, 61, 0.12);
  transform: translateY(-3px);
}

.social-card:focus-visible {
  outline: 2px solid var(--brand-gold);
  outline-offset: 3px;
}

.social-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-card__icon svg {
  display: block;
  width: 1.7rem;
  height: 1.7rem;
}

.social-card__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
}
