/* generated per-site — palette + tokens are seeded, prefix is randomized */
:root{
  --yzf42-brand:#c9b98f;
  --yzf42-brand2:#3a3d34;
  --yzf42-brand-contrast:#15171a;
  --yzf42-brand-ink:#716954;
  --yzf42-accent:#ab876c;
  --yzf42-accent-ink:#7f6653;
  --yzf42-accent-contrast:#15171a;
  --yzf42-paper:#f5f5f5;
  --yzf42-ink:#191919;
  --yzf42-muted:#ececec;
  --yzf42-muted-strong:#f1efeb;
  --yzf42-border:#d8d8d8;
  --yzf42-ink-soft:#666666;
  --yzf42-radius:4px;
  --yzf42-gap:16px;
  --yzf42-container:1280px;
  --yzf42-section-pad:clamp(48px,7.8vw,101px);
  --yzf42-hero-height:clamp(274px,43vw,436px);
  --yzf42-shadow-1:0 1px 2px rgba(23,24,28,.05),0 6px 16px rgba(23,24,28,.06);
  --yzf42-shadow-2:0 4px 8px rgba(23,24,28,.07),0 14px 32px rgba(23,24,28,.11);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
[id]{scroll-margin-top:calc(64px + 1rem);}
:focus-visible{outline:2px solid var(--yzf42-brand);outline-offset:3px;}
:focus:not(:focus-visible){outline:none;}
body{
  margin:0;background:var(--yzf42-paper);color:var(--yzf42-ink);
  font-family:'Source Sans Pro',system-ui,-apple-system,sans-serif;
  line-height:1.6;
}
h1,h2,h3{font-family:'Oxygen',Georgia,serif;line-height:1.15;margin:0 0 .55em;}
h1,h2{text-wrap:balance;}
h1{font-size:clamp(2.1rem,5vw,3.4rem);}
h2{font-size:clamp(1.6rem,3.2vw,2.3rem);}
h3{font-size:1.15rem;}
p{margin:0 0 1em;}
a{color:var(--yzf42-brand-ink);text-decoration:none;}
a:hover{text-decoration:underline;}
img,picture{max-width:100%;display:block;}
img{height:auto;border-radius:var(--yzf42-radius);}
ul{margin:0;padding:0;}
li{list-style:none;}

.yzf42-container{max-width:var(--yzf42-container);margin-inline:auto;padding-inline:24px;}
.yzf42-skip{position:absolute;left:-999px;top:0;background:var(--yzf42-brand);color:var(--yzf42-brand-contrast);padding:.6em 1em;z-index:200;}
.yzf42-skip:focus{left:0;}

/* --- header / nav --- */
.yzf42-header{position:sticky;top:0;background:var(--yzf42-paper);border-bottom:1px solid var(--yzf42-border);z-index:100;}
.yzf42-header-inner{display:flex;align-items:center;justify-content:space-between;padding-block:10px;gap:16px;}
.yzf42-logo{display:flex;align-items:center;}
.yzf42-logo-img{max-height:44px;width:auto;border-radius:0;}
.yzf42-nav-toggle{display:none;flex-direction:column;justify-content:center;gap:5px;background:none;border:0;padding:8px;cursor:pointer;}
.yzf42-nav-toggle span{display:block;width:24px;height:2px;background:var(--yzf42-ink);}
.yzf42-nav-list{display:flex;gap:22px;align-items:center;}
.yzf42-nav-list a{color:var(--yzf42-ink);font-weight:500;}
.yzf42-nav-list a:hover,.yzf42-nav-list a[aria-current="page"]{color:var(--yzf42-brand-ink);text-decoration:none;}

/* --- header chrome variants (29-A) --- */
/* The two elements on every page of every site had zero variation. Each
   variant rearranges the same hooks `nav.js` and the a11y contract need. */
.yzf42-header--centered_stack .yzf42-header-inner{flex-direction:column;gap:8px;}
.yzf42-header--centered_stack .yzf42-nav-list{justify-content:center;}
.yzf42-header--split_nav .yzf42-header-inner{justify-content:center;gap:26px;}
.yzf42-header--split_nav .yzf42-nav{display:none;}
.yzf42-header-split-list{display:flex;gap:19px;align-items:center;}
.yzf42-header-split-list a{color:var(--yzf42-ink);font-weight:500;}
.yzf42-header-split-list a:hover,.yzf42-header-split-list a[aria-current="page"]{color:var(--yzf42-brand-ink);}
.yzf42-header--logo_left_cta .yzf42-header-cta{padding:.5em 1.2em;font-size:0.8rem;white-space:nowrap;flex:none;}
@media (max-width:780px){
  .yzf42-header--split_nav .yzf42-header-split{display:none;}
  .yzf42-header--split_nav .yzf42-nav{display:block;}
  .yzf42-header--split_nav .yzf42-header-inner{justify-content:space-between;}
  .yzf42-header--centered_stack .yzf42-header-inner{flex-direction:row;}
  .yzf42-header--logo_left_cta .yzf42-header-cta{display:none;}
}

@media (max-width:780px){
  .yzf42-nav-toggle{display:flex;}
  .yzf42-nav{position:absolute;left:0;right:0;top:100%;background:var(--yzf42-paper);border-bottom:1px solid var(--yzf42-border);max-height:0;overflow:hidden;}
  .yzf42-nav.yzf42-nav-open{max-height:70vh;}
  .yzf42-nav-list{flex-direction:column;align-items:flex-start;padding:16px 24px;gap:8px;}
}

/* --- buttons / cta --- */
.yzf42-btn{display:inline-block;padding:.75em 1.5em;border-radius:var(--yzf42-radius);background:var(--yzf42-brand);color:var(--yzf42-brand-contrast);font-weight:600;}
.yzf42-btn:hover{background:var(--yzf42-brand2);text-decoration:none;}
.yzf42-btn--outline{background:transparent;border:1.5px solid var(--yzf42-brand);color:var(--yzf42-brand-ink);}

/* --- layout frame (29-E) --- */
/* Proportion is what a reader perceives as "a different site" more than any
   colour or font choice. `centered` is the width every build used before. */
.yzf42-frame--narrow_editorial .yzf42-container{max-width:min(var(--yzf42-container),62em);}
/* ...but chrome is not body copy: narrowing the *measure* must not narrow the
   header, which then wraps its own nav. */
.yzf42-frame--narrow_editorial .yzf42-header .yzf42-container,.yzf42-frame--narrow_editorial .yzf42-footer .yzf42-container{max-width:1200px;}
.yzf42-frame--narrow_editorial body,.yzf42-frame--narrow_editorial p{line-height:1.72;}
.yzf42-frame--wide .yzf42-section-intro{max-width:48em;}
.yzf42-frame--asymmetric .yzf42-container{margin-left:min(11vw,180px);margin-right:auto;}
.yzf42-frame--asymmetric .yzf42-hero--centered .yzf42-hero-inner{margin-inline:0;}
@media (max-width:900px){
  .yzf42-frame--asymmetric .yzf42-container{margin-inline:auto;}
}

/* --- heading treatment (29-D) --- */
.yzf42-heads--uppercase_tracked h1,.yzf42-heads--uppercase_tracked h2,.yzf42-heads--uppercase_tracked h3{text-transform:uppercase;letter-spacing:.045em;}
.yzf42-heads--uppercase_tracked h1{letter-spacing:.02em;}
.yzf42-heads--italic_display h1,.yzf42-heads--italic_display h2{font-style:italic;letter-spacing:-.01em;}
.yzf42-heads--italic_display .yzf42-pullquote-text{font-style:normal;}

/* --- button language (29-F) --- */
/* `radius` stays a token; it just stops being the only shape signal. */
.yzf42-btns--outline .yzf42-btn{background:transparent;border:1.5px solid var(--yzf42-brand);color:var(--yzf42-brand-ink);}
.yzf42-btns--outline .yzf42-btn:hover{background:var(--yzf42-brand);color:var(--yzf42-brand-contrast);}
.yzf42-btns--pill .yzf42-btn{border-radius:999px;padding-inline:1.9em;}
.yzf42-btns--underline .yzf42-btn{background:transparent;color:var(--yzf42-brand-ink);border-radius:0;border-bottom:2px solid var(--yzf42-brand);padding:.35em 0;}
.yzf42-btns--underline .yzf42-btn:hover{background:transparent;border-bottom-color:var(--yzf42-ink);color:var(--yzf42-ink);text-decoration:none;}
.yzf42-btns--underline .yzf42-cta--banner .yzf42-btn{color:#fff;border-bottom-color:#fff;}

/* --- generic section rhythm (29-F) --- */
/* `alternate` and `banded` differ in *which* sections carry the fill — that
   pattern is assigned in `render._assign_use_alt`, not here — while `ruled`
   and `bordered` replace the fill with a line and a box. */
.yzf42-section{padding-block:var(--yzf42-section-pad);}
.yzf42-section--alt{background:var(--yzf42-muted-strong);}
.yzf42-rhythm--ruled .yzf42-section+.yzf42-section{border-top:1px solid var(--yzf42-border);}
.yzf42-rhythm--ruled .yzf42-section--alt{background:none;}
.yzf42-rhythm--bordered .yzf42-section--alt{background:none;}
.yzf42-rhythm--bordered .yzf42-section+.yzf42-section>.yzf42-container{border:1px solid var(--yzf42-border);border-radius:var(--yzf42-radius);padding-block:20px;}
.yzf42-rhythm--bordered .yzf42-hero>.yzf42-container,.yzf42-rhythm--bordered .yzf42-page-header>.yzf42-container{border:0;padding-block:0;}
.yzf42-section-intro{max-width:42em;color:var(--yzf42-ink-soft);margin-bottom:16px;}
.yzf42-eyebrow{text-transform:uppercase;letter-spacing:.08em;font-size:0.8rem;color:var(--yzf42-brand-ink);font-weight:600;}
.yzf42-section-head{margin-bottom:24px;}
.yzf42-section-head h2{margin-bottom:.25em;}
.yzf42-section-head .yzf42-section-intro{margin-bottom:0;}

/* --- hero --- */
/* min-height (all variants) is a floor, not a cap — the fixed-height slider
   images stretch to fill it, but real copy is always free to grow the
   section taller instead of ever being clipped. */
.yzf42-hero{position:relative;background:var(--yzf42-muted);min-height:var(--yzf42-hero-height);}
.yzf42-hero-inner{display:grid;gap:24px;align-items:center;padding-block:clamp(64px,8.9vw,116px);}
.yzf42-hero--split .yzf42-hero-inner{grid-template-columns:1.1fr 1fr;}
.yzf42-hero--centered .yzf42-hero-inner{grid-template-columns:1fr;text-align:center;justify-items:center;max-width:46em;margin-inline:auto;}
.yzf42-hero--centered .yzf42-hero-media{order:-1;width:100%;max-width:640px;}
.yzf42-hero h1{font-size:clamp(2.5rem,6.5vw,4.2rem);letter-spacing:-.02em;}
.yzf42-hero-eyebrow{margin-bottom:1.1em;}
.yzf42-hero-actions{display:flex;flex-wrap:wrap;align-items:center;gap:12px;margin-top:16px;}
.yzf42-hero--centered .yzf42-hero-actions{justify-content:center;}
.yzf42-hero-media img{aspect-ratio:16/10;object-fit:cover;width:100%;}
.yzf42-hero--split .yzf42-hero-media img{box-shadow:14px 14px 0 var(--yzf42-muted-strong);}
.yzf42-hero--collage{color:#fff;}
.yzf42-hero--collage .yzf42-hero-media{position:absolute;inset:0;z-index:0;}
.yzf42-hero--collage .yzf42-hero-media img{aspect-ratio:auto;width:100%;height:100%;object-fit:cover;border-radius:0;}
.yzf42-hero--collage .yzf42-hero-media::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.15),rgba(0,0,0,.55));}
/* copy (not hero-inner) gets the position:relative/z-index stacking context —
   putting it on hero-inner instead would make hero-inner's narrow, centered
   max-width:42em box the containing block for the absolutely-positioned
   hero-media, squeezing the full-bleed slider image/collage down to that
   copy-width column instead of the full hero width. */
