:root {
  /* Pink & plum theme only — no blue */
  --plum: #5c2d4a;
  --plum-light: #7a4568;
  --plum-dark: #3d1f32;
  --gold: #e88aab;
  --gold-light: #fce4ef;
  --pink: #f4b8d0;
  --pink-deep: #d4568a;
  --cream: #fdf6f9;
  --white: #ffffff;
  --text: #3d2a35;
  --muted: #6b5562;
  --accent: #d4568a;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
}

a {
  color: var(--pink-deep);
}

a:visited {
  color: var(--plum-light);
}

a:hover {
  color: var(--plum);
}

:focus-visible {
  outline: 2px solid var(--pink-deep);
  outline-offset: 2px;
}

::selection {
  background: var(--gold-light);
  color: var(--plum-dark);
}

h1, h2, h3, .logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(92, 45, 74, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232, 138, 171, 0.35);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo {
  color: var(--gold);
  font-size: 1.35rem;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.logo span { color: var(--white); font-weight: 400; }

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
}

nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

nav a:hover,
nav a.active {
  color: var(--pink);
}

.site-footer a {
  color: var(--pink);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold-light);
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: var(--plum);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--plum);
}

/* Hero */
.hero {
  background:
    linear-gradient(135deg, rgba(92, 45, 74, 0.92) 0%, rgba(122, 69, 104, 0.88) 50%, rgba(158, 90, 122, 0.85) 100%),
    url('images/lily-beach.png') center/cover no-repeat;
  color: var(--white);
  padding: 4rem 1.5rem 5rem;
}

.stats-bar {
  background: var(--plum);
  color: var(--white);
  padding: 2.5rem 1.5rem;
}

.intro-cards-section {
  padding: 2.5rem 1.5rem 1rem;
}

.stats-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold-light);
  line-height: 1.2;
}

.stat-item span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.04em;
}

.travel-banner {
  position: relative;
  min-height: 280px;
  background: url('images/instagram/ig-07.jpg') center 30% / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
}

.travel-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(92, 45, 74, 0.55) 0%, rgba(92, 45, 74, 0.75) 100%);
}

.travel-banner-inner {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 600px;
}

.travel-banner-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.travel-banner-inner p {
  font-size: 1.05rem;
  opacity: 0.95;
}

.about-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.about-photos img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  border: 3px solid var(--gold);
  display: block;
  object-fit: contain;
  object-position: center top;
}

