



:root {
  --pink:       #E91E8C;
  --pink-dark:  #c41577;
  --teal:       #00BCD4;
  --teal-dark:  #0097a7;
  --yellow:     #FFD600;
  --yellow-dark:#f0c800;
  --dark:       #212121;
  --mid:        #555555;
  --light:      #F5F5F5;
  --white:      #ffffff;
  --border:     #e0e0e0;

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --space-xs:  clamp(0.5rem,  1vw, 0.75rem);
  --space-sm:  clamp(0.75rem, 2vw, 1rem);
  --space-md:  clamp(1rem,    3vw, 1.5rem);
  --space-lg:  clamp(1.5rem,  4vw, 2.5rem);
  --space-xl:  clamp(2.5rem,  6vw, 4.5rem);
  --space-2xl: clamp(4rem,    9vw, 7rem);

  --max-w: 1180px;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }


.container {
  width: min(100%, var(--max-w));
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}


.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: var(--space-sm);
}
.section-header {
  text-align: center;
  max-width: 660px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.8em 1.8em;
  border-radius: 100px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }

.btn-primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(233,30,140,0.35);
}
.btn-primary:hover {
  background: var(--pink-dark);
  box-shadow: 0 8px 24px rgba(233,30,140,0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}
.btn-ghost:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-trial {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(0,188,212,0.4);
}
.btn-trial:hover {
  background: var(--teal-dark);
  box-shadow: 0 8px 24px rgba(0,188,212,0.5);
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.logo-dot { color: var(--pink); }
.logo--light { color: var(--white); }
.logo--light .logo-dot { color: var(--yellow); }

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2rem);
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mid);
  transition: color 0.15s;
}
.main-nav a:hover { color: var(--pink); }
.main-nav a:focus-visible { outline: 2px solid var(--pink); border-radius: 4px; }

.nav-cta {
  background: var(--pink);
  color: var(--white) !important;
  padding: 0.45em 1.2em;
  border-radius: 100px;
  font-size: 0.875rem !important;
  transition: background 0.15s, transform 0.15s !important;
}
.nav-cta:hover {
  background: var(--pink-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}


.hero {
  background: var(--dark);
  overflow: hidden;
  padding-block: var(--space-2xl);
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(233,30,140,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 10% 80%, rgba(0,188,212,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
}
@media (min-width: 800px) {
  .hero-inner {
    grid-template-columns: 1fr 1fr;
  }
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: var(--space-sm);
}
.hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}
.hero-text h1 em {
  font-style: normal;
  color: var(--pink);
}
.hero-body {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  margin-bottom: var(--space-lg);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.hero-actions .btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.hero-actions .btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border-color: var(--white);
}
.hero-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  aspect-ratio: 4/3;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scroll-hint {
  display: flex;
  justify-content: center;
  margin-top: var(--space-lg);
  position: relative;
}
.hero-scroll-hint span {
  display: block;
  width: 1.5px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollFade 2s ease-in-out infinite;
}
@keyframes scrollFade {
  0%, 100% { opacity: 0.4; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}


.social-proof {
  background: var(--light);
  padding-block: var(--space-lg);
  border-bottom: 1px solid var(--border);
}
.proof-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  text-align: center;
  margin-bottom: var(--space-md);
}
.proof-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
}
.proof-tags span {
  font-family: var(--font-display);
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 0.35em 1em;
}


.features {
  padding-block: var(--space-2xl);
  background: var(--white);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: var(--space-md);
}
.feature-card {
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.feature-card--pink {
  background: var(--pink);
  color: var(--white);
}
.feature-card--pink h3 { color: var(--white); }
.feature-card--pink p  { color: rgba(255,255,255,0.85); }
.feature-card--yellow {
  background: var(--yellow);
  color: var(--dark);
}
.feature-card--white {
  background: var(--light);
  color: var(--dark);
  border: 1px solid var(--border);
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}
.feature-card p {
  font-size: 0.9rem;
  line-height: 1.65;
}
.feature-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.feature-icon svg { width: 100%; height: 100%; }


.how-it-works {
  padding-block: var(--space-2xl);
  background: var(--light);
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}
@media (min-width: 720px) {
  .steps-grid {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
  }
  .step-connector {
    display: block;
  }
}
.step-connector {
  display: none;
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, var(--pink), var(--teal));
  border-radius: 2px;
  align-self: center;
}
@media (min-width: 720px) {
  .step-connector {
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--pink), var(--teal));
  }
}
.step {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: box-shadow 0.2s;
}
.step:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,0.12);
}
.step-number {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--white);
  background: var(--pink);
  display: inline-block;
  padding: 0.3em 0.85em;
}
.step-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: var(--space-md) var(--space-md) var(--space-xs);
}
.step p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--mid);
  padding: 0 var(--space-md) var(--space-md);
}


.visual-feature {
  padding-block: var(--space-2xl);
  background: var(--white);
}
.visual-feature-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (min-width: 800px) {
  .visual-feature-inner {
    grid-template-columns: 1fr 1fr;
  }
}
.vf-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.visual-feature-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--space-md);
}
.visual-feature-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--mid);
  margin-bottom: var(--space-md);
}
.visual-feature-text .btn-primary {
  margin-top: var(--space-xs);
}


