/* Global typography & layout */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; }
h1 { font-size: var(--h1-desktop); letter-spacing: -1.92px; }
h2 { font-size: var(--h2-desktop); font-style: italic; }
h3 { font-size: var(--h3-desktop); }

.micro-label {
  font-family: var(--font-body);
  font-size: var(--micro);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* Section defaults */
.section { padding: var(--section-pad) 24px; }
.section--cream { background: var(--color-cream); color: var(--color-bg); }

/* Scroll fade-in — all sections below hero start hidden */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease-out, transform 700ms ease-out;
}
.fade-in.visible { opacity: 1; transform: none; }

/* Divider */
.divider {
  text-align: center;
  color: var(--color-gold);
  letter-spacing: 0.3em;
  padding: 40px 0;
  font-size: 14px;
  font-family: var(--font-body);
}

/* Plain text links in main content — gold, no class required */
main a:not(.btn-cta):not([class]) { color: var(--color-gold); }

/* Gold text link */
.link-gold {
  color: var(--color-gold);
  transition: opacity var(--transition);
}
.link-gold:hover { opacity: 0.7; }

/* CTA button — gold border, transparent bg */
.btn-cta {
  display: inline-block;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: var(--micro);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: background var(--transition), color var(--transition);
}
.btn-cta:hover { background: var(--color-gold); color: var(--color-bg); }

/* Hover states */
a:hover, button:hover { transition: color var(--transition), opacity var(--transition); }
img:hover { opacity: 0.7; transition: opacity var(--transition); }

/* Responsive type */
@media (max-width: 810px) {
  h1 { font-size: 56px; }
  h2 { font-size: 40px; }
  h3 { font-size: 26px; }
}
@media (max-width: 480px) {
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
  h3 { font-size: 24px; }
  .section { padding: 60px 20px; }
}

/* Social proof strip — rendered by js/social-proof.js on style + city pages */
#sp-strip {
  background: rgba(201, 168, 76, 0.04);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  padding: 20px 40px;
}
.sp-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.sp-block {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.sp-block:hover { opacity: 0.75; }
.sp-g { width: 32px; height: 32px; flex-shrink: 0; }
.sp-ig-icon { width: 28px; height: 28px; fill: var(--color-ivory); flex-shrink: 0; }
.sp-text { display: flex; flex-direction: column; gap: 3px; }
.sp-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  line-height: 1;
  color: var(--color-ivory);
}
.sp-stars { display: inline-flex; gap: 2px; }
.sp-star { width: 14px; height: 14px; fill: #FBBC04; }
.sp-handle {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-ivory);
  letter-spacing: 0.02em;
}
.sp-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.sp-divider {
  width: 1px;
  height: 44px;
  background: rgba(244, 239, 231, 0.12);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  #sp-strip { padding: 18px 20px; }
  .sp-inner { gap: 20px; }
  .sp-divider { display: none; }
  .sp-block { gap: 10px; }
}
