/* ============================================================
   Giottos African Store — combined stylesheet
   Tokens + components + responsive
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Kaushan+Script&family=Pacifico&family=Oswald:wght@500;600;700&family=Nunito:wght@400;500;600;700;800&family=DM+Mono:wght@400;500&display=swap");

:root {
  /* Brand */
  --brand-raspberry:    #b8244c;
  --brand-raspberry-dk: #8a1a39;
  --brand-pink:         #e0457d;
  --brand-pink-soft:    #f6c9d8;
  --brand-cream:        #f8efe3;

  /* Pantry accents */
  --acc-mustard:        #e6a531;
  --acc-mustard-dk:     #b87c1b;
  --acc-terracotta:     #c45a2c;
  --acc-sage:           #6e8b4a;
  --acc-cocoa:          #4a2618;
  --acc-charcoal:       #1f1a18;

  /* Neutrals */
  --bg:                 #fdf8f1;
  --bg-elev:            #ffffff;
  --bg-tint:            #f4ead8;
  --bg-deep:            #2a1117;

  --fg-1:               #2a1117;
  --fg-2:               #5a3a3f;
  --fg-3:               #8a6c70;
  --fg-on-dark:         #f8efe3;
  --fg-on-dark-muted:   #d9bcc3;

  --border-1:           #ead8c2;
  --border-2:           #d9b89d;

  /* Type families */
  --ff-script:  "Pacifico", "Lobster", cursive;
  --ff-display: "Oswald", "Bebas Neue", Impact, sans-serif;
  --ff-body:    "Nunito", "Avenir Next", system-ui, sans-serif;
  --ff-mono:    "DM Mono", "JetBrains Mono", ui-monospace, monospace;

  /* Shadows */
  --sh-1: 0 1px 2px rgba(74, 38, 24, 0.08);
  --sh-2: 0 4px 12px rgba(74, 38, 24, 0.10);
  --sh-3: 0 12px 28px rgba(74, 38, 24, 0.14);
  --sh-4: 0 24px 60px rgba(74, 38, 24, 0.20);
  --sh-inset: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg-1);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Focus ring */
:focus-visible {
  outline: 2px solid var(--brand-pink);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ============ Header ============ */
.gh-header { background: var(--brand-raspberry); color: var(--brand-cream); position: sticky; top: 0; z-index: 50; }
.gh-headerInner {
  max-width: 1280px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.gh-logoPill {
  display: inline-flex; flex-direction: column; align-items: center;
  background: #f4e4cc;
  border: 1.5px solid var(--brand-pink);
  padding: 6px 22px 7px; border-radius: 9999px;
  text-decoration: none; line-height: 1; white-space: nowrap;
  box-shadow: var(--sh-inset);
}
.gh-logoMark {
  font-family: "Kaushan Script", var(--ff-script); color: var(--brand-pink);
  font-size: 30px; line-height: 1.05; letter-spacing: -0.01em;
}
.gh-logoSub {
  font-family: var(--ff-display); color: var(--brand-pink);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  line-height: 1; margin-top: 1px;
}
.gh-nav {
  flex: 1; display: flex; gap: 24px; align-items: center; min-width: 0;
}
.gh-navLink {
  font-family: var(--ff-display); font-size: 14px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--brand-cream); text-decoration: none;
  padding: 6px 0; border-bottom: 2px solid transparent;
  transition: border-color 160ms, opacity 160ms;
}
.gh-navLink:hover { opacity: 0.85; }
.gh-navLink.is-active { border-bottom-color: var(--brand-cream); }
.gh-search {
  width: 100%; max-width: 560px;
  background: rgba(255,239,227,0.12); border: 1px solid rgba(255,239,227,0.22);
  border-radius: 9999px; padding: 12px 20px;
  display: flex; align-items: center; gap: 12px;
  color: var(--brand-cream);
  transition: border-color 160ms, background 160ms;
}
.gh-search:focus-within { background: rgba(255,239,227,0.2); border-color: rgba(255,239,227,0.5); }
.gh-search input {
  flex: 1; min-width: 0; background: transparent; border: none; outline: none;
  color: var(--brand-cream); font-family: var(--ff-body); font-size: 15px;
}
.gh-search input::placeholder { color: rgba(248,239,227,0.6); }
.gh-searchLight {
  background: var(--bg-elev); border: 1px solid var(--border-2);
  color: var(--fg-1); box-shadow: var(--sh-1);
  margin: 24px auto 0;
}
.gh-searchLight:focus-within { background: var(--bg-elev); border-color: var(--brand-raspberry); }
.gh-searchLight input { color: var(--fg-1); }
.gh-searchLight input::placeholder { color: var(--fg-3); }
.gh-iconBtn {
  background: transparent; border: none; color: var(--brand-cream); cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-display); font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.1em; padding: 8px 10px; border-radius: 8px;
  transition: background 160ms;
}
.gh-iconBtn { text-decoration: none; }
.gh-iconBtn:hover { background: rgba(255,239,227,0.1); }
.gh-catBar { background: var(--bg-tint); border-bottom: 1px solid var(--border-1); }
.gh-catBarInner {
  max-width: 1280px; margin: 0 auto; padding: 12px 24px;
  display: flex; gap: 28px; overflow-x: auto;
  scrollbar-width: none;
}
.gh-catBarInner::-webkit-scrollbar { display: none; }
.gh-catLink {
  font-family: var(--ff-display); font-size: 14px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--acc-cocoa); text-decoration: none;
  padding: 4px 0; white-space: nowrap;
  border: none; border-bottom: 2px solid transparent;
  cursor: pointer; background: transparent;
  transition: color 160ms, border-color 160ms;
}
.gh-catLink:hover { color: var(--brand-raspberry); }
.gh-catLink.is-active { color: var(--brand-raspberry); border-bottom-color: var(--brand-raspberry); }

