/* ==========================================================
   CAFE ROBUSTA — shared stylesheet
   Light, airy design. Edit colors below to change the whole site.
   ========================================================== */
:root {
  --ivory:      #FBF7EE;              /* page background */
  --ivory-2:    #F3ECDC;              /* alternate section background */
  --ink:        #22382C;              /* main text — deep leaf green */
  --ink-soft:   rgba(34, 56, 44, 0.64);
  --gold:       #A0803E;              /* accent — from the logo tan */
  --tan:        #CBB382;
  --blue:       #14304A;              /* prussian — from the logo */
  --line:       rgba(34, 56, 44, 0.16);
  --white:      #FFFDF8;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--ivory);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
::selection { background: var(--tan); color: var(--blue); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ============ TYPE ============ */
.kicker {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--gold);
}
h1.display, h2.display, .display {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  text-transform: lowercase;
  line-height: 1.04;
  color: var(--ink);
}
.display em { font-style: italic; color: var(--gold); }
.lede {
  font-size: 17px; line-height: 2; font-weight: 300;
  color: var(--ink-soft);
}

/* ============ SMALL INLINE ICONS (phone / instagram) ============ */
.icn {
  display: inline-block; width: 15px; height: 15px;
  vertical-align: -2px; margin-right: 9px;
  stroke: var(--gold); fill: none; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round;
}

/* ============ ANNOUNCEMENT BAR ============ */
.announce {
  background: var(--blue); color: rgba(251,247,238,0.92);
  text-align: center; padding: 9px 16px;
  font-size: 10.5px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
}
.announce a { color: var(--tan); }

/* ============ HEADER ============ */
header.site {
  position: sticky; top: 0; z-index: 200;
  background: rgba(251,247,238,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 44px; max-width: 1360px; margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 48px; height: auto; }
.brand-text .top {
  font-size: 8.5px; font-weight: 500;
  letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--ink-soft);
}
.brand-text .main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 600; text-transform: lowercase;
  color: var(--ink); line-height: 1.05;
}
.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; font-weight: 500; text-transform: lowercase;
  color: var(--ink); letter-spacing: 0.02em;
  padding-bottom: 3px; border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }
.nav-cta {
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--ink); border: 1px solid var(--ink);
  padding: 12px 24px; border-radius: 999px;
  transition: background 0.25s, color 0.25s;
}
.nav-cta:hover { background: var(--ink); color: var(--ivory); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.nav-hamburger span { display: block; width: 25px; height: 1.5px; background: var(--ink); }

/* drawer (mobile) */
.nav-overlay { position: fixed; inset: 0; background: rgba(34,56,44,0.4); z-index: 250; opacity: 0; pointer-events: none; transition: opacity 0.25s; }
.nav-overlay.visible { opacity: 1; pointer-events: all; }
.nav-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: 300px;
  background: var(--ivory); z-index: 300; padding: 96px 38px 40px;
  border-left: 1px solid var(--line);
  transform: translateX(100%); transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.nav-drawer.open { transform: translateX(0); }
.nav-drawer ul { list-style: none; }
.nav-drawer ul li a {
  display: block; padding: 17px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 500; text-transform: lowercase;
  color: var(--ink); border-bottom: 1px solid var(--line);
  transition: color 0.2s;
}
.nav-drawer ul li a:hover { color: var(--gold); }
.drawer-close { position: absolute; top: 24px; right: 28px; font-size: 24px; background: none; border: none; cursor: pointer; color: var(--ink-soft); }

/* ============ PAGE HERO — how every page opens ============ */
.hero {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.hero.tall { min-height: 86vh; }
.hero.short { min-height: 54vh; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,35,26,0.34), rgba(20,35,26,0.44));
}
.hero-content { position: relative; z-index: 2; padding: 120px 24px; max-width: 900px; }
.hero-content .kicker { color: var(--tan); display: block; margin-bottom: 24px; }
.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; text-transform: lowercase; line-height: 1.02;
  color: var(--ivory);
  font-size: clamp(52px, 8.5vw, 110px);
}
.hero-content h1 em { font-style: italic; color: var(--tan); }
.hero-content p.sub {
  margin-top: 20px; font-size: 14px; letter-spacing: 0.06em;
  color: rgba(251,247,238,0.85);
}
.hero-actions { margin-top: 40px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  padding: 16px 36px; border-radius: 999px;
  border: 1px solid var(--ink); color: var(--ink);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.btn:hover { background: var(--ink); color: var(--ivory); }
.btn.solid { background: var(--ink); color: var(--ivory); }
.btn.solid:hover { background: var(--gold); border-color: var(--gold); }
.btn.ghost { border-color: rgba(251,247,238,0.7); color: var(--ivory); }
.btn.ghost:hover { background: var(--ivory); color: var(--ink); border-color: var(--ivory); }
.btn.gold { background: var(--gold); border-color: var(--gold); color: var(--ivory); }
.btn.gold:hover { background: var(--ink); border-color: var(--ink); }

/* ============ SECTIONS ============ */
.section { padding: 120px 44px; }
.section.tight { padding: 96px 44px; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto; }
.section-head .kicker { display: block; margin-bottom: 20px; }
.section-head h2.display { font-size: clamp(38px, 5vw, 64px); }
.section-head .lede { margin-top: 28px; }

/* ============ ARCH IMAGES (signature) ============ */
.arch { border-radius: 400px 400px 6px 6px; overflow: hidden; }
.arch img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.arch:hover img { transform: scale(1.03); }

/* story split */
.story {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 88px;
  max-width: 1180px; margin: 0 auto; align-items: center;
}
.story .arch { aspect-ratio: 4 / 5; }
.story-body .kicker { display: block; margin-bottom: 20px; }
.story-body h2.display { font-size: clamp(38px, 4.6vw, 60px); }
.story-body .lede { margin-top: 26px; }
.story-body .actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

/* arch trio band */
.trio {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  max-width: 1180px; margin: 72px auto 0;
}
.trio figure { text-align: center; }
.trio .arch { aspect-ratio: 3 / 4; }
.trio figcaption {
  margin-top: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-style: italic; text-transform: lowercase;
  color: var(--ink-soft);
}

/* ============ FEATURE SPLIT ============ */
.feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 88px;
  max-width: 1180px; margin: 0 auto; align-items: center;
}
.feature.flip .feature-img { order: 2; }
.feature-img .arch { aspect-ratio: 4 / 5; }
.feature-body .kicker { display: block; margin-bottom: 20px; }
.feature-body h2.display { font-size: clamp(36px, 4.4vw, 56px); }
.feature-body .lede { margin-top: 24px; font-size: 16px; }
.feature-body .actions { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }

.price-list { list-style: none; margin-top: 32px; }
.price-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 20px;
  padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 14.5px;
}
.price-list li:first-child { border-top: 1px solid var(--line); }
.price-list .what { font-weight: 400; }
.price-list .cost {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 19px; color: var(--gold); white-space: nowrap;
}
.tick-list { list-style: none; margin-top: 28px; }
.tick-list li { display: flex; align-items: center; gap: 14px; padding: 10px 0; font-size: 15px; }
.tick-list svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ============ REVIEWS ============ */
.reviews { background: var(--ivory-2); }
.review-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1180px; margin: 64px auto 0; }
.review {
  background: var(--white); border: 1px solid var(--line); border-radius: 6px;
  padding: 40px 34px; text-align: center;
}
.review .stars { color: var(--gold); letter-spacing: 5px; font-size: 13px; margin-bottom: 20px; }
.review p.quote {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 20px; line-height: 1.65; margin-bottom: 22px;
}
.review .who { font-size: 10px; font-weight: 500; letter-spacing: 0.28em; text-transform: uppercase; color: var(--ink-soft); }

/* ============ VISIT ============ */
.visit-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; max-width: 1180px; margin: 64px auto 0; align-items: start; }
.visit-info h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 600;
  margin-bottom: 14px;
}
.visit-info p { font-size: 15px; line-height: 2; color: var(--ink-soft); margin-bottom: 22px; }
.visit-info p a { color: var(--ink); border-bottom: 1px solid var(--gold); padding-bottom: 1px; }
.visit-info p a:hover { color: var(--gold); }
.hours-chip {
  display: inline-block; margin-bottom: 24px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ivory); background: var(--blue);
  padding: 11px 22px; border-radius: 999px;
}
.visit-map { border-radius: 6px; overflow: hidden; border: 1px solid var(--line); }
.visit-map iframe { width: 100%; height: 440px; border: 0; display: block; }
.map-note { background: var(--white); padding: 16px 22px; font-size: 13.5px; color: var(--ink-soft); border-top: 1px solid var(--line); }
.map-note a { color: var(--gold); border-bottom: 1px solid var(--gold); }

