/* =====================================================
   AMYY ALEX — PORTFOLIO
   Cream + warm berry · Tech Big Sis edition
   ===================================================== */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Surfaces */
  --bg: #FAF6F0;
  --bg-soft: #F4ECDF;
  --bg-warm: #EFE3D2;
  --bg-card: #FFFCF7;
  --bg-dark: #1F1B16;

  /* Ink */
  --ink: #1F1B16;
  --ink-soft: #5A5048;
  --ink-mute: #8A7E70;
  --ink-light: #FAF6F0;

  /* Accents */
  --berry: #B85C8A;
  --berry-deep: #8E3D6B;
  --berry-soft: #F4E1EC;
  --rose: #C97064;
  --rose-soft: #F7E4DF;
  --honey: #E8B864;

  /* Lines */
  --line: #E5DBC8;
  --line-soft: #EFE7D5;

  /* Spacing rhythm */
  --gap-xs: 0.5rem;
  --gap-sm: 1rem;
  --gap-md: 1.75rem;
  --gap-lg: 3rem;
  --gap-xl: 5.5rem;

  /* Type */
  --serif: "Fraunces", "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Effects */
  --radius-sm: 8px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 14px rgba(31, 27, 22, 0.06);
  --shadow: 0 14px 40px rgba(31, 27, 22, 0.08);
  --shadow-lg: 0 30px 70px rgba(31, 27, 22, 0.12);
  --transition: 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);

  /* Layout */
  --container: 1180px;
  --nav-height: 76px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; margin: 0; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }
:focus-visible { outline: 2.5px solid var(--berry); outline-offset: 3px; border-radius: 4px; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 500; line-height: 1.05; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
p { margin: 0 0 1em; }

.accent-italic {
  font-style: italic;
  color: var(--berry);
  font-weight: 500;
}
.underline-accent {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.underline-accent::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: 0.05em;
  height: 0.4em;
  background: var(--berry-soft);
  z-index: -1;
  border-radius: 2px;
  transform: skew(-10deg);
}

/* ---------- LAYOUT ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--gap-xl) 0;
  position: relative;
}

.section__head {
  max-width: 720px;
  margin-bottom: var(--gap-lg);
}

.section__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--berry);
  margin-bottom: 1rem;
}

.section__label--light { color: var(--rose-soft); }

.section__title { margin-bottom: 0.75rem; }

.section__sub {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 60ch;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.95rem 1.7rem;
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  border-radius: 999px;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition), color var(--transition);
}
.btn--primary {
  background: var(--ink);
  color: var(--ink-light);
  box-shadow: 0 8px 22px rgba(31, 27, 22, 0.18);
}
.btn--primary:hover {
  background: var(--berry);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(184, 92, 138, 0.32);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--ghost:hover {
  background: var(--ink);
  color: var(--ink-light);
  transform: translateY(-2px);
}
.btn--full { width: 100%; justify-content: center; }
.btn__arrow {
  transition: transform var(--transition);
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: calc(var(--nav-height) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
  background: rgba(250, 246, 240, 0.7);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.nav.is-scrolled {
  background: rgba(250, 246, 240, 0.92);
  border-bottom-color: var(--line-soft);
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
}
.nav__logo-mark {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--ink-light);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 500;
}
.nav__logo-text {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.95rem;
  color: var(--ink-soft);
  position: relative;
  padding: 0.4rem 0;
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:not(.nav__cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--berry);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav__links a:not(.nav__cta):hover::after { transform: scaleX(1); }
.nav__cta {
  background: var(--ink);
  color: var(--ink-light) !important;
  padding: 0.6rem 1.3rem !important;
  border-radius: 999px;
  font-weight: 500;
}
.nav__cta:hover { background: var(--berry); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__toggle span {
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--nav-height) + env(safe-area-inset-top, 0px) + 4rem);
  padding-bottom: var(--gap-xl);
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 12%, var(--rose-soft) 0%, transparent 38%),
    radial-gradient(circle at 8% 88%, var(--berry-soft) 0%, transparent 40%),
    var(--bg);
}
.hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.65;
  pointer-events: none;
}
.hero__shape--1 {
  top: -10%; right: -10%;
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--berry-soft), transparent 70%);
}
.hero__shape--2 {
  bottom: -20%; left: -8%;
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--rose-soft), transparent 70%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  padding: 0.45rem 0.95rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.hero__title { margin-bottom: 1.5rem; }
.hero__lede {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 2rem;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 3rem;
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero__proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__proof-item strong {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ink);
}
.hero__proof-item span {
  font-size: 0.84rem;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}
.hero__proof-divider {
  width: 1px;
  height: 32px;
  background: var(--line);
}

.hero__visual {
  position: relative;
}
.hero__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-warm);
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  border: 8px solid #fff;
}
.hero__photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero__photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background:
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 18px,
      rgba(184, 92, 138, 0.06) 18px,
      rgba(184, 92, 138, 0.06) 19px
    ),
    linear-gradient(135deg, var(--berry-soft), var(--rose-soft));
}
.hero__photo-initials {
  font-family: var(--serif);
  font-size: 5rem;
  font-style: italic;
  font-weight: 500;
  color: var(--berry);
}
.hero__photo-note {
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--berry-deep);
  background: rgba(255, 255, 255, 0.7);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
}

.hero__sticker {
  position: absolute;
  background: #fff;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.hero__sticker--1 {
  top: 8%;
  left: -8%;
  transform: rotate(-6deg);
  color: var(--berry-deep);
}
.hero__sticker--2 {
  bottom: 12%;
  right: -8%;
  transform: rotate(5deg);
  color: var(--rose);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  z-index: 2;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: var(--ink-mute);
  animation: scrollLine 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(1.4); opacity: 1; }
}

/* ---------- ABOUT ---------- */
.about { background: var(--bg); }
.about__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 4rem;
  align-items: start;
}
.about__lead {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.about__copy p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.about__copy strong { color: var(--ink); font-weight: 600; }

.about__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.about__facts li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about__facts span {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.about__facts strong {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.08rem;
  color: var(--ink);
}

.about__side {
  position: sticky;
  top: calc(var(--nav-height) + 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.about__quote {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 0;
  position: relative;
}
.about__quote::before {
  content: "\201C";
  position: absolute;
  top: -0.4em; left: 0.5em;
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--berry);
  line-height: 1;
  font-style: italic;
}
.about__quote p {
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.45;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.about__quote cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}

.about__pillars {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
}
.about__pillars h3 {
  font-size: 0.92rem;
  font-family: var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.about__pillars ul { display: flex; flex-direction: column; gap: 0.85rem; }
.about__pillars li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.98rem;
  color: var(--ink);
}
.pillar-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pillar-dot--1 { background: var(--berry); }
.pillar-dot--2 { background: var(--rose); }
.pillar-dot--3 { background: var(--honey); }

/* ---------- SPEAKING & WORKSHOPS ---------- */
.speaking {
  background:
    radial-gradient(circle at 90% 10%, var(--berry-soft) 0%, transparent 35%),
    radial-gradient(circle at 5% 95%, var(--rose-soft) 0%, transparent 35%),
    var(--bg);
  position: relative;
  overflow: hidden;
}

.speaking__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.speaking__col {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-sm);
}

.speaking__col-title {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--berry);
  margin-bottom: 1.5rem;
}

.speaking__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.speaking__list li {
  position: relative;
  padding-left: 1.6rem;
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink);
}

.speaking__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--berry);
  box-shadow: 0 0 0 4px var(--berry-soft);
}