/* ============ Hero ============ */
.gh-hero { position: relative; background: var(--bg-deep); color: var(--brand-cream); overflow: hidden; }
.gh-heroBg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 75% 40%, rgba(230,165,49,0.35), transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(196,90,44,0.35), transparent 55%),
    linear-gradient(135deg, #4a2618 0%, #2a1117 70%);
}
.gh-heroBg::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,239,227,0.06) 1px, transparent 1px);
  background-size: 3px 3px; mix-blend-mode: overlay; opacity: 0.6;
}
.gh-heroProduce {
  position: absolute; inset: 0; overflow: hidden;
  pointer-events: none; z-index: 1;
}
.gh-veg {
  position: absolute; display: inline-block;
  opacity: 0.32; filter: drop-shadow(0 6px 14px rgba(0,0,0,0.35));
  animation: gh-veg-float 14s ease-in-out infinite;
  will-change: transform;
}
.gh-veg--1  { top:  8%; left:  4%; font-size: 56px; animation-delay:  0s;    animation-duration: 13s; }
.gh-veg--2  { top: 70%; left:  6%; font-size: 48px; animation-delay: -2.5s;  animation-duration: 15s; }
.gh-veg--3  { top: 28%; left: 22%; font-size: 36px; animation-delay: -5s;    animation-duration: 12s; }
.gh-veg--4  { top: 82%; left: 32%; font-size: 50px; animation-delay: -1.2s;  animation-duration: 17s; }
.gh-veg--5  { top:  6%; left: 42%; font-size: 40px; animation-delay: -4s;    animation-duration: 14s; }
.gh-veg--6  { top: 58%; left: 48%; font-size: 44px; animation-delay: -6s;    animation-duration: 16s; }
.gh-veg--7  { top: 18%; right: 30%; font-size: 38px; animation-delay: -3s;   animation-duration: 13s; }
.gh-veg--8  { top: 86%; right: 26%; font-size: 32px; animation-delay: -7s;   animation-duration: 18s; }
.gh-veg--9  { top: 12%; right: 5%; font-size: 46px; animation-delay: -1.8s;  animation-duration: 15s; }
.gh-veg--10 { top: 72%; right: 8%; font-size: 52px; animation-delay: -4.6s;  animation-duration: 14s; }
@keyframes gh-veg-float {
  0%   { transform: translateY(0) rotate(-6deg); }
  50%  { transform: translateY(-28px) rotate(6deg); }
  100% { transform: translateY(0) rotate(-6deg); }
}
@media (prefers-reduced-motion: reduce) {
  .gh-veg { animation: none; }
}
.gh-heroInner {
  position: relative; max-width: 1280px; margin: 0 auto;
  padding: 80px 24px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center;
  z-index: 2;
}
.gh-heroKicker {
  font-family: var(--ff-display); font-size: 13px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--acc-mustard); margin-bottom: 16px;
}
.gh-heroTitle {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(48px, 6vw, 88px); line-height: 0.96;
  text-transform: uppercase; letter-spacing: 0.01em; margin: 0 0 20px;
}
.gh-heroTitle em {
  font-family: var(--ff-script); font-style: normal; font-weight: 400;
  color: var(--brand-pink); text-transform: none; letter-spacing: -0.01em;
  display: inline-block; padding: 0 6px;
}
.gh-heroSub { font-size: 18px; color: var(--fg-on-dark-muted); max-width: 460px; margin: 0 0 32px; }
.gh-heroCtas { display: flex; gap: 14px; flex-wrap: wrap; }
.gh-heroImg {
  aspect-ratio: 4/5; border-radius: 22px; box-shadow: var(--sh-4);
  background: radial-gradient(ellipse at 50% 40%, #e6a531 0%, #c45a2c 40%, #8a1a39 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: flex-end; justify-content: flex-start;
}
.gh-heroImgLabel {
  font-family: var(--ff-display); font-size: 12px; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(248,239,227,0.6); padding: 22px;
}

/* ============ Deal slideshow ============ */
.gh-dealSlider {
  aspect-ratio: 4/5; border-radius: 22px; box-shadow: var(--sh-4);
  position: relative; overflow: hidden; background: var(--acc-cocoa);
}
.gh-dealSlide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.6s ease;
  pointer-events: none;
}
.gh-dealSlide.is-active { opacity: 1; pointer-events: auto; }
.gh-dealSlideImg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.gh-dealOverlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,8,14,0.88) 0%, rgba(26,8,14,0.3) 50%, rgba(26,8,14,0.05) 100%);
}
.gh-dealContent {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: space-between; padding: 20px;
}
.gh-dealBadge {
  display: inline-flex; align-items: center;
  background: var(--brand-raspberry); color: var(--brand-cream);
  font-family: var(--ff-display); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 6px 12px; border-radius: 40px;
  align-self: flex-start;
}
.gh-dealInfo { display: flex; flex-direction: column; gap: 4px; }
.gh-dealName {
  font-family: var(--ff-display); font-size: clamp(22px, 3vw, 30px);
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em;
  color: var(--brand-cream); line-height: 1;
}
.gh-dealPrices { display: flex; align-items: baseline; gap: 10px; margin-top: 6px; }
.gh-dealWas {
  font-family: var(--ff-body); font-size: 16px; color: rgba(248,239,227,0.5);
  text-decoration: line-through;
}
.gh-dealNow {
  font-family: var(--ff-display); font-size: clamp(34px, 4.5vw, 48px);
  color: var(--acc-mustard); line-height: 1;
}
.gh-dealSub {
  font-family: var(--ff-body); font-size: 13px; color: rgba(248,239,227,0.55);
  margin-top: 2px;
}
.gh-dealDots {
  position: absolute; bottom: 16px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 7px;
}
.gh-dealDot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(248,239,227,0.35); border: none; cursor: pointer;
  padding: 0; transition: background 0.3s, transform 0.3s;
}
.gh-dealDot.is-active { background: var(--brand-cream); transform: scale(1.25); }