.highlight-banner {
  background: var(--yellow);
  padding-block: var(--space-2xl);
  overflow: hidden;
}
.highlight-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (min-width: 800px) {
  .highlight-inner {
    grid-template-columns: 1fr 1fr;
  }
}
.highlight-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: var(--space-md);
}
.highlight-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(33,33,33,0.75);
  max-width: 480px;
}
.highlight-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}


.conversion {
  background: var(--teal);
  padding-block: var(--space-2xl);
}
.conversion-inner {
  text-align: center;
  max-width: 680px;
}
.conversion-eyebrow {
  color: rgba(255,255,255,0.8);
}
.conversion-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: var(--space-md);
}
.conversion-inner p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin-bottom: var(--space-lg);
}
.conversion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}


.site-footer {
  background: var(--dark);
  padding-block: var(--space-xl);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}
@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.footer-nav {
  display: flex;
  gap: var(--space-md);
}
.footer-nav a {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--teal); }
.footer-nav a:focus-visible { outline: 2px solid var(--teal); border-radius: 4px; }
.footer-copy {
  font-size: 0.775rem;
  color: rgba(255,255,255,0.35);
}






.about-hero {
  background: var(--dark);
  overflow: hidden;
  padding-block: var(--space-2xl);
  position: relative;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 90% 40%, rgba(233,30,140,0.16) 0%, transparent 70%),
    radial-gradient(ellipse 45% 60% at 5% 85%, rgba(0,188,212,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
}
@media (min-width: 800px) {
  .about-hero-inner {
    grid-template-columns: 1fr 1fr;
  }
}
.about-hero-text h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}
.about-hero-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  aspect-ratio: 4/3;
}
.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.about-origin {
  padding-block: var(--space-2xl);
  background: var(--white);
}
.about-origin-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (min-width: 800px) {
  .about-origin-inner {
    grid-template-columns: 1fr 1fr;
  }
}
.about-origin-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  aspect-ratio: 4/3;
}
.about-origin-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-origin-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: var(--space-md);
}
.about-origin-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--mid);
  margin-bottom: var(--space-md);
}
.about-origin-text p:last-child {
  margin-bottom: 0;
}


.about-values {
  padding-block: var(--space-2xl);
  background: var(--light);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: var(--space-md);
}
.value-card {
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.value-card--pink {
  background: var(--pink);
  color: var(--white);
}
.value-card--pink h3 { color: var(--white); }
.value-card--pink p  { color: rgba(255,255,255,0.85); }
.value-card--yellow {
  background: var(--yellow);
  color: var(--dark);
}
.value-card--white {
  background: var(--white);
  color: var(--dark);
  border: 1px solid var(--border);
}
.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}
.value-card p {
  font-size: 0.9rem;
  line-height: 1.65;
}
.value-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.value-icon svg { width: 100%; height: 100%; }
.value-icon--teal svg path,
.value-icon--teal svg rect { stroke: var(--teal); }


.about-platform {
  padding-block: var(--space-2xl);
  background: var(--white);
}
.about-platform-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (min-width: 800px) {
  .about-platform-inner {
    grid-template-columns: 1fr 1fr;
  }
}
.about-platform-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: var(--space-md);
}
.about-platform-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--mid);
  margin-bottom: var(--space-md);
}
.about-platform-text .btn-primary {
  margin-top: var(--space-xs);
}
.about-platform-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  aspect-ratio: 4/3;
}
.about-platform-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.about-who {
  padding-block: var(--space-2xl);
  background: var(--light);
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: var(--space-md);
}
.who-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.who-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.who-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.who-icon svg { width: 100%; height: 100%; }
.who-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
}
.who-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--mid);
}


.about-photo-band {
  padding-block: var(--space-2xl);
  background: var(--yellow);
}
.about-photo-band-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (min-width: 800px) {
  .about-photo-band-inner {
    grid-template-columns: 1fr 1fr;
  }
}
.photo-band-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: var(--space-md);
}
.photo-band-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(33,33,33,0.75);
  margin-bottom: var(--space-md);
}
.photo-band-text p:last-child { margin-bottom: 0; }
.photo-band-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  align-items: end;
}
.photo-band-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0,0,0,0.15);
}
.photo-band-img-wrap--tall {
  aspect-ratio: 3/4;
}
.photo-band-img-wrap--short {
  aspect-ratio: 1/1;
  align-self: start;
  margin-top: var(--space-lg);
}
.photo-band-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}