.yzf42-hero--collage .yzf42-hero-inner{grid-template-columns:1fr;max-width:42em;}
.yzf42-hero--collage .yzf42-hero-copy{position:relative;z-index:1;}
.yzf42-hero-subhead{font-size:1.15rem;color:var(--yzf42-ink-soft);}
.yzf42-hero--collage .yzf42-hero-subhead{color:rgba(255,255,255,.88);}
.yzf42-hero--collage .yzf42-eyebrow{color:rgba(255,255,255,.85);}
.yzf42-hero--collage .yzf42-btn--outline{border-color:rgba(255,255,255,.85);color:#fff;}
/* auto-slide hero: 3 stacked slides crossfade in a synchronized 18s loop —
   each slide's own animation-delay staggers when its local 0% keyframe
   (opaque) lands, so exactly one slide is visible at any moment. */
.yzf42-hero-slider .yzf42-hero-slide{position:absolute;inset:0;opacity:0;animation:yzf42-hero-fade 18s infinite;}
.yzf42-hero-slider .yzf42-hero-slide:nth-child(1){animation-delay:0s;}
.yzf42-hero-slider .yzf42-hero-slide:nth-child(2){animation-delay:6s;}
.yzf42-hero-slider .yzf42-hero-slide:nth-child(3){animation-delay:12s;}
@keyframes yzf42-hero-fade{
  0%{opacity:1;}
  28%{opacity:1;}
  33%{opacity:0;}
  100%{opacity:0;}
}
@media (prefers-reduced-motion:reduce){
  .yzf42-hero-slider .yzf42-hero-slide{animation:none;opacity:0;}
  .yzf42-hero-slider .yzf42-hero-slide:first-child{opacity:1;}
}
/* 19-F: text-led hero for builds with no real photography */
.yzf42-hero--text_banner{background:linear-gradient(165deg,var(--yzf42-muted) 0%,var(--yzf42-muted-strong) 100%);}
.yzf42-hero--text_banner .yzf42-hero-inner{grid-template-columns:1fr;text-align:center;justify-items:center;max-width:46em;margin-inline:auto;padding-block:clamp(77px,10.7vw,139px);}
.yzf42-hero--text_banner .yzf42-hero-actions{justify-content:center;}
/* 26-A: `split` reserves a second column and `centered` a media slot above
   the copy. A build whose images all failed to process reaches neither, and
   the copy would sit in a 55%-wide column beside dead space — so a hero with
   no media collapses to the single-column treatment it effectively is. */
.yzf42-hero--no-media .yzf42-hero-inner{grid-template-columns:1fr;}
@media (max-width:780px){
  .yzf42-hero--split .yzf42-hero-inner{grid-template-columns:1fr;}
  .yzf42-hero--split .yzf42-hero-media{order:-1;}
}

/* --- page header (sub-pages) --- */
.yzf42-page-header{position:relative;background:var(--yzf42-muted-strong);overflow:hidden;}
.yzf42-page-header-media{position:absolute;inset:0;z-index:0;}
.yzf42-page-header-media img{width:100%;height:100%;object-fit:cover;object-position:center;}
.yzf42-page-header-media::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(0,0,0,.25),rgba(0,0,0,.6));}
.yzf42-page-header--banner{color:#fff;}
.yzf42-page-header-inner{position:relative;z-index:1;padding-block:clamp(40px,5.5vw,71px);}
.yzf42-page-header--banner .yzf42-breadcrumb a,.yzf42-page-header--banner .yzf42-breadcrumb{color:rgba(255,255,255,.75);}
.yzf42-page-header--banner .yzf42-page-header-intro{color:rgba(255,255,255,.88);font-size:1.1rem;margin-top:.5em;}
.yzf42-breadcrumb{font-size:.85rem;color:var(--yzf42-ink-soft);margin-bottom:.5em;}
.yzf42-breadcrumb a{color:var(--yzf42-ink-soft);}

/* --- about --- */
.yzf42-about-inner{display:grid;gap:24px;align-items:center;}
.yzf42-about--image_left .yzf42-about-inner,.yzf42-about--image_right .yzf42-about-inner{grid-template-columns:1fr 1.1fr;}
.yzf42-about--image_right .yzf42-about-inner{direction:rtl;}
.yzf42-about--image_right .yzf42-about-inner > *{direction:ltr;}
.yzf42-about--stacked .yzf42-about-inner{grid-template-columns:1fr;max-width:46em;margin-inline:auto;text-align:center;}
.yzf42-about--stacked .yzf42-about-media{order:-1;}
@media (max-width:780px){.yzf42-about-inner{grid-template-columns:1fr !important;direction:ltr !important;}}

/* --- narrative (inner-page rich text) --- */
.yzf42-narrative-inner{display:grid;gap:24px;align-items:center;}
.yzf42-narrative--image_left .yzf42-narrative-inner,.yzf42-narrative--image_right .yzf42-narrative-inner{grid-template-columns:1fr 1.1fr;}
.yzf42-narrative--image_right .yzf42-narrative-inner{direction:rtl;}
.yzf42-narrative--image_right .yzf42-narrative-inner > *{direction:ltr;}
.yzf42-narrative--stacked .yzf42-narrative-inner{grid-template-columns:1fr;max-width:46em;margin-inline:auto;text-align:center;}
.yzf42-narrative--stacked .yzf42-narrative-media{order:-1;}
@media (max-width:780px){.yzf42-narrative-inner{grid-template-columns:1fr !important;direction:ltr !important;}}

/* --- content blocks --- */
.yzf42-content-block-inner{display:grid;gap:24px;align-items:center;}
.yzf42-content-block--image_left .yzf42-content-block-inner,.yzf42-content-block--image_right .yzf42-content-block-inner{grid-template-columns:1fr 1.1fr;}
.yzf42-content-block--image_right .yzf42-content-block-inner{direction:rtl;}
.yzf42-content-block--image_right .yzf42-content-block-inner > *{direction:ltr;}
.yzf42-content-block--text_only .yzf42-content-block-inner{grid-template-columns:1fr;max-width:46em;margin-inline:auto;background:var(--yzf42-muted);border-left:3px solid var(--yzf42-brand);padding:20px 24px;}
@media (max-width:780px){.yzf42-content-block-inner{grid-template-columns:1fr !important;direction:ltr !important;}}

/* --- review digest --- */
.yzf42-review-verdict{max-width:46em;margin-inline:auto;margin-bottom:20px;font-size:1.15rem;line-height:1.75;text-align:center;color:var(--yzf42-ink-soft);}
.yzf42-review-digest-cols{display:grid;grid-template-columns:1fr 1fr;gap:24px;}
/* 26: the variant sweep caught this — `columns` and `stacked` were declared
   as two treatments and drew the identical two-column grid, so half the
   axis did nothing. `stacked` now stacks. */
.yzf42-review-digest--stacked .yzf42-review-digest-cols{grid-template-columns:1fr;max-width:46em;}
.yzf42-review-card{padding:16px 20px;border-radius:var(--yzf42-radius);box-shadow:var(--yzf42-shadow-1);}
.yzf42-review-card--liked{background:rgba(34,139,34,.07);border-top:3px solid #3a7d3a;}
.yzf42-review-card--disliked{background:var(--yzf42-muted-strong);border-top:3px solid var(--yzf42-ink-soft);}
.yzf42-review-card h3{font-size:0.8rem;text-transform:uppercase;letter-spacing:.08em;margin-bottom:12px;}
.yzf42-review-card--liked h3{color:#3a7d3a;}
.yzf42-review-card--disliked h3{color:var(--yzf42-ink-soft);}
.yzf42-review-card ul{display:flex;flex-direction:column;gap:.6em;}
.yzf42-review-card li{display:flex;align-items:baseline;gap:.5em;line-height:1.5;}
.yzf42-like-icon{color:#3a7d3a;font-weight:700;flex-shrink:0;}
.yzf42-dislike-icon{color:var(--yzf42-ink-soft);font-weight:700;flex-shrink:0;}
@media (max-width:780px){.yzf42-review-digest-cols{grid-template-columns:1fr;}}

/* --- highlights --- */
.yzf42-highlights--icon_grid .yzf42-highlights-list{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:16px;}
.yzf42-highlights--icon_grid .yzf42-highlight{padding:16px;border:1px solid var(--yzf42-border);border-radius:var(--yzf42-radius);background:var(--yzf42-paper);box-shadow:var(--yzf42-shadow-1);}
.yzf42-highlights--alternating_rows .yzf42-highlights-list{display:flex;flex-direction:column;gap:16px;}
.yzf42-highlights--alternating_rows .yzf42-highlight{display:flex;gap:16px;padding-block:8px;border-bottom:1px solid var(--yzf42-border);}
.yzf42-highlights--stat_strip .yzf42-highlights-list{display:flex;flex-wrap:wrap;justify-content:space-between;gap:16px;text-align:center;}
.yzf42-highlights--stat_strip .yzf42-highlight strong{display:block;font-size:1.6rem;font-family:'Oxygen',serif;color:var(--yzf42-brand-ink);}
.yzf42-highlights--chips .yzf42-highlights-list{display:flex;flex-wrap:wrap;gap:8px;}
.yzf42-highlight-chip{display:inline-block;padding:.45em 1.1em;border:1px solid var(--yzf42-border);border-radius:999px;background:var(--yzf42-paper);font-size:.92rem;line-height:1.3;box-shadow:var(--yzf42-shadow-1);}
.yzf42-highlights--chips .yzf42-highlight{display:inline-flex;}
.yzf42-highlight-icon{width:2.4em;height:2.4em;border-radius:50%;background:var(--yzf42-muted-strong);display:flex;align-items:center;justify-content:center;color:var(--yzf42-brand-ink);font-weight:700;flex:none;}
.yzf42-highlight > div{display:flex;flex-direction:column;gap:.2em;}
.yzf42-highlight p{margin:0;color:var(--yzf42-ink-soft);font-size:0.88rem;line-height:1.4;}

/* --- testimonials --- */
.yzf42-testimonials--card_grid .yzf42-testimonials-list{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:16px;}
.yzf42-testimonial{background:var(--yzf42-paper);border:1px solid var(--yzf42-border);border-radius:var(--yzf42-radius);padding:16px;box-shadow:var(--yzf42-shadow-1);}
.yzf42-testimonials--quote_wall .yzf42-testimonials-list{display:flex;flex-direction:column;gap:12px;}
.yzf42-testimonials--quote_wall .yzf42-testimonial{border:0;border-left:3px solid var(--yzf42-brand);border-radius:0;background:none;padding-block:0;box-shadow:none;}
.yzf42-testimonials--single_carousel_static .yzf42-testimonial--featured{max-width:42em;margin-inline:auto;text-align:center;border:0;background:none;box-shadow:none;}
.yzf42-testimonials--single_carousel_static .yzf42-testimonial--featured p{font-size:1.6rem;font-family:'Oxygen',serif;}
.yzf42-testimonial-rating{color:var(--yzf42-brand-ink);letter-spacing:.1em;}
.yzf42-testimonial-author{font-weight:600;margin-top:.5em;}

/* --- faq --- */
.yzf42-faq--two_column .yzf42-faq-list{display:grid;grid-template-columns:1fr 1fr;gap:16px;align-items:start;}
.yzf42-faq-item{border-bottom:1px solid var(--yzf42-border);padding-block:10px;}
.yzf42-faq-item summary{cursor:pointer;font-weight:600;list-style:none;}
.yzf42-faq-item summary::-webkit-details-marker{display:none;}
.yzf42-faq-item summary::after{content:"+";float:right;color:var(--yzf42-brand-ink);}
.yzf42-faq-item[open] summary::after{content:"–";}
.yzf42-faq-item p{margin-top:.6em;color:var(--yzf42-ink-soft);}
@media (max-width:780px){.yzf42-faq--two_column .yzf42-faq-list{grid-template-columns:1fr;}}

/* --- cta --- */
/* Banner CTA is the page's mid-scroll tonal break: near-black band with a
   brand accent line — light → tint → dark rhythm instead of all-light. */
.yzf42-cta--banner{background:var(--yzf42-ink);color:rgba(255,255,255,.94);text-align:center;border-top:3px solid var(--yzf42-brand);}
.yzf42-cta--banner h2{color:#fff;}
.yzf42-cta--banner .yzf42-btn{background:#fff;color:var(--yzf42-ink);}
.yzf42-cta--banner .yzf42-btn:hover{background:var(--yzf42-brand);color:var(--yzf42-brand-contrast);}
.yzf42-cta--inline_split .yzf42-cta-inner{display:flex;justify-content:space-between;align-items:center;gap:16px;flex-wrap:wrap;}
.yzf42-cta-body{margin:.4em 0 0;opacity:.88;font-size:1.15rem;}

/* --- menu --- */
.yzf42-menu-cat{margin-bottom:20px;}
.yzf42-menu-cat h3{border-bottom:2px solid var(--yzf42-brand);display:inline-block;padding-bottom:.2em;}
.yzf42-menu--two_column .yzf42-menu-cats{display:grid;grid-template-columns:1fr 1fr;gap:24px;}
.yzf42-menu-item{display:flex;justify-content:space-between;gap:16px;padding-block:.5em;border-bottom:1px dotted var(--yzf42-border);}
.yzf42-menu-item-desc{color:var(--yzf42-ink-soft);font-size:0.88rem;}
.yzf42-menu-item-price{font-weight:600;white-space:nowrap;}
.yzf42-menu--tabs .yzf42-menu-tabs{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:16px;}
.yzf42-menu--tabs .yzf42-menu-tab{padding:.4em 1em;border:1px solid var(--yzf42-border);border-radius:999px;font-size:.85rem;color:var(--yzf42-ink-soft);text-decoration:none;}
.yzf42-menu--tabs .yzf42-menu-tab:hover{border-color:var(--yzf42-brand);color:var(--yzf42-brand-ink);}
/* Phase 30-D: real tabs without a script. Every section shows until one is
   targeted; then only that one does. Browsers without :has() keep the
   single-column fallback, and the anchors still jump to the section. */
.yzf42-menu--tabs .yzf42-menu-cats:has(.yzf42-menu-cat:target) .yzf42-menu-cat:not(:target){display:none;}
.yzf42-menu-cat:target{scroll-margin-top:48px;}
@media (max-width:780px){.yzf42-menu--two_column .yzf42-menu-cats{grid-template-columns:1fr;}}

/* --- menu preview / dishes / gallery (Phase 30) --- */
.yzf42-menu-preview-cols{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:24px;}
.yzf42-menu-preview-cat h3{border-bottom:2px solid var(--yzf42-brand);display:inline-block;padding-bottom:.2em;}
.yzf42-menu-preview--cards .yzf42-menu-preview-cat{border:1px solid var(--yzf42-border);border-radius:var(--yzf42-radius);padding:16px;background:var(--yzf42-paper);box-shadow:var(--yzf42-shadow-1);}
.yzf42-menu-preview--cards .yzf42-menu-preview-cat h3{border-bottom:0;padding-bottom:0;}
.yzf42-menu-preview-more{margin-top:20px;text-align:center;}
.yzf42-menu-dishes-list{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px;list-style:none;padding:0;margin:0;}
.yzf42-menu-dish{border:1px solid var(--yzf42-border);border-radius:var(--yzf42-radius);overflow:hidden;background:var(--yzf42-paper);box-shadow:var(--yzf42-shadow-1);display:flex;flex-direction:column;}
.yzf42-menu-dish-media img{aspect-ratio:4/3;object-fit:cover;width:100%;display:block;border-radius:0;}
.yzf42-menu-dish-body{padding:12px 14px;display:flex;flex-direction:column;gap:.3em;}
.yzf42-menu-dish-name{font-weight:600;}
.yzf42-menu-dishes--list .yzf42-menu-dishes-list{grid-template-columns:1fr;gap:12px;}
.yzf42-menu-dishes--list .yzf42-menu-dish{flex-direction:row;align-items:stretch;}
.yzf42-menu-dishes--list .yzf42-menu-dish-media{flex:0 0 160px;}
.yzf42-menu-dishes--list .yzf42-menu-dish-media img{height:100%;aspect-ratio:auto;}
.yzf42-menu-gallery-list{display:grid;grid-template-columns:repeat(auto-fill,minmax(140px,1fr));gap:8px;list-style:none;padding:0;margin:0;}
.yzf42-menu-gallery-list img{aspect-ratio:1;object-fit:cover;width:100%;display:block;}
.yzf42-menu-gallery--strip .yzf42-menu-gallery-list{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;gap:8px;padding-bottom:8px;}
.yzf42-menu-gallery--strip .yzf42-gallery-item{flex:0 0 200px;scroll-snap-align:start;}
.yzf42-menu-gallery--grid .yzf42-menu-gallery-list{grid-template-columns:repeat(auto-fill,minmax(180px,1fr));}
@media (max-width:600px){.yzf42-menu-dishes--list .yzf42-menu-dish{flex-direction:column;}.yzf42-menu-dishes--list .yzf42-menu-dish-media{flex:none;}.yzf42-menu-dishes--list .yzf42-menu-dish-media img{aspect-ratio:4/3;}}

/* --- rooms / services --- */
.yzf42-rooms--cards .yzf42-rooms-list,.yzf42-services--grid .yzf42-services-list{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px;}
.yzf42-room-card,.yzf42-service-card{border:1px solid var(--yzf42-border);border-radius:var(--yzf42-radius);padding:16px;background:var(--yzf42-paper);display:flex;align-items:flex-start;gap:.6em;box-shadow:var(--yzf42-shadow-1);}
.yzf42-room-card > div,.yzf42-service-card > div{flex:1;min-width:0;}
.yzf42-room-card p,.yzf42-service-card p{margin:.25em 0 0;color:var(--yzf42-ink-soft);font-size:.9rem;line-height:1.45;}
.yzf42-rooms--list_with_icons .yzf42-rooms-list,.yzf42-services--icon_list .yzf42-services-list{display:flex;flex-direction:column;gap:8px;}
.yzf42-rooms--list_with_icons .yzf42-room-card,.yzf42-services--icon_list .yzf42-service-card{border:0;border-bottom:1px solid var(--yzf42-border);border-radius:0;background:none;padding-inline:0;box-shadow:none;}
.yzf42-rooms--alternating .yzf42-rooms-list,.yzf42-services--alternating .yzf42-services-list{display:flex;flex-direction:column;gap:24px;}
.yzf42-rooms--alternating .yzf42-room-card:nth-child(even),.yzf42-services--alternating .yzf42-service-card:nth-child(even){background:var(--yzf42-muted-strong);}
.yzf42-amenity-check{color:var(--yzf42-brand-ink);font-weight:700;flex:none;}

/* --- practical info (24-A) --- */
.yzf42-practical-list{display:grid;gap:12px;}
.yzf42-practical--columns .yzf42-practical-list{grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:16px;}
.yzf42-practical-row{display:grid;gap:.35em;padding-block:8px;border-top:1px solid var(--yzf42-border);}
.yzf42-practical--columns .yzf42-practical-row{border-top:0;border-left:2px solid var(--yzf42-brand);padding:8px 12px;background:var(--yzf42-muted);border-radius:var(--yzf42-radius);}
.yzf42-practical-row dt{font-size:0.8rem;text-transform:uppercase;letter-spacing:.08em;color:var(--yzf42-ink-soft);}
.yzf42-practical-names{display:block;font-weight:600;line-height:1.45;}
.yzf42-practical-note{display:block;margin-top:.3em;color:var(--yzf42-ink-soft);font-size:.9rem;line-height:1.55;}
.yzf42-practical--grouped_list .yzf42-practical-row{grid-template-columns:minmax(9em,14em) 1fr;gap:16px;align-items:baseline;}
@media (max-width:780px){.yzf42-practical--grouped_list .yzf42-practical-row{grid-template-columns:1fr;}}

/* --- rating breakdown (24-B) --- */
.yzf42-ratings-inner{display:flex;flex-wrap:wrap;align-items:center;gap:16px;}
.yzf42-ratings-score{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:12px 20px;background:var(--yzf42-muted);border-radius:var(--yzf42-radius);}
.yzf42-ratings-value{font-family:'Oxygen',Georgia,serif;font-size:2.6rem;line-height:1;}
.yzf42-ratings-count{color:var(--yzf42-ink-soft);font-size:.85rem;margin-top:.35em;}
.yzf42-ratings-bars{flex:1;min-width:240px;display:flex;flex-direction:column;gap:.45em;}
.yzf42-ratings-bar{display:grid;grid-template-columns:5.5em 1fr 3.5em;align-items:center;gap:.75em;font-size:.9rem;}
.yzf42-ratings-label{color:var(--yzf42-ink-soft);white-space:nowrap;}
.yzf42-ratings-track{display:block;height:.6em;background:var(--yzf42-muted-strong);border-radius:999px;overflow:hidden;}
.yzf42-ratings-fill{display:block;height:100%;background:var(--yzf42-brand);border-radius:999px;}
.yzf42-ratings-num{text-align:right;font-variant-numeric:tabular-nums;color:var(--yzf42-ink-soft);}
.yzf42-ratings--compact .yzf42-ratings-track{height:.4em;}
.yzf42-ratings--compact .yzf42-ratings-score{padding:8px 12px;}
.yzf42-ratings--compact .yzf42-ratings-value{font-size:1.8rem;}

/* --- hours (24-C) --- */
.yzf42-hours-list{display:grid;gap:0;max-width:34em;}
.yzf42-hours-row{display:flex;justify-content:space-between;gap:16px;padding-block:.55em;border-bottom:1px dotted var(--yzf42-border);}
.yzf42-hours-day{font-weight:600;}
.yzf42-hours-time{color:var(--yzf42-ink-soft);font-variant-numeric:tabular-nums;text-align:right;}
.yzf42-hours-row--closed .yzf42-hours-time{opacity:.65;font-style:italic;}
.yzf42-hours--inline_list .yzf42-hours-list{display:flex;flex-wrap:wrap;gap:8px 16px;max-width:none;}
.yzf42-hours--inline_list .yzf42-hours-row{display:grid;gap:.15em;border-bottom:0;border-left:2px solid var(--yzf42-border);padding:.1em 0 .1em 8px;}
.yzf42-hours--inline_list .yzf42-hours-time{text-align:left;}

/* --- steps (25-A) --- */
.yzf42-steps-list{display:grid;gap:16px;counter-reset:none;}
.yzf42-steps--numbered_rows .yzf42-steps-list{grid-template-columns:1fr;max-width:52em;}
.yzf42-steps--cards .yzf42-steps-list{grid-template-columns:repeat(auto-fit,minmax(240px,1fr));}
.yzf42-step{display:flex;align-items:flex-start;gap:12px;}
.yzf42-step-num{flex:none;width:2.2em;height:2.2em;display:flex;align-items:center;justify-content:center;border-radius:50%;background:var(--yzf42-accent);color:var(--yzf42-accent-contrast);font-family:'Oxygen',Georgia,serif;font-weight:700;}
.yzf42-step-body{flex:1;min-width:0;}
.yzf42-step-body h3{font-size:1.15rem;margin-bottom:.35em;}
.yzf42-step-body p{margin:0;color:var(--yzf42-ink-soft);line-height:1.6;}
.yzf42-steps--numbered_rows .yzf42-step{padding-bottom:12px;border-bottom:1px solid var(--yzf42-border);}
.yzf42-steps--numbered_rows .yzf42-step:last-child{border-bottom:0;padding-bottom:0;}
.yzf42-steps--cards .yzf42-step{flex-direction:column;padding:16px;background:var(--yzf42-paper);border:1px solid var(--yzf42-border);border-radius:var(--yzf42-radius);box-shadow:var(--yzf42-shadow-1);}

/* --- sibling hub (25-B) --- */
.yzf42-hub-list{display:flex;flex-wrap:wrap;gap:8px;}
.yzf42-hub-link{display:inline-block;color:var(--yzf42-ink);}
.yzf42-hub--chips .yzf42-hub-link{padding:.45em 1.1em;border:1px solid var(--yzf42-border);border-radius:999px;background:var(--yzf42-paper);font-size:.9rem;}
.yzf42-hub--chips .yzf42-hub-link:hover{border-color:var(--yzf42-brand);color:var(--yzf42-brand-ink);text-decoration:none;}
.yzf42-hub--cards .yzf42-hub-list{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:16px;}
.yzf42-hub--cards .yzf42-hub-link{width:100%;padding:12px 16px;border:1px solid var(--yzf42-border);border-radius:var(--yzf42-radius);background:var(--yzf42-paper);font-weight:600;box-shadow:var(--yzf42-shadow-1);}
.yzf42-hub--cards .yzf42-hub-link:hover{border-color:var(--yzf42-brand);text-decoration:none;}

/* --- pull quote (25-C) --- */
.yzf42-pullquote-text{margin:0 auto;max-width:22em;text-align:center;font-family:'Oxygen',Georgia,serif;font-size:clamp(1.6rem,3vw,2.1rem);line-height:1.3;text-wrap:balance;}
.yzf42-pullquote--rule_flanked .yzf42-pullquote-text{padding-block:16px;border-top:2px solid var(--yzf42-accent);border-bottom:2px solid var(--yzf42-accent);}
.yzf42-pullquote--centered .yzf42-pullquote-text{color:var(--yzf42-brand-ink);}

/* --- neighborhood (25-D + 27-B) --- */
.yzf42-neighborhood-inner{display:grid;gap:16px;}
.yzf42-neighborhood--split_map .yzf42-neighborhood-inner{grid-template-columns:1fr 1fr;align-items:start;}
.yzf42-neighborhood--stacked .yzf42-neighborhood-inner{grid-template-columns:1fr;max-width:52em;}
.yzf42-neighborhood-text p{line-height:1.7;}
.yzf42-neighborhood-address{color:var(--yzf42-ink-soft);font-size:.9rem;}
@media (max-width:780px){.yzf42-neighborhood--split_map .yzf42-neighborhood-inner{grid-template-columns:1fr;}}

/* --- stay essentials (27-A) --- */
.yzf42-stay-list{display:grid;gap:8px;}
.yzf42-stay--grid .yzf42-stay-list{grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:16px;}
.yzf42-stay--grid .yzf42-stay-row{padding:12px 16px;background:var(--yzf42-muted);border-radius:var(--yzf42-radius);text-align:center;}
.yzf42-stay--inline_row .yzf42-stay-list{display:flex;flex-wrap:wrap;gap:8px 16px;}
.yzf42-stay--inline_row .yzf42-stay-row{border-left:2px solid var(--yzf42-brand);padding:.1em 0 .1em 8px;}
.yzf42-stay-row dt{font-size:.78rem;text-transform:uppercase;letter-spacing:.08em;color:var(--yzf42-ink-soft);}
.yzf42-stay-row dd{margin:.25em 0 0;font-family:'Oxygen',Georgia,serif;font-size:1.5rem;line-height:1.1;font-variant-numeric:tabular-nums;}

/* --- on-site venues (27-C) --- */
.yzf42-onsite-list{display:grid;gap:8px;}
.yzf42-onsite--cards .yzf42-onsite-list{grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px;}
.yzf42-onsite--cards .yzf42-onsite-item{padding:16px;background:var(--yzf42-paper);border:1px solid var(--yzf42-border);border-radius:var(--yzf42-radius);box-shadow:var(--yzf42-shadow-1);}
.yzf42-onsite--list .yzf42-onsite-list{max-width:44em;}
.yzf42-onsite--list .yzf42-onsite-item{display:flex;flex-wrap:wrap;align-items:baseline;gap:.5em 16px;padding-block:.55em;border-bottom:1px dotted var(--yzf42-border);}
.yzf42-onsite--list .yzf42-onsite-floor{margin-left:auto;}
.yzf42-onsite-item{display:grid;gap:.2em;}
.yzf42-onsite-name{font-weight:600;}
.yzf42-onsite-cat{color:var(--yzf42-ink-soft);font-size:.9rem;}
.yzf42-onsite-floor{color:var(--yzf42-ink-soft);font-size:.8rem;text-transform:uppercase;letter-spacing:.06em;}

/* --- partner ratings (27-D) --- */
.yzf42-partners-list{display:flex;flex-wrap:wrap;gap:16px;}
.yzf42-partners-item{display:flex;align-items:baseline;gap:.5em;}
.yzf42-partners--badges .yzf42-partners-item{flex-direction:column;align-items:center;gap:.15em;padding:12px 16px;background:var(--yzf42-muted);border-radius:var(--yzf42-radius);min-width:9em;}
.yzf42-partners--row .yzf42-partners-list{flex-direction:column;gap:0;max-width:34em;}
.yzf42-partners--row .yzf42-partners-item{padding-block:.55em;border-bottom:1px dotted var(--yzf42-border);}
.yzf42-partners--row .yzf42-partners-count{margin-left:auto;}
/* the score is the section's whole point, so it is sized for emphasis and
   inked for legibility: `--brand` is derived from the site's photography and
   landed at 1.86:1 on a pale palette. Same treatment as `ratings-value`. */
.yzf42-partners-score{font-family:'Oxygen',Georgia,serif;font-size:1.5rem;line-height:1;color:var(--yzf42-ink);font-variant-numeric:tabular-nums;}
.yzf42-partners-name{font-weight:600;}
.yzf42-partners-count{color:var(--yzf42-ink-soft);font-size:.85rem;}

/* --- gallery --- */
.yzf42-gallery-item img{aspect-ratio:4/3;object-fit:cover;width:100%;}
.yzf42-gallery-collages{display:flex;flex-direction:column;gap:12px;margin-bottom:12px;}
.yzf42-gallery-collages .yzf42-gallery-item img{aspect-ratio:auto;width:100%;}
.yzf42-gallery-singles{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:8px;}
.yzf42-gallery--grid .yzf42-gallery-singles{grid-template-columns:repeat(auto-fit,minmax(220px,1fr));}
.yzf42-gallery--masonry .yzf42-gallery-singles{grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:8px;grid-auto-rows:10px;}
.yzf42-gallery--masonry .yzf42-gallery-singles .yzf42-gallery-item:nth-child(3n+1){grid-row-end:span 24;}
.yzf42-gallery--masonry .yzf42-gallery-singles .yzf42-gallery-item:nth-child(3n+2){grid-row-end:span 32;}
.yzf42-gallery--masonry .yzf42-gallery-singles .yzf42-gallery-item:nth-child(3n){grid-row-end:span 20;}
.yzf42-gallery--masonry .yzf42-gallery-singles .yzf42-gallery-item img{height:100%;object-fit:cover;}
.yzf42-gallery-trigger{display:block;width:100%;padding:0;border:0;background:none;cursor:pointer;text-align:left;}
.yzf42-lightbox{position:fixed;inset:0;z-index:300;background:rgba(0,0,0,.92);display:flex;align-items:center;justify-content:center;}
.yzf42-lightbox[hidden]{display:none;}
.yzf42-lightbox-img{max-width:90vw;max-height:85vh;width:auto;border-radius:0;}
.yzf42-lightbox-close,.yzf42-lightbox-prev,.yzf42-lightbox-next{position:absolute;background:rgba(255,255,255,.12);color:#fff;border:0;border-radius:50%;width:44px;height:44px;font-size:1.4rem;line-height:1;cursor:pointer;}
.yzf42-lightbox-close{top:12px;right:12px;}
.yzf42-lightbox-prev{left:12px;top:50%;transform:translateY(-50%);}
.yzf42-lightbox-next{right:12px;top:50%;transform:translateY(-50%);}
.yzf42-lightbox-close:hover,.yzf42-lightbox-prev:hover,.yzf42-lightbox-next:hover{background:rgba(255,255,255,.25);}
@media (max-width:600px){
  .yzf42-lightbox-prev{left:6px;}
  .yzf42-lightbox-next{right:6px;}
}

/* --- contact --- */
.yzf42-contact--split_map .yzf42-contact-inner{display:grid;grid-template-columns:1fr 1fr;gap:24px;}
.yzf42-contact--stacked .yzf42-contact-inner{display:flex;flex-direction:column;gap:24px;}
.yzf42-map-embed{aspect-ratio:4/3;border-radius:var(--yzf42-radius);overflow:hidden;background:var(--yzf42-muted-strong);}
.yzf42-map-embed iframe{width:100%;height:100%;border-radius:0;}
.yzf42-form{display:flex;flex-direction:column;gap:10px;}
.yzf42-form label{font-weight:600;font-size:.9rem;display:block;margin-bottom:.35em;}
.yzf42-form input,.yzf42-form textarea{width:100%;padding:.7em;border:1px solid var(--yzf42-border);border-radius:var(--yzf42-radius);font:inherit;background:var(--yzf42-paper);color:var(--yzf42-ink);}
.yzf42-form-hp{position:absolute;left:-9999px;}
.yzf42-form-status{padding:8px 10px;border-radius:var(--yzf42-radius);margin-bottom:10px;border:1px solid var(--yzf42-border);font-weight:600;}
.yzf42-form-status--ok{border-color:var(--yzf42-brand);background:var(--yzf42-muted-strong);color:var(--yzf42-ink);}
.yzf42-form-status--err{border-color:#c0392b;background:var(--yzf42-muted-strong);color:#c0392b;}
.yzf42-nap{margin-top:12px;color:var(--yzf42-ink-soft);}
@media (max-width:780px){.yzf42-contact--split_map .yzf42-contact-inner{grid-template-columns:1fr;}}

/* --- footer --- */
.yzf42-footer{background:var(--yzf42-ink);color:rgba(255,255,255,.82);padding-block:61px;margin-top:16px;}
.yzf42-footer a{color:rgba(255,255,255,.82);text-decoration:none;}
.yzf42-footer a:hover{color:#fff;text-decoration:underline;}
.yzf42-footer-inner{display:flex;flex-wrap:wrap;justify-content:space-between;gap:16px;}
.yzf42-footer-nav{display:flex;flex-direction:column;gap:6px;}
.yzf42-footer-nav a{font-size:.9rem;}
.yzf42-footer-social{display:flex;gap:12px;}
.yzf42-footer-bottom{margin-top:16px;padding-top:12px;border-top:1px solid rgba(255,255,255,.12);font-size:0.8rem;opacity:.7;}

/* --- footer chrome variants (29-A) --- */
.yzf42-footer--centered_minimal .yzf42-footer-inner{flex-direction:column;align-items:center;text-align:center;gap:12px;}
.yzf42-footer--centered_minimal .yzf42-footer-nav{flex-direction:row;flex-wrap:wrap;justify-content:center;gap:16px;}
.yzf42-footer--centered_minimal .yzf42-footer-bottom{text-align:center;}
.yzf42-footer-band{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:16px;padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid rgba(255,255,255,.12);}
.yzf42-footer-band strong{font-family:'Oxygen',Georgia,serif;font-size:1.6rem;}
.yzf42-footer--cta_band .yzf42-footer-band .yzf42-btn{background:#fff;color:var(--yzf42-ink);}

/* --- related locations (injected post-build by `sitegen workflow`) --- */
.yzf42-related{background:var(--yzf42-muted);padding-block:71px;border-top:1px solid var(--yzf42-border);}
.yzf42-related h2{font-size:clamp(1.2rem,2.4vw,1.6rem);margin:0 0 16px;}
.yzf42-related-list{list-style:none;margin:0;padding:0;display:grid;gap:16px;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));}
.yzf42-related-card{background:var(--yzf42-paper);border:1px solid var(--yzf42-border);border-radius:var(--yzf42-radius);overflow:hidden;box-shadow:var(--yzf42-shadow-1);}
.yzf42-related-card a{display:block;color:inherit;text-decoration:none;height:100%;}
.yzf42-related-card img{width:100%;aspect-ratio:3/2;object-fit:cover;display:block;background:var(--yzf42-muted-strong);}
.yzf42-related-body{padding:12px 14px;}
.yzf42-related-name{font-weight:600;line-height:1.3;margin:0;}
.yzf42-related-meta{margin:.35em 0 0;font-size:.82rem;color:var(--yzf42-ink-soft);line-height:1.45;}
.yzf42-related-card a:hover .yzf42-related-name{text-decoration:underline;}

/* --- 404 --- */
.yzf42-notfound{text-align:center;padding-block:152px;}

/* --- motion-safe transitions and hover effects --- */
@media (prefers-reduced-motion: no-preference){
  .yzf42-nav{transition:max-height .25s ease;}
  .yzf42-btn{transition:background .15s ease,transform .1s ease;}
  .yzf42-btn:hover{transform:translateY(-1px);}
  .yzf42-room-card,.yzf42-service-card,.yzf42-highlights--icon_grid .yzf42-highlight{transition:box-shadow .18s ease,transform .18s ease;}
  .yzf42-rooms--cards .yzf42-room-card:hover,.yzf42-services--grid .yzf42-service-card:hover,
  .yzf42-highlights--icon_grid .yzf42-highlight:hover{box-shadow:var(--yzf42-shadow-2);transform:translateY(-2px);}
  .yzf42-related-card{transition:box-shadow .18s ease,transform .18s ease;}
  .yzf42-related-card:hover{box-shadow:var(--yzf42-shadow-2);transform:translateY(-2px);}
  .yzf42-testimonial{transition:box-shadow .18s ease;}
  .yzf42-testimonials--card_grid .yzf42-testimonial:hover{box-shadow:var(--yzf42-shadow-2);}
  .yzf42-nav-list a{transition:color .15s ease;}
  .yzf42-faq-item p{transition:opacity .15s ease;}
}
