/* Shared demo site styles. Each page sets its own --brand colors inline. */
:root {
  --brand: #1f8f4e;
  --brand-dark: #14633a;
  --accent: #ffb703;
  --ink: #161c24;
  --muted: #5b6b7b;
  --bg: #ffffff;
  --soft: #f6f8fa;
  --line: #e6ebf0;
  --radius: 16px;
  --maxw: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { line-height: 1.12; margin: 0 0 .5em; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
p { margin: 0 0 1rem; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--soft { background: var(--soft); }
.eyebrow { color: var(--brand); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .76rem; margin-bottom: .7rem; }
.center { text-align: center; }
.lead { color: var(--muted); font-size: 1.08rem; max-width: 640px; }
.center .lead { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--brand); color: #fff; text-decoration: none;
  padding: 13px 24px; border-radius: 10px; font-weight: 600; font-size: .98rem;
  border: none; cursor: pointer; transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  box-shadow: 0 6px 16px color-mix(in srgb, var(--brand) 28%, transparent);
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 10px 22px color-mix(in srgb, var(--brand) 36%, transparent); }
.btn--ghost { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.55); box-shadow: none; backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(255,255,255,.2); box-shadow: none; }
.btn--lg { padding: 15px 30px; font-size: 1.04rem; }
.btn--light { background: #fff; color: var(--ink); box-shadow: 0 8px 22px rgba(0,0,0,.18); }
.btn svg { width: 18px; height: 18px; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.9); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { font-weight: 800; font-size: 1.18rem; color: var(--ink); text-decoration: none; display: flex; align-items: center; gap: .55rem; letter-spacing: -0.02em; }
.brand .dot { width: 11px; height: 11px; border-radius: 50%; background: var(--brand); display: inline-block; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { text-decoration: none; color: var(--muted); font-weight: 600; font-size: .95rem; }
.nav-links a:hover { color: var(--ink); }
.nav-links .btn { color: #fff; padding: 10px 18px; }
@media (max-width: 760px) { .nav-links a:not(.btn) { display: none; } }

/* Hero with full-bleed photo */
.hero {
  position: relative; color: #fff;
  background-color: var(--brand-dark);
  background-size: cover; background-position: center;
  isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,15,20,.42) 0%, rgba(10,15,20,.62) 60%, rgba(10,15,20,.82) 100%);
}
.hero .wrap { padding-top: 112px; padding-bottom: 112px; }
.hero-inner { max-width: 660px; }
.badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.25);
  padding: 7px 15px; border-radius: 999px; font-weight: 600; font-size: .9rem; margin-bottom: 1.3rem;
}
.badge .star { color: var(--accent); }
.hero h1 { font-size: clamp(2.3rem, 6vw, 4rem); margin-bottom: .5rem; text-shadow: 0 2px 20px rgba(0,0,0,.25); }
.hero .sub { font-size: 1.22rem; opacity: .96; max-width: 560px; margin-bottom: 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* Rating */
.rating { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; }
.stars { color: var(--accent); letter-spacing: 1px; }
.rating .count { color: var(--muted); font-weight: 600; }

/* Grids & cards */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: box-shadow .15s ease, transform .15s ease, border-color .15s ease;
  text-align: left;
}
.card:hover { box-shadow: 0 16px 40px rgba(20,30,45,.1); transform: translateY(-3px); border-color: color-mix(in srgb, var(--brand) 30%, var(--line)); }
.card .ico {
  width: 50px; height: 50px; border-radius: 13px; margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in srgb, var(--brand) 12%, #fff); color: var(--brand);
}
.card .ico svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 1.16rem; margin-bottom: .4rem; }
.card p { color: var(--muted); margin: 0; font-size: .98rem; }
.card .price { display: inline-block; margin-top: .9rem; font-weight: 800; color: var(--brand); }

/* Menu list (restaurant) */
.menu-item { display: flex; justify-content: space-between; gap: 18px; padding: 18px 0; border-bottom: 1px dashed var(--line); }
.menu-item:last-child { border-bottom: none; }
.menu-item h4 { margin: 0 0 .25rem; font-size: 1.08rem; }
.menu-item p { margin: 0; color: var(--muted); font-size: .96rem; }
.menu-item .price { font-weight: 800; color: var(--brand); white-space: nowrap; }