.speaking__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.speaking__past {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.speaking__past-label {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-right: 0.5rem;
  font-weight: 500;
}

/* ---------- SERVICES ---------- */
.services { background: var(--bg-soft); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--berry-soft);
}
.service-card--featured {
  background: linear-gradient(160deg, var(--ink) 0%, #2c2520 100%);
  color: var(--ink-light);
  border-color: transparent;
}
.service-card--featured h3,
.service-card--featured .service-card__num,
.service-card--featured .service-card__link { color: var(--ink-light); }
.service-card--featured .service-card__body { color: rgba(250, 246, 240, 0.78); }
.service-card--featured .service-card__list li { color: rgba(250, 246, 240, 0.85); }
.service-card--featured .service-card__list li::before { background: var(--berry-soft); }
.service-card--featured:hover { box-shadow: 0 30px 60px rgba(31, 27, 22, 0.3); }

.service-card__pin {
  position: absolute;
  top: -12px; left: 1.75rem;
  background: var(--berry);
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}
.service-card__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--berry);
  margin-bottom: 1rem;
  display: block;
}
.service-card__title { margin-bottom: 1rem; }
.service-card__body {
  color: var(--ink-soft);
  font-size: 1rem;
  margin-bottom: 1.5rem;
  flex-grow: 0;
}
.service-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}
.service-card__list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.service-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.6em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--berry);
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  margin-top: auto;
  transition: gap var(--transition);
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 4px;
  align-self: flex-start;
}
.service-card__link:hover { gap: 0.85rem; }

.services__cta {
  text-align: center;
  margin-top: 3rem;
  font-size: 1rem;
  color: var(--ink-soft);
}
.services__cta a {
  color: var(--berry);
  font-weight: 500;
  border-bottom: 1.5px solid var(--berry);
}

/* ---------- CONTENT ---------- */
.content__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}
.content-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  border: 1px solid var(--line);
  position: relative;
}
.content-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--berry-soft);
}

.content-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.content-card__media--tiktok {
  background: linear-gradient(135deg, var(--berry), var(--berry-deep));
}
.content-card__media--instagram {
  background: linear-gradient(135deg, var(--rose), var(--berry));
}
.content-card__media--linkedin {
  background: linear-gradient(135deg, #2c2520, var(--ink));
}

.content-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.content-card__platform {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
}
.content-card__play {
  position: relative;
  z-index: 2;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  padding-left: 4px;
  transition: transform var(--transition);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}
.content-card:hover .content-card__play {
  transform: scale(1.12);
}

.content-card__body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.content-card__body h4 {
  font-size: 1.05rem;
  font-family: var(--serif);
  font-weight: 500;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.content-card__meta {
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin: 0 0 1rem;
}
.content-card__cta {
  margin-top: auto;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--berry);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}
.content-card:hover .content-card__cta {
  gap: 0.7rem;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials { background: var(--bg-warm); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.quote-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2rem;
  margin: 0;
  border: 1px solid var(--line);
}
.quote-card__mark {
  position: absolute;
  top: -0.2em; left: 1rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 5.5rem;
  line-height: 1;
  color: var(--berry-soft);
  pointer-events: none;
}
.quote-card blockquote {
  margin: 0 0 1.5rem;
  position: relative;
  z-index: 1;
}
.quote-card blockquote p {
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.5;
  font-style: italic;
  color: var(--ink);
  margin: 0;
}
.quote-card figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.quote-card figcaption strong {
  font-weight: 600;
  color: var(--ink);
}
.quote-card figcaption span {
  font-size: 0.85rem;
  color: var(--ink-mute);
}
.testimonials__note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--ink-mute);
  font-style: italic;
}

/* ---------- PRESS ---------- */
.press { padding: var(--gap-lg) 0; }
.press__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2.5rem 1.5rem;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.press__label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.press__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2.5rem 3rem;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink-mute);
}
.press__logos li {
  opacity: 0.65;
  transition: opacity var(--transition);
}
.press__logos li:hover { opacity: 1; color: var(--berry); }