@media (max-width: 900px) {
  .about-photos { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .about-photos { grid-template-columns: 1fr; }
  .about-photos img { height: auto; }
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-tag {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.hero-photo {
  border-radius: 4px;
  overflow: visible;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  border: 3px solid var(--gold);
  background: transparent;
  line-height: 0;
  text-align: center;
}

.hero-photo img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Sections */
section {
  padding: 4rem 1.5rem;
}

.section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section-inner.wide {
  max-width: 1100px;
}

section h2 {
  font-size: 2.25rem;
  color: var(--plum);
  margin-bottom: 1.5rem;
}

section h2 span { color: var(--gold); }

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* Cards grid */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border: 1px solid #e8e4dc;
  padding: 2rem;
  transition: box-shadow 0.3s, transform 0.3s;
}

.card:hover {
  box-shadow: 0 12px 40px rgba(212, 86, 138, 0.15);
  border-color: var(--pink);
  transform: translateY(-4px);
}

.card h3 {
  font-size: 1.35rem;
  color: var(--plum);
  margin-bottom: 0.75rem;
}

.card p { color: var(--muted); font-size: 0.95rem; }

.card a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
  margin-top: 1rem;
  display: inline-block;
}

.card a:hover { text-decoration: underline; }

/* Page hero (inner pages) */
.page-hero {
  background: var(--plum);
  color: var(--white);
  padding: 3.5rem 1.5rem;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* Content blocks */
.content-block {
  background: var(--white);
  border: 1px solid #e8e4dc;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.content-block h3 {
  font-size: 1.4rem;
  color: var(--plum);
  margin-bottom: 1rem;
}

.content-block ul {
  margin-left: 1.25rem;
  color: var(--muted);
}

.content-block li + li { margin-top: 0.5rem; }

.benefit-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.benefit-split article {
  background: var(--cream);
  border: 1px solid #e8e4dc;
  padding: 1.5rem;
}

.benefit-split h4 {
  font-size: 1.1rem;
  color: var(--plum);
  margin-bottom: 0.75rem;
}

.benefit-split ul {
  margin-left: 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.benefit-split li + li { margin-top: 0.4rem; }

.pdf-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.highlight-box {
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
  color: var(--white);
  padding: 2.5rem;
  text-align: center;
  margin: 2rem 0;
}

.highlight-box h3 {
  font-size: 1.75rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

/* Membership tiers */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.tier {
  background: var(--white);
  border: 2px solid #e8e4dc;
  padding: 2rem;
  position: relative;
}

.tier.featured {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(212, 86, 138, 0.2);
}

.tier-badge {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: var(--gold);
  color: var(--plum);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
}

.tier h3 {
  font-size: 1.5rem;
  color: var(--plum);
  margin-bottom: 0.5rem;
}

.tier-price {
  font-size: 2rem;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  margin: 1rem 0;
}

.tier-price small {
  font-size: 0.9rem;
  color: var(--muted);
  font-family: 'Outfit', sans-serif;
}

.tier ul {
  list-style: none;
  margin: 1.25rem 0;
}

.tier li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--muted);
  border-bottom: 1px solid #f0ede8;
}

.tier li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.tier-points {
  background: var(--cream);
  padding: 0.75rem;
  font-size: 0.85rem;
  color: var(--plum);
  margin-top: 1rem;
}

.tier-due {
  background: var(--gold-light);
  padding: 0.85rem 1rem;
  margin: 1rem 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--plum);
  border-radius: 4px;
}

.tier-due strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--pink-deep);
  margin-top: 0.25rem;
}

.tier-turbo {
  border-color: #e8a060;
}

.tier-turbo .tier-badge {
  background: linear-gradient(135deg, #f09433, #e6683c);
  color: var(--white);
}

.membership-chart {
  margin: 0 0 2.5rem;
  text-align: center;
  position: relative;
  display: inline-block;
  width: 100%;
}

.membership-chart::after {
  content: '';
  position: absolute;
  inset: 0;
  max-width: 960px;
  margin: 0 auto;
  left: 0;
  right: 0;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(212, 86, 138, 0.12) 0%, rgba(92, 45, 74, 0.08) 100%);
  pointer-events: none;
}

.membership-chart img {
  width: 100%;
  max-width: 960px;
  border: 2px solid var(--gold);
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(92, 45, 74, 0.12);
  /* Warm official chart — shift blue VIP column toward plum/pink */
  filter: sepia(0.12) saturate(1.15) hue-rotate(-8deg);
}

.membership-chart figcaption {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.membership-summary td,
.membership-summary th {
  text-align: center;
}

.membership-summary td:first-child,
.membership-summary th:first-child {
  text-align: left;
}

.table-note {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 400;
}

.table-scroll {
  overflow-x: auto;
}

.benefits-compare td,
.benefits-compare th {
  text-align: center;
}

.benefits-compare td:first-child,
.benefits-compare th:first-child {
  text-align: left;
  min-width: 220px;
}

.benefits-compare .yes {
  color: var(--pink-deep);
  font-weight: 600;
}

.benefits-compare .yes.lp {
  color: var(--plum);
}

.benefits-compare .no {
  color: #ccc;
}

.lp-mark {
  color: var(--plum);
  font-weight: 600;
}

/* Table */
.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 0.9rem;
}

.data-table th,
.data-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e8e4dc;
}

.data-table th {
  background: var(--plum);
  color: var(--white);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.data-table tr:hover td {
  background: var(--gold-light);
}

/* Photo strip */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin: 2rem 0;
}

.photo-strip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
  border: 2px solid var(--gold);
}

@media (max-width: 900px) {
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
}