.contact-hero {
  background: var(--dark);
  padding-block: var(--space-2xl);
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 90% 40%, rgba(233,30,140,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 45% 60% at 5% 90%, rgba(0,188,212,0.13) 0%, transparent 70%);
  pointer-events: none;
}
.contact-hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
}
@media (min-width: 800px) {
  .contact-hero-inner {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-hero-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  aspect-ratio: 4/3;
}
.contact-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.contact-cards-section {
  padding-block: var(--space-2xl);
  background: var(--white);
}
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
  gap: var(--space-md);
}
.contact-card {
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.contact-card--pink {
  background: var(--pink);
  color: var(--white);
}
.contact-card--pink h2 { color: var(--white); }
.contact-card--pink p  { color: rgba(255,255,255,0.85); }
.contact-card--yellow {
  background: var(--yellow);
  color: var(--dark);
}
.contact-card--white {
  background: var(--light);
  color: var(--dark);
  border: 1px solid var(--border);
}
.contact-card h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
}
.contact-card p {
  font-size: 0.9rem;
  line-height: 1.65;
}
.contact-card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.contact-card-icon svg { width: 100%; height: 100%; }
.contact-card-icon--teal {  }

.contact-link {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-top: var(--space-xs);
  transition: opacity 0.15s;
}
.contact-link:hover { opacity: 0.75; }
.contact-link:focus-visible { outline: 2px solid var(--teal); border-radius: 4px; }
.contact-link--light { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.contact-link--teal  { color: var(--teal); }

.contact-cta-btn {
  margin-top: var(--space-xs);
  align-self: flex-start;
}


.contact-detail-section {
  padding-block: var(--space-2xl);
  background: var(--light);
}
.contact-detail-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (min-width: 800px) {
  .contact-detail-inner {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-detail-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: var(--space-md);
}
.contact-detail-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--mid);
  margin-bottom: var(--space-md);
}
.contact-detail-tags {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}
.detail-tag {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
}
.detail-tag-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--white);
  background: var(--pink);
  padding: 0.25em 0.6em;
  border-radius: 4px;
  flex-shrink: 0;
}
.contact-detail-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  aspect-ratio: 4/3;
}
.contact-detail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.contact-faq {
  padding-block: var(--space-2xl);
  background: var(--white);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  max-width: 800px;
  margin-inline: auto;
}
@media (min-width: 700px) {
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.faq-item {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item[open] {
  box-shadow: 0 6px 24px rgba(0,0,0,0.07);
}
.faq-q {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  padding: var(--space-md);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  transition: color 0.15s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--pink);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item[open] .faq-q::after {
  transform: rotate(45deg);
}
.faq-q:hover { color: var(--pink); }
.faq-q:focus-visible { outline: 2px solid var(--pink); outline-offset: -2px; border-radius: var(--radius-sm); }
.faq-a {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--mid);
  padding: 0 var(--space-md) var(--space-md);
}


/* pn-injected styles (links block, social bar, image fallback, photo credit) */

.pn-links-rail { box-sizing: border-box; width: 100%; max-width: 100%; margin: 0; padding: 1.1rem 1.25rem 1rem; border: 1px solid rgba(0,0,0,.14); border-top: 3px solid currentColor; background: rgba(0,0,0,.015); font-family: inherit; }
.pn-links-rail__head { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; opacity: .8; margin: 0 0 .65rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(0,0,0,.1); }
.pn-links-rail__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.pn-links-rail__list li { line-height: 1.35; }
.pn-links-rail__list a { font-size: .92rem; color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.pn-links-rail__list a:hover { opacity: .75; }
@media (min-width: 1024px) {
  main:has(> .pn-links-rail) {
    max-width: min(1280px, calc(100vw - 3rem));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    column-gap: 2.5rem;
    align-items: start;
    box-sizing: border-box;
  }
  main > .pn-links-rail {
    grid-column: 2;
    grid-row: 1 / span 999;
    position: sticky;
    top: 1.5rem;
    align-self: start;
  }
  main > .pn-links-hidden { grid-column: 1; grid-row: 1; }
}
@media (max-width: 1023px) {
  main > .pn-links-rail { margin: 1.5rem 0 1rem; }
}
.pn-links-hidden { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.pn-social { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; }
.pn-social__link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: inherit; opacity: .82; transition: opacity .15s ease, transform .15s ease; text-decoration: none; }
.pn-social__link:hover { opacity: 1; transform: translateY(-1px); }
.pn-social__icon { display: block; width: 22px; height: 22px; }
.pn-social--header { justify-content: flex-end; margin: .35rem 1.25rem; }
.pn-social--footer { justify-content: center; margin: 0 auto .85rem; }
.pn-social--sidebar { justify-content: flex-start; margin: 0 0 1.25rem; }
@media (max-width: 720px) { .pn-social--header { justify-content: center; } }

.pn-links-rail{max-width:none;width:auto;margin:1.5rem auto .25rem;padding:0;border:none;background:none;text-align:center;}
.pn-links-rail__head{border:none;padding:0;margin:0 0 .5rem;font-size:.66rem;letter-spacing:.14em;opacity:.5;}
.pn-links-rail__list{flex-direction:row;justify-content:center;flex-wrap:wrap;gap:.35rem 1.15rem;}

.pn-photo{background-color:#e6e1d6;}

.pn-img-fallback{background:repeating-linear-gradient(135deg,#e6e1d6 0,#e6e1d6 10px,#efe9dd 10px,#efe9dd 20px);display:block;min-height:200px;width:100%;}

.pn-photo-credits{font-size:11px;line-height:1.5;opacity:.55;text-align:center;padding:10px 16px;}.pn-photo-credits a{color:inherit;}
