/* ============================================
   Prince Barbershop - Main Stylesheet
   Black + Warm Gold + Ivory editorial system
   ============================================ */

:root {
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-ui: 'Montserrat', Arial, sans-serif;
  --font-script: 'Allura', cursive;

  --color-bg: #050505;
  --color-bg-elevated: #0b0b0b;
  --color-card: #11100f;
  --color-card-warm: #1b140d;
  --color-gold: #d89a4e;
  --color-gold-dark: #a86d32;
  --color-ivory: #f3ede4;
  --color-body: #d8d2ca;
  --color-muted: #9d9790;
  --color-whatsapp: #25d366;
  --color-error: #d9665b;
  --border-gold: rgba(216, 154, 78, 0.68);
  --divider-gold: rgba(216, 154, 78, 0.38);

  --container: 1344px;
  --header-height: 92px;
  --section-y: 88px;
  --gutter: 32px;
  --radius-card: 8px;
  --radius-button: 2px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-body);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--color-gold); text-decoration: none; transition: color 180ms ease; }
a:hover { color: var(--color-ivory); }

.container {
  width: min(var(--container), calc(100% - 96px));
  margin-inline: auto;
}

h1, h2, h3, h4 {
  margin: 0;
  color: var(--color-ivory);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
}

h1 { font-size: clamp(42px, 5vw, 72px); line-height: 0.98; letter-spacing: -0.02em; }
h2 { font-size: clamp(32px, 3.4vw, 48px); line-height: 1.08; }
h3 { font-size: clamp(25px, 2.2vw, 30px); line-height: 1.15; font-weight: 500; }

section { padding-block: var(--section-y); }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* ============ Utility ============ */
.eyebrow {
  color: var(--color-gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.script {
  color: var(--color-gold);
  font-family: var(--font-script);
  font-size: clamp(38px, 4vw, 48px);
  line-height: 1.05;
}

.text-center { text-align: center; }
.text-muted { color: var(--color-muted); }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

.max-680 { max-width: 680px; }
.max-760 { max-width: 760px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.justify-center { justify-content: center; }

/* ============ Buttons ============ */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid var(--color-gold);
  border-radius: var(--radius-button);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button--primary { background: var(--color-gold); color: var(--color-bg); }
.button--primary:hover { background: var(--color-gold-dark); color: var(--color-ivory); box-shadow: 0 4px 20px rgba(216, 154, 78, 0.3); }

.button--secondary { background: transparent; color: var(--color-gold); }
.button--secondary:hover { background: rgba(216, 154, 78, 0.12); color: var(--color-ivory); }

.button:hover { transform: translateY(-2px); }
.button:focus-visible { outline: 2px solid var(--color-ivory); outline-offset: 3px; }

.button--whatsapp { color: var(--color-whatsapp); border-color: rgba(37, 211, 102, 0.5); }
.button--whatsapp:hover { background: rgba(37, 211, 102, 0.1); color: var(--color-whatsapp); }

.whatsapp-icon { color: var(--color-whatsapp); }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--divider-gold);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img { height: 44px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: var(--color-body);
  font-size: 13px;
  font-weight: 500;
  position: relative;
  padding: 8px 0;
}

.nav-link:hover { color: var(--color-gold); }

.nav-link.active {
  color: var(--color-gold);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--color-gold);
}

.nav-link--cta {
  border: 1px solid var(--color-gold);
  padding: 10px 20px;
  color: var(--color-gold);
  border-radius: var(--radius-button);
}

.nav-link--cta:hover {
  background: rgba(216, 154, 78, 0.12);
}

.nav-link--cta.active { color: var(--color-gold); }
.nav-link--cta.active::after { display: none; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-gold);
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ Hero ============ */
.hero {
  position: relative;
  padding-block: var(--section-y);
  overflow: hidden;
  border-bottom: 1px solid var(--color-gold);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: stretch;
}

.hero-copy .script { display: block; margin-top: 20px; margin-bottom: 24px; }
.hero-title { margin: 0 0 24px; }
.hero-subtitle {
  font-size: 18px;
  color: var(--color-body);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-info {
  margin-top: 0;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-info::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  background: var(--color-gold);
  border-radius: 50%;
}

.hero-cta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  border-radius: var(--radius-card);
  object-fit: cover;
  border: 1px solid var(--border-gold);
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-card);
  box-shadow: inset 0 0 80px rgba(5, 5, 5, 0.6);
  pointer-events: none;
}

