/* Good as Gold Cafe — Fresh archetype
   Fonts: Schibsted Grotesk (display) + Onest (body)
   Accent: warm Golden Bay gold on cream, warm espresso anchor */

:root {
  --gold: #f5a300;
  --gold-deep: #e8690f;
  --gold-soft: #fbc24a;
  --espresso: #241a12;
  --espresso-2: #322418;
  --ink: #2a231c;
  --cream: #faf5ec;
  --bone: #f1e7d6;
  --card: #ffffff;
  --muted: #6f6455;
  --line: rgba(36, 26, 18, 0.10);
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 18px 44px -24px rgba(36, 26, 18, 0.45);
  --shadow-soft: 0 10px 30px -20px rgba(36, 26, 18, 0.5);
  --maxw: 1180px;
  --img-filter: saturate(1.02) contrast(1.03) brightness(0.99);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Onest", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { image-orientation: from-image; max-width: 100%; display: block; }

h1, h2, h3, h4, .display {
  font-family: "Schibsted Grotesk", system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--espresso);
}

a { color: inherit; text-decoration: none; }

.wrap { width: min(100% - 2.6rem, var(--maxw)); margin-inline: auto; }

.eyebrow {
  font-family: "Onest", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--gold);
  display: inline-block;
}

.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-bone { background: var(--bone); }
.section-cream { background: var(--cream); }

.lead { font-size: 1.06rem; color: var(--muted); max-width: 60ch; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: "Schibsted Grotesk", sans-serif;
  font-weight: 700; font-size: 0.98rem;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--espresso); box-shadow: 0 14px 30px -14px rgba(245,163,0,.7); }
