@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-Variable.woff2') format('woff2-variations'),
       url('/fonts/Inter-Variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* NASKO brand palette (from Bookly TenantSettings) */
  --primary: #5a3828;          /* brown */
  --primary-hover: #43271a;
  --primary-soft: #7a5340;
  --sand: #cbc6b8;             /* sandy accent */
  --cream: #f4ebdc;            /* button text / light */

  --bg: #f6f1e8;              /* warm off-white page */
  --bg-alt: #efe7d8;          /* alt section */
  --surface: #ffffff;

  --text: #2b211a;            /* warm near-black */
  --text-secondary: #5f5347;
  --text-muted: #8a7d6f;

  --border: #e4dccd;
  --border-strong: #d6cab4;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(43, 33, 26, 0.07), 0 1px 2px rgba(43, 33, 26, 0.05);
  --shadow-md: 0 6px 16px -4px rgba(43, 33, 26, 0.12), 0 2px 6px -2px rgba(43, 33, 26, 0.08);
  --shadow-lg: 0 18px 40px -12px rgba(43, 33, 26, 0.22);

  --container-max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 76px; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

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

h1, h2, h3 { line-height: 1.18; margin: 0 0 0.5em; color: var(--text); }
h1 { font-size: clamp(2.1rem, 5.2vw, 3.4rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.55rem, 3vw, 2.3rem); font-weight: 700; letter-spacing: -0.015em; }
h3 { font-size: 1.2rem; font-weight: 700; }
p { margin: 0 0 1em; }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-soft);
  margin-bottom: 12px;
}

/* ------- Buttons ------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .05s ease, color .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--primary); color: var(--cream); }
.btn--primary:hover { background: var(--primary-hover); color: var(--cream); text-decoration: none; }
.btn--ghost { background: transparent; color: var(--primary); border-color: var(--border-strong); }
.btn--ghost:hover { background: var(--surface); text-decoration: none; }
.btn--lg { padding: 17px 36px; font-size: 1.08rem; border-radius: 14px; letter-spacing: 0.02em; }
.btn--ondark { background: var(--cream); color: var(--primary); }
.btn--ondark:hover { background: #fff; color: var(--primary-hover); text-decoration: none; }

/* ------- Header ------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(246, 241, 232, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 64px; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--primary); letter-spacing: 0.04em; }
.brand:hover { text-decoration: none; }
.brand img { height: 40px; width: auto; }
.brand__name { font-size: 1.15rem; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a {
  color: var(--text-secondary); font-size: 0.94rem; font-weight: 600;
  padding: 6px 0; transition: color .15s ease;
}
.nav a:hover { color: var(--primary); text-decoration: none; }
.nav .btn { padding: 9px 18px; font-size: 0.9rem; }
.nav .btn--primary, .nav .btn--primary:hover { color: var(--cream); }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  padding: 8px; color: var(--primary);
}
.nav-toggle svg { display: block; }

/* ------- Hero ------- */
.hero {
  position: relative;
  color: var(--cream);
  text-align: center;
  padding: 92px 0 84px;
  background-color: #1c120c;
  background-image:
    linear-gradient(180deg, rgba(28,18,12,0.55) 0%, rgba(28,18,12,0.72) 55%, rgba(43,33,26,0.92) 100%),
    url('/img/hero.webp');
  background-size: cover, cover;
  background-position: center, center top;
  background-repeat: no-repeat, no-repeat;
}
.hero__inner { max-width: 720px; margin: 0 auto; position: relative; }
.hero__logo { width: clamp(140px, 22vw, 210px); margin: 0 auto 26px; filter: drop-shadow(0 6px 18px rgba(0,0,0,0.45)); }
.hero h1 { color: #fff; margin-bottom: 14px; text-shadow: 0 2px 16px rgba(0,0,0,0.4); }
.hero__sub {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: rgba(255,255,255,0.92);
  max-width: 46ch; margin: 0 auto 34px;
}
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero__meta {
  margin-top: 30px; font-size: 0.9rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(244,235,220,0.75);
}

/* ------- Sections ------- */
.section { padding: 84px 0; }
.section--alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section--sand { background: var(--sand); }
.section__head { max-width: 640px; margin-bottom: 40px; }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__lede { color: var(--text-secondary); font-size: 1.08rem; margin: 0; }

.prose p { color: var(--text-secondary); max-width: 68ch; }
.prose p + p { margin-top: 0.85em; }

/* ------- Services / price list ------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.price-card--feature { border-color: var(--primary-soft); box-shadow: var(--shadow-md); }
.price-card__title {
  display: flex; align-items: center; gap: 10px;
  color: var(--primary); margin-bottom: 4px;
}
.price-card__tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--primary); background: var(--sand);
  padding: 3px 10px; border-radius: var(--radius-full);
}
.price-card__note { color: var(--text-muted); font-size: 0.86rem; margin: 0 0 18px; }

.svc { list-style: none; margin: 0; padding: 0; }
.svc__row {
  display: grid; grid-template-columns: 1fr auto; align-items: baseline;
  gap: 8px 14px; padding: 13px 0; border-bottom: 1px dashed var(--border);
}
.svc__row:last-child { border-bottom: 0; }
.svc__name { font-weight: 600; color: var(--text); }
.svc__dur { display: block; font-size: 0.82rem; color: var(--text-muted); font-weight: 500; margin-top: 2px; }
.svc__price { font-weight: 800; color: var(--primary); white-space: nowrap; font-variant-numeric: tabular-nums; }
.svc__price small { font-weight: 600; font-size: 0.72em; color: var(--text-muted); }

.svc-extra {
  margin-top: 24px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 22px 26px; box-shadow: var(--shadow-sm);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px 20px;
}
.svc-extra__name { font-weight: 700; color: var(--text); }
.svc-extra__desc { color: var(--text-muted); font-size: 0.88rem; flex-basis: 100%; margin-top: 4px; }

.services__cta { margin-top: 40px; text-align: center; }

/* ------- Gallery ------- */
.gallery-banner { margin: 0; }
.gallery-banner img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius-lg); border: 1px solid var(--border);
  box-shadow: var(--shadow-md); background: var(--primary);
}

