  :root {
    --c0: #FEFAF3;   /* page bg */
    --c1: #F5ECD9;   /* alt section bg */
    --c2: #EAD9C0;   /* sand, borders */
    --c3: #DFC9A6;   /* deeper border */
    --ink: #1E1208;  /* headings */
    --txt: #3D2B14;  /* body */
    --dim: #7A6045;  /* muted */
    --gld: #8B6B3D;  /* gold – buttons, accents */
    --gld2:#A07A45;  /* hover */
    --btn: #5A3E22;  /* warm dark brown – primary buttons */
    --btn2:#4A3018;  /* button hover */
    --grn: #2A7A4B;  /* green – reservation buttons */
    --grn2:#1E5E38;  /* green hover */
    --red: #9E2B1C;
    --wh:  #FFFFFF;
    --f:   'Roboto', sans-serif;
    --fh:  'Poppins', sans-serif;
    --r:   10px;
    --ease: cubic-bezier(.4,0,.2,1);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
  body { font-family: var(--f); background: var(--c0); color: var(--txt); line-height: 1.65; overflow-x: clip; }
  h1, h2, h3, h4, .logo, .nav-btn, .btn-main, .btn-ghost, .btn-inv, .btn-inv-ghost, .btn-send, .nav-cta { font-family: var(--fh); }
  img { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  ul { list-style: none; }
  button { font-family: var(--f); }

  /* ── UTIL ───────────────────────────────── */
  .eye {
    display: inline-block;
    font-size: .72rem; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase;
    color: var(--gld); margin-bottom: 10px;
  }
  .h1 { font-size: clamp(2.4rem, 4.5vw, 3.8rem); font-weight: 700; color: var(--ink); line-height: 1.1; letter-spacing: -.025em; }
  .h2 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 700; color: var(--ink); line-height: 1.15; letter-spacing: -.02em; }
  .h3 { font-size: 1.05rem; font-weight: 600; color: var(--ink); line-height: 1.3; }
  .lead { font-size: 1.05rem; color: var(--dim); line-height: 1.7; }
  .w { max-width: 1360px; margin: 0 auto; padding: 0 40px; }
  section { padding: 96px 0; }
  .alt { background: var(--c1); }

  /* ── TOPBAR ─────────────────────────────── */
  .topbar {
    background: var(--c2);
    border-bottom: 1px solid var(--c3);
    padding: 9px 0;
    font-size: .82rem; color: var(--txt);
    font-weight: 500;
  }
  .topbar > .w {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; flex-wrap: wrap;
  }
  .topbar a { color: var(--txt); transition: color .2s; }
  .topbar a:hover { color: var(--gld); }
  .tb-l { display: flex; gap: 24px; flex-wrap: wrap; }
  .tb-item { display: flex; align-items: center; gap: 7px; }
  .tb-item svg { opacity: .55; }
  .tb-r { display: flex; gap: 10px; align-items: center; }
  .tb-soc {
    display: flex; gap: 8px;
  }
  .tb-soc a {
    display: flex; align-items: center; gap: 5px;
    background: var(--c3); border-radius: 6px;
    padding: 4px 10px;
    font-size: .75rem; font-weight: 600; letter-spacing: .02em;
    color: var(--txt); transition: .2s;
  }
  .tb-soc a:hover { background: var(--gld); color: #fff; }
  .tb-soc a svg { flex-shrink: 0; }

  /* ── NAV ────────────────────────────────── */
  .nav {
    position: sticky; top: 0; z-index: 100;
    background: var(--c0); border-bottom: 1px solid var(--c2);
    transition: box-shadow .25s var(--ease);
  }
  .nav.raised { box-shadow: 0 1px 20px rgba(30,18,8,.07); }
  .nav-i {
    max-width: 1360px; margin: 0 auto; padding: 0 40px;
    display: flex; align-items: center; height: 62px; gap: 28px;
  }
  .logo {
    font-size: 1.2rem; font-weight: 700; color: var(--ink);
    letter-spacing: -.01em; white-space: nowrap; flex-shrink: 0;
  }
  .logo b { color: var(--gld); font-weight: 700; }
  .nav-links {
    display: flex; gap: 0; flex: 1; justify-content: center;
  }
  .nav-links a {
    font-size: .82rem; font-weight: 500; letter-spacing: .04em;
    text-transform: uppercase; color: var(--dim);
    padding: 7px 13px; border-radius: 6px; transition: .18s;
    white-space: nowrap;
  }
  .nav-links a:hover { color: var(--ink); background: var(--c1); }
  .nav-btn {
    display: inline-flex; align-items: center; gap: 7px;
    background: var(--grn); color: var(--wh);
    font-size: .82rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
    padding: 10px 20px; border-radius: var(--r); border: none;
    transition: .2s; white-space: nowrap; flex-shrink: 0; cursor: pointer;
  }
  .nav-btn:hover { background: var(--grn2); }
  .ham {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px; flex-shrink: 0;
  }
  .ham span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

  /* ── HERO ───────────────────────────────── */
  .hero {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: calc(100svh - 100px);
    background: var(--c0);
    position: relative;
    overflow: hidden;
  }
  #heroCanvas {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    pointer-events: none;
  }
  .hero-copy {
    display: flex; flex-direction: column; justify-content: center;
    padding: 72px 16px 72px max(40px, calc((100vw - 1360px) / 2 + 40px));
    gap: 0;
    position: relative; z-index: 1;
  }
  .hero-copy .h1 { margin-bottom: 8px; }
  .hero-copy .h1 em { font-style: normal; color: var(--gld); }
  .hero-loc {
    font-size: .82rem; font-weight: 500; color: var(--dim);
    letter-spacing: .04em; margin-bottom: 22px;
  }
  .hero-copy .lead { max-width: 460px; margin-bottom: 32px; }
  .hero-copy .lead strong { color: var(--txt); font-weight: 600; }
  .hero-acts { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
  .btn-main {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--btn); color: var(--wh);
    font-size: .88rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
    padding: 14px 26px; border-radius: var(--r); border: none;
    transition: .2s; cursor: pointer; white-space: nowrap;
  }
  .btn-main:hover { background: var(--btn2); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(90,62,34,.25); }
  .btn-main.rsvp { background: var(--grn); }
  .btn-main.rsvp:hover { background: var(--grn2); box-shadow: 0 6px 20px rgba(42,122,75,.25); }
  .btn-ghost {
    display: inline-flex; align-items: center; gap: 7px;
    background: transparent; color: var(--gld);
    font-size: .85rem; font-weight: 600; letter-spacing: .03em;
    padding: 13px 22px; border-radius: var(--r);
    border: 1.5px solid var(--c3); transition: .2s; white-space: nowrap;
  }
  .btn-ghost:hover { border-color: var(--gld); background: var(--c1); }
  .hero-note {
    margin-top: 24px; font-size: .95rem; color: var(--txt);
  }
  .hero-note a { color: var(--gld); font-weight: 600; }

  .hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px 0 0;
    overflow: hidden;
  }
  .hero-img {
    width: 100%;
    max-width: 420px;
    flex-shrink: 0;
  }
  .hero-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px 20px 0 0;
  }

  /* ── BENEFITS ───────────────────────────── */
  .benefits-grid {
    display: grid; grid-template-columns: repeat(2,1fr);
    gap: 1px; background: var(--c2);
    border: 1px solid var(--c2); border-radius: 16px;
    overflow: hidden; margin-top: 56px;
  }
  .ben {
    background: var(--c0); padding: 44px 40px;
    display: flex; flex-direction: column; gap: 16px;
    position: relative; overflow: hidden;
    transition: background .2s;
  }
  .ben:hover { background: var(--c1); }
  .ben-num {
    position: absolute; bottom: -16px; right: 10px;
    font-size: 6rem; font-weight: 700; color: var(--c2);
    line-height: 1; pointer-events: none; user-select: none;
    transition: color .2s;
  }
  .ben:hover .ben-num { color: var(--c3); }
  .ben-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--c1); display: flex; align-items: center; justify-content: center;
  }
  .ben-icon svg { color: var(--gld); }
  .ben .h3 { position: relative; z-index: 1; }
  .ben p { font-size: .9rem; color: var(--dim); line-height: 1.65; position: relative; z-index: 1; max-width: 380px; }

  /* ── STATEMENT ──────────────────────────── */
  .stmt { background: var(--c1); padding: 96px 0; }
  .stmt-i {
    max-width: 1360px; margin: 0 auto; padding: 0 40px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  .stmt-q {
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
    font-weight: 700; color: var(--ink); line-height: 1.2;
    letter-spacing: -.025em;
    padding-left: 28px;
    border-left: 3px solid var(--gld);
  }
  .stmt-q em { font-style: normal; color: var(--gld); }
  .stmt-source {
    font-size: .78rem; font-weight: 600; letter-spacing: .08em;
    text-transform: uppercase; color: var(--dim); margin-top: 20px;
    padding-left: 28px;
  }
  .stmt-body { }
  .stmt-body .lead { margin-bottom: 28px; }
  .cl { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
  .cl-row { display: flex; align-items: flex-start; gap: 10px; font-size: .92rem; color: var(--dim); line-height: 1.5; }
  .cl-dot {
    width: 18px; height: 18px; border-radius: 5px;
    background: var(--c2); flex-shrink: 0; margin-top: 2px;
    display: flex; align-items: center; justify-content: center;
  }
  .cl-dot svg { color: var(--gld); }

  /* ── CTA BAR ────────────────────────────── */
  .cta-bar {
    background: var(--gld); padding: 52px 0;
  }
  .cta-bar-i {
    max-width: 1360px; margin: 0 auto; padding: 0 40px;
    display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  }
  .cta-bar h2 {
    font-size: clamp(1.4rem,2.2vw,1.9rem); font-weight: 700;
    color: var(--wh); line-height: 1.2; letter-spacing: -.015em;
  }
  .cta-bar p { font-size: .9rem; color: rgba(255,255,255,.7); margin-top: 4px; }
  .cta-bar-btns { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn-inv {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--wh); color: var(--grn);
    font-size: .85rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
    padding: 13px 24px; border-radius: var(--r); border: none;
    transition: .2s; white-space: nowrap; cursor: pointer;
  }
  .btn-inv:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(30,18,8,.18); }
  .btn-inv-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: rgba(255,255,255,.85);
    font-size: .85rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
    padding: 12px 22px; border-radius: var(--r);
    border: 1.5px solid rgba(255,255,255,.35); transition: .2s; white-space: nowrap;
  }
  .btn-inv-ghost:hover { border-color: rgba(255,255,255,.75); color: var(--wh); }

  /* ── PRICING ────────────────────────────── */
  /* Nette: {foreach $services as $s} */
  .pricing-grid {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 14px; margin-top: 52px;
  }
  .pc {
    background: var(--wh); border: 1.5px solid var(--c2); border-radius: 14px;
    padding: 28px 24px; display: flex; flex-direction: column;
    transition: .22s;
  }
  .pc:hover { border-color: var(--gld); box-shadow: 0 6px 28px rgba(30,18,8,.08); transform: translateY(-2px); }
  .pc.hi { border-color: var(--gld); }
  .pc .h3 { margin-bottom: 8px; }
  .pc p { font-size: .84rem; color: var(--dim); line-height: 1.6; flex: 1; margin-bottom: 18px; }
  .pc-price {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 6px; margin-bottom: 14px;
  }
  .pc-amt { font-size: 1.55rem; font-weight: 700; color: var(--ink); letter-spacing: -.025em; line-height: 1; }
  .pc-dur { font-size: .72rem; font-weight: 600; color: var(--gld); letter-spacing: .04em; text-transform: uppercase; padding-bottom: 2px; }
  .pc-link {
    display: flex; align-items: center; gap: 5px;
    background: var(--c1); color: var(--dim);
    font-size: .78rem; font-weight: 600; padding: 8px 13px;
    border-radius: 7px; transition: .2s; letter-spacing: .02em;
  }
  .pc-link:hover { background: var(--c2); color: var(--ink); }
  .pc.hi .pc-link { background: var(--btn); color: var(--wh); }
  .pc.hi .pc-link:hover { background: var(--gld); }

  /* ── REVIEWS ────────────────────────────── */
  /* Nette: {foreach $reviews as $r} */
  .reviews-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 16px; margin-top: 52px; align-items: start;
  }
  .rv {
    background: var(--wh); border: 1px solid var(--c2); border-radius: 14px;
    padding: 22px 20px; transition: .22s;
  }
  .rv:hover { border-color: var(--c3); box-shadow: 0 4px 20px rgba(30,18,8,.07); }
  .rv-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
  .rv-av {
    width: 38px; height: 38px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .95rem; color: var(--wh); flex-shrink: 0;
  }
  .rv-name { font-size: .87rem; font-weight: 600; color: var(--ink); }
  .rv-stars { color: #C8960C; font-size: .8rem; letter-spacing: 1px; }
  .rv-date { font-size: .72rem; color: var(--dim); margin-left: auto; }
  .rv-txt { font-size: .85rem; color: var(--dim); line-height: 1.65; }
  .reviews-foot {
    margin-top: 40px; padding-top: 28px;
    border-top: 1px solid var(--c2);
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  }
  .rv-agg { display: flex; align-items: baseline; gap: 10px; }
  .rv-score { font-size: 2.2rem; font-weight: 700; color: var(--ink); letter-spacing: -.03em; }
  .rv-sub { font-size: .8rem; color: var(--dim); }
  .rv-sub .s { color: #C8960C; }

  /* ── ABOUT ──────────────────────────────── */
  .about-w {
    display: grid; grid-template-columns: 420px 1fr;
    gap: 0; min-height: 520px;
    border-radius: 20px; overflow: hidden;
    border: 1px solid var(--c2);
  }
  .about-photo {
    position: relative; overflow: hidden;
  }
  .about-photo img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top;
    display: block;
  }
  .about-copy {
    background: var(--wh); padding: 56px 52px;
    display: flex; flex-direction: column; justify-content: center;
    border-left: 1px solid var(--c2);
  }
  .about-copy .h2 { margin: 8px 0 16px; }
  .about-copy .lead { max-width: 500px; margin-bottom: 12px; }
  .partner-note {
    margin-top: 24px; padding: 16px 20px;
    background: var(--c1); border-radius: 10px;
    border-left: 3px solid var(--gld);
    font-size: .85rem; color: var(--dim); line-height: 1.6;
    max-width: 100%;
  }
  .partner-note a { color: var(--gld); font-weight: 600; }

  /* ── CONTACT ────────────────────────────── */
  .contact-g {
    display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: start;
  }
  .contact-g h2.h2 { margin-bottom: 28px; }
  .c-row {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 16px 0; border-bottom: 1px solid var(--c2);
  }
  .c-row:last-of-type { border: none; }
  .c-ico {
    width: 40px; height: 40px; border-radius: 9px;
    background: var(--c1); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .c-ico svg { color: var(--gld); }
  .c-lbl { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gld); margin-bottom: 2px; }
  .c-val { font-size: .93rem; color: var(--txt); line-height: 1.5; }
  .c-val strong { font-weight: 700; color: var(--ink); }
  .c-val a { font-weight: 600; }
  .c-note { font-size: .78rem; color: var(--red); font-weight: 500; margin-top: 3px; line-height: 1.5; }
  .hrs { display: grid; grid-template-columns: 24px 1fr; gap: 3px 10px; font-size: .88rem; }
  .hrs .d { color: var(--gld); font-weight: 600; }
  .hrs .t { color: var(--txt); }
  .trans { margin-top: 16px; display: flex; flex-direction: column; gap: 7px; }
  .tr { display: flex; gap: 9px; align-items: flex-start; font-size: .95rem; color: var(--dim); }
  .tr-tag {
    background: var(--c1); color: var(--gld); border-radius: 4px;
    font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    padding: 2px 7px; flex-shrink: 0; margin-top: 3px;
  }
  .map-w { border-radius: 14px; overflow: hidden; border: 1px solid var(--c2); margin-bottom: 18px; }
  .map-w img { width: 100%; display: block; }
  .contact-form {
    background: var(--wh); border: 1.5px solid var(--c2);
    border-radius: 14px; padding: 28px 26px;
  }
  .contact-form .h3 { margin-bottom: 4px; }
  .contact-form > p { font-size: .83rem; color: var(--dim); margin-bottom: 18px; }
  .fg { margin-bottom: 11px; }
  .fi, .ft {
    width: 100%; background: var(--c0); border: 1.5px solid var(--c2);
    border-radius: 8px; padding: 11px 14px;
    font-family: var(--f); font-size: .88rem; color: var(--ink);
    outline: none; transition: .2s; resize: none;
  }
  .fi:focus, .ft:focus { border-color: var(--gld); background: var(--wh); box-shadow: 0 0 0 3px rgba(139,107,61,.1); }
  .fi::placeholder, .ft::placeholder { color: var(--c3); }
  .f-gdpr { font-size: .73rem; color: var(--dim); opacity: .7; margin-bottom: 11px; }
  .btn-send {
    width: 100%; background: var(--btn); color: var(--wh);
    font-family: var(--f); font-size: .85rem; font-weight: 600;
    letter-spacing: .04em; text-transform: uppercase;
    padding: 13px; border-radius: 8px; border: none; cursor: pointer; transition: .2s;
  }
  .btn-send:hover { background: var(--gld); }

  /* ── FOOTER ─────────────────────────────── */
  footer {
    background: var(--ink); padding: 52px 0 0;
  }
  .foot-g {
    max-width: 1360px; margin: 0 auto; padding: 0 40px 40px;
    display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px;
    border-bottom: 1px solid rgba(255,255,255,.07);
  }
  .foot-brand .logo { color: var(--wh); display: block; margin-bottom: 11px; }
  .foot-brand .logo b { color: var(--c3); }
  .foot-brand p { font-size: .83rem; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 16px; }
  .foot-soc { display: flex; gap: 8px; }
  .foot-soc a {
    width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.4); transition: .2s;
  }
  .foot-soc a:hover { border-color: var(--gld); color: var(--gld); }
  .foot-col h4 {
    font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
    color: rgba(255,255,255,.55); margin-bottom: 14px;
  }
  .foot-links { display: flex; flex-direction: column; gap: 7px; }
  .foot-links a { font-size: .83rem; color: rgba(255,255,255,.8); transition: color .2s; }
  .foot-links a:hover { color: #fff; }
  .foot-links a.cta-link { color: var(--c3); font-weight: 600; }
  .foot-links a.cta-link:hover { color: var(--c3); }
  .foot-bot {
    max-width: 1360px; margin: 0 auto; padding: 14px 40px;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  }
  .foot-bot p, .foot-bot a { font-size: .75rem; color: rgba(255,255,255,.5); }
  .foot-bot a:hover { color: rgba(255,255,255,.8); }

  /* ── SERVICE LIST ──────────────────────── */
  .svc-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .svc-card { background: var(--wh); border: 1px solid var(--c2); border-radius: var(--r); padding: 32px 36px; display: flex; flex-direction: column; gap: 16px; transition: box-shadow .2s, transform .2s; }
  .svc-card:hover { box-shadow: 0 6px 24px rgba(90,62,34,.1); transform: translateY(-2px); }
  .svc-card-body { flex: 1; }
  .svc-card-title { font-family: var(--fh); font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
  .svc-card-title a { color: var(--ink); text-decoration: none; }
  .svc-card-title a:hover { color: var(--gld); }
  .svc-card-desc { font-size: .92rem; color: var(--txt); line-height: 1.65; }
  .svc-card-link { font-size: .88rem; font-weight: 700; color: var(--gld); text-decoration: none; align-self: flex-start; }
  .svc-card-link:hover { color: var(--btn); }
  @media (max-width: 700px) { .svc-list { grid-template-columns: 1fr; } }

  /* ── SERVICE PAGE ───────────────────────── */
  .svc-hero { background: var(--c1); border-bottom: 1px solid var(--c2); padding: 64px 0 56px; }
  .svc-hero .h1 { margin: 16px 0 16px; font-size: clamp(2rem, 3.5vw, 3rem); }
  .svc-hero .lead { max-width: 600px; margin-bottom: 28px; }
  .breadcrumb-wrap { margin-bottom: 0; }
  .breadcrumb { display: flex; flex-wrap: wrap; gap: 4px 0; list-style: none; font-size: .82rem; color: var(--dim); }
  .breadcrumb-item + .breadcrumb-item::before { content: '›'; margin: 0 6px; color: var(--c3); }
  .breadcrumb-item a { color: var(--gld); }
  .breadcrumb-item a:hover { color: var(--gld2); }
  .breadcrumb-item.active { color: var(--dim); }
  .svc-content { max-width: 100%; }
  .svc-content h3 { font-family: var(--fh); font-size: 1.25rem; font-weight: 700; color: var(--ink); margin: 32px 0 10px; }
  .svc-content h3:first-child { margin-top: 0; }
  .svc-content p { color: var(--txt); line-height: 1.75; margin-bottom: 14px; }
  .svc-content ul { list-style: none; margin-bottom: 14px; }
  .svc-content ul li { position: relative; padding-left: 22px; color: var(--txt); line-height: 1.7; margin-bottom: 6px; }
  .svc-content ul li::before { content: ''; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 50%; background: var(--gld); }

  .text-wrapper { position: relative; margin-bottom: 40px; }
  .text-content { max-height: 140px; overflow: hidden; position: relative; transition: max-height 0.4s ease; }
  .text-content::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 48px; background: linear-gradient(to bottom, rgba(254,250,243,0), rgba(254,250,243,1)); pointer-events: none; }
  .text-content.expanded { max-height: 9999px; }
  .text-content.expanded::after { display: none; }
  .read-more { margin-top: 12px; background: none; border: none; color: var(--gld); font-weight: 700; font-size: .95rem; cursor: pointer; padding: 0; letter-spacing: .01em; }
  .read-more:hover { color: var(--btn); }

  /* ── BLOG LIST ─────────────────────────── */
  .blog-empty { color: var(--dim); padding: 40px 0; text-align: center; }
  .blog-date { font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--gld); display: block; margin-bottom: 8px; }
  .blog-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--c1); }
  .blog-img-placeholder svg { width: 48px; height: 48px; color: var(--gld); opacity: .4; }
  .blog-rd-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .blog-rd-card { background: var(--wh); border: 1px solid var(--c2); border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .2s, transform .2s; }
  .blog-rd-card:hover { box-shadow: 0 6px 24px rgba(90,62,34,.1); transform: translateY(-2px); }
  .blog-rd-img { display: block; aspect-ratio: 4/3; overflow: hidden; }
  .blog-rd-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
  .blog-rd-card:hover .blog-rd-img img { transform: scale(1.04); }
  .blog-rd-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
  .blog-rd-title { font-family: var(--fh); font-size: 1rem; font-weight: 700; margin-bottom: 12px; line-height: 1.4; }
  .blog-rd-title a { color: var(--ink); text-decoration: none; }
  .blog-rd-title a:hover { color: var(--gld); }
  .blog-rd-more { font-size: .85rem; font-weight: 700; color: var(--gld); text-decoration: none; margin-top: auto; }
  .blog-rd-more:hover { color: var(--btn); }
  @media (max-width: 900px) { .blog-rd-list { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px) { .blog-rd-list { grid-template-columns: 1fr; } }

  @media (max-width: 1000px) { .blog-featured { grid-template-columns: 1fr; } .blog-featured-img { min-height: 220px; } .blog-featured-body { padding: 24px 28px; } }
  @media (max-width: 900px) { .blog-rd-list { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px) { .blog-rd-list { grid-template-columns: 1fr; } }

  /* ── BLOG DETAIL ────────────────────────── */
  .article-rd { max-width: 780px; margin: 0 auto; }
  .article-rd-content { line-height: 1.8; color: var(--txt); }
  .article-rd-content h2 { font-family: var(--fh); font-size: 1.35rem; font-weight: 700; color: var(--ink); margin: 36px 0 12px; }
  .article-rd-content h3 { font-family: var(--fh); font-size: 1.1rem; font-weight: 700; color: var(--ink); margin: 28px 0 10px; }
  .article-rd-content p { margin-bottom: 16px; }
  .article-rd-content ul, .article-rd-content ol { margin-bottom: 16px; padding-left: 24px; }
  .article-rd-content li { margin-bottom: 6px; }
  .article-rd-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--c2); }
  .blog-rd-back { font-size: .9rem; color: var(--dim); text-decoration: none; }
  .blog-rd-back:hover { color: var(--gld); }

  /* ── FAQ ───────────────────────────────── */
  .panel-group { display: flex; flex-direction: column; gap: 10px; }
  .panel-group details { background: var(--wh); border: 1px solid var(--c2); border-radius: var(--r); overflow: hidden; transition: box-shadow .2s; }
  .panel-group details[open] { box-shadow: 0 4px 20px rgba(90,62,34,.08); border-color: var(--gld); }
  .panel-group summary { list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 22px; font-family: var(--fh); font-weight: 700; font-size: 1rem; color: var(--ink); cursor: pointer; user-select: none; }
  .panel-group summary::-webkit-details-marker { display: none; }
  .panel-group summary::after { content: ''; flex-shrink: 0; width: 18px; height: 18px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A07840' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") center/contain no-repeat; transition: transform .25s; }
  .panel-group details[open] summary::after { transform: rotate(180deg); }
  .panel-group details p { padding: 0 22px 20px; color: var(--txt); line-height: 1.75; margin: 0; }

  /* ── GALLERY ───────────────────────────── */
  .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .gallery-item { display: block; overflow: hidden; border-radius: var(--r); background: var(--c2); aspect-ratio: 4/3; }
  .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
  .gallery-item:hover img { transform: scale(1.04); }
  @media (max-width: 767px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; } }
  @media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

  /* ── MOBILE STICKY CTA ──────────────────── */
  .sticky-cta {
    display: none;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
    background: var(--grn); color: var(--wh);
    font-size: .9rem; font-weight: 600; text-align: center; letter-spacing: .03em;
    padding: 16px 20px 20px;
    transform: translateY(100%); opacity: 0;
    transition: transform .3s var(--ease), opacity .3s;
  }
  .sticky-cta.on { transform: translateY(0); opacity: 1; }

  /* YouTube facade */
  .yt-facade { position: relative; padding-bottom: 56.25%; background: #000; cursor: pointer; border-radius: var(--r); overflow: hidden; }
  .yt-facade img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .yt-facade button { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); background: none; border: none; padding: 0; cursor: pointer; filter: drop-shadow(0 2px 8px rgba(0,0,0,.5)); transition: transform .15s; }
  .yt-facade button:hover { transform: translate(-50%, -50%) scale(1.1); }
  .yt-facade.active { padding-bottom: 56.25%; }
  .yt-facade.active iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

  /* ── REVEAL ─────────────────────────────── */
  .rv-el { opacity: 0; transform: translateY(18px); transition: opacity .5s var(--ease), transform .5s var(--ease); }
  .rv-el.in { opacity: 1; transform: none; }
  .rv-el.d1 { transition-delay: .1s; }
  .rv-el.d2 { transition-delay: .2s; }
  .rv-el.d3 { transition-delay: .3s; }
  .rv-el.d4 { transition-delay: .4s; }

  /* ── DRAWER ─────────────────────────────── */
  .ov { display: none; position: fixed; inset: 0; background: rgba(30,18,8,.45); z-index: 150; }
  .ov.on { display: block; }
  .dr {
    position: fixed; top: 0; right: -100%;
    width: min(290px, 80vw); height: 100%;
    background: var(--c0); z-index: 160;
    padding: 18px 20px; transition: right .28s var(--ease); overflow-y: auto;
  }
  .dr.on { right: 0; }
  .dr-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
  .dr-x { width: 36px; height: 36px; border: none; background: var(--c2); border-radius: 7px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--ink); }
  .dr-links { display: flex; flex-direction: column; gap: 1px; }
  .dr-links a { font-size: .93rem; font-weight: 500; color: var(--dim); padding: 11px 13px; border-radius: 7px; transition: .18s; }
  .dr-links a:hover { background: var(--c1); color: var(--ink); }
  .dr-cta {
    display: block; text-align: center; margin-top: 18px;
    background: var(--grn); color: var(--wh);
    font-weight: 600; font-size: .88rem; letter-spacing: .04em; text-transform: uppercase;
    padding: 14px; border-radius: var(--r);
  }

  /* ── RESPONSIVE ─────────────────────────── */
  @media (max-width: 1100px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .foot-g { grid-template-columns: 1fr 1fr; }
    .about-w { grid-template-columns: 340px 1fr; }
  }
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-right { padding: 0 20px; justify-content: center; }
    .hero-copy { padding: 52px 28px 24px; }
    .facts-i { grid-template-columns: repeat(3,1fr); }
    .facts-i .fact:nth-child(4), .facts-i .fact:nth-child(5) { border-top: 1px solid var(--c2); }
    .benefits-grid { grid-template-columns: 1fr; }
    .stmt-i { grid-template-columns: 1fr; gap: 40px; }
    .reviews-grid { grid-template-columns: repeat(2,1fr); }
    .rv:nth-child(2),.rv:nth-child(5) { margin-top: 0; }
    .reviews-grid .rv:last-child { display: none; }
    .about-w { grid-template-columns: 1fr; }
    .about-photo { height: 50vw; max-height: 320px; }
    .contact-g { grid-template-columns: 1fr; }
    .foot-g { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 640px) {
    .topbar { display: none; }
    .nav-i { padding: 0 20px; }
    .nav-links { display: none; }
    .nav-btn { display: none; }
    .ham { display: flex; margin-left: auto; }
    .w { padding: 0 20px; }
    section { padding: 72px 0; }
    .hero-copy { padding: 36px 20px 8px; }
    .hero-right { padding: 0; overflow: hidden; }
    .hero-img { max-width: 100%; }
    .hero-img img { height: 75vw; object-fit: cover; object-position: center 15%; border-radius: 0; }
    .facts-i { padding: 0 20px; grid-template-columns: repeat(2,1fr); }
    .facts-i .fact:nth-child(5) { grid-column: span 2; border-right: none; border-top: 1px solid var(--c2); }
    .pricing-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .reviews-grid .rv:last-child { display: block; }
    .about-copy { padding: 36px 24px; }
    .cta-bar-i { flex-direction: column; }
    .cta-bar-btns { flex-direction: column; }
    .foot-g { grid-template-columns: 1fr; padding: 0 20px 32px; }
    .foot-bot { padding: 14px 20px; flex-direction: column; text-align: center; }
    .sticky-cta { display: block; }
    .stmt-i, .contact-g { padding: 0 20px; }
    .cta-bar-i { padding: 0 20px; }
  }

  /* ── RESERVATION ────────────────────────── */
  .reservation-section { padding: 48px 0 0; }
  .reservation-wrap iframe { display: block; width: 100%; min-height: 800px; }

  /* ── MODAL ──────────────────────────────── */
  .modal { position: fixed; top: 0; left: 0; z-index: 1055; display: none; width: 100%; height: 100%; overflow-x: hidden; overflow-y: auto; outline: 0; }
  .modal-dialog { position: relative; width: auto; margin: .5rem; max-width: none; top: 50%; transform: translateY(-50%); }
  .modal.fade .modal-dialog { transition: transform .3s ease-out, opacity .3s ease-out; transform: translate(0,-50px); opacity: 0; }
  .modal.show .modal-dialog { transform: translate(0,0); opacity: 1; }
  .modal-content { position: relative; display: flex; flex-direction: column; background-color: #fff; background-clip: padding-box; border: 1px solid rgba(0,0,0,.2); border-radius: .3rem; outline: 0; pointer-events: auto; box-shadow: 0 .5rem 1rem rgba(0,0,0,.15); }
  .modal-header { display: flex; align-items: flex-start; justify-content: space-between; padding: 1rem; border-bottom: 1px solid #dee2e6; border-top-left-radius: .3rem; border-top-right-radius: .3rem; }
  .modal-title { margin-bottom: 0; line-height: 1.5; font-size: 1.25rem; }
  .modal-body { position: relative; flex: 1 1 auto; padding: 1rem; }
  .modal-footer { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; padding: 1rem; border-top: 1px solid #dee2e6; border-bottom-right-radius: .3rem; border-bottom-left-radius: .3rem; }
  .modal-backdrop { position: fixed; top: 0; left: 0; z-index: 1050; width: 100vw; height: 100vh; background-color: #000; opacity: 0; transition: opacity .15s linear; }
  .modal-backdrop.show { opacity: .5; }
  .btn-close { box-sizing: content-box; width: 1em; height: 1em; padding: .25em; color: #000; background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em no-repeat; border: 0; border-radius: .25rem; opacity: .5; cursor: pointer; margin: -.5rem -.75rem -.5rem auto; }
  .btn-close:hover { opacity: .75; }
  body.modal-open { overflow: hidden; }
  .modal-fullscreen { width: 100vw; max-width: none; height: 100%; margin: 0; }
  .modal-fullscreen .modal-content { height: 100%; border: 0; border-radius: 0; }
  .modal-fullscreen .modal-body { overflow-y: auto; }
  .modal-fullscreen .modal-dialog { top: 0 !important; transform: none !important; margin: 0 !important; height: 100%; max-width: none; width: 100%; }
