@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --ink: #1a1a1a;
  --paper: #fdf8f0;
  --sun: #ffd66e;
  --mint: #d9f7e1;
  --peach: #ffd3c1;
  --sky: #d7e9ff;
  --berry: #ff6b6b;
  --outline: #1a1a1a;
  --shadow: 0 14px 30px rgba(26, 26, 26, 0.15);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, #fff3d8 0%, var(--paper) 45%, #f6fff9 100%);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--berry);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  background: var(--ink);
  color: white;
  padding: 8px 12px;
  border-radius: 999px;
  z-index: 1000;
}

.skip-link:focus {
  left: 16px;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 240, 0.9);
  border-bottom: 2px solid var(--outline);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex: 0 0 auto;
}

.brand {
  font-family: "Fraunces", serif;
  font-weight: 700;
  font-size: 20px;
}

.header-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav {
  display: flex;
  gap: 20px;
  font-weight: 600;
}

.nav a:hover {
  color: var(--berry);
}

.header-actions {
  display: flex;
  gap: 14px;
  font-size: 14px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid var(--outline);
  background: white;
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  content: "";
}

.menu-icon {
  position: relative;
}

.menu-icon::before {
  position: absolute;
  top: -6px;
  left: 0;
}

.menu-icon::after {
  position: absolute;
  top: 6px;
  left: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.header-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 2px solid var(--outline);
  background: white;
}

.header-actions a:hover {
  transform: translateY(-2px);
}

.social-icon {
  width: 18px;
  height: 18px;
  display: block;
}

.hero {
  padding: 96px 0 80px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--sun);
  border: 2px solid var(--outline);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}

.hero-title {
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 3vw + 2rem, 4.6rem);
  margin: 20px 0 12px;
  line-height: 1.05;
}

.hero-title span {
  display: block;
  color: var(--berry);
}