/* ============ Section headers ============ */
.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-title { margin: 8px 0 0; }

.section-sub {
  color: var(--color-muted);
  font-size: 15px;
  max-width: 600px;
  margin: 16px auto 20px;
}

/* ============ Cards ============ */
.card {
  overflow: hidden;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, var(--color-card-warm), var(--color-card));
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: var(--color-gold);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.card-media { overflow: hidden; }
.card-media img { width: 100%; object-fit: cover; transition: transform 400ms ease; }
.card:hover .card-media img { transform: scale(1.04); }

.card-body { padding: 32px; }

.card-title { margin: 0 0 12px; }
.card-text { color: var(--color-muted); margin-bottom: 20px; }

/* ============ Grids ============ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gutter); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gutter); }

/* ============ Services ============ */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }

.service-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: 0;
  border: 0.6px solid var(--color-gold);
  background: transparent;
}

.service-card:hover {
  transform: none;
  border-color: var(--color-gold);
  box-shadow: none;
  background: rgba(216, 154, 78, 0.06);
}

.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
}

.service-icon svg { width: 32px; height: 32px; }

.service-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--color-ivory);
  margin-bottom: 8px;
}

.service-desc { color: var(--color-muted); font-size: 14px; }

.service-price {
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin: 12px 0 0;
}

/* ============ Product cards ============ */
.product-card .card-media { aspect-ratio: 4 / 5; }
.product-card .card-media img { height: 100%; }

.products .product-card .card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.products .product-card .card-title,
.products .product-card .card-text,
.products .product-card .button { text-align: center; }
.products .product-card .card-text { font-size: 12px; }

.product-features {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--color-body);
  margin-bottom: 8px;
}

.product-features li::before {
  content: '';
  flex: none;
  width: 6px;
  height: 6px;
  margin-top: 7px;
  background: var(--color-gold);
  border-radius: 50%;
}

.product-specs {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 20px;
  font-size: 14px;
}

.product-specs th, .product-specs td {
  padding: 8px 12px;
  border: 1px solid var(--divider-gold);
  text-align: left;
}

.product-specs th {
  color: var(--color-gold);
  font-weight: 600;
  font-family: var(--font-ui);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.08em;
  background: rgba(216, 154, 78, 0.06);
  width: 40%;
}

.product-specs td { color: var(--color-body); }

.product-price {
  color: var(--color-gold);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* ============ Locations ============ */
.location-card .card-media { aspect-ratio: 16 / 10; }
.location-card .card-media img { height: 100%; }

.locations .location-card .card-text { font-size: 12px; }

.locations .location-card .card-body {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px 32px;
}

.locations .location-icon {
  width: 44px;
  height: 44px;
  margin: -22px 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  border: 0.5px solid var(--color-gold);
  border-radius: 50%;
  background: #1b140d;
  position: relative;
  z-index: 2;
}
.locations .location-icon svg { width: 22px; height: 22px; }

.location-meta {
  margin: 16px 0;
  font-size: 14px;
  color: var(--color-muted);
}

.location-meta p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.location-meta svg { flex: none; margin-top: 2px; }

.location-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
}

.amenity {
  text-align: center;
  padding: 24px 16px;
  border: 1px solid var(--divider-gold);
  border-radius: 0;
  background: transparent;
}

.amenity strong { display: block; color: var(--color-ivory); font-size: 15px; font-weight: 600; margin-bottom: 4px; font-family: var(--font-ui); }

/* ============ About ============ */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-story-text {
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.55;
  color: var(--color-body);
  max-width: 760px;
}

.about-story-text p { margin-bottom: 1.2em; }

.about-story-media img { border-radius: var(--radius-card); border: 1px solid var(--border-gold); }

.founder-section {
  border-top: 1px solid var(--color-gold);
  border-bottom: 1px solid var(--color-gold);
}

.founder-quote {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 16px 0;
}

