/* Levels — premium minimal homepage + service detail (UK event agency) */

:root {
  --bg: #0a0a0a;
  --bg-elevated: #111111;
  --surface: #161616;
  --text: #f5f5f4;
  --text-muted: rgba(245, 245, 244, 0.72);
  /* Accent was gold; now pink for links, kickers, card links, stars */
  --gold: #e879b8;
  --gold-soft: rgba(232, 121, 184, 0.2);
  --gold-hover: #f5a8d4;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.35);
  --radius: 16px;
  --radius-sm: 12px;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 0.35s var(--ease);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 12px 20px;
  background: var(--bg);
  color: var(--text);
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* Loader */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  transition: opacity 0.5s var(--ease), visibility 0s linear 0.5s;
}
#loader.hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.loader-mark { max-height: 48px; width: auto; margin: 0 auto; }
.loader-tagline { margin-top: 12px; font-size: 0.85rem; color: var(--text-muted); letter-spacing: 0.12em; text-transform: uppercase; }

/* Header */
.ph-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #000000;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: box-shadow var(--transition);
}
.ph-header.is-scrolled { box-shadow: var(--shadow-soft); }
.ph-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px clamp(16px, 4vw, 28px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.ph-logo img { height: 40px; width: auto; }
.ph-nav { display: flex; align-items: center; gap: 8px; }
.ph-nav a {
  padding: 10px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.ph-nav a:hover { color: var(--text); background: rgba(255, 255, 255, 0.04); }
.ph-nav a.active { color: var(--gold); }
.ph-nav__cta {
  margin-left: 8px;
  padding: 10px 20px !important;
  background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.35);
}
.ph-nav__cta:hover {
  background: linear-gradient(180deg, #60a5fa 0%, #3b82f6 100%) !important;
  color: #fff !important;
  box-shadow: 0 6px 24px rgba(59, 130, 246, 0.45);
}

.ph-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}
.ph-burger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  border-radius: 1px;
  transition: transform var(--transition);
}

@media (max-width: 820px) {
  .ph-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; padding: 16px; background: var(--bg-elevated); border-bottom: 1px solid var(--border); }
  .ph-nav.is-open { display: flex; }
  .ph-burger { display: flex; flex-direction: column; align-items: center; justify-content: center; }
  .ph-nav__cta { margin-left: 0; text-align: center; }
}

/* Buttons */
.ph-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.ph-btn--primary {
  background: linear-gradient(180deg, #3b82f6 0%, #2563eb 100%);
  color: #ffffff;
  box-shadow: 0 4px 28px rgba(37, 99, 235, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.ph-btn--primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, #60a5fa 0%, #3b82f6 100%);
  box-shadow: 0 8px 36px rgba(59, 130, 246, 0.45);
}
.ph-btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.ph-btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

/* Hero */
.ph-hero {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(48px, 10vw, 96px) clamp(16px, 4vw, 32px);
  isolation: isolate;
}
.ph-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.ph-hero__slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.ph-hero__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s var(--ease);
  pointer-events: none;
  z-index: 0;
}
.ph-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.ph-hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (prefers-reduced-motion: reduce) {
  .ph-hero__slide {
    transition: none;
  }
  .ph-hero__slide.is-active {
    opacity: 1;
    visibility: visible;
  }
  .ph-hero__slide:not(.is-active) {
    opacity: 0;
    visibility: hidden;
  }
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.ph-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.72) 45%, rgba(10, 10, 10, 0.92) 100%);
}
.ph-hero__content {
  position: relative;
  z-index: 4;
  max-width: 820px;
  text-align: center;
}
.ph-hero__kicker {
  font-size: clamp(0.78rem, 1.35vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: clamp(14px, 2.5vw, 22px);
}
.ph-hero__headline {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0 auto clamp(20px, 3vw, 28px);
  max-width: min(92vw, 38rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: clamp(1.2rem, 4.2vw, 2.15rem);
  line-height: 1.22;
  color: #f5f5f4;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}
@media (min-width: 720px) {
  .ph-hero__headline {
    letter-spacing: 0.12em;
  }
}
.ph-hero__lead {
  font-size: clamp(0.98rem, 1.65vw, 1.12rem);
  color: var(--text-muted);
  max-width: 28rem;
  margin: 0 auto 22px;
  line-height: 1.55;
}
.ph-hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 28px;
  margin-bottom: 28px;
  padding: 0;
  list-style: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(232, 121, 184, 0.95);
}
.ph-hero__trust li {
  position: relative;
  padding-left: 18px;
}
.ph-hero__trust li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.85;
}
@media (max-width: 520px) {
  .ph-hero__trust { flex-direction: column; align-items: center; gap: 10px; }
}

/* Sections */
.ph-section {
  padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 32px);
}
.ph-section__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.ph-section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.ph-section__kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.ph-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 600;
  margin: 0 0 12px;
}
.ph-section__lead {
  color: var(--text-muted);
  font-size: 1.02rem;
  margin: 0;
}
.ph-section__prose {
  max-width: 640px;
  margin: 16px auto 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
}
.ph-section__prose p { margin: 0 0 14px; }
.ph-section__prose p:last-child { margin-bottom: 0; }
.ph-section__prose a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(232, 121, 184, 0.45);
  text-underline-offset: 3px;
  transition: color var(--transition), text-decoration-color var(--transition);
}
.ph-section__prose a:hover {
  color: var(--gold-hover);
  text-decoration-color: var(--gold);
}

