:root {
  --hg-ink: #2c2430;
  --hg-text: #4a3f4f;
  --hg-muted: #756979;
  --hg-pink: #b83f78;
  --hg-pink-dark: #96305f;
  --hg-blush: #fbeaf2;
  --hg-cloud: #fff8fb;
  --hg-line: #eadde5;
  --hg-white: #ffffff;
  --hg-shadow: 0 18px 50px rgba(52, 35, 47, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--hg-white);
  color: var(--hg-text);
  font-family: "DM Sans", sans-serif;
  line-height: 1.65;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--hg-ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.12;
}

.shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.page-hero {
  padding: 110px 0 90px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 88% 20%, rgba(184, 63, 120, 0.12), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(251, 234, 242, 0.9), transparent 32%),
    var(--hg-cloud);
}

.page-hero.compact {
  padding: 90px 0 72px;
}

.page-hero h1 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(2.45rem, 6vw, 4.5rem);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--hg-pink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead {
  max-width: 790px;
  margin: 20px auto 0;
  color: var(--hg-muted);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.small-note {
  color: var(--hg-muted);
  font-size: 0.92rem;
}

.section {
  padding: 88px 0;
}

.soft-section {
  background: var(--hg-cloud);
}

.section h2 {
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 64px;
  align-items: start;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading p:last-child {
  color: var(--hg-muted);
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--hg-line);
  border-radius: 18px;
  background: var(--hg-white);
  color: var(--hg-text);
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.contact-card:hover {
  border-color: rgba(184, 63, 120, 0.55);
  box-shadow: var(--hg-shadow);
  transform: translateY(-2px);
}

.contact-card span:last-child {
  min-width: 0;
}

.contact-card strong,
.contact-card small {
  display: block;
}

.contact-card strong {
  color: var(--hg-ink);
  font-size: 1rem;
}

.contact-card small {
  overflow-wrap: anywhere;
  color: var(--hg-muted);
}

.contact-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border-radius: 14px;
  background: var(--hg-blush);
  color: var(--hg-pink);
  font-size: 1.25rem;
}

.info-panel,
.faq-aside {
  padding: 30px;
  border: 1px solid var(--hg-line);
  border-radius: 24px;
  background: var(--hg-cloud);
  box-shadow: var(--hg-shadow);
}

.info-panel h2,
.faq-aside h2 {
  font-size: 1.75rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hg-line);
}

.hours-row:last-of-type {
  margin-bottom: 22px;
}

.hours-row span:last-child {
  color: var(--hg-ink);
  font-weight: 800;
  text-align: right;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.btn.primary {
  background: var(--hg-ink);
  color: var(--hg-white);
}

.btn.primary:hover {
  background: var(--hg-pink-dark);
  box-shadow: 0 12px 30px rgba(184, 63, 120, 0.22);
  transform: translateY(-1px);
}

.btn.wide {
  width: 100%;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.step-card {
  padding: 28px;
  border: 1px solid var(--hg-line);
  border-radius: 22px;
  background: var(--hg-white);
}

.step-card span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--hg-blush);
  color: var(--hg-pink);
  font-weight: 800;
}

.step-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.step-card p {
  margin: 0;
  color: var(--hg-muted);
}

.legal-copy {
  max-width: 880px;
}