.founder-quote blockquote {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.4;
  color: var(--color-ivory);
}

.founder-quote figcaption {
  color: var(--color-gold);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 11px;
}

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gutter); }

.value-card { text-align: left; }
.value-card .card-media { aspect-ratio: 4 / 3; }
.value-card .card-media img { height: 100%; }

.about-journey { padding-top: 2px; }

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.journey-card {
  text-align: center;
  padding: 30px 24px;
  border-radius: 0;
  border: 0.75px solid var(--color-gold);
  background: transparent;
}

.journey-card:hover {
  transform: none;
  border-color: var(--color-gold);
  box-shadow: none;
}

.journey-value {
  font-family: var(--font-display);
  color: var(--color-gold);
  font-size: 29px;
  margin-bottom: 1px;
}

.journey-label {
  font-family: var(--font-ui);
  color: var(--color-muted);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.milestones {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  text-align: center;
}

.milestone {
  padding: 0 32px;
  position: relative;
}

.milestone:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 48px;
  background: var(--divider-gold);
  transform: translateY(-50%);
}

.milestone-year {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.milestone-label { color: var(--color-ivory); font-weight: 500; font-size: 15px; }

/* ============ Book ============ */
.book-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.book-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-card);
  background: transparent;
}

.book-step.active { border-color: var(--color-gold); }

.book-step-number {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-bg);
  font-weight: 700;
  font-size: 15px;
}

.book-step-label { color: var(--color-ivory); font-weight: 600; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; }

.book-step-arrow { color: var(--color-gold); font-size: 20px; }

.book-note {
  text-align: center;
  color: var(--color-muted);
  font-size: 14px;
  margin-top: 32px;
}

/* ============ CTA banner ============ */
.cta-section {
  border-top: 1px solid var(--color-gold);
  background: linear-gradient(180deg, var(--color-card-warm), var(--color-card));
}

.cta-section--gradient {
  background: linear-gradient(180deg, var(--color-card-warm), var(--color-card));
}

.cta-banner {
  text-align: center;
}

.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p { color: var(--color-muted); max-width: 560px; margin: 0 auto 32px; }
.cta-banner .eyebrow { color: var(--color-gold); }

/* ============ Footer ============ */
.site-footer {
  background: transparent;
  border-top: 1px solid var(--divider-gold);
  padding-top: 64px;
  margin-top: 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-tagline { margin: 12px 0; }
.footer-desc { color: var(--color-muted); font-size: 14px; }

.footer-heading {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li { margin-bottom: 4px; }
.footer-links a { color: var(--color-body); font-size: 12px; }
.footer-links a:hover { color: var(--color-gold); }

.footer-location { margin-bottom: 20px; }
.footer-location strong { color: var(--color-ivory); font-weight: 600; display: block; margin-bottom: 4px; }
.footer-location p { color: var(--color-muted); font-size: 14px; margin-bottom: 4px; }

.footer-cta { margin-top: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(216, 154, 78, 0.15);
  padding-block: 20px;
}

.footer-bottom p {
  color: var(--color-muted);
  font-size: 13px;
  text-align: center;
}

.footer-tagline-inline { color: var(--color-gold); font-family: var(--font-script); font-size: 16px; }
.footer-bottom-sep { color: var(--color-gold); }

/* ============ 404 ============ */
.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 88px 20px;
}

.error-code {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 600;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 16px;
}

/* ============ Divider ornament ============ */
.section-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}

.section-ornament .line {
  width: 192px;
  height: 1px;
  background: var(--divider-gold);
}

.section-ornament .line:first-child {
  background: linear-gradient(90deg, rgba(216, 154, 78, 0), rgba(216, 154, 78, 0.38));
}

.section-ornament .line:last-child {
  background: linear-gradient(90deg, rgba(216, 154, 78, 0.38), rgba(216, 154, 78, 0));
}

.section-ornament .mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.section-ornament .mark img { display: block; width: 22px; height: auto; }

/* ============ Focus visible (a11y) ============ */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--color-ivory);
  outline-offset: 3px;
}

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


/* ============ Finish Guide (products) ============ */
.finish-guide {
  background: #0d0a08;
}