/* Why / process band */
.ph-band {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}
.ph-band__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .ph-band__grid { grid-template-columns: 1fr; max-width: 420px; }
}
.ph-band__item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 10px;
  color: var(--text);
}
.ph-band__item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.ph-band__num {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 10px;
}

/* Service grid */
.ph-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}
@media (max-width: 720px) {
  .ph-grid { grid-template-columns: 1fr; }
}

.ph-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
a.ph-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(232, 121, 184, 0.28);
}
.ph-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0d0d0d;
}
.ph-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
a.ph-card:hover .ph-card__media img { transform: scale(1.04); }
.ph-card__body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.ph-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 10px;
}
.ph-card__body p {
  font-size: 0.94rem;
  color: var(--text-muted);
  margin: 0 0 20px;
  flex: 1;
  line-height: 1.65;
}
.ph-card__link {
  align-self: flex-start;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}
a.ph-card:hover .ph-card__link { border-bottom-color: var(--gold); }

/* Reviews */
.ph-reviews {
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg) 100%);
  border-block: 1px solid var(--border);
}
.ph-review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 520px) {
  .ph-review-grid { grid-template-columns: 1fr; max-width: 480px; }
}
.ph-review {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.ph-review__stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.ph-review blockquote {
  margin: 0 0 16px;
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.ph-review cite {
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
}

/* Booking */
.ph-book {
  padding-bottom: clamp(72px, 10vw, 120px);
}
.ph-form {
  max-width: 520px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow-soft);
}
.ph-form__row { margin-bottom: 18px; }
.ph-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.ph-form input,
.ph-form select,
.ph-form textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition);
}
.ph-form input:focus,
.ph-form select:focus,
.ph-form textarea:focus {
  outline: none;
  border-color: rgba(232, 121, 184, 0.5);
}
.ph-form textarea { min-height: 120px; resize: vertical; }
.ph-form .ph-btn { width: 100%; margin-top: 8px; }
.ph-form__fieldset {
  margin: 0 0 18px;
  padding: 0;
  border: none;
  min-width: 0;
}
.ph-form__legend {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
  padding: 0;
}
.ph-form__hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0 0 10px;
  line-height: 1.45;
  text-transform: none;
  letter-spacing: 0.02em;
}
.ph-form__hint--field {
  margin: 8px 0 0;
}
.ph-form input[type="date"] {
  min-height: 46px;
}
.ph-form__checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 480px) {
  .ph-form__checks {
    flex-flow: row wrap;
    gap: 12px 20px;
  }
}
.ph-form__check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--text);
  cursor: pointer;
}
.ph-form__check input {
  width: auto;
  margin: 0;
  flex-shrink: 0;
  accent-color: rgba(232, 121, 184, 0.9);
}
.ph-form__note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
}