.hero-subtitle {
  font-size: 1.1rem;
  max-width: 420px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.button {
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  border: 2px solid var(--outline);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button-primary {
  background: var(--berry);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.button-ghost {
  background: transparent;
}

.button:hover {
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-image {
  border-radius: var(--radius);
  border: 3px solid var(--outline);
  box-shadow: var(--shadow);
}

.sticker-badge {
  position: absolute;
  padding: 14px 22px;
  border-radius: 999px;
  border: 2px solid var(--outline);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
  font-size: 16px;
  background: white;
}

.sticker-a11y {
  top: -18px;
  left: 10%;
  background: var(--sun);
  transform: rotate(-8deg);
}

.sticker-pd {
  bottom: 18%;
  left: -8%;
  background: var(--mint);
  transform: rotate(12deg);
}

.sticker-ux {
  top: 18%;
  right: -6%;
  background: var(--peach);
  transform: rotate(6deg);
}

.sticker-ui {
  bottom: -12px;
  right: 12%;
  background: var(--sky);
  transform: rotate(-10deg);
}

.about {
  padding: 90px 0;
  border-top: 1px solid rgba(26, 26, 26, 0.15);
  background: linear-gradient(120deg, #fff4e9 0%, #fff1f6 50%, #eef6ff 100%);
}

.services {
  padding: 90px 0;
}

.portfolio {
  padding: 90px 0;
}

.mentorship {
  padding: 90px 0;
  background: linear-gradient(120deg, #fef7e9 0%, #f3f9ff 55%, #fef0f4 100%);
  border-top: 1px solid rgba(26, 26, 26, 0.15);
  border-bottom: 1px solid rgba(26, 26, 26, 0.15);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.service-card {
  background: white;
  border: 2px solid var(--outline);
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.service-card:nth-child(1) {
  background: var(--mint);
}

.service-card:nth-child(2) {
  background: #ffe7ef;
}

.service-card:nth-child(3) {
  background: var(--sky);
}

.service-card:nth-child(4) {
  background: var(--sun);
}

.service-card:nth-child(5) {
  background: #e8e2ff;
}

.service-card:nth-child(6) {
  background: var(--peach);
}

.service-card h3 {
  margin: 0;
  font-size: 20px;
}

.service-card p {
  margin: 0;
  font-size: 14px;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.section-heading-center {
  margin: 0 auto;
  text-align: center;
}

.section-lede {
  margin: 0;
  font-size: 16px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.map-wrapper {
  position: relative;
  border-bottom: 2px solid var(--outline);
  overflow: hidden;
}

.map-image {
  width: 100%;
  position: relative;
  z-index: 1;
  pointer-events: none;
}

.map-pin {
  position: absolute;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.01);
  box-shadow: none;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform 0.2s ease;
  z-index: 2;
  left: var(--pin-x);
  top: var(--pin-y);
  transform: translate(-50%, -50%);
}

.map-pin:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.map-pin::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 999px;
  border: 2px solid #ff6717;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.map-pin:hover::after {
  opacity: 1;
}

.map-pin:focus-visible {
  outline: 3px solid rgba(255, 107, 107, 0.6);
  outline-offset: 4px;
}

.map-popup {
  position: absolute;
  left: var(--popup-x);
  top: var(--popup-y);
  transform: translate(-50%, calc(-100% - 10px));
  background: transparent;
  border: 0;
  padding: 0;
  width: min(150px, 42%);
  box-shadow: none;
  z-index: 3;
}

.map-popup.is-below {
  transform: translate(-50%, 10px);
}

.map-popup-image {
  width: 100%;
  border-radius: 0;
  border: 0;
}

.map-card {
  border: 2px solid var(--outline);
  border-radius: 26px;
  background: white;
  box-shadow: var(--shadow);
  padding: 16px;
  width: min(320px, 100%);
  justify-self: center;
}

.map-card-image {
  width: 100%;
  border-radius: 20px;
  border: 2px solid var(--outline);
}

.portfolio-card {
  border: 2px solid var(--outline);
  border-radius: 26px;
  background: white;
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
}

.portfolio-media {
  background: var(--paper);
  border-bottom: 2px solid var(--outline);
}

.portfolio-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.portfolio-media-placeholder {
  min-height: 220px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fff0d6 0%, #e6f4ff 100%);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portfolio-body {
  padding: 20px 22px 24px;
  display: grid;
  gap: 12px;
}

.portfolio-link:focus-visible {
  outline: 3px solid var(--berry);
  outline-offset: 3px;
  border-radius: 20px;
}

.portfolio-body h3 {
  margin: 0;
  font-size: 20px;
}

.portfolio-body p {
  margin: 0;
  font-size: 14px;
}

.portfolio-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.mentorship-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 36px;
}

.mentorship-card {
  border: 2px solid var(--outline);
  border-radius: 26px;
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  background: white;
}

.mentorship-card:nth-child(1) {
  background: var(--mint);
}

.mentorship-card:nth-child(2) {
  background: #ffe7ef;
}

.mentorship-card:nth-child(3) {
  background: var(--sky);
}

.mentorship-card:nth-child(4) {
  background: #fdf2c6;
}

.mentorship-card h3 {
  margin: 0;
  font-size: 20px;
}

.mentorship-card p {
  margin: 0;
  font-size: 14px;
}

.section-heading h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.8rem, 2vw + 1.4rem, 2.8rem);
  margin: 0;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  margin-top: 32px;
}

.about-media img {
  width: 100%;
  border-radius: var(--radius);
  border: 2px solid var(--outline);
  box-shadow: var(--shadow);
}

.about-copy p {
  margin-bottom: 18px;
}

.about-card {
  background: var(--mint);
  border: 2px solid var(--outline);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.about-highlight {
  font-weight: 700;
  font-size: 18px;
}

.about-note {
  font-size: 14px;
  margin: 0;
}

.contact {
  padding: 96px 0 110px;
  background: linear-gradient(120deg, #fff4e0 0%, #ffe9f1 45%, #e3f2ff 100%);
  border-top: 2px solid var(--outline);
  border-bottom: 2px solid var(--outline);
}

.social {
  padding: 90px 0;
}

.social-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  margin-top: 32px;
  align-items: start;
}

.social-instagram,
.social-podcasts {
  border: 2px solid var(--outline);
  border-radius: 26px;
  background: white;
  box-shadow: var(--shadow);
  padding: 20px;
}

.social-instagram {
  display: grid;
  gap: 16px;
  min-height: 528px;
}

.social-thumb {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 20px;
  border: 2px solid var(--outline);
}

.social-podcasts {
  display: grid;
  gap: 16px;
}

.podcast-embed {
  width: 100%;
  border: 0;
  border-radius: 16px;
}

.contact-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.contact-copy h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(1.9rem, 2vw + 1.3rem, 2.6rem);
  margin-top: 0;
}

.contact-email {
  font-weight: 600;
}

.contact-card {
  background: white;
  border-radius: var(--radius);
  border: 2px solid var(--outline);
  padding: 24px;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin-top: 0;
  font-size: 20px;
}

.site-footer {
  padding: 40px 0 60px;
  font-weight: 600;
  border-top: 2px solid var(--outline);
}

.site-footer .container {
  text-align: center;
}

.site-footer h2 {
  margin: 0 0 8px;
  font-family: "Fraunces", serif;
  font-size: clamp(1.6rem, 1.5vw + 1.2rem, 2.2rem);
}

.site-footer p {
  margin: 0;
  font-weight: 500;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.8s ease forwards;
}

.hero .reveal:nth-child(1) {
  animation-delay: 0.1s;
}

.hero .reveal:nth-child(2) {
  animation-delay: 0.2s;
}

.hero .reveal:nth-child(3) {
  animation-delay: 0.3s;
}

.hero .reveal:nth-child(4) {
  animation-delay: 0.4s;
}

.about .reveal {
  animation-delay: 0.15s;
}

.contact .reveal {
  animation-delay: 0.2s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-top {
    width: 100%;
  }

  .header-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 12px;
    width: 100%;
  }

  .site-header.is-open .header-menu {
    display: flex;
  }

  .hero-grid,
  .services-grid,
  .portfolio-grid,
  .mentorship-grid,
  .about-grid,
  .contact-inner,
  .social-grid {
    grid-template-columns: 1fr;
  }

  .social-instagram {
    min-height: 480px;
  }

  .nav {
    flex-direction: column;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .button {
    transition: none;
  }
}