.btn-primary:hover { transform: translateY(-2px); background: var(--gold-deep); }
.btn-ghost { background: transparent; border-color: rgba(255,255,255,.55); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-dark { background: var(--espresso); color: #fff; }
.btn-dark:hover { transform: translateY(-2px); background: #000; }
.btn-outline { border-color: var(--line); color: var(--espresso); background: #fff; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-2px); }
.btn-lg { padding: 1.15rem 2.1rem; font-size: 1.05rem; }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem clamp(1.3rem, 4vw, 2.4rem);
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.nav.scrolled {
  background: rgba(250, 245, 236, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding-top: .75rem; padding-bottom: .75rem;
}
.brand { display: flex; align-items: center; gap: .65rem; font-family: "Schibsted Grotesk", sans-serif; font-weight: 800; font-size: 1.15rem; color: #fff; letter-spacing: -0.01em; }
.nav.scrolled .brand { color: var(--espresso); }
.brand .mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--gold); color: #fff;
  display: grid; place-items: center; font-size: 1.05rem; font-weight: 800;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.25);
}
.nav-links { display: flex; align-items: center; gap: 1.9rem; }
.nav-links a.link { color: rgba(255,255,255,.9); font-weight: 600; font-size: .95rem; transition: color .2s; }
.nav.scrolled .nav-links a.link { color: var(--muted); }
.nav-links a.link:hover { color: var(--gold-soft); }
.nav.scrolled .nav-links a.link:hover { color: var(--gold-deep); }
.nav-cta { background: var(--gold); color: #fff !important; padding: .6rem 1.15rem; border-radius: 999px; font-weight: 700; font-size: .9rem; transition: transform .2s, background .2s; }
.nav-cta:hover { transform: translateY(-1px); background: var(--gold-deep); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 26px; height: 2px; background: #fff; display: block; transition: .3s; }
.nav.scrolled .nav-toggle span { background: var(--espresso); }

@media (max-width: 860px) {
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px);
    background: var(--espresso); flex-direction: column; align-items: flex-start;
    justify-content: center; gap: 1.6rem; padding: 2rem 2.2rem;
    transform: translateX(100%); transition: transform .35s ease; box-shadow: var(--shadow);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a.link { color: #fff; font-size: 1.15rem; }
  .nav.scrolled .nav-links a.link { color: #fff; }
  .nav-toggle { display: flex; }
}

/* ---------- HERO ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; background: var(--espresso); overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.6s ease-in-out;
  filter: var(--img-filter);
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(36,26,18,.82) 0%, rgba(36,26,18,.55) 48%, rgba(36,26,18,.30) 100%);
}
.hero-content { position: relative; z-index: 2; padding-top: 6rem; padding-bottom: 3rem; }
.hero .eyebrow { color: var(--gold-soft); }
.hero .eyebrow::before { background: var(--gold-soft); }
.hero h1 { color: #fff; font-size: clamp(2.5rem, 6.4vw, 4.9rem); max-width: 16ch; margin: 1.1rem 0 1.2rem; }
.hero h1 .hl { color: var(--gold-soft); }
.hero p.sub { color: rgba(255,255,255,.9); font-size: clamp(1.02rem, 2vw, 1.22rem); max-width: 46ch; margin-bottom: 2rem; }
.hero-ctas { display: flex; gap: .9rem; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 1.8rem; margin-top: 2.6rem; flex-wrap: wrap; color: rgba(255,255,255,.85); font-size: .92rem; }
.hero-meta b { color: #fff; font-family: "Schibsted Grotesk", sans-serif; display: block; font-size: 1.05rem; }
.scroll-hint { position: absolute; bottom: 1.4rem; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,.7); font-size: .75rem; letter-spacing: .2em; text-transform: uppercase; animation: bob 2s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translate(-50%,0);} 50% { transform: translate(-50%,7px);} }

/* ---------- TRUST STRIP ---------- */
.trust { background: var(--espresso); color: #fff; padding: 2.4rem 0; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.trust-item { display: flex; gap: 1rem; align-items: flex-start; }
.trust-item .ic { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; background: rgba(231,182,77,.14); display: grid; place-items: center; color: var(--gold-soft); }
.trust-item h4 { color: #fff; font-size: 1.02rem; margin-bottom: .15rem; }
.trust-item p { color: rgba(255,255,255,.72); font-size: .9rem; line-height: 1.5; }
@media (max-width: 780px){ .trust-grid { grid-template-columns: 1fr; gap: 1.3rem; } }

/* ---------- SECTION HEADS ---------- */
.head { max-width: 62ch; margin-bottom: 3rem; }
.head.center { margin-inline: auto; text-align: center; }
.head h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); margin: .8rem 0 1rem; }

/* ---------- SERVICES ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card {
  background: var(--card); border-radius: var(--radius-lg); padding: 2rem 1.7rem;
  border: 1px solid var(--line); box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card .ic { width: 54px; height: 54px; border-radius: 15px; background: linear-gradient(150deg, var(--gold-soft), var(--gold)); display: grid; place-items: center; color: #fff; margin-bottom: 1.2rem; box-shadow: 0 10px 20px -12px rgba(245,163,0,.9); }
.card h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.card p { color: var(--muted); font-size: .96rem; }
@media (max-width: 900px){ .cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px){ .cards { grid-template-columns: 1fr; } }

/* ---------- ABOUT ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-media { position: relative; }
.about-media img { display: block; width: 100%; height: auto; max-height: 560px; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); filter: var(--img-filter); box-shadow: var(--shadow); }
.corner-tag { position: absolute; bottom: -18px; left: -18px; background: var(--gold); color: #fff; padding: 1rem 1.3rem; border-radius: 16px; font-family: "Schibsted Grotesk", sans-serif; font-weight: 800; line-height: 1.1; box-shadow: var(--shadow); }
.corner-tag span { display: block; font-size: .72rem; font-weight: 600; opacity: .85; letter-spacing: .12em; text-transform: uppercase; }
.corner-tag b { font-size: 1.5rem; }
.checklist { list-style: none; margin-top: 1.6rem; display: grid; gap: .85rem; }
.checklist li { display: flex; gap: .8rem; align-items: flex-start; font-weight: 500; }
.checklist li .tick { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%; background: rgba(245,163,0,.14); color: var(--gold-deep); display: grid; place-items: center; margin-top: 2px; }
.about p + p { margin-top: 1rem; }
@media (max-width: 860px){ .split { grid-template-columns: 1fr; } .corner-tag { left: auto; right: 16px; } }

/* ---------- GALLERY (masonry natural) ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); column-gap: 1.1rem; row-gap: 0; align-items: start; }
.gallery.is-masonry { grid-auto-rows: 6px; grid-auto-flow: row dense; }
.gallery figure { margin: 0 0 1.1rem; min-width: 0; }
.gallery img { width: 100%; height: auto; display: block; border-radius: var(--radius); filter: var(--img-filter); box-shadow: var(--shadow-soft); transition: transform .35s ease; }
.gallery img:hover { transform: scale(1.02); }
@media (max-width: 860px){ .gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px){ .gallery { grid-template-columns: 1fr; } }

/* ---------- CREW ---------- */
.crew { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.crew-card { background: var(--card); border-radius: var(--radius-lg); padding: 2rem 1.7rem; border: 1px solid var(--line); text-align: center; box-shadow: var(--shadow-soft); transition: transform .3s; }
.crew-card:hover { transform: translateY(-5px); }
.avatar { width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 1.1rem; background: var(--espresso); color: var(--gold-soft); display: grid; place-items: center; font-family: "Schibsted Grotesk", sans-serif; font-weight: 800; font-size: 1.5rem; box-shadow: 0 0 0 4px rgba(245,163,0,.22); }
.crew-card h4 { font-size: 1.2rem; }
.crew-card .role { color: var(--gold-deep); font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; margin: .3rem 0 .7rem; }
.crew-card p { color: var(--muted); font-size: .93rem; }
@media (max-width: 820px){ .crew { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }

.badge { display: inline-block; background: rgba(245,163,0,.14); color: var(--gold-deep); font-weight: 700; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; padding: .35rem .85rem; border-radius: 999px; margin-bottom: 1rem; }

/* ---------- REVIEWS ---------- */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.review-card { background: var(--card); border-radius: var(--radius-lg); padding: 1.9rem 1.7rem; border: 1px solid var(--line); box-shadow: var(--shadow-soft); }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: .9rem; font-size: 1.05rem; }
.review-card p { font-style: italic; color: var(--ink); margin-bottom: 1.2rem; }
.reviewer { display: flex; align-items: center; gap: .7rem; }
.reviewer .r-av { width: 40px; height: 40px; border-radius: 50%; background: var(--bone); color: var(--espresso); display: grid; place-items: center; font-weight: 700; font-family: "Schibsted Grotesk", sans-serif; }
.reviewer b { display: block; font-size: .95rem; }
.reviewer span { color: var(--muted); font-size: .82rem; }
@media (max-width: 900px){ .reviews { grid-template-columns: 1fr; } }

/* ---------- REVIEW FUNNEL BANNER ---------- */
.funnel { background: var(--espresso); color: #fff; text-align: center; position: relative; overflow: hidden; }
.funnel::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(231,182,77,.16), transparent 55%); }
.funnel .wrap { position: relative; z-index: 2; }
.funnel h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); max-width: 22ch; margin: .6rem auto 1rem; }
.funnel .fstars { color: var(--gold-soft); font-size: 1.8rem; letter-spacing: 5px; margin-bottom: 1.2rem; }
.funnel p { color: rgba(255,255,255,.8); max-width: 48ch; margin: 0 auto 1.8rem; }

/* ---------- CONTACT ---------- */
.contact { background: var(--espresso); color: #fff; }
.contact .split { align-items: stretch; }
.contact h2 { color: #fff; }
.contact .eyebrow { color: var(--gold-soft); } .contact .eyebrow::before { background: var(--gold-soft); }
.contact p.lead { color: rgba(255,255,255,.78); }
.info-list { list-style: none; margin: 2rem 0; display: grid; gap: 1.2rem; }
.info-list li { display: flex; gap: 1rem; align-items: flex-start; }
.info-list .ic { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; background: rgba(231,182,77,.14); color: var(--gold-soft); display: grid; place-items: center; }
.info-list b { display: block; color: #fff; font-family: "Schibsted Grotesk", sans-serif; }
.info-list a, .info-list span { color: rgba(255,255,255,.8); }
.info-list a:hover { color: var(--gold-soft); }
.contact-actions { display: grid; gap: 1rem; align-content: center; background: var(--espresso-2); border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg); padding: 2.2rem; }
.contact-actions h3 { color: #fff; font-size: 1.4rem; margin-bottom: .3rem; }
.contact-actions p { color: rgba(255,255,255,.7); font-size: .93rem; margin-bottom: .6rem; }
.contact-actions .btn { width: 100%; }
.hours-mini { margin-top: .4rem; font-size: .88rem; color: rgba(255,255,255,.72); border-top: 1px solid rgba(255,255,255,.1); padding-top: 1rem; }
.hours-mini div { display: flex; justify-content: space-between; padding: .18rem 0; }

/* ---------- FOOTER ---------- */
.footer { background: #1b130c; color: rgba(255,255,255,.7); padding: 3.4rem 0 1.8rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; margin-bottom: 2.4rem; }
.footer .brand { color: #fff; margin-bottom: .9rem; }
.footer p { font-size: .92rem; max-width: 34ch; }
.footer h5 { color: #fff; font-family: "Schibsted Grotesk", sans-serif; font-size: .95rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1rem; }
.footer ul { list-style: none; display: grid; gap: .55rem; }
.footer ul a { color: rgba(255,255,255,.7); font-size: .92rem; }
.footer ul a:hover { color: var(--gold-soft); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.4rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .6rem; font-size: .82rem; color: rgba(255,255,255,.5); }
@media (max-width: 780px){ .footer-top { grid-template-columns: 1fr; gap: 1.6rem; } }

/* ---------- REVEAL ANIM ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- INTRO OVERLAY ---------- */
.intro { position: fixed; inset: 0; z-index: 2000; background: var(--espresso); display: grid; place-items: center; transition: opacity .7s ease, visibility .7s ease; }
.intro.hide { opacity: 0; visibility: hidden; }
.intro-inner { text-align: center; }
.intro .mark-lg { width: 74px; height: 74px; border-radius: 20px; background: var(--gold); color: #fff; display: grid; place-items: center; font-family: "Schibsted Grotesk", sans-serif; font-weight: 800; font-size: 2rem; margin: 0 auto 1.1rem; animation: pop .8s cubic-bezier(.2,.8,.2,1); }
.intro h2 { color: #fff; font-size: 1.5rem; letter-spacing: -.01em; opacity: 0; animation: fadeUp .7s ease .3s forwards; }
.intro .load-bar { width: 130px; height: 3px; background: rgba(255,255,255,.15); border-radius: 3px; margin: 1.3rem auto 0; overflow: hidden; }
.intro .load-bar span { display: block; height: 100%; width: 0; background: var(--gold-soft); animation: load 1.1s ease forwards; }
@keyframes pop { 0% { transform: scale(.6); opacity: 0;} 100% { transform: scale(1); opacity: 1;} }
@keyframes fadeUp { to { opacity: 1; transform: none; } }
@keyframes load { to { width: 100%; } }

/* ---------- SUB-PAGE HEADER ---------- */
.subhead { background: var(--espresso); color: #fff; padding: 8.5rem 0 4rem; position: relative; overflow: hidden; }
.subhead::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 15%, rgba(231,182,77,.14), transparent 55%); }
.subhead .wrap { position: relative; z-index: 2; }
.subhead h1 { color: #fff; font-size: clamp(2.2rem, 5vw, 3.6rem); margin: .7rem 0 .6rem; }
.subhead p { color: rgba(255,255,255,.8); max-width: 52ch; }
.subhead .eyebrow { color: var(--gold-soft); } .subhead .eyebrow::before { background: var(--gold-soft); }

/* ---------- LEGAL / PROSE ---------- */
.prose { max-width: 760px; margin-inline: auto; }
.prose h2 { font-size: 1.5rem; margin: 2.2rem 0 .8rem; }
.prose p, .prose li { color: var(--muted); margin-bottom: .9rem; }
.prose ul { padding-left: 1.2rem; }
.back-link { display: inline-flex; align-items: center; gap: .4rem; color: var(--gold-deep); font-weight: 700; margin-top: 2.5rem; }
.back-link:hover { gap: .7rem; transition: gap .2s; }

@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

/* ---- Real logo + team photos ---- */
.brand__img { height: 46px; width: auto; display: block; }
.nav.scrolled .brand__img { height: 42px; }
.footer .brand__img { height: 52px; }
.avatar.photo { background: none; box-shadow: 0 0 0 4px rgba(245,163,0,.22); overflow: hidden; }
.avatar.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.intro .intro-logo { width: clamp(120px, 22vw, 168px); height: auto; display: block; margin: 0 auto 1.1rem; animation: pop .8s cubic-bezier(.2,.8,.2,1); }

/* Brand name text next to nav logo */
.brand__name { font-family: "Schibsted Grotesk", sans-serif; font-weight: 800; font-size: 1.12rem; letter-spacing: -0.01em; color: #fff; white-space: nowrap; }
.nav.scrolled .brand__name { color: var(--espresso); }
@media (max-width: 520px){ .brand__name { display: none; } }

/* ===== 360 virtual tour ===== */
.tour { background: var(--espresso); color: #fff; }
.tour .head h2 { color: #fff; }
.tour .head p { color: rgba(255, 255, 255, 0.72); }
.tour .eyebrow { color: var(--gold-soft); }
.tour .eyebrow::before { background: var(--gold-soft); }
.tour-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #17110b;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.tour-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.tour-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 28px; }
.tour-note { text-align: center; color: rgba(255, 255, 255, 0.58); font-size: .9rem; margin-top: 16px; }
@media (max-width: 700px) {
  .tour-frame { aspect-ratio: 4 / 5; }
  .tour-actions .btn { width: 100%; }
}

/* ===== Build-standard additions ===== */
.hero-rating {
  display: inline-flex; align-items: center; gap: .9rem;
  margin-top: 1.9rem; padding: .8rem 1.2rem; border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.26);
}
.hero-rating .hr-stars { color: var(--gold-soft); letter-spacing: 2px; font-size: 1rem; line-height: 1; }
.hero-rating .hr-txt { font-size: .84rem; color: rgba(255, 255, 255, 0.86); line-height: 1.45; }
.hero-rating .hr-txt strong { display: block; color: #fff; font-size: .96rem; }

.card { overflow: hidden; }
.card-media { margin: -2rem -1.7rem 1.3rem; aspect-ratio: 16 / 10; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; display: block; filter: var(--img-filter); transition: transform .5s ease; }
.card:hover .card-media img { transform: scale(1.06); }

.checklist .tick { display: inline-grid; place-items: center; width: 22px; height: 22px; flex: none; }
.checklist .tick svg { width: 14px; height: 14px; }

.reviews-cta { text-align: center; margin-top: 2.2rem; }
.btn .bico { width: 17px; height: 17px; flex: none; }

.socials { display: flex; gap: .7rem; margin-top: 1.6rem; }
.socials a {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22); color: #fff;
  transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
}
.socials a svg { width: 17px; height: 17px; }
.socials a:hover { background: var(--gold); color: var(--espresso); border-color: var(--gold); transform: translateY(-2px); }

.map-sec { padding: 0 0 4rem; background: var(--cream); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); line-height: 0; }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

@media (max-width: 700px) {
  .hero-rating { width: 100%; }
  .socials { flex-wrap: wrap; }
  .map-wrap iframe { height: 300px; }
}

/* hero facebook follow */
.hero-fb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  flex: none;
  border-radius: 999px;
  color: #fff;
  border: 1.6px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background .25s ease, border-color .25s ease, transform .25s ease, color .25s ease;
}
.hero-fb svg { width: 22px; height: 22px; flex: none; }
.hero-fb-txt { display: none; }
.hero-fb:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--espresso);
  transform: translateY(-2px);
}
.hero-fb:active { transform: translateY(0) scale(.97); }
@media (max-width: 700px) {
  .hero-fb {
    width: 100%;
    height: 56px;
    gap: 10px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
  }
  .hero-fb-txt { display: inline; }
}
