:root {
  --bg: #e8e1d8;
  --card: #fcfbf9;
  --text: #111111;
  --muted: #57534e;
  --accent: #cfab82;
  --accent-dark: #b28b62;
  --accent-soft: #f2e6d8;
  --line: #ece6de;
  --shadow: 0 18px 50px rgba(31, 20, 10, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 820px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.35), transparent 28%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  min-height: 100vh;
  padding: 22px 16px 40px;
}

.media-card {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  background: linear-gradient(180deg, #fcfbf9 0%, #f8f5f1 100%);
  border-radius: var(--radius-xl);
  padding: 28px 20px 34px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(207, 171, 130, 0.14);
}

/* decor */
.decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.decor-top-right {
  width: 220px;
  height: 220px;
  background: rgba(207, 171, 130, 0.11);
  top: -90px;
  right: -70px;
}

.decor-top-left {
  width: 120px;
  height: 120px;
  background: rgba(207, 171, 130, 0.08);
  top: 120px;
  left: -48px;
}

.decor-bottom {
  width: 180px;
  height: 180px;
  background: rgba(207, 171, 130, 0.08);
  bottom: -80px;
  right: -30px;
}

/* hero */
.hero {
  position: relative;
  margin-bottom: 30px;
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.logo {
  width: 110px;
  height: auto;
  object-fit: contain;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #6d5237;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid rgba(207, 171, 130, 0.35);
}

.hero-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}

.hero-photo-wrap {
  position: relative;
  width: 145px;
  height: 145px;
  margin: 0 auto;
}

.photo-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(207, 171, 130, 0.35), rgba(207, 171, 130, 0.05));
}

.hero-photo {
  position: relative;
  width: 145px;
  height: 145px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #ffffff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
  background: #eee;
}

.hero-copy {
  text-align: center;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 8vw, 4.3rem);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.subtitle {
  margin: 8px 0 0;
  color: var(--accent-dark);
  font-size: clamp(1rem, 3vw, 1.3rem);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.hero-description {
  max-width: 560px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* sections */
.section {
  margin-top: 28px;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.section-line {
  width: 5px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent) 0%, #e1c5a6 100%);
  flex-shrink: 0;
}

.section h2 {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.15rem);
  line-height: 1.1;
  font-weight: 800;
}

.section-text {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

/* SOCIAL GRID */
.social-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

/* SOCIAL CARD */
.mini-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

/* HOVER EFFECT (luxury feel) */
.mini-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  border-color: rgba(207, 171, 130, 0.4);
}

/* ICON CIRCLE */
.mini-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #dabb97 100%);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

/* SVG ICON */
.social-svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* TEXT */
.mini-label {
  margin: 0 0 2px;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

.mini-value {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
}



/* pricing / reach */
.pricing-list {
  border-top: 1px solid var(--line);
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  line-height: 1.45;
}

.pricing-row strong {
  white-space: nowrap;
  font-size: 1.02rem;
}

/* audience */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.stat-card {
  padding: 18px 16px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(242, 230, 216, 0.8) 0%, rgba(255,255,255,0.88) 100%);
  border: 1px solid rgba(207, 171, 130, 0.2);
  text-align: center;
}

.stat-number {
  margin: 0 0 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  line-height: 0.95;
  font-weight: 700;
}

.stat-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 600;
}

/* contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-card-link {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.78);
    color: inherit;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }

  .contact-card-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(207, 171, 130, 0.4);
  }

  .contact-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent) 0%, #dabb97 100%);
    color: #fff;
    display: grid;
    place-items: center;
    flex-shrink: 0;
  }

  .contact-svg {
    width: 17px;
    height: 17px;
    display: block;
    fill: currentColor;
  }

  .contact-copy {
    min-width: 0;
    flex: 1;
  }

  .contact-label {
    margin: 0 0 2px;
    font-size: 0.78rem;
    line-height: 1.2;
    color: var(--muted);
    font-weight: 600;
  }

  .contact-value {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.3;
    font-weight: 800;
    color: var(--text);
    overflow-wrap: anywhere;
    word-break: break-word;
  }

/* desktop */
@media (min-width: 700px) {
  .page {
    padding: 34px 18px 50px;
  }


  .media-card {
    padding: 40px 42px 44px;
  }

  .hero-main {
    grid-template-columns: 180px 1fr;
    gap: 30px;
    text-align: left;
  }

  .hero-photo-wrap {
    width: 170px;
    height: 170px;
    margin: 0;
  }

  .hero-photo {
    width: 170px;
    height: 170px;
  }

  .hero-copy {
    text-align: left;
  }

  .hero-description {
    margin-left: 0;
    margin-right: 0;
  }


  .social-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .logo {
    width: 124px;
  }

  /* smaller card */
.mini-card-sm {
  padding: 10px 12px;
  gap: 10px;
}

/* smaller icon */
.mini-icon-sm {
  width: 34px;
  height: 34px;
}

/* smaller svg */
.mini-icon-sm .social-svg {
  width: 16px;
  height: 16px;
}

/* tighter text */
.mini-card-sm .mini-label {
  font-size: 0.75rem;
}


.mini-card-sm .mini-value {
  font-size: 0.2rem;
}

/* tighter grid spacing */
.contact-grid {
  gap: 10px;
}
}