.finish-head {
  text-align: center;
  margin-bottom: 40px;
}

.finish-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.finish-crown {
  color: #c59a5f;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.finish-line {
  width: 200px;
  height: 1px;
}

.finish-line--left {
  background: linear-gradient(90deg, rgba(197,154,95,0), rgba(197,154,95,0.55));
}

.finish-line--right {
  background: linear-gradient(90deg, rgba(197,154,95,0.55), rgba(197,154,95,0));
}

.finish-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 42px;
  letter-spacing: 0.12em;
  color: #f5f1eb;
  margin: 0;
}

.finish-subtitle {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 15px;
  color: #9a9590;
  text-align: center;
  margin: 12px 0 0;
}

.finish-table {
  border: 1px solid rgba(197,154,95,0.35);
  border-radius: 8px;
  background: #121010;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.finish-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
}

.finish-row > div {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 13px;
  color: #c2bdb8;
}

.finish-row > .finish-product {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 19px;
  color: #f5f1eb;
}

.finish-row--head {
  background: #251d17;
  border-bottom: 1px solid rgba(197,154,95,0.25);
}

.finish-row.finish-row--head > div {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #c59a5f;
  padding: 18px 28px;
}

.finish-row:not(.finish-row--head) {
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 180ms ease;
}

.finish-row:not(.finish-row--head):last-child {
  border-bottom: none;
}

.finish-row:not(.finish-row--head):hover {
  background: rgba(197,154,95,0.05);
}

@media (max-width: 767px) {
  .finish-row--head { display: none; }
  .finish-row { grid-template-columns: 1fr 1fr; }
  .finish-row .finish-product { grid-column: 1 / -1; }
  .finish-title { font-size: 30px; }
  .finish-line { width: 90px; }
}

/* ============ Google Reviews (home) ============ */
.reviews-carousel {
  position: relative;
}

.reviews-track {
  display: flex;
  gap: var(--gutter);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 12px;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 400px;
  width: 400px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  text-align: left;
  scroll-snap-align: start;
}

.review-stars {
  color: var(--color-gold);
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 14px;
}

.review-text {
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-ivory);
  margin: 0 0 20px;
  flex: 1;
}

.review-author {
  color: var(--color-muted);
  font-family: var(--font-ui);
  font-size: 14px;
  letter-spacing: 0.05em;
  margin: 0;
}

.review-author strong { color: var(--color-gold); font-weight: 400; }

.reviews-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  background: rgba(5, 5, 5, 0.75);
  color: var(--color-gold);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 180ms ease, opacity 180ms ease;
}

.reviews-btn--prev { left: -14px; }
.reviews-btn--next { right: -14px; }

.reviews-btn:hover:not(:disabled) { background: rgba(216, 154, 78, 0.15); }
.reviews-btn:disabled { opacity: 0.35; cursor: default; }

@media (max-width: 767px) {
  .reviews-track { scroll-snap-type: x proximity; }
  .review-card { flex-basis: 86vw; width: 86vw; padding: 24px 20px; }
  .reviews-btn { width: 38px; height: 38px; font-size: 18px; }
  .reviews-btn--prev { left: -6px; }
  .reviews-btn--next { right: -6px; }
}
/* ============ Google icon di section title ============ */
.title-google-icon {
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
  color: var(--color-gold);
  width: 22px;
  height: 22px;
}

/* ============ Watermark Marquee ============ */
.dev-watermark-marquee {
  position: sticky;
  top: var(--header-height);
  z-index: 90;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
  background: #c53636;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
}

.marquee-text {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  padding-right: 80px;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 767px) {
  .marquee-text { font-size: 11px; padding-right: 40px; }
}

/* ============ Locations hero subtitle center ============ */
.locations-hero .hero-subtitle {
  text-align: center;
}

/* ============ Revisi halaman About ============ */
.about-values .card-title { margin: 0 0 7px; }
.value-card .card-text { font-size: 11px; }
.value-card .card-body { padding: 24px; }
.value-card .card-media { aspect-ratio: 1 / 1; }
.values-grid { gap: 16px; }
.journey-card { border: 0.5px solid var(--color-gold); }
.cta-section--gradient .cta-banner .eyebrow { font-size: 16px; }
.cta-section--gradient .cta-banner p:not(.eyebrow) { font-size: 24px; }