/* ============ INSTAGRAM (the “follow us” section) ============ */
.insta { text-align: center; padding: 110px 0 0; }
.insta .kicker { display: block; margin-bottom: 20px; }
.insta h2.display { font-size: clamp(38px, 5vw, 62px); }
.insta .handle {
  display: inline-block; margin-top: 18px;
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 22px; color: var(--gold);
  border-bottom: 1px solid var(--gold); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.insta .handle:hover { color: var(--ink); border-color: var(--ink); }
.insta-grid {
  margin-top: 56px;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px;
  padding: 0 6px;
}
.insta-item { position: relative; display: block; overflow: hidden; aspect-ratio: 1 / 1; border-radius: 4px; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.insta-item:hover img { transform: scale(1.06); }
.insta-item .veil {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(20,48,74,0.45); opacity: 0; transition: opacity 0.3s;
}
.insta-item:hover .veil { opacity: 1; }
.insta-item .veil svg { width: 28px; height: 28px; stroke: var(--ivory); fill: none; stroke-width: 1.6; }

/* ============ SIGNUP ============ */
.signup { background: var(--ivory-2); text-align: center; }
.signup h2.display { font-size: clamp(34px, 4.4vw, 56px); margin-bottom: 14px; }
.signup p.sub { font-size: 14.5px; color: var(--ink-soft); margin-bottom: 40px; }
.signup-form { display: flex; gap: 14px; max-width: 520px; margin: 0 auto; }
.signup-form input {
  flex: 1; padding: 14px 4px;
  font-family: 'Jost', sans-serif; font-size: 15px; font-weight: 300;
  background: transparent; color: var(--ink);
  border: none; border-bottom: 1px solid var(--ink); outline: none;
}
.signup-form input::placeholder { color: var(--ink-soft); }
.signup-form input:focus { border-bottom-color: var(--gold); }
.signup-form button {
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  padding: 15px 32px; border-radius: 999px;
  background: var(--ink); color: var(--ivory); border: 1px solid var(--ink);
  cursor: pointer; transition: background 0.25s, border-color 0.25s;
}
.signup-form button:hover { background: var(--gold); border-color: var(--gold); }

/* ============ FOOTER ============ */
footer.site {
  border-top: 1px solid var(--line);
  padding: 88px 44px 44px; background: var(--ivory);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; max-width: 1180px; margin: 0 auto 64px; }
.footer-brand img { width: 56px; height: auto; margin-bottom: 18px; }
.footer-brand .top { font-size: 8.5px; font-weight: 500; letter-spacing: 0.34em; text-transform: uppercase; color: var(--ink-soft); }
.footer-brand .main {
  font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 600;
  text-transform: lowercase; margin: 4px 0 14px;
}
.footer-brand p { font-size: 13.5px; line-height: 1.9; color: var(--ink-soft); max-width: 280px; }
.footer-col h4 { font-size: 10px; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a, .footer-col span {
  font-family: 'Cormorant Garamond', serif; font-size: 18px;
  text-transform: lowercase; color: var(--ink);
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  max-width: 1180px; margin: 0 auto;
}
.footer-bottom p { font-size: 11px; letter-spacing: 0.08em; color: var(--ink-soft); }

/* ============ RESPONSIVE ============ */
@media (max-width: 940px) {
  .nav-inner { padding: 12px 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .section, .section.tight { padding: 80px 20px; }
  .hero.tall { min-height: 74vh; }
  .hero.short { min-height: 46vh; }
  .hero-content { padding: 90px 20px; }
  .story, .feature { grid-template-columns: 1fr; gap: 44px; }
  .feature.flip .feature-img { order: 0; }
  .story .arch, .feature-img .arch { aspect-ratio: 4 / 4.4; }
  .trio { grid-template-columns: 1fr; gap: 44px; margin-top: 56px; }
  .review-row { grid-template-columns: 1fr; margin-top: 48px; }
  .visit-grid { grid-template-columns: 1fr; gap: 44px; margin-top: 48px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .signup-form { flex-direction: column; }
  .signup-form button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}

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

/* ============ WHATSAPP ORDERING ============ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 400;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(34,56,44,0.28);
  transition: transform 0.15s;
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

.add-btn {
  font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); background: transparent;
  border: 1px solid var(--gold); border-radius: 999px;
  padding: 5px 14px; margin-left: 14px; cursor: pointer;
  white-space: nowrap; transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
}
.add-btn:hover { background: var(--gold); color: var(--white); }
.add-btn.added { background: var(--ink); border-color: var(--ink); color: var(--white); }

.cart-bar {
  position: fixed; left: 50%; bottom: 22px; transform: translate(-50%, 140%);
  z-index: 401; display: flex; align-items: center; gap: 18px;
  background: var(--ink); color: var(--white);
  border-radius: 999px; padding: 14px 16px 14px 26px;
  box-shadow: 0 10px 30px rgba(34,56,44,0.35);
  transition: transform 0.25s ease; max-width: calc(100vw - 110px);
}
.cart-bar.visible { transform: translate(-50%, 0); }
.cart-bar .summary { font-size: 14px; font-weight: 400; white-space: nowrap; }
.cart-bar .summary em { font-family: 'Cormorant Garamond', serif; font-style: italic; color: var(--tan); font-size: 17px; }
.cart-bar button {
  font-family: 'Jost', sans-serif; font-size: 12px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: #25D366; color: #fff; border: none; border-radius: 999px;
  padding: 11px 20px; cursor: pointer; white-space: nowrap;
}
.cart-bar button:hover { filter: brightness(1.06); }

.cart-overlay {
  position: fixed; inset: 0; background: rgba(34,56,44,0.4);
  z-index: 500; opacity: 0; pointer-events: none; transition: opacity 0.2s;
}
.cart-overlay.visible { opacity: 1; pointer-events: auto; }
.cart-panel {
  position: fixed; right: 0; top: 0; bottom: 0; width: min(420px, 100vw);
  background: var(--ivory); z-index: 501; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.25s ease;
  box-shadow: -12px 0 40px rgba(34,56,44,0.2);
}
.cart-panel.open { transform: translateX(0); }
.cart-panel .cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 28px 20px; border-bottom: 1px solid var(--line);
}
.cart-panel .cart-head h3 {
  font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: 26px; text-transform: lowercase; font-style: italic;
}
.cart-panel .cart-close {
  background: none; border: none; font-size: 20px; cursor: pointer; color: var(--ink);
  padding: 6px;
}
.cart-items { flex: 1; overflow-y: auto; padding: 8px 28px; }
.cart-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; padding: 15px 0; border-bottom: 1px solid var(--line);
}
.cart-row .info { flex: 1; min-width: 0; }
.cart-row .nm { font-size: 15px; }
.cart-row .pr { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 16px; color: var(--gold); }
.qty { display: flex; align-items: center; gap: 4px; }
.qty button {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--white);
  font-size: 15px; cursor: pointer; color: var(--ink); line-height: 1;
}
.qty button:hover { border-color: var(--gold); color: var(--gold); }
.qty .q { min-width: 24px; text-align: center; font-size: 14px; font-weight: 400; }
.cart-empty { text-align: center; color: var(--ink-soft); font-size: 14px; padding: 60px 0; line-height: 2; }
.cart-foot { padding: 20px 28px 28px; border-top: 1px solid var(--line); background: var(--ivory-2); }
.cart-foot .total-line {
  display: flex; justify-content: space-between; font-size: 15px; margin-bottom: 14px;
}
.cart-foot .total-line strong { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 20px; color: var(--gold); font-weight: 500; }
.order-type { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.order-type label {
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px;
  cursor: pointer; color: var(--ink-soft); background: var(--white);
}
.order-type input { display: none; }
.order-type input:checked + span { color: var(--gold); }
.order-type label:has(input:checked) { border-color: var(--gold); color: var(--gold); }
.cart-foot textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 10px;
  background: var(--white); font-family: 'Jost', sans-serif; font-weight: 300;
  font-size: 14px; padding: 11px 13px; resize: none; margin-bottom: 14px;
  color: var(--ink);
}
.cart-foot textarea:focus { outline: none; border-color: var(--gold); }
.wa-order-btn {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 10px;
  background: #25D366; color: #fff; border: none; border-radius: 999px;
  font-family: 'Jost', sans-serif; font-size: 13px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 15px 20px; cursor: pointer;
}
.wa-order-btn:hover { filter: brightness(1.06); }
.wa-order-btn svg { width: 19px; height: 19px; fill: #fff; }
.wa-order-btn:disabled { background: var(--line); cursor: not-allowed; }

@media (max-width: 640px) {
  .cart-bar { bottom: 16px; padding: 12px 12px 12px 20px; gap: 12px; max-width: calc(100vw - 32px); }
  .wa-float { right: 16px; bottom: 90px; }
  body.has-cart .wa-float { bottom: 96px; }
  .item { flex-wrap: wrap; }
}

/* ============ GOOGLE REVIEWS (live) ============ */
.g-rating {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 18px; font-size: 14px; color: var(--ink-soft);
}
.g-rating .num {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 30px; color: var(--ink); line-height: 1;
}
.g-rating .g-stars { color: var(--gold); font-size: 15px; letter-spacing: 3px; }
.review .g-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: 14px;
}
.review-cta { text-align: center; margin-top: 40px; }
.review-cta a {
  font-size: 12px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); border-bottom: 1px solid var(--gold); padding-bottom: 3px;
}