/* ============ Page hero (shop / visit) ============ */
.gh-pageHero {
  background:
    radial-gradient(ellipse at 70% 40%, rgba(230,165,49,0.18), transparent 60%),
    linear-gradient(180deg, var(--bg-tint) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border-1);
}
.gh-pageHeroInner {
  max-width: 1280px; margin: 0 auto; padding: 56px 24px 40px;
  text-align: center;
}
.gh-pageHeroKicker {
  font-family: var(--ff-display); font-size: 13px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--brand-raspberry); margin-bottom: 14px;
}
.gh-pageHeroTitle {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(40px, 5vw, 72px); line-height: 0.98;
  text-transform: uppercase; letter-spacing: 0.01em; margin: 0 0 16px;
  color: var(--fg-1);
}
.gh-pageHeroTitle em {
  font-family: var(--ff-script); font-style: normal; font-weight: 400;
  color: var(--brand-raspberry); text-transform: none; letter-spacing: -0.01em;
  display: inline-block; padding: 0 4px;
}
.gh-pageHeroSub { font-size: 17px; color: var(--fg-2); max-width: 600px; margin: 0 auto; }

/* ============ Buttons ============ */
.gh-btn {
  font-family: var(--ff-display); font-weight: 600; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 14px 28px; border-radius: 9999px; border: none; cursor: pointer;
  transition: all 180ms cubic-bezier(0.4,0,0.2,1);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  text-decoration: none; white-space: nowrap;
}
.gh-btn:active { transform: scale(0.98); }
.gh-btnPrimary { background: var(--brand-raspberry); color: var(--brand-cream); box-shadow: var(--sh-2), var(--sh-inset); }
.gh-btnPrimary:hover { background: var(--brand-raspberry-dk); box-shadow: var(--sh-3), var(--sh-inset); }
.gh-btnSecondary { background: transparent; color: var(--brand-cream); border: 1.5px solid var(--brand-cream); }
.gh-btnSecondary:hover { background: rgba(255,239,227,0.1); }