/* ------- Hours ------- */
.hours { max-width: 480px; margin: 0; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); }
.hours__row { display: flex; justify-content: space-between; gap: 16px; padding: 14px 22px; border-bottom: 1px solid var(--border); }
.hours__row:last-child { border-bottom: 0; }
.hours__row--today { background: var(--bg-alt); }
.hours__day { font-weight: 600; color: var(--text); }
.hours__time { color: var(--text-secondary); font-variant-numeric: tabular-nums; }
.hours__time--closed { color: var(--text-muted); }
.todo-note {
  display: inline-block; margin-top: 14px; font-size: 0.82rem; color: var(--text-muted);
  background: var(--bg-alt); border: 1px dashed var(--border-strong);
  padding: 6px 12px; border-radius: var(--radius-sm);
}

/* ------- Location ------- */
.location { display: grid; grid-template-columns: 1fr 1.3fr; gap: 32px; align-items: start; }
@media (max-width: 760px) { .location { grid-template-columns: 1fr; } }
.location__map {
  width: 100%; aspect-ratio: 16 / 10; border: 0;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); background: var(--bg-alt);
}
.address dt { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-top: 16px; }
.address dt:first-child { margin-top: 0; }
.address dd { margin: 2px 0 0; font-size: 1.02rem; color: var(--text); }

/* ------- Contact ------- */
.contact-cta {
  text-align: center; max-width: 620px; margin: 0 auto;
}
.contact-cta__phone { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; color: var(--primary); letter-spacing: -0.01em; }
.contact-cta__phone:hover { color: var(--primary-hover); text-decoration: none; }
.contact-cta .btn { margin-top: 24px; }

/* ------- Footer ------- */
.site-footer { background: var(--primary); color: rgba(244,235,220,0.85); padding: 56px 0 30px; }
.site-footer a { color: var(--cream); }
.site-footer a:hover { color: #fff; }
.social-link { display: inline-flex; align-items: center; justify-content: center; opacity: 0.85; transition: opacity .15s ease, color .15s ease; }
.social-link:hover { opacity: 1; }
.site-footer__inner { display: grid; gap: 26px; grid-template-columns: 1.2fr 1fr 1fr; }
@media (max-width: 720px) { .site-footer__inner { grid-template-columns: 1fr; gap: 30px; } }
.site-footer__brand { display: flex; align-items: center; gap: 12px; }
.site-footer__brand img { height: 56px; width: auto; filter: brightness(0) invert(1); opacity: 0.95; }
.site-footer__brand strong { color: #fff; font-size: 1.2rem; letter-spacing: 0.06em; }
.site-footer h4 { color: #fff; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; margin: 0 0 14px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.site-footer p { margin: 0 0 6px; color: rgba(244,235,220,0.75); }
.site-footer__copy { grid-column: 1 / -1; border-top: 1px solid rgba(244,235,220,0.18); padding-top: 22px; margin-top: 6px; font-size: 0.86rem; color: rgba(244,235,220,0.6); }

/* ------- Mobile nav ------- */
@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: 64px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    padding: 8px 0 16px; box-shadow: var(--shadow-md);
    transform: translateY(-120%); transition: transform .22s ease; visibility: hidden;
  }
  .nav.is-open { transform: translateY(0); visibility: visible; }
  .nav a { padding: 14px 24px; font-size: 1rem; border-bottom: 1px solid var(--border); }
  .nav .btn { margin: 14px 24px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .nav { transition: none; }
}