/* ============ Revisi About (r2) ============ */
.value-card .card-text { font-size: 12px; }
.value-card .card-body { padding: 24px; }
.value-card .card-media { aspect-ratio: 2 / 1; }
.journey-card { border: 0.35px solid var(--color-gold); }
.cta-section--gradient .cta-banner .eyebrow { font-size: 12px; margin-bottom: 16px; }
.cta-section--gradient .cta-banner p:not(.eyebrow) { font-size: 24px; font-family: var(--font-display); }

/* ============ Revisi Locations page ============ */
.locations-hero .hero-subtitle {
  text-align: center;
  margin-inline: auto;
}

.location-card:hover {
  transform: none;
  box-shadow: none;
}

/* ============ Revisi Finish Guide (products) ============ */
.finish-title { font-family: var(--font-display); }
.finish-row > .finish-product { font-family: var(--font-display); }
.finish-row.finish-row--head > div { font-size: 13px; }

/* ============ Hero full-bleed (tanpa border) ============ */
.hero-copy { align-self: center; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  border-radius: 0;
}
.hero-media::after { display: none; }

/* ============ Revisi spacing & typography ============ */
.book-flow { margin-top: 30px; margin-bottom: 30px; }
.grid-2 { gap: 20px; }
.card-text { font-size: 13px; }

/* ============ Revisi CTA spacing ============ */
.cta-banner .eyebrow { margin-bottom: 16px; }
.cta-banner h2 { margin-bottom: 32px; }

/* ============ CTA spacing (mobile only) ============ */
@media (max-width: 767px) {
  .cta-banner .eyebrow { margin-bottom: 12px; }
  .cta-banner h2 { margin-bottom: 16px; }
}

/* ============ Footer social icons ============ */
.footer-socials { display: flex; gap: 14px; }
.footer-socials li { margin-bottom: 0; }
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  color: var(--color-body);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}
.footer-socials a:hover { color: var(--color-gold); border-color: var(--color-gold); background: rgba(216,154,78,0.08); }

/* ============ Review card: hapus hover lift ============ */
.review-card:hover { transform: none; box-shadow: none; }

/* ============ Reviews rated icon ============ */
.reviews-rated-icon {
  display: block;
  width: 313px;
  height: auto;
  margin: 0 auto 8px;
}

@media (max-width: 767px) {
  .reviews-rated-icon { width: 200px; }
}

/* ============ Locations card-title ============ */
.branches-list .location-card .card-title { font-size: 25px; }

/* ============ Hero location & subtitle ============ */
.hero-location {
  font-family: var(--font-ui);
  font-size: 12px;
  color: #D89A4E;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hero-subtitle { font-size: 14px; }

.hero-info { font-size: 10px; }

.hero-title { font-size: 42px; }

/* ============ Hero about paragraphs ============ */
.hero-about {
  margin-top: 40px;
  max-width: 820px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.6;
}
.hero-about p { margin-bottom: 16px; }
.hero-about p:last-child { margin-bottom: 0; }

.hero-about { max-width: none; }

/* ============ Hero tagline ============ */
.hero-tagline {
  display: block;
  text-align: center;
  font-size: 42px;
  margin-top: 28px;
}

/* ============ Service name ============ */
.service-name {
  font-size: 18px;
  color: #9D9790;
  padding: 0;
}

.hero-subtitle { color: #9D9790; }

.hero-about p { font-family: var(--font-display); }

.hero-about p { font-size: 18px; margin-bottom: 5px; }

.service-name { margin-bottom: 0; }

.footer-tagline.script { font-size: 35px; }

/* ============ Why Prince ============ */
.why-prince { text-align: center; padding-bottom: 60px; }
.why-prince-text {
  font-family: var(--font-display);
  font-size: 22px;
  color: #9D9790;
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.5;
}
.why-prince-actions .button { width: auto; min-width: 220px; }

.hero { padding-block: 4px; }

.hero { padding-top: 4px; padding-bottom: 50px; }

.hero-title { font-size: 72px; }