/* ============ Section heads ============ */
.gh-sectionHead { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 28px; gap: 16px; }
.gh-sectionTitle {
  font-family: var(--ff-display); font-weight: 700; font-size: 36px;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--fg-1); margin: 0;
}
.gh-sectionLink {
  font-family: var(--ff-display); font-size: 13px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--brand-raspberry); text-decoration: none;
  white-space: nowrap;
}
.gh-sectionLink:hover { color: var(--brand-raspberry-dk); text-decoration: underline; text-underline-offset: 4px; }
.gh-sectionNote { color: var(--fg-3); }
.gh-sectionNote:hover { color: var(--fg-3); text-decoration: none; }

/* ============ Category strip ============ */
.gh-catSection { max-width: 1280px; margin: 0 auto; padding: 64px 24px 32px; }
.gh-catGrid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.gh-catTile {
  display: flex; flex-direction: column; align-items: stretch; gap: 12px;
  background: transparent; border: none; cursor: pointer; padding: 0;
  text-decoration: none; color: inherit;
}
.gh-catCircle {
  aspect-ratio: 1 / 1; width: 100%; border-radius: 50%;
  box-shadow: var(--sh-2); transition: all 200ms cubic-bezier(0.4,0,0.2,1);
  background-position: center; background-size: cover; background-repeat: no-repeat;
}
.gh-catTile:hover .gh-catCircle { transform: translateY(-3px); box-shadow: var(--sh-3); }
.gh-catLabel {
  font-family: var(--ff-display); font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--fg-1);
  text-align: center;
}

/* ============ Product grid ============ */
.gh-prodSection { max-width: 1280px; margin: 0 auto; padding: 40px 24px 80px; scroll-margin-top: 120px; }
.gh-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 22px; }
.gh-empty { padding: 40px 0; text-align: center; color: var(--fg-3); font-size: 15px; }