.legal-copy h2 {
  margin: 2.3rem 0 0.85rem;
  font-size: 1.55rem;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p,
.legal-copy li {
  color: var(--hg-text);
}

.legal-copy ul {
  padding-left: 1.4rem;
}

.legal-copy a,
.text-link {
  color: var(--hg-pink-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 48px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid var(--hg-line);
  border-radius: 18px;
  background: var(--hg-white);
  box-shadow: 0 8px 24px rgba(52, 35, 47, 0.05);
}

.faq-list summary {
  position: relative;
  padding: 20px 58px 20px 22px;
  cursor: pointer;
  color: var(--hg-ink);
  font-weight: 800;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 22px;
  color: var(--hg-pink);
  font-size: 1.55rem;
  font-weight: 500;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--hg-muted);
}

.faq-aside {
  position: sticky;
  top: 105px;
}

.faq-aside p {
  color: var(--hg-muted);
}

.hg-mobile-menu summary {
  list-style: none;
}

.hg-mobile-menu summary::-webkit-details-marker {
  display: none;
}

.hg-prose p + p {
  margin-top: 1rem;
}

.hg-prose a {
  color: #b83f78;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hg-placeholder {
  background:
    radial-gradient(circle at 20% 20%, rgba(184, 63, 120, 0.18), transparent 38%),
    linear-gradient(135deg, #fff8fb, #fbeaf2);
}

@media (max-width: 850px) {
  .split-grid,
  .faq-layout,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .split-grid,
  .faq-layout {
    gap: 38px;
  }

  .faq-aside {
    position: static;
  }
}

@media (max-width: 540px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }

  .page-hero,
  .page-hero.compact {
    padding: 72px 0 58px;
  }

  .section {
    padding: 64px 0;
  }

  .info-panel,
  .faq-aside,
  .step-card {
    padding: 22px;
  }

  .hours-row {
    display: grid;
    gap: 2px;
  }

  .hours-row span:last-child {
    text-align: left;
  }
}

/* HomeGlow gallery transformations */
.gallery-page-shell {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding: 72px 0 96px;
}

.gallery-category {
  margin-top: 84px;
}

.gallery-category:first-child {
  margin-top: 0;
}

.gallery-category-header {
  max-width: 730px;
  margin-bottom: 28px;
}

.gallery-eyebrow {
  margin: 0;
  color: #b83f78;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.gallery-category-header h2,
.gallery-consent h2 {
  margin: 10px 0 0;
  color: #2c2430;
  font-size: clamp(1.9rem, 4vw, 2.85rem);
  font-weight: 900;
  letter-spacing: -.045em;
  line-height: 1.06;
}

.gallery-category-header p:last-child {
  margin: 14px 0 0;
  color: #685d70;
  font-size: 1.05rem;
  line-height: 1.7;
}

.gallery-page-shell .transformation-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
  margin-top: 20px;
}

.gallery-page-shell .transformation-card {
  margin: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #f0d7e3;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(67, 42, 59, .07);
}

.gallery-page-shell .transformation-card > img {
  display: block;
  width: 100%;
  height: 260px;
  max-height: 260px;
  object-fit: contain;
  object-position: center;
  background: #fbeaf2;
}

.gallery-page-shell .transformation-card figcaption {
  order: -1;
  padding: 16px 18px 15px;
  border-bottom: 1px solid rgba(184, 63, 120, .14);
  background: linear-gradient(135deg, #fff7fb 0%, #fff 100%);
}

.gallery-page-shell .transformation-card h3 {
  margin: 0;
  color: #2c2430;
  font-size: 1.04rem;
  font-weight: 900;
  line-height: 1.25;
}

.gallery-page-shell .transformation-card p {
  margin: 6px 0 0;
  color: #685d70;
  font-size: .9rem;
  line-height: 1.5;
}

.gallery-consent {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  margin-top: 84px;
  padding: 36px;
  border-radius: 28px;
  background: #fbeaf2;
}

.gallery-consent p:last-child {
  max-width: 680px;
  margin: 13px 0 0;
  color: #685d70;
  line-height: 1.65;
}

.gallery-consent-link {
  display: inline-flex;
  flex: none;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  background: #b83f78;
  color: #fff;
  padding: 13px 20px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.gallery-consent-link:hover {
  background: #9e3064;
  color: #fff;
}

@media (max-width: 700px) {
  .gallery-page-shell {
    width: min(100% - 28px, 1180px);
    padding: 56px 0 72px;
  }

  .gallery-category {
    margin-top: 64px;
  }

  .gallery-page-shell .transformation-pair {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .gallery-page-shell .transformation-card > img {
    height: 240px;
    max-height: 240px;
  }

  .gallery-consent {
    display: block;
    padding: 26px;
  }

  .gallery-consent-link {
    width: 100%;
    margin-top: 20px;
  }
}

/* Rebuilt gallery */
.gallery-showcase { padding: 72px 0 88px; background: #fff8fb; }
.gallery-showcase-inner { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.gallery-section-heading { max-width: 720px; margin-bottom: 30px; }
.gallery-section-heading h2 { margin: 8px 0 0; color: #2c2430; font-size: clamp(2rem, 4vw, 3.15rem); line-height: 1.06; }
.gallery-comparison { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 36px; padding: 20px; border: 1px solid #efd7e2; border-radius: 30px; background: #fff; box-shadow: 0 18px 55px rgba(44,36,48,.08); }
.gallery-comparison-copy { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 16px; padding: 4px 4px 2px; }
.gallery-comparison-copy > span { display: grid; width: 42px; height: 42px; flex: 0 0 42px; place-items: center; border-radius: 50%; background: #2c2430; color: white; font-weight: 800; }
.gallery-comparison-copy h3, .gallery-detail-card h3 { margin: 0; color: #2c2430; font-size: 1.3rem; line-height: 1.2; }
.gallery-comparison-copy p { margin: 6px 0 0; color: #685d70; line-height: 1.6; }
.gallery-comparison figure, .gallery-detail-card figure { margin: 0; }
.gallery-image-frame { position: relative; overflow: hidden; aspect-ratio: 4 / 3; border-radius: 20px; background: #f6edf2; }
.gallery-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.gallery-image-label { position: absolute; left: 14px; bottom: 14px; padding: 8px 13px; border-radius: 999px; background: rgba(44,36,48,.9); color: #fff; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.gallery-image-label.after { background: rgba(184,63,120,.94); }
.gallery-details-heading { margin-top: 72px; }
.gallery-detail-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; }
.gallery-detail-card { padding: 20px; border: 1px solid #efd7e2; border-radius: 26px; background: #fff; box-shadow: 0 12px 38px rgba(44,36,48,.06); }
.gallery-detail-card h3 { margin-bottom: 16px; }
.gallery-detail-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.gallery-detail-pair figure { position: relative; overflow: hidden; aspect-ratio: 3 / 4; border-radius: 16px; background: #f6edf2; }
.gallery-detail-pair img { width: 100%; height: 100%; object-fit: cover; }
.gallery-detail-pair figcaption { position: absolute; right: 10px; bottom: 10px; padding: 6px 10px; border-radius: 999px; background: rgba(255,255,255,.92); color: #2c2430; font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.gallery-privacy-note { margin-top: 48px; padding: 24px 28px; border-radius: 22px; background: #2c2430; color: #f9eef4; line-height: 1.7; }

@media (max-width: 760px) {
  .gallery-showcase { padding: 52px 0 68px; }
  .gallery-showcase-inner { width: min(100% - 24px,1180px); }
  .gallery-comparison { grid-template-columns: 1fr; padding: 14px; border-radius: 23px; }
  .gallery-comparison-copy { grid-column: auto; }
  .gallery-detail-grid { grid-template-columns: 1fr; }
}