.ph-seo-links {
  margin: 12px 0 0;
  padding-left: 1.2rem;
  max-width: 40rem;
}
.ph-seo-links li {
  margin-bottom: 10px;
  line-height: 1.45;
}
.ph-detail-content .ph-inline-nav {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-muted);
}
.ph-detail-content .ph-inline-nav a {
  color: var(--text);
  font-weight: 600;
}

/* Footer */
.ph-footer {
  padding: 32px clamp(16px, 4vw, 32px) 48px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.ph-footer a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

.ph-footer__contact {
  max-width: 640px;
  margin: 0 auto 28px;
  padding: 24px clamp(16px, 4vw, 28px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.ph-footer__quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  margin-bottom: 22px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  background: transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.ph-footer__quote:hover {
  background: var(--gold-soft);
  border-color: var(--gold-hover);
  color: var(--text);
}
.ph-footer__grid {
  display: grid;
  gap: 20px;
  text-align: left;
}
@media (min-width: 560px) {
  .ph-footer__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 24px;
  }
}
.ph-footer__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 10px;
}
.ph-footer__contact .ph-footer__grid p {
  margin: 0 0 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.ph-footer__contact .ph-footer__grid a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 121, 184, 0.35);
}
.ph-footer__contact .ph-footer__grid a:hover {
  color: var(--gold-hover);
  border-bottom-color: var(--gold);
}
.ph-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

/* Service detail page */
.ph-detail-hero {
  padding: clamp(40px, 6vw, 72px) clamp(16px, 4vw, 32px) 24px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.ph-detail-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  margin: 0 0 12px;
}
.ph-detail-hero p {
  color: var(--text-muted);
  margin: 0;
}
.ph-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gold);
  margin-bottom: 24px;
  transition: opacity var(--transition);
}
.ph-back:hover { opacity: 0.85; }

.ph-detail-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  max-width: min(1100px, 100%);
  margin: 0 auto 28px;
  padding: 0 clamp(16px, 4vw, 32px);
}
.ph-detail-gallery figure {
  margin: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0d0d0d;
}
.ph-detail-gallery img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.ph-detail-content {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px) clamp(48px, 8vw, 80px);
}
.ph-detail-content p.lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}
.ph-detail-content p.ph-detail-sub {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0 0 24px;
  opacity: 0.95;
}
.ph-detail-content ul {
  margin: 0 0 32px;
  padding-left: 1.2rem;
  color: var(--text-muted);
}
.ph-detail-content li { margin-bottom: 8px; }
.ph-detail-content .ph-btn { margin-right: 12px; margin-bottom: 12px; }

/* Instagram embeds (service pages) */
.ph-detail-embeds {
  max-width: 560px;
  margin: 0 auto 40px;
  padding: 0 clamp(16px, 4vw, 32px);
}
.ph-detail-embeds--compact {
  max-width: 520px;
  margin: 0 auto clamp(40px, 8vw, 56px);
  padding-top: 0;
}
.ph-detail-embeds h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 20px;
  text-align: center;
  color: var(--text);
}
.ph-detail-embeds--compact h2 {
  font-size: 1.15rem;
  margin: 0 0 14px;
}
.ph-detail-embeds__grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.ph-detail-embeds--compact .ph-detail-embeds__grid {
  gap: 12px;
}
.ph-detail-embeds .instagram-media {
  margin: 0 auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* Homepage — Instagram embeds (official oEmbed; tap to play) */
.ph-section--instagram {
  padding-bottom: clamp(48px, 10vw, 88px);
}
.ph-instagram-home {
  max-width: min(920px, 100%);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}
.ph-instagram-home__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}
@media (min-width: 900px) {
  .ph-instagram-home__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }
}
.ph-instagram-home__grid .instagram-media:nth-child(3) {
  grid-column: 1 / -1;
  max-width: min(100%, 420px);
  justify-self: center;
}
@media (min-width: 900px) {
  .ph-instagram-home__grid .instagram-media:nth-child(3) {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }
}
.ph-instagram-home .instagram-media {
  margin: 0 auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}
.ph-instagram-feed__cta {
  text-align: center;
  margin-top: 28px;
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}