.gh-pcard {
  background: var(--bg-elev); border: 1px solid var(--border-1); border-radius: 14px;
  overflow: hidden; box-shadow: var(--sh-2);
  transition: all 220ms cubic-bezier(0.4,0,0.2,1);
  display: flex; flex-direction: column;
}
.gh-pcard:hover { transform: translateY(-3px); box-shadow: var(--sh-3); }
.gh-pimg { aspect-ratio: 4/3; position: relative; overflow: hidden; }
.gh-pimgBg {
  position: absolute; inset: 0; transition: transform 280ms ease;
  display: flex; align-items: center; justify-content: center;
}
.gh-pimgBg--photo {
  background-color: var(--bg-tint);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.gh-pcard:hover .gh-pimgBg { transform: scale(1.04); }
.gh-pimgLabel {
  font-family: var(--ff-display); font-size: 12px; color: rgba(248,239,227,0.75);
  letter-spacing: 0.12em; text-transform: uppercase; padding: 8px 14px;
  background: rgba(42,17,23,0.4); border-radius: 9999px; text-align: center;
}
.gh-pBadge {
  position: absolute; top: 10px; left: 10px;
  background: var(--acc-mustard); color: var(--acc-cocoa);
  font-family: var(--ff-display); font-size: 11px; font-weight: 700;
  padding: 4px 12px; border-radius: 9999px; letter-spacing: 0.1em; text-transform: uppercase;
}
.gh-pBadge.is-sale { background: var(--brand-raspberry); color: var(--brand-cream); }
.gh-pBadge.is-fresh { background: var(--acc-sage); color: var(--brand-cream); }
.gh-pBody { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.gh-pMeta { font-family: var(--ff-display); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--fg-3); }
.gh-pName { font-family: var(--ff-body); font-weight: 800; font-size: 16px; color: var(--fg-1); line-height: 1.25; }
.gh-pDesc { font-family: var(--ff-body); font-size: 13px; color: var(--fg-2); line-height: 1.4; flex: 1; margin: 0; }
.gh-pFoot { display: flex; align-items: center; justify-content: space-between; margin-top: 8px; gap: 8px; }
.gh-pPrice { font-family: var(--ff-display); font-weight: 700; font-size: 22px; color: var(--brand-raspberry); }
.gh-prodFootnote {
  margin: 32px 0 0; padding: 18px 22px;
  background: var(--bg-tint); border: 1px solid var(--border-1); border-radius: 14px;
  font-size: 14px; color: var(--fg-2); text-align: center;
}
.gh-prodFootnote a { color: var(--brand-raspberry); text-decoration: none; font-weight: 700; }
.gh-prodFootnote a:hover { text-decoration: underline; text-underline-offset: 3px; }

/* ============ Origin banner ============ */
.gh-origin { background: var(--bg-tint); border-block: 1px solid var(--border-1); }
.gh-originInner {
  max-width: 1280px; margin: 0 auto; padding: 56px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.gh-originTitle {
  font-family: var(--ff-display); font-weight: 700; font-size: 44px;
  text-transform: uppercase; letter-spacing: 0.02em; line-height: 1;
  color: var(--fg-1); margin: 0 0 16px;
}
.gh-originTitle em {
  font-family: var(--ff-script); font-style: normal; font-weight: 400;
  color: var(--brand-raspberry); text-transform: none; letter-spacing: -0.01em;
}
.gh-originSub { font-size: 17px; color: var(--fg-2); max-width: 460px; margin: 0 0 24px; }
.gh-countryList { display: flex; flex-wrap: wrap; gap: 8px; }
.gh-countryChip {
  background: var(--bg-elev); border: 1px solid var(--border-2); border-radius: 9999px;
  padding: 7px 14px; font-family: var(--ff-display); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--acc-cocoa);
}
.gh-originImage {
  aspect-ratio: 5/3; border-radius: 22px; box-shadow: var(--sh-3); overflow: hidden;
  background: url('assets/inside-shop.webp') center/cover no-repeat;
  display: flex; align-items: flex-end; padding: 24px;
}
.gh-originImageLabel {
  font-family: var(--ff-display); font-size: 12px; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(248,239,227,0.7);
}

/* ============ Visit us ============ */
.gh-visit { background: var(--bg); scroll-margin-top: 120px; }
.gh-visitInner { max-width: 1280px; margin: 0 auto; padding: 64px 24px; }
.gh-visitTitle {
  font-family: var(--ff-display); font-weight: 700; font-size: 44px;
  text-transform: uppercase; letter-spacing: 0.02em; color: var(--fg-1); margin: 0 0 12px;
}
.gh-visitSub { font-size: 17px; color: var(--fg-2); max-width: 520px; margin: 0 0 32px; }
.gh-visitGrid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  padding: 28px; background: var(--bg-elev);
  border: 1px solid var(--border-1); border-radius: 18px; box-shadow: var(--sh-2);
}
.gh-visitGrid h4 {
  font-family: var(--ff-display); font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--brand-raspberry); margin: 0 0 8px;
}
.gh-visitGrid p { margin: 0; font-size: 15px; color: var(--fg-1); line-height: 1.55; }
.gh-visitGrid a { color: var(--fg-1); text-decoration: none; }
.gh-visitGrid a:hover { color: var(--brand-raspberry); text-decoration: underline; text-underline-offset: 3px; }