/* Footer */
.site-footer {
  background: var(--plum);
  color: rgba(255, 255, 255, 0.7);
  padding: 2.5rem 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}

.site-footer strong { color: var(--white); }

.disclaimer {
  max-width: 800px;
  margin: 1.5rem auto 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* Dark section */
.dark-section {
  background: var(--plum);
  color: var(--white);
}

.dark-section h2 { color: var(--gold-light); }

.dark-section p { color: rgba(255, 255, 255, 0.85); }

/* About / Instagram */
.about-section {
  background: linear-gradient(180deg, var(--cream) 0%, #fce8f0 100%);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.about-photo {
  border-radius: 8px;
  overflow: hidden;
  border: 4px solid var(--gold);
  box-shadow: 0 16px 48px rgba(212, 86, 138, 0.2);
}

.about-photo img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-fact {
  background: var(--white);
  border: 1px solid #f0d4e0;
  padding: 1.25rem;
  border-radius: 4px;
}

.about-fact strong {
  display: block;
  color: var(--pink-deep);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.about-fact span {
  font-size: 0.95rem;
  color: var(--muted);
}

.instagram-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white !important;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 4px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.instagram-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(188, 24, 136, 0.35);
  text-decoration: none;
}

.nav-instagram {
  color: var(--pink) !important;
}

/* Instagram gallery */
.instagram-section {
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  padding: 4rem 0;
}

.instagram-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin: 2rem 0 1.5rem;
}

.instagram-gallery a {
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 4px;
  border: 2px solid #f0d4e0;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.instagram-gallery a:hover {
  border-color: var(--pink-deep);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(212, 86, 138, 0.25);
}

.instagram-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.instagram-gallery a.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.instagram-section .instagram-cta {
  display: inline-flex;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .instagram-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .instagram-gallery a.featured {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16 / 9;
  }
}

/* About section (home) */
.about-section,
.presentation-section {
  background: linear-gradient(180deg, var(--cream) 0%, #fce8f0 100%);
}

.about-intro,
.presentation-intro {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  line-height: 1.65;
  color: var(--plum);
  margin-bottom: 2rem;
  padding: 1.5rem 1.75rem;
  background: var(--white);
  border-left: 4px solid var(--pink-deep);
  border-radius: 0 4px 4px 0;
}

.about-block,
.presentation-block {
  margin-bottom: 2.5rem;
}

.about-block h3,
.presentation-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  color: var(--plum);
  margin-bottom: 1rem;
}

.about-block p,
.presentation-block p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.about-quote,
.presentation-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--plum);
  text-align: center;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-top: 1px solid #f0d4e0;
  border-bottom: 1px solid #f0d4e0;
}

.about-quote cite,
.presentation-quote cite {
  display: block;
  font-style: normal;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

.three-whys {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.three-whys article {
  background: var(--white);
  border: 1px solid #f0d4e0;
  padding: 1.5rem;
  border-radius: 4px;
}

.three-whys strong {
  display: block;
  color: var(--pink-deep);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.three-whys p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
}

.company-bridge {
  text-align: center;
  padding: 2.5rem 1.5rem;
  margin-top: 2rem;
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
  color: var(--white);
  border-radius: 4px;
}

.company-bridge h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.company-bridge p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 520px;
  margin: 0 auto 1.5rem;
}

.company-bridge-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.company-bridge-links a {
  color: var(--plum) !important;
  background: var(--white);
  padding: 0.65rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s, transform 0.2s;
}

.company-bridge-links a:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* Introduction hub (home) */
.start-guide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.start-step {
  display: block;
  background: var(--white);
  border: 1px solid #e8e4dc;
  padding: 1.25rem 1.35rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.start-step:hover {
  border-color: var(--pink);
  box-shadow: 0 8px 28px rgba(212, 86, 138, 0.12);
  transform: translateY(-2px);
}

.start-step-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50%;
}

.start-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--plum);
  margin-bottom: 0.25rem;
}

