/* ===== Tokens ===== */
:root {
  --gold: #c8a45c;
  --gold-dark: #a9863e;
  --gold-soft: #e7d6b0;
  --ink: #221d18;
  --ink-soft: #6b6258;
  --cream: #f7f1e8;
  --cream-2: #efe6d7;
  --white: #ffffff;
  --line: #e3d8c6;
  --shadow: 0 24px 60px -28px rgba(60, 45, 25, 0.4);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", system-ui, sans-serif;
  --maxw: 1180px;
}

/* ===== Base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: italic; }
.container { width: 90%; max-width: var(--maxw); margin: 0 auto; }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.btn--gold { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn--gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn--ghost:hover { background: #fff; color: var(--ink); }
.btn--dark { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--dark:hover { background: var(--ink); color: #fff; }

/* ===== Section helpers ===== */
.section__head { text-align: center; max-width: 680px; margin: 0 auto 4rem; }
.section__eyebrow {
  font-size: 0.7rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 500; margin-bottom: 1rem;
}
.section__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.1rem, 4.5vw, 3.4rem); line-height: 1.08; color: var(--ink);
}
.section__title em { color: var(--gold-dark); }
.section__lead { margin-top: 1.2rem; color: var(--ink-soft); font-size: 1.02rem; }

/* ===== Logo ===== */
.logo { display: flex; align-items: center; gap: 0.7rem; }
.logo__img { height: 56px; width: auto; transition: height 0.35s ease; }
.header .logo__img { filter: drop-shadow(0 2px 7px rgba(0,0,0,0.5)); }
.header.scrolled .logo__img { height: 46px; filter: none; }
.footer__logo { height: 96px; }
.logo__text {
  font-family: var(--serif); font-weight: 600; font-size: 1.4rem;
  line-height: 1; display: flex; flex-direction: column; color: #fff;
}
.logo__name { white-space: nowrap; }
.logo__name em { color: var(--gold); font-style: italic; font-weight: 500; }
.logo__text small {
  font-family: var(--sans); font-size: 0.52rem; font-weight: 400;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold);
  margin-top: 4px;
}

/* ===== Header ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.1rem 0; transition: all 0.35s ease; background: transparent;
}
.header.scrolled {
  background: rgba(247, 241, 232, 0.96);
  box-shadow: 0 6px 24px -12px rgba(0,0,0,0.18);
  padding: 0.55rem 0; backdrop-filter: blur(8px);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.header.scrolled .logo__text { color: var(--ink); }
.header.scrolled .logo__text small { color: var(--gold-dark); }
.nav__list { display: flex; gap: 2rem; }
.nav__link {
  font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; font-weight: 400; position: relative; padding: 4px 0;
}
.header.scrolled .nav__link { color: var(--ink); }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width 0.3s ease;
}
.nav__link:hover::after { width: 100%; }
.nav__link:hover { color: var(--gold); }
.header__cta { padding: 0.6rem 1.4rem; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 26px; height: 2px; background: #fff; transition: 0.3s; }
.header.scrolled .nav__toggle span { background: var(--ink); }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: url("../assets/images/hero-bg.jpg") center/cover no-repeat;
  color: #fff; text-align: center;
}
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(30,22,15,0.55), rgba(30,22,15,0.62)); }
.hero__content { position: relative; max-width: 820px; margin: 0 auto; padding-top: 80px; }
.hero__eyebrow { font-size: 0.78rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1.4rem; font-weight: 400; }
.hero__title { font-family: var(--serif); font-weight: 500; font-size: clamp(2.8rem, 7.5vw, 5.6rem); line-height: 1.04; margin-bottom: 1.5rem; }
.hero__title em { color: var(--gold-soft); }
.hero__sub { font-size: 1.12rem; font-weight: 300; max-width: 600px; margin: 0 auto 2.6rem; opacity: 0.95; }
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
  font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.8);
}
.hero__scroll::before { content: ""; display: block; width: 1px; height: 34px; background: rgba(255,255,255,0.5); margin: 0 auto 0.7rem; }

/* ===== Values ===== */
.values { background: var(--white); padding: 4.5rem 0; }
.values__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.value { text-align: center; padding: 1.5rem 1rem; position: relative; }
.value:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: var(--line); }
.value__icon { width: 64px; height: 64px; margin: 0 auto 1.2rem; display: grid; place-items: center; font-size: 1.4rem; color: var(--gold-dark); border: 1px solid var(--gold-soft); border-radius: 50%; }
.value h3 { font-family: var(--serif); font-size: 1.45rem; font-weight: 600; margin-bottom: 0.4rem; }
.value p { color: var(--ink-soft); font-size: 0.92rem; }