/* ============ Contact card (home page) ============ */
/* ============ Reviews ============ */
.gh-reviews {
  background: var(--bg-tint);
  border-block: 1px solid var(--border-1);
}
.gh-reviewsInner {
  max-width: 1280px; margin: 0 auto; padding: 72px 24px 80px;
}
.gh-reviewsHeader { text-align: center; margin-bottom: 52px; }
.gh-reviewsKicker {
  font-family: var(--ff-display); font-size: 13px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--acc-mustard); margin-bottom: 14px;
}
.gh-reviewsTitle {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(36px, 5vw, 64px); line-height: 1;
  text-transform: uppercase; letter-spacing: 0.02em;
  color: var(--fg-1); margin: 0;
}
.gh-reviewsTitle em {
  font-family: var(--ff-script); font-style: normal; font-weight: 400;
  color: var(--brand-raspberry); text-transform: none; letter-spacing: -0.01em;
  display: inline-block; padding: 0 6px;
}
.gh-reviewsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 28px;
}
.gh-reviewCard {
  background: var(--bg-elev);
  border-radius: 20px;
  box-shadow: var(--sh-3);
  padding: 40px 36px 32px 44px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.gh-reviewCard::before {
  content: "";
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 5px;
  background: var(--brand-raspberry);
  border-radius: 20px 0 0 20px;
}
.gh-reviewCard::after {
  content: "\201C";
  position: absolute; top: 12px; right: 28px;
  font-family: var(--ff-script);
  font-size: 100px; line-height: 1;
  color: var(--brand-raspberry);
  opacity: 0.07;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
}
.gh-reviewBody {
  margin: 0 0 28px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--fg-1);
  font-style: italic;
  flex: 1;
}
.gh-reviewMeta {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--border-1);
  padding-top: 22px;
}
.gh-reviewStars {
  color: var(--acc-mustard);
  font-size: 15px;
  letter-spacing: 2px;
  flex-shrink: 0;
}
.gh-reviewMeta strong {
  display: block;
  color: var(--fg-1);
  font-family: var(--ff-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.gh-reviewMeta span {
  display: block;
  color: var(--fg-3);
  font-size: 12px;
  margin-top: 2px;
}

/* ============ Contact card ============ */
.gh-contact { background: var(--bg); }
.gh-contactInner { max-width: 1280px; margin: 0 auto; padding: 64px 24px; }
.gh-contactCard {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px;
  background: var(--bg-elev); border: 1px solid var(--border-1); border-radius: 22px;
  box-shadow: var(--sh-3); padding: 44px;
  position: relative; overflow: hidden;
}
.gh-contactCard::before {
  content: ""; position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle, rgba(224, 69, 125, 0.18), transparent 70%);
  pointer-events: none;
}
.gh-contactKicker {
  font-family: var(--ff-display); font-size: 13px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--brand-raspberry); margin-bottom: 14px;
}
.gh-contactTitle {
  font-family: var(--ff-display); font-weight: 700; font-size: 42px;
  text-transform: uppercase; letter-spacing: 0.02em; line-height: 1;
  color: var(--fg-1); margin: 0 0 16px;
}
.gh-contactTitle em {
  font-family: var(--ff-script); font-style: normal; font-weight: 400;
  color: var(--brand-raspberry); text-transform: none; letter-spacing: -0.01em;
}
.gh-contactSub { font-size: 16px; color: var(--fg-2); margin: 0 0 28px; max-width: 460px; }
.gh-contactMeta {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  border-top: 1px solid var(--border-1); padding-top: 24px;
}
.gh-contactMeta h4 {
  font-family: var(--ff-display); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--brand-raspberry); margin: 0 0 6px;
}
.gh-contactMeta p { margin: 0; font-size: 14px; color: var(--fg-1); line-height: 1.5; }
.gh-contactMeta a { color: var(--fg-1); text-decoration: none; }
.gh-contactMeta a:hover { color: var(--brand-raspberry); text-decoration: underline; text-underline-offset: 3px; }

.gh-contactForm { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 1; }
.gh-fieldLabel { display: flex; flex-direction: column; gap: 6px; }
.gh-fieldLabel > span {
  font-family: var(--ff-display); font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--fg-2);
}
.gh-fieldLabel input, .gh-fieldLabel textarea {
  font-family: var(--ff-body); font-size: 15px; color: var(--fg-1);
  background: var(--bg); border: 1px solid var(--border-1); border-radius: 12px;
  padding: 12px 14px; outline: none;
  transition: border-color 160ms, box-shadow 160ms;
}
.gh-fieldLabel input:focus, .gh-fieldLabel textarea:focus {
  border-color: var(--brand-raspberry);
  box-shadow: 0 0 0 3px rgba(184, 36, 76, 0.12);
}
.gh-fieldLabel textarea { resize: vertical; min-height: 110px; font-family: var(--ff-body); }
.gh-contactForm .gh-btn { align-self: flex-start; margin-top: 4px; }
.gh-formNote { font-size: 12px; color: var(--fg-3); margin: 4px 0 0; }