/* ---------- CONTACT ---------- */
.contact {
  background: var(--bg-dark);
  color: var(--ink-light);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  top: -30%; right: -20%;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 92, 138, 0.18), transparent 70%);
  pointer-events: none;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  position: relative;
  z-index: 1;
}
.contact__title {
  color: var(--ink-light);
  margin-bottom: 1.5rem;
}
.contact__lead {
  color: rgba(250, 246, 240, 0.78);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 460px;
}
.contact__direct {
  margin-bottom: 2.5rem;
}
.contact__email {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.contact__email:hover {
  background: rgba(184, 92, 138, 0.18);
  transform: translateY(-2px);
}
.contact__email-label {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250, 246, 240, 0.6);
}
.contact__email-value {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--ink-light);
}
.contact__socials {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.contact__socials a {
  color: rgba(250, 246, 240, 0.78);
  font-size: 0.98rem;
  transition: color var(--transition);
}
.contact__socials a:hover { color: var(--berry-soft); }

.contact__form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.field__label {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: rgba(250, 246, 240, 0.7);
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  color: var(--ink-light);
  font-size: 0.98rem;
  transition: border-color var(--transition), background var(--transition);
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(250, 246, 240, 0.4); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--berry);
  background: rgba(0, 0, 0, 0.3);
  outline: none;
}
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23FAF6F0' d='M6 8L0 0h12z'/></svg>"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.field textarea { resize: vertical; min-height: 110px; }
.contact__form .btn--primary {
  background: var(--berry);
  margin-top: 0.5rem;
}
.contact__form .btn--primary:hover { background: var(--berry-deep); }
.contact__form-note {
  font-size: 0.82rem;
  color: rgba(250, 246, 240, 0.5);
  text-align: center;
  margin: 0;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-dark);
  color: rgba(250, 246, 240, 0.6);
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.footer__mark {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--berry);
  color: #fff;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
}
.footer__brand strong {
  display: block;
  color: var(--ink-light);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
}
.footer__brand span { font-size: 0.85rem; }
.footer__links {
  display: flex;
  gap: 1.5rem;
}
.footer__links a {
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--berry-soft); }
.footer__copy {
  font-size: 0.85rem;
  margin: 0;
}

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */

/* Tablet: ≤960px */
@media (max-width: 960px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero__copy { display: flex; flex-direction: column; align-items: center; }
  .hero__lede { margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }
  .hero__proof { justify-content: center; }
  .hero__visual { max-width: 380px; margin: 0 auto; width: 100%; }

  .section__head { margin-left: auto; margin-right: auto; text-align: center; }
  .section__sub { margin-left: auto; margin-right: auto; }

  .about__grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .about__copy { display: flex; flex-direction: column; align-items: center; }
  .about__copy p { max-width: 60ch; }
  .about__facts { grid-template-columns: 1fr 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .about__facts li { align-items: center; text-align: center; }
  .about__side { position: static; }
  .about__pillars ul li { justify-content: center; }

  .speaking__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .speaking__col { text-align: center; }
  .speaking__list li { text-align: left; max-width: 320px; margin-left: auto; margin-right: auto; }
  .speaking__cta { flex-direction: column; align-items: stretch; padding: 1.5rem; }
  .speaking__cta .btn { justify-content: center; }

  .services__grid { grid-template-columns: 1fr; }
  .service-card { text-align: center; align-items: center; }
  .service-card__list { text-align: left; max-width: 360px; margin-left: auto; margin-right: auto; align-self: stretch; }
  .service-card__link { align-self: center; }
  .service-card__pin { left: 50%; transform: translateX(-50%); }

  .content__grid { grid-template-columns: repeat(2, 1fr); }
  .content-card__body { text-align: center; align-items: center; }
  .content-card__cta { align-self: center; }

  .testimonials__grid { grid-template-columns: 1fr; }
  .quote-card { max-width: 620px; margin-left: auto; margin-right: auto; }

  .contact__grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .contact__lede, .contact__lead { margin-left: auto; margin-right: auto; }
  .contact__direct { display: flex; justify-content: center; }
  .contact__email { align-items: center; text-align: center; }
  .contact__socials { align-items: center; }
  .contact__form { text-align: left; }
}

/* Mobile: ≤720px */
@media (max-width: 720px) {
  :root { --gap-xl: 4rem; --nav-height: 68px; }
  .container { padding: 0 1.1rem; }
  body { font-size: 16px; }

  /* --- NAV: stop the logo getting cut off --- */
  .nav__inner { gap: 0.75rem; }
  .nav__logo { gap: 0.5rem; min-width: 0; flex: 1 1 auto; }
  .nav__logo-mark { width: 32px; height: 32px; font-size: 1rem; flex-shrink: 0; }
  .nav__logo-text {
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
  }
  .nav__toggle { display: flex; flex-shrink: 0; }
  .nav__links {
    position: fixed;
    top: calc(var(--nav-height) + env(safe-area-inset-top, 0px));
    left: 0; right: 0; bottom: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.5rem;
    transform: translateY(-110%);
    transition: transform var(--transition);
    box-shadow: var(--shadow);
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__links li { border-bottom: 1px solid var(--line-soft); }
  .nav__links li:last-child { border-bottom: 0; padding-top: 0.5rem; }
  .nav__links a { display: block; padding: 0.85rem 0; text-align: center; }
  .nav__cta { text-align: center; }

  /* --- HERO: center everything, tame stickers --- */
  .hero { padding-top: calc(var(--nav-height) + 2rem); }
  .hero__inner { text-align: center; }
  .hero__copy { align-items: center; }
  .hero__eyebrow { margin-left: auto; margin-right: auto; }
  .hero__title { text-align: center; }
  .hero__lede { margin-left: auto; margin-right: auto; }
  .hero__ctas { justify-content: center; }
  .hero__proof { justify-content: center; gap: 1rem; }
  .hero__proof-item { align-items: center; text-align: center; }
  .hero__proof-divider { display: none; }
  .hero__scroll { display: none; }

  .hero__visual { max-width: 320px; }
  .hero__photo { transform: rotate(-1.5deg); border-width: 6px; }

  /* Stickers: keep them inside the visible card on mobile */
  .hero__sticker { font-size: 0.78rem; padding: 0.5rem 0.85rem; }
  .hero__sticker--1 { left: 4%; top: 4%; transform: rotate(-4deg); }
  .hero__sticker--2 { right: 4%; bottom: 6%; transform: rotate(4deg); }

  /* --- ABOUT --- */
  .about__lead { font-size: 1.25rem; }
  .about__facts { grid-template-columns: 1fr; gap: 1rem; }

  /* --- SERVICES --- */
  .service-card { padding: 2.25rem 1.5rem; }
  .service-card__pin { top: -10px; }

  /* --- CONTENT --- */
  .content__grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .content-card { max-width: 420px; margin-left: auto; margin-right: auto; width: 100%; }

  /* --- TESTIMONIALS --- */
  .quote-card { padding: 1.75rem 1.5rem; }

  /* --- PRESS --- */
  .press__inner { padding: 2rem 1rem; }
  .press__logos { gap: 1.25rem 2rem; font-size: 1.1rem; }

  /* --- CONTACT --- */
  .contact__form { padding: 1.75rem 1.25rem; }
  .contact__email { width: 100%; max-width: 360px; }

  /* --- FOOTER --- */
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__brand { flex-direction: column; gap: 0.5rem; }
  .footer__links { justify-content: center; flex-wrap: wrap; }
}

/* Small phones: ≤420px */
@media (max-width: 420px) {
  .container { padding: 0 1rem; }
  h1 { font-size: 2.3rem; }
  h2 { font-size: 1.85rem; }

  .nav__logo-mark { width: 30px; height: 30px; font-size: 0.95rem; }
  .nav__logo-text { font-size: 0.95rem; }

  .hero__photo-initials { font-size: 4rem; }
  .hero__sticker { font-size: 0.72rem; padding: 0.4rem 0.7rem; }

  .service-card { padding: 1.85rem 1.25rem; }
  .contact__form { padding: 1.5rem 1rem; }
  .contact__email { padding: 1.25rem; }
  .contact__email-value { font-size: 1.15rem; }

  .btn { padding: 0.85rem 1.4rem; font-size: 0.94rem; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