/* ===== About ===== */
.about { padding: 6.5rem 0; }
.about__inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 4.5rem; align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: 4px; box-shadow: var(--shadow); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about__badge {
  position: absolute; right: -18px; bottom: 30px; background: var(--gold); color: #fff;
  padding: 1.1rem 1.4rem; border-radius: 4px; text-align: center; font-size: 0.66rem;
  letter-spacing: 0.18em; text-transform: uppercase; line-height: 1.4; box-shadow: var(--shadow);
}
.about__badge span { display: block; font-family: var(--serif); font-size: 2rem; font-weight: 700; letter-spacing: 0; }
.about__text .section__title { margin-bottom: 1.5rem; }
.about__text p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.about__sign { font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: var(--gold-dark); }
.stats { display: flex; gap: 2.8rem; margin: 2.2rem 0 1.6rem; flex-wrap: wrap; }
.stats__source { display: flex; width: fit-content; align-items: center; gap: 0.55rem; margin: 0 0 2.4rem; padding: 0.5rem 1.1rem 0.5rem 0.6rem; background: var(--white); border: 1px solid var(--line); border-radius: 40px; font-size: 0.82rem; color: var(--ink-soft); box-shadow: 0 8px 22px -16px rgba(60,45,25,0.45); transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease; cursor: pointer; }
.stats__source:hover { border-color: var(--gold); box-shadow: 0 12px 28px -16px rgba(60,45,25,0.6); transform: translateY(-2px); }
.stats__source strong { color: var(--ink); font-weight: 600; }
.stats__stars { color: var(--gold); letter-spacing: 1px; font-size: 0.78rem; }
.stats__ext { color: var(--gold-dark); font-weight: 600; margin-left: 0.1rem; }
.g-badge { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: #fff; border: 1px solid var(--line); color: #4285F4; font-weight: 700; font-size: 0.74rem; font-family: var(--sans); }
.stat__num { font-family: var(--serif); font-size: 2.6rem; font-weight: 700; color: var(--ink); line-height: 1; display: block; }
.stat__num i { color: var(--gold); font-style: normal; }
.stat__label { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }

/* ===== Menu ===== */
.menu { padding: 6.5rem 0; background: var(--cream-2); }
.cat { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 4rem; align-items: center; margin-bottom: 6rem; }
.cat--reverse .cat__media { order: 2; }
.cat__media { position: relative; }
.cat__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: 4px; box-shadow: var(--shadow); }
.cat__index {
  position: absolute; top: -28px; left: -18px; font-family: var(--serif);
  font-size: 5.5rem; font-weight: 700; color: var(--gold); opacity: 0.85; line-height: 1;
  text-shadow: 0 2px 14px rgba(0,0,0,0.12);
}
.cat--reverse .cat__index { left: auto; right: -18px; }
.cat__eyebrow { font-size: 0.7rem; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.7rem; font-weight: 500; }
.cat__title { font-family: var(--serif); font-weight: 500; font-size: clamp(1.9rem, 3.5vw, 2.8rem); line-height: 1.1; margin-bottom: 1rem; }
.cat__title em { color: var(--gold-dark); }
.cat__desc { color: var(--ink-soft); margin-bottom: 1.8rem; max-width: 560px; }
.cat__group { margin-bottom: 1.8rem; }
.cat__group h4 {
  font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink); margin-bottom: 0.9rem; padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: baseline;
}
.cat__group h4 .cols { font-size: 0.62rem; letter-spacing: 0.12em; color: var(--gold-dark); font-weight: 500; }