/* ============ Star rating ============ */
.gh-stars { display: flex; align-items: center; gap: 8px; margin-top: 16px; }
.gh-starsIcons {
  font-size: 18px; letter-spacing: 2px;
  background: linear-gradient(to right, var(--acc-mustard) 92%, rgba(230,165,49,0.22) 92%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gh-starsLabel { font-size: 14px; }
.gh-starsLabel strong { font-weight: 700; }
.gh-hero .gh-starsLabel { color: rgba(248,239,227,0.7); }
.gh-hero .gh-starsLabel strong { color: var(--brand-cream); }
.gh-visitTeaser .gh-starsLabel { color: var(--fg-2); }
.gh-visitTeaser .gh-starsLabel strong { color: var(--fg-1); }

/* ============ Visit teaser (home page) ============ */
.gh-visitTeaser { background: var(--bg-tint); border-block: 1px solid var(--border-1); }
.gh-visitTeaserInner {
  max-width: 1280px; margin: 0 auto; padding: 48px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.gh-visitTeaserTitle {
  font-family: var(--ff-display); font-weight: 700; font-size: 32px;
  text-transform: uppercase; letter-spacing: 0.02em; color: var(--fg-1); margin: 0 0 6px;
}
.gh-visitTeaserSub { color: var(--fg-2); margin: 0; font-size: 15px; }
.gh-visitTeaser .gh-btnPrimary { text-decoration: none; }

/* ============ Footer ============ */
.gh-footer { background: var(--acc-cocoa); color: var(--fg-on-dark); padding: 64px 24px 32px; }
.gh-footerInner { max-width: 1280px; margin: 0 auto; }
.gh-footerCols {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(248,239,227,0.12);
}
.gh-footerCol h4 {
  font-family: var(--ff-display); font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--brand-pink-soft); margin: 0 0 14px;
}
.gh-footerCol a, .gh-footerCol p {
  display: block; color: var(--fg-on-dark-muted); text-decoration: none;
  font-size: 14px; padding: 4px 0; margin: 0;
}
.gh-footerCol a:hover { color: var(--brand-cream); }
.gh-footerWordmark { font-family: "Kaushan Script", var(--ff-script); color: var(--brand-cream); font-size: 32px; line-height: 1; margin-bottom: 12px; }
.gh-footerBlurb { color: var(--fg-on-dark-muted); font-size: 14px; max-width: 280px; line-height: 1.55; }
.gh-footerBase {
  padding-top: 24px; display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: var(--fg-on-dark-muted);
  font-family: var(--ff-display); letter-spacing: 0.08em; text-transform: uppercase;
}
.gh-credit a { color: var(--brand-cream); text-decoration: none; }
.gh-credit a:hover { color: var(--brand-pink-soft); text-decoration: underline; text-underline-offset: 3px; }

/* ============ Floating contact button (FAB) ============ */
.gh-fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 60;
  display: flex; flex-direction: column; align-items: flex-end; gap: 16px;
}
.gh-fabActions {
  display: flex; flex-direction: column; align-items: flex-end; gap: 14px;
  opacity: 0; visibility: hidden;
  transform: translateY(12px) scale(0.92); transform-origin: bottom right;
  transition: opacity 200ms ease, transform 220ms cubic-bezier(0.34,1.56,0.64,1), visibility 200ms;
  pointer-events: none;
}
.gh-fab.is-open .gh-fabActions {
  opacity: 1; visibility: visible; transform: translateY(0) scale(1);
  pointer-events: auto;
}
.gh-fabAction { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.gh-fabLabel {
  background: var(--bg-elev); color: var(--fg-1);
  font-family: var(--ff-display); font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 8px 15px; border-radius: 9999px;
  box-shadow: var(--sh-2); white-space: nowrap;
}
.gh-fabIcon {
  width: 50px; height: 50px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: var(--sh-3); flex-shrink: 0;
  transition: transform 160ms;
}
.gh-fabAction:hover .gh-fabIcon { transform: scale(1.08); }
.gh-fabIcon svg { width: 26px; height: 26px; }
.gh-fabAction--wa .gh-fabIcon { background: #25d366; }
.gh-fabAction--call .gh-fabIcon { background: var(--brand-raspberry); }
.gh-fabToggle {
  width: 62px; height: 62px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--brand-raspberry); color: var(--brand-cream);
  box-shadow: var(--sh-3); position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background 200ms, transform 200ms;
}
.gh-fabToggle:hover { background: var(--brand-raspberry-dk); transform: translateY(-2px); }
.gh-fabToggle:active { transform: scale(0.96); }
.gh-fabToggle svg {
  width: 28px; height: 28px; position: absolute;
  transition: opacity 200ms, transform 200ms;
}
.gh-fabToggleClose { opacity: 0; transform: rotate(-90deg); }
.gh-fab.is-open .gh-fabToggleChat { opacity: 0; transform: rotate(90deg); }
.gh-fab.is-open .gh-fabToggleClose { opacity: 1; transform: rotate(0); }
.gh-fab.is-open .gh-fabToggle { background: var(--brand-raspberry-dk); }
@media (prefers-reduced-motion: reduce) {
  .gh-fabActions, .gh-fabToggle, .gh-fabToggle svg, .gh-fabIcon { transition: none; }
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .gh-catGrid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .gh-footerCols { grid-template-columns: 1fr 1fr; gap: 36px; }
  .gh-originTitle { font-size: 36px; }
}

@media (max-width: 768px) {
  .gh-headerInner { padding: 10px 16px 0; gap: 8px; }
  .gh-logoPill { padding: 5px 18px 6px; }
  .gh-logoMark { font-size: 23px; }
  .gh-logoSub { font-size: 9px; letter-spacing: 0.16em; }
  .gh-iconBtn { margin-left: auto; padding: 6px 8px; }
  .gh-nav {
    order: 99; flex-basis: 100%; gap: 28px; justify-content: center;
    margin-top: 8px; padding: 8px 0;
    border-top: 1px solid rgba(255,239,227,0.18);
  }
  .gh-navLink { font-size: 13px; letter-spacing: 0.08em; padding: 2px 0; }
  .gh-catBarInner { padding: 10px 16px; gap: 20px; }

  .gh-pageHeroInner { padding: 40px 20px 28px; }
  .gh-pageHeroSub { font-size: 15px; }

  .gh-visitTeaserInner { padding: 36px 20px; flex-direction: column; align-items: flex-start; text-align: left; gap: 18px; }
  .gh-visitTeaserTitle { font-size: 26px; }

  .gh-contactInner { padding: 48px 20px; }
  .gh-contactCard { grid-template-columns: 1fr; gap: 28px; padding: 28px; }
  .gh-contactTitle { font-size: 30px; }
  .gh-contactMeta { grid-template-columns: 1fr 1fr; gap: 16px; }

  .gh-heroInner { grid-template-columns: 1fr; padding: 56px 20px; gap: 32px; }
  .gh-heroImg { aspect-ratio: 4/3; max-width: 480px; }
  .gh-heroSub { font-size: 16px; }

  .gh-catSection { padding: 48px 20px 24px; }
  .gh-prodSection { padding: 32px 20px 64px; }
  .gh-sectionTitle { font-size: 28px; }
  .gh-catCircle { border-radius: 50%; }
  .gh-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
  .gh-pBody { padding: 12px 14px 14px; }
  .gh-pName { font-size: 15px; }
  .gh-pDesc { font-size: 12px; }
  .gh-pPrice { font-size: 18px; }

  .gh-originInner { grid-template-columns: 1fr; padding: 48px 20px; gap: 28px; }
  .gh-originTitle { font-size: 30px; }

  .gh-visitInner { padding: 48px 20px; }
  .gh-visitTitle { font-size: 30px; }
  .gh-visitGrid { grid-template-columns: 1fr; gap: 24px; padding: 22px; }

  .gh-footer { padding: 48px 20px 24px; }
  .gh-footerCols { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .gh-footerBase { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 480px) {
  .gh-catGrid { grid-template-columns: repeat(2, 1fr); }
  .gh-heroCtas { flex-direction: column; align-items: stretch; }
  .gh-heroCtas .gh-btn { width: 100%; }
  .gh-fab { right: 16px; bottom: 16px; }
}