/* Photo gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 560px) { .gallery { grid-template-columns: 1fr 1fr; } }
.tile { aspect-ratio: 4/3; border-radius: 14px; overflow: hidden; background: var(--soft); }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.tile:hover img { transform: scale(1.06); }

/* Testimonials */
.quote { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; text-align: left; }
.quote .stars { font-size: 1rem; margin-bottom: .7rem; }
.quote p { color: var(--ink); }
.quote .who { color: var(--muted); font-weight: 700; }

/* Split (about) with photo */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.shot { width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: var(--radius); box-shadow: 0 20px 50px rgba(20,30,45,.16); }

/* Embedded map */
.map { width: 100%; aspect-ratio: 5/4; border: 0; border-radius: var(--radius); box-shadow: 0 20px 50px rgba(20,30,45,.16); }

/* Facts / hours */
.facts { list-style: none; padding: 0; margin: 0; }
.facts li { display: flex; gap: 12px; padding: 9px 0; color: var(--muted); border-bottom: 1px solid var(--line); }
.facts li:last-child { border-bottom: none; }
.facts strong { color: var(--ink); min-width: 96px; display: inline-block; }

/* CTA band */
.cta { color: #fff; text-align: center; padding: 80px 0; background: linear-gradient(135deg, var(--brand), var(--brand-dark)); }
.cta h2 { color: #fff; }
.cta p { opacity: .92; max-width: 540px; margin: 0 auto 1.4rem; }

/* Form */
.form { display: grid; gap: 12px; max-width: 460px; }
.form input, .form textarea {
  width: 100%; padding: 13px 15px; border-radius: 11px; border: 1px solid var(--line);
  font: inherit; background: var(--bg);
}
.form textarea { min-height: 110px; resize: vertical; }

/* Footer */
.footer { background: var(--ink); color: #c3cdd6; padding: 44px 0; font-size: .92rem; }
.footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; }
.footer a { color: #fff; text-decoration: none; font-weight: 600; }
.demo-tag { display: inline-block; margin-top: 8px; font-size: .8rem; color: #8595a3; }

/* Sticky mobile call button */
.callbar {
  position: fixed; bottom: 16px; left: 50%; transform: translateX(-50%);
  z-index: 60; box-shadow: 0 10px 30px rgba(0,0,0,.3);
}
@media (min-width: 761px) { .callbar { display: none; } }

/* Trust / differentiators strip (sits below the hero) */
.trust { background: var(--soft); border-bottom: 1px solid var(--line); }
.trust .wrap { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px 42px; padding: 18px 24px; }
.trust .item { display: inline-flex; align-items: center; gap: .55rem; font-weight: 700; font-size: .95rem; color: var(--ink); }
.trust .item svg { width: 19px; height: 19px; stroke: var(--brand); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }
@media (max-width: 560px) { .trust .wrap { gap: 10px 20px; } .trust .item { font-size: .84rem; } .trust .item svg { width: 16px; height: 16px; } }

/* Two-action sticky mobile bar (Call + primary online action) */
.mobilebar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60; display: none; gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.94); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line); box-shadow: 0 -8px 24px rgba(0,0,0,.12);
}
.mobilebar .btn { flex: 1; justify-content: center; padding: 14px 16px; }
.mobilebar .btn--call { background: #fff; color: var(--ink); border: 1px solid var(--line); box-shadow: none; }
@media (max-width: 760px) { .mobilebar { display: flex; } }

/* Team / stylists */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 30px; }
@media (max-width: 720px) { .team-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; } }
.team-card { text-align: center; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 22px; }
.team-av { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 14px; object-fit: cover;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.5rem; letter-spacing: .02em;
  color: #fff; background: linear-gradient(135deg, var(--brand), var(--brand-dark)); }
.team-card h3 { margin: 0 0 .2rem; font-size: 1.12rem; }
.team-card .role { color: var(--muted); font-weight: 600; font-size: .95rem; }