/* price list */
.svc-tags { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 0.2rem 0 1.3rem; padding: 0; list-style: none; }
.svc-tags li { font-family: var(--sans); font-size: 0.82rem; color: var(--ink); background: var(--white); border: 1px solid var(--line); border-radius: 30px; padding: 0.5rem 1.05rem; }
.cat__note { font-size: 0.86rem; color: var(--gold-dark); font-style: italic; margin: 0 0 1.5rem; }
.pl__dur { font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin-left: 0.5rem; }
.price-list li { display: flex; align-items: baseline; gap: 0.6rem; padding: 0.35rem 0; font-size: 0.96rem; }
.pl__name { color: var(--ink); }
.pl__name .tag {
  display: inline-block; font-family: var(--sans); font-style: normal; font-size: 0.58rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-dark);
  background: var(--cream); border: 1px solid var(--gold-soft); border-radius: 20px;
  padding: 2px 8px; margin-left: 6px; vertical-align: middle;
}
.dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-3px); min-width: 18px; }
.pl__price { color: var(--gold-dark); font-weight: 500; white-space: nowrap; }
.price-list--compact { columns: 2; column-gap: 2.5rem; }
.price-list--compact li { break-inside: avoid; }

/* ===== Price list (2-column Cash/Card, inside .cat) ===== */
.pricelist2 { margin-top: 0.4rem; }
.pmrow { display: grid; grid-template-columns: 1fr 76px 76px; align-items: baseline; gap: 0.8rem; padding: 0.7rem 0.1rem; border-bottom: 1px solid var(--line); }
.pmrow--head { border-bottom: 2px solid var(--gold-soft); padding-bottom: 0.5rem; margin-bottom: 0.2rem; }
.pmrow--head .pm__cash, .pmrow--head .pm__card { font-family: var(--sans); font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-dark); font-weight: 500; }
.pm__name { color: var(--ink); font-size: 0.94rem; }
.pm__cash, .pm__card { text-align: right; white-space: nowrap; font-weight: 500; }
.pm__cash { color: var(--ink); }
.pm__card { color: var(--gold-dark); }

/* addons */
.addons { background: var(--white); border: 1px solid var(--line); border-radius: 6px; padding: 3rem; box-shadow: var(--shadow); }
.addons__head { text-align: center; max-width: 640px; margin: 0 auto 2.2rem; }
.addons__grid { columns: 3; column-gap: 3rem; }
.addons__grid li { break-inside: avoid; }

/* ===== Quote band ===== */
.quote { background: var(--ink); color: var(--gold-soft); padding: 5rem 0; text-align: center; }
.quote__text { font-family: var(--serif); font-style: italic; font-size: clamp(1.4rem, 3vw, 2.2rem); line-height: 1.5; max-width: 880px; margin: 0 auto; }

/* ===== Gallery ===== */
.gallery { padding: 6.5rem 0; }
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery__grid img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 4px; transition: transform 0.45s ease, filter 0.45s ease; }
.gallery__grid img:hover { transform: scale(1.03); filter: brightness(1.05); }