.start-step p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.company-snapshot {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.company-snapshot article {
  background: var(--white);
  border: 1px solid #e8e4dc;
  padding: 1.35rem;
}

.company-snapshot strong {
  display: block;
  color: var(--plum);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.company-snapshot p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.footer-sitemap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin: 1.25rem 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-sitemap a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.footer-sitemap a:hover {
  color: var(--gold-light);
}

.page-next-steps {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e8e4dc;
}

.page-next-steps p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.page-next-steps-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
}

.page-next-steps-links a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}

.page-next-steps-links a:hover {
  text-decoration: underline;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pink-accent {
  color: var(--pink-deep);
}

/* Examples page */
.compare-block {
  margin-bottom: 3.5rem;
}

.compare-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  color: var(--plum);
  margin-bottom: 0.5rem;
}

.compare-meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.compare-intro {
  background: var(--white);
  border: 1px solid #e8e4dc;
  border-left: 4px solid var(--pink-deep);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.compare-intro strong {
  color: var(--plum);
}

.compare-vs-key {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.75rem;
  margin-top: 0.85rem;
  font-size: 0.88rem;
}

.compare-vs-key span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.compare-vs-key i {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.compare-vs-key .key-ta i { background: var(--plum); }
.compare-vs-key .key-other i { background: #c4b5bc; }

.compare-note {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 1.25rem 0 0.75rem;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.compare-item {
  background: var(--white);
  border: 1px solid #f0d4e0;
  overflow: hidden;
}

.compare-item img {
  width: 100%;
  display: block;
  object-fit: contain;
  background: var(--cream);
  max-height: 520px;
}

.compare-featured img {
  max-height: none;
}

.compare-featured .compare-label {
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
  color: var(--white);
}

.compare-label {
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.compare-label.retail,
.compare-label.other {
  background: #f3eef1;
  color: var(--muted);
}

.compare-label.member,
.compare-label.ta {
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
  color: var(--white);
}

.compare-label.mall {
  background: linear-gradient(135deg, var(--plum-light) 0%, var(--pink-deep) 100%);
  color: var(--white);
}

.savings-callout {
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-light) 100%);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  margin-top: 1rem;
  text-align: center;
  border-radius: 4px;
}

.savings-callout strong {
  color: var(--gold-light);
  font-size: 1.25rem;
}

.featured-example {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.featured-example img {
  width: 100%;
  border: 1px solid #f0d4e0;
}

.example-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.example-gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border: 1px solid #f0d4e0;
}

.examples-empty {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--white);
  border: 2px dashed var(--gold);
  border-radius: 4px;
  margin: 2rem 0;
}

.examples-empty p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--plum);
  margin-bottom: 0.75rem;
}

.examples-empty-note {
  font-family: 'Outfit', sans-serif !important;
  font-size: 1rem !important;
  color: var(--muted) !important;
  font-weight: 300;
  max-width: 420px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .compare-grid { grid-template-columns: 1fr; }
  .featured-example { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photo { order: -1; max-height: none; }
  .photo-strip { grid-template-columns: 1fr; }
  nav { width: 100%; justify-content: center; }
}

.hero-intro {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--gold-light);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}

.about-featured {
  margin-bottom: 0.75rem;
}

.about-featured img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center top;
  border-radius: 4px;
  border: 3px solid var(--gold);
  display: block;
}

.fit-section {
  background: var(--white);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.fit-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}

.fit-list li {
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  background: var(--cream);
  border-left: 4px solid var(--pink-deep);
  color: var(--text);
}

.faq-section {
  background: var(--cream);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid #f0d4e0;
  padding: 0 1.25rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 500;
  padding: 1rem 0;
  color: var(--plum);
}

.faq-item p {
  padding-bottom: 1rem;
  color: var(--muted);
  margin: 0;
}

.about-section .about-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 0.75rem;
}

.about-section .about-photos img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: bottom center;
  display: block;
}


.about-single-photo {
  margin-bottom: 2rem;
  text-align: center;
}

.about-single-photo img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: inline-block;
  vertical-align: bottom;
  border-radius: 4px;
  border: 3px solid var(--gold);
  object-fit: cover;
  object-position: center center;
}

.hero-photo img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}