/* ===== Reviews ===== */
.reviews { background: var(--ink); color: #fff; padding: 6.5rem 0; }
.reviews .section__title { color: #fff; }
.reviews .section__title em { color: var(--gold); }
.reviews .section__lead { color: rgba(255,255,255,0.7); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.review { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); padding: 2.4rem; border-radius: 6px; position: relative; }
.review__quote { font-family: var(--serif); font-size: 4rem; color: var(--gold); line-height: 0.5; height: 1.4rem; }
.review blockquote { font-family: var(--serif); font-size: 1.22rem; line-height: 1.55; font-style: italic; margin-bottom: 1.6rem; color: #f2ece2; }
.review figcaption { display: flex; align-items: center; gap: 0.8rem; }
.review__avatar { width: 42px; height: 42px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--gold); color: #fff; font-family: var(--serif); font-size: 1.2rem; font-weight: 600; }
.review figcaption strong { display: block; font-weight: 500; letter-spacing: 0.04em; }
.review figcaption small { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }

/* ===== Contact ===== */
.contact { padding: 6.5rem 0; }
.contact__inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 4.5rem; align-items: start; }
.contact__hours .section__title, .contact__book .section__title { margin-bottom: 1.6rem; }
.hours li { display: flex; justify-content: space-between; padding: 0.7rem 0; border-bottom: 1px dotted var(--line); color: var(--ink-soft); }
.hours li span:first-child { color: var(--ink); font-weight: 400; }
.contact__lead { color: var(--ink-soft); margin-bottom: 1.8rem; }
.contact__list { margin-bottom: 2rem; }
.contact__list li { display: flex; flex-direction: column; padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
.contact__list strong { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 0.3rem; font-weight: 500; }
.contact__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== Map ===== */
.map { padding: 6.5rem 0; }
.map__embed { border-radius: 12px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map__embed iframe { display: block; width: 100%; height: 420px; border: 0; filter: grayscale(0.12) contrast(1.02); }
.map__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.2rem; }

/* ===== Footer ===== */
.footer { background: #1c1814; color: #c9bfb1; padding: 4.5rem 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.8fr 1fr 1.4fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer__brand .logo__text { color: #fff; }
.footer__col p { font-size: 0.9rem; margin-top: 1.1rem; max-width: 300px; }
.footer__col h4 { font-family: var(--serif); font-size: 1.25rem; color: #fff; margin-bottom: 1.1rem; font-weight: 600; }
.footer__col ul li { padding: 0.35rem 0; font-size: 0.9rem; }
.footer__col ul a:hover { color: var(--gold); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0; text-align: center; font-size: 0.8rem; letter-spacing: 0.04em; }
.footer__switch { margin-top: 0.6rem; }
.footer__switch a { color: var(--gold); border-bottom: 1px solid transparent; }
.footer__switch a:hover { border-color: var(--gold); }

/* ===== Reveal ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .values__grid { grid-template-columns: repeat(2, 1fr); }
  .value:nth-child(2)::after { display: none; }
  .gallery__grid, .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .addons__grid { columns: 2; }
  .about__inner, .contact__inner { grid-template-columns: 1fr; gap: 3rem; }
  .about__badge { right: 20px; }
  .map { padding: 4.5rem 0; }
  .map__embed iframe { height: 320px; }
}
@media (max-width: 760px) {
  .nav { position: fixed; top: 0; right: -100%; width: 78%; max-width: 320px; height: 100vh; background: var(--cream); box-shadow: -10px 0 40px rgba(0,0,0,0.15); display: flex; align-items: center; justify-content: center; transition: right 0.35s ease; z-index: 90; }
  .nav.open { right: 0; }
  .nav__list { flex-direction: column; gap: 1.8rem; text-align: center; }
  .nav__link { color: var(--ink) !important; font-size: 1rem; }
  .nav__toggle { display: flex; order: 3; }
  .header__cta { display: none; }
  .cat, .cat--reverse { grid-template-columns: 1fr; gap: 2.5rem; }
  .cat--reverse .cat__media { order: 0; }
  .cat__index { font-size: 4rem; top: -20px; left: 6px; }
  .cat--reverse .cat__index { right: auto; left: 6px; }
  .gallery__grid, .reviews__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .addons { padding: 1.8rem; }
  .addons__grid, .price-list--compact { columns: 1; }
  .pmrow { grid-template-columns: 1fr 72px 72px; gap: 0.5rem; }
  .pmtab { font-size: 0.74rem; padding: 0.5rem 0.95rem; }
  .pmrow--head .pm__name { font-size: 1.25rem; }
  .pm__name { font-size: 0.92rem; }
}
@media (max-width: 460px) {
  .values__grid { grid-template-columns: 1fr; }
  .value::after { display: none; }
}
