/* UTFloors — design option C, owner-approved 2026-08-09 ("go with c").
 *
 * C = A's DESERT LIGHT palette wearing B's structure: bleached sand paper, canyon red accent,
 * warm-brown ink, a plate serif for numbers — under a FULL-BLEED PHOTOGRAPH with the headline
 * overlaid on it.
 *
 * ⛔ NOT a sibling reskin. Sixth distinct palette and type treatment in this group. Nothing else
 * here is warm-neutral and nothing else uses red. XSITE-OK
 *
 * WRITTEN FRESH rather than inherited. The previous site’s stylesheet had accumulated five sites  XSITE-OK
 * history plus a dark-palette override block; carrying that into a light design means every rule
 * is fighting an earlier one. Every class below is one this site's PHP actually emits — the list
 * was taken from the markup, not from memory.
 *
 * Load-bearing details, do not remove:
 *   1. `body.ut-page a{color:inherit}` (0,1,2) OUTRANKS `.ut-btn` (0,1,0). Button colour must be
 *      set at `body.ut-page a.ut-btn` or every button silently inherits its surroundings. This
 *      shipped as a 1.92:1 failure on the previous site.
 *   2. The theme ships `img{height:auto}`, which beats `height:100%` on the absolutely positioned
 *      hero image — it then renders at natural height and body text is drawn over the photograph.
 *      The `!important` block at the bottom is the fix.
 *   3. The brand motto is `white-space:nowrap` and WILL push the header past the viewport on
 *      phones. The media queries that hide it are load-bearing.
 *   4. The estimator RESULT block needs LAYOUT rules, not just colour. Colour-only styling passes
 *      a contrast check while rendering "Materials$1,100 – $3,250" run together.
 */

:root{
  --ut-ink:#241C15;      /* warm brown-black, never blue-black */
  --ut-mut:#6F6154;
  --ut-paper:#FBF7F0;    /* bleached sand */
  --ut-sand:#F1E8DA;
  --ut-red:#A63A25;      /* canyon red */
  --ut-red-dk:#8A2F1E;   /* link colour on paper — the accent itself is light on white */
  --ut-line:#E6DACA;
}

/* ---------------------------------------------------------------- WordPress scaffolding
   GeneratePress's own header, nav and footer are replaced wholesale. */
body.ut-page .site-header,
body.ut-page .main-navigation,
body.ut-page .site-footer{ display:none !important; }

body.ut-page{
  margin:0; background:var(--ut-paper); color:var(--ut-ink);
  font:16.5px/1.66 "Inter",ui-sans-serif,system-ui,-apple-system,Helvetica,sans-serif;
  -webkit-font-smoothing:antialiased;
}
body.ut-page .site.grid-container,
body.ut-page .site-content,
body.ut-page .content-area,
body.ut-page .site-main{ max-width:100%; width:100%; padding:0; margin:0; }
body.ut-page .site-content{ display:block; }
body.ut-fullbleed .inside-article{ padding:0; background:transparent; border:0; box-shadow:none; }
body.ut-fullbleed .entry-header{ display:none; }
body.ut-fullbleed .entry-content{ margin:0; }

body.ut-page h1, body.ut-page h2, body.ut-page h3, body.ut-page h4{
  margin:0; font-weight:640; letter-spacing:-.022em; line-height:1.12;
}
body.ut-page a{ color:inherit; }
.ut-wrap{ max-width:1180px; margin:0 auto; padding:0 26px; }

/* numbers get a plate serif — the one typographic signature of this site */
.ut-num-face{ font-family:"Iowan Old Style","Palatino Linotype",Georgia,serif; }

/* ---------------------------------------------------------------- header */
.ut-hdr{ background:rgba(251,247,240,.94); backdrop-filter:blur(10px);
  border-bottom:1px solid var(--ut-line); color:var(--ut-ink); position:sticky; top:0; z-index:30; }
.ut-hdr .ut-wrap{ display:flex; align-items:center; gap:30px; height:74px; }
.ut-brand{ text-decoration:none; display:flex; flex-direction:column; gap:3px; line-height:1; }
.ut-brand .bn{ font:750 22px/1 inherit; letter-spacing:-.035em; color:var(--ut-ink); }
.ut-brand .bn em{ font-style:normal; color:var(--ut-red); }
.ut-brand .bs{ font-size:10px; letter-spacing:.16em; text-transform:uppercase; color:var(--ut-mut);
  display:flex; gap:8px; white-space:nowrap; }
.ut-brand .bmotto{ text-transform:none; letter-spacing:.01em; font-size:11px; font-style:italic; }
.ut-nav{ margin-left:auto; display:flex; gap:26px; font-size:14.5px; color:var(--ut-mut);
  list-style:none; margin-block:0; padding:0; }
.ut-nav a{ text-decoration:none; padding:5px 0; border-bottom:2px solid transparent; }
.ut-nav a:hover{ border-color:var(--ut-red); color:var(--ut-red); }
.ut-navtoggle{ display:none; margin-left:auto; background:none; border:1px solid var(--ut-line);
  color:var(--ut-ink); border-radius:99px; padding:9px 15px; font:14px inherit; cursor:pointer; }

/* nav submenus — the design-round mockups had a FLAT nav, so these rules did not exist until
   real pages grew children and every child rendered inline at scrollWidth 2027. */
.ut-nav > li{ position:relative; }
.ut-nav > li > a{ display:flex; align-items:center; gap:7px; }
.ut-caret{ width:7px; height:7px; border-right:1.5px solid currentColor;
  border-bottom:1.5px solid currentColor; transform:rotate(45deg) translateY(-2px); opacity:.6; }
.ut-sub{ position:absolute; top:100%; left:-14px; min-width:242px; background:var(--ut-paper);
  border:1px solid var(--ut-line); border-radius:4px; padding:8px; display:none;
  box-shadow:0 16px 36px rgba(36,28,21,.14); }
.ut-nav > li:hover > .ut-sub, .ut-nav > li:focus-within > .ut-sub{ display:block; }
.ut-sub a{ display:block; padding:9px 12px; text-decoration:none; color:var(--ut-ink);
  font-size:14.5px; border-bottom:0; border-radius:3px; }
.ut-sub a:hover{ background:var(--ut-sand); color:var(--ut-red); }

/* ---------------------------------------------------------------- hero (C: full-bleed photo,
   headline OVERLAID). Dual gradient: bottom for depth, left so the type column keeps a dark
   ground even where the photograph is bright. Measured at 5.62:1 on the design round. */
.ut-hero{ position:relative; min-height:clamp(440px,56vw,620px); display:flex; align-items:flex-end;
  background:#241C15; padding:0; }
.ut-hero.sm{ min-height:clamp(300px,34vw,430px); }
.ut-hero img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.ut-hero::after{ content:""; position:absolute; inset:0;
  background:linear-gradient(180deg,rgba(20,15,12,.30) 0 28%,rgba(16,12,9,.93)),
             linear-gradient(96deg,rgba(18,13,10,.70) 0 32%,rgba(18,13,10,.30) 60%,rgba(18,13,10,.04)); }
.ut-hero .ut-wrap{ position:relative; z-index:2; padding:112px 26px 50px; }
.ut-hero .inner{ max-width:60ch; }
.ut-hero h1{ font-size:clamp(31px,4.4vw,52px); line-height:1.06; color:#fff; }
.ut-hero p{ margin:16px 0 0; color:#EADFCF; font-size:18px; max-width:52ch; }
.ut-eyebrow{ font-size:11.5px; font-weight:700; letter-spacing:.17em; text-transform:uppercase;
  color:#F0B49F; margin-bottom:14px; }

/* ---------------------------------------------------------------- buttons */
.ut-btns{ display:flex; gap:12px; flex-wrap:wrap; margin-top:26px; }
.ut-btn{ display:inline-block; background:var(--ut-red); color:#fff; text-decoration:none;
  padding:14px 26px; font:650 15px/1 inherit; border-radius:3px; }
.ut-btn:hover{ background:var(--ut-red-dk); }
.ut-btn.alt{ background:transparent; border:1px solid rgba(251,247,240,.44); color:#FBF7F0; }
.ut-btn.alt:hover{ border-color:#fff; }
/* ⚠️ `body.ut-page a{color:inherit}` outranks `.ut-btn`. Set it at matching specificity or every
   button inherits its surroundings — this shipped as a 1.92:1 failure on the previous site. */
body.ut-page a.ut-btn{ color:#fff; }
body.ut-page a.ut-btn.alt{ color:#FBF7F0; }
body.ut-page a.ut-btn:hover{ color:#fff; }

/* ---------------------------------------------------------------- sections */
.ut-sec{ padding:66px 0; border-bottom:1px solid var(--ut-line); }
.ut-sec.alt{ background:var(--ut-sand); }
.ut-sec.dark{ background:var(--ut-ink); color:#EADFCF; border-bottom:0; }
.ut-sec.dark h2{ color:#fff; }
.ut-num{ font:700 12px/1 inherit; letter-spacing:.2em; color:var(--ut-red); margin-bottom:14px;
  text-transform:uppercase; }
.ut-sec h2{ font-size:clamp(24px,3vw,35px); max-width:22ch; }
.ut-lede{ color:var(--ut-mut); max-width:62ch; margin-top:14px; }
.ut-sec.dark .ut-lede{ color:#C4B4A2; }

/* materials */
.ut-mgrid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:32px; }
.ut-mcard{ background:var(--ut-paper); border:1px solid var(--ut-line); border-radius:3px;
  overflow:hidden; text-decoration:none; display:block; }
.ut-mcard img{ width:100%; aspect-ratio:4/3; object-fit:cover; display:block; }
.ut-mcard .t{ display:block; padding:15px 17px 19px; }
.ut-mcard h3{ font-size:16.5px; }
.ut-mcard p{ margin:6px 0 0; font-size:14px; color:var(--ut-mut); }
.ut-mcard:hover{ border-color:var(--ut-red); }
.ut-mcard:hover h3{ color:var(--ut-red); }

/* rooms */
.ut-rooms{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:32px; }
.ut-room{ position:relative; overflow:hidden; text-decoration:none; display:block;
  min-height:210px; border-radius:3px; }
.ut-room img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
/* the label sits on the photo, so the scrim is load-bearing: 17px bold is NOT WCAG "large text"
   (that needs 18.66px), so a shallow scrim is a genuine AA failure, not a pass. */
.ut-room::after{ content:""; position:absolute; inset:0;
  background:linear-gradient(180deg,rgba(14,18,15,.02) 26%,rgba(9,7,6,.62) 62%,rgba(7,5,4,.96)); }
.ut-room .lab{ position:absolute; left:20px; right:20px; bottom:16px; z-index:2; color:#fff; }
.ut-room .lab h3{ font-size:17px; text-shadow:0 1px 3px rgba(0,0,0,.55); }
.ut-room .lab p{ margin:5px 0 0; font-size:13.5px; color:#E4DACE; }

/* costs */
table.ut-costs{ width:100%; border-collapse:collapse; margin-top:32px; font-size:16px; }
table.ut-costs th{ text-align:left; font:700 11px/1 inherit; letter-spacing:.16em;
  text-transform:uppercase; color:var(--ut-mut); padding:0 0 12px;
  border-bottom:2px solid var(--ut-ink); }
table.ut-costs td{ padding:14px 0; border-bottom:1px solid var(--ut-line); }
table.ut-costs td.p{ text-align:right; font-variant-numeric:tabular-nums; font-weight:600;
  white-space:nowrap; color:var(--ut-red-dk);
  font-family:"Iowan Old Style","Palatino Linotype",Georgia,serif; font-size:17px; }
table.ut-costs td.u{ text-align:right; color:var(--ut-mut); font-size:13px; width:92px; }
.ut-disclaimer{ margin-top:18px; font-size:13.5px; color:var(--ut-mut); max-width:66ch; }

/* facts */
.ut-facts{ display:grid; grid-template-columns:repeat(4,1fr); gap:0; margin-top:34px;
  border-top:2px solid var(--ut-ink); border-bottom:1px solid var(--ut-line); }
.ut-facts div{ padding:24px 22px 24px 0; border-right:1px solid var(--ut-line); }
.ut-facts div:last-child{ border-right:0; }
.ut-facts .n{ font:600 clamp(21px,2.6vw,30px)/1 "Iowan Old Style","Palatino Linotype",Georgia,serif;
  color:var(--ut-red-dk); letter-spacing:-.01em; }
.ut-facts p{ margin:8px 0 0; font-size:13.5px; color:var(--ut-mut); max-width:24ch; }

/* Utah notes */
.ut-notes{ margin-top:32px; display:grid; gap:0; }
.ut-note-row{ display:grid; grid-template-columns:34px 1fr; gap:20px; padding:22px 0;
  border-bottom:1px solid var(--ut-line); }
.ut-note-row .k{ font:700 13px/1 "Iowan Old Style",Georgia,serif; color:var(--ut-red);
  letter-spacing:.04em; }
.ut-note-row h3{ font-size:18px; }
.ut-note-row p{ margin:8px 0 0; font-size:15.5px; color:var(--ut-mut); }
.ut-notes .c{ background:var(--ut-paper); border:1px solid var(--ut-line); border-radius:3px;
  padding:24px; }
.ut-notes .c h3{ font-size:18px; }
.ut-notes .c p{ margin:9px 0 0; font-size:15px; color:var(--ut-mut); }

/* a dated callout */
.ut-alert{ background:var(--ut-ink); color:#EADFCF; padding:26px 28px; margin-top:34px;
  border-radius:3px; display:grid; grid-template-columns:auto 1fr; gap:22px; align-items:start; }
.ut-alert .tag{ background:var(--ut-red); color:#fff; font-size:11px; font-weight:700;
  letter-spacing:.11em; text-transform:uppercase; padding:7px 12px; white-space:nowrap;
  border-radius:99px; }
.ut-alert h3{ font-size:19px; color:#fff; }
.ut-alert p{ margin:9px 0 0; font-size:15.5px; color:#C4B4A2; max-width:74ch; }

/* cities */
.ut-cities{ display:flex; flex-wrap:wrap; gap:10px; margin-top:30px; }
.ut-cities a{ background:var(--ut-paper); border:1px solid var(--ut-line); border-radius:3px;
  padding:10px 19px; text-decoration:none; font-size:15.5px; }
.ut-cities a:hover{ border-color:var(--ut-red); color:var(--ut-red); }

/* faq */
.ut-faq{ margin-top:30px; max-width:76ch; }
.ut-faq details{ border-bottom:1px solid var(--ut-line); padding:18px 0; }
.ut-faq summary{ cursor:pointer; font-weight:650; font-size:17px; }
.ut-faq summary::marker{ color:var(--ut-red); }
.ut-faq p{ margin:10px 0 0; color:var(--ut-mut); font-size:16px; }

/* ---------------------------------------------------------------- estimator
   BOTH themes styled from the start — a sibling shipped the light variant unstyled at 2.39:1. */
.ut-est{ background:var(--ut-ink); color:#EADFCF; }
.ut-est .ut-wrap{ display:grid; grid-template-columns:1fr 400px; gap:46px; align-items:center;
  padding:60px 26px; }
.ut-est h2{ color:#fff; }
.ut-est .ut-lede, .ut-est-points{ color:#C4B4A2; }
.ut-panel{ background:#2E241B; border:1px solid #3D2F24; border-radius:4px; padding:24px; }
.ut-panel h3{ font-size:15px; color:#fff; margin-bottom:16px; }
.ut-field{ margin-bottom:13px; }
.ut-field label{ display:block; font-size:12.5px; font-weight:600; color:#BCA894; margin-bottom:6px; }
.ut-field input,.ut-field select{ width:100%; border:1px solid #3D2F24; border-radius:3px;
  padding:11px 12px; font:15px inherit; background:#1D1610; color:#F4EDE3; }
.ut-row2{ display:grid; grid-template-columns:1fr 1fr; gap:11px; }
.ut-gobtn{ width:100%; margin-top:6px; background:var(--ut-red); color:#fff; border:0; padding:14px;
  font:650 15px/1 inherit; border-radius:3px; cursor:pointer; }
.ut-gobtn:hover{ background:#BF452C; }
.ut-panel .note{ font-size:12.5px; color:#BCA894; margin-top:12px; line-height:1.5; }
.ut-toggle{ background:none; border:0; padding:4px 0; cursor:pointer; font:inherit; font-size:13px;
  text-decoration:underline; text-underline-offset:3px; color:#BCA894; }

/* light variant, used on the standalone estimator page */
.ut-est.light{ background:var(--ut-sand); color:var(--ut-ink); }
.ut-est.light h2{ color:var(--ut-ink); }
.ut-est.light .ut-lede,.ut-est.light .ut-est-points{ color:var(--ut-mut); }
.ut-est.light .ut-panel{ background:var(--ut-paper); border-color:var(--ut-line); }
.ut-est.light .ut-panel h3{ color:var(--ut-ink); }
.ut-est.light .ut-field label{ color:#5C5046; }
.ut-est.light .ut-field input,.ut-est.light .ut-field select{ background:#fff;
  border-color:var(--ut-line); color:var(--ut-ink); }
.ut-est.light .ut-panel .note,.ut-est.light .ut-toggle{ color:#5C5046; }

/* ---------------------------------------------------------------- estimator RESULT
   ⚠️ LAYOUT, not just colour. Colour-only styling passes a contrast check while rendering
   "Materials$1,100 – $3,250" run together — that shipped on four sites in this group. */
.ut-result{ margin-top:22px; padding-top:20px; border-top:1px solid #3D2F24; }
.ut-est.light .ut-result{ border-top-color:var(--ut-line); }
.ut-total-cap{ font-size:12px; letter-spacing:.13em; text-transform:uppercase; font-weight:700;
  color:#BCA894; }
.ut-total{ font-size:clamp(26px,3.4vw,34px); font-weight:600; letter-spacing:-.02em;
  margin:6px 0 16px; font-variant-numeric:tabular-nums; color:#F0B49F;
  font-family:"Iowan Old Style","Palatino Linotype",Georgia,serif; }
.ut-split-row{ display:grid; grid-template-columns:1fr auto; gap:16px; align-items:baseline;
  padding:10px 0; border-bottom:1px solid #3D2F24; font-size:15px; color:#EADFCF; }
.ut-split-row span:last-child{ text-align:right; font-weight:600;
  font-variant-numeric:tabular-nums; white-space:nowrap; }
.ut-split-row:last-of-type{ border-bottom:0; }
.ut-explain{ margin-top:16px; font-size:14.5px; line-height:1.62; color:#C4B4A2; }
.ut-explain p{ margin:0 0 10px; }
.ut-explain p:last-child{ margin-bottom:0; }
.ut-estimate-flag{ margin-top:16px; padding:14px 16px; border-radius:3px; font-size:14px;
  line-height:1.6; background:#3A2C20; color:#E6D8C7; }
.ut-est.light .ut-total-cap{ color:var(--ut-mut); }
.ut-est.light .ut-total{ color:var(--ut-red-dk); }
.ut-est.light .ut-split-row{ color:var(--ut-ink); border-bottom-color:var(--ut-line); }
.ut-est.light .ut-explain{ color:var(--ut-mut); }
.ut-est.light .ut-estimate-flag{ background:#F6EFE4; color:#4E4238; }

/* ---------------------------------------------------------------- related links + footer */
.ut-related{ display:flex; flex-wrap:wrap; gap:10px; margin-top:30px; }
.ut-related a{ background:var(--ut-paper); border:1px solid var(--ut-line); border-radius:3px;
  padding:10px 18px; text-decoration:none; font-size:15px; }
.ut-related a:hover{ border-color:var(--ut-red); color:var(--ut-red); }

.ut-ft{ background:var(--ut-ink); color:#B6A895; padding:56px 0 30px; font-size:14.5px; }
.ut-ft-cols{ display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:32px; }
.ut-ft-brand{ font:750 20px/1 inherit; color:#fff; letter-spacing:-.03em; }
.ut-ft-tag{ margin-top:6px; font-size:13.5px; font-style:italic; color:#E5A08C; }
.ut-ft-note{ margin:11px 0 0; font-size:13.5px; max-width:40ch; color:#A39383; }
.ut-ft h4{ font-size:11px; letter-spacing:.16em; text-transform:uppercase; color:#A79A8A;
  margin-bottom:11px; }
.ut-ft a{ display:block; text-decoration:none; padding:4px 0; color:#B6A895; }
.ut-ft a:hover{ color:#fff; }
.ut-ft-fine{ margin-top:40px; padding-top:18px; border-top:1px solid #3A2F25; font-size:13px;
  color:#A79A8A; }
.ut-ft-sep{ margin:0 9px; }
.ut-ft-inq{ display:inline !important; color:#A79A8A !important; text-decoration:underline; }
.ut-ft-inq:hover{ color:#fff !important; }

/* wide content scrolls inside its OWN box; the page body never scrolls */
.ut-tablewrap{ overflow-x:auto; -webkit-overflow-scrolling:touch; max-width:100%; }
.ut-tablewrap table{ min-width:520px; }

/* ---------------------------------------------------------------- article pages */
body.ut-article .inside-article{ max-width:800px; margin:0 auto; padding:52px 26px 30px;
  background:transparent; border:0; box-shadow:none; }
body.ut-article .entry-header{ margin-bottom:0; }
body.ut-article .entry-title{ font-size:clamp(29px,3.8vw,44px); letter-spacing:-.025em; }
body.ut-article .entry-meta{ font-size:12px; letter-spacing:.12em; text-transform:uppercase;
  color:var(--ut-mut); margin-top:14px; }
body.ut-article .entry-content{ margin-top:26px; font-size:17px; line-height:1.72; }
body.ut-article .entry-content h2{ font-size:25px; margin:44px 0 0; }
body.ut-article .entry-content h3{ font-size:19px; margin:32px 0 0; }
body.ut-article .entry-content p{ margin:15px 0 0; }
body.ut-article .entry-content ul,body.ut-article .entry-content ol{ margin:15px 0 0;
  padding-left:22px; }
body.ut-article .entry-content li{ margin-bottom:8px; }
body.ut-article .entry-content li::marker{ color:var(--ut-red); }
body.ut-article .entry-content a{ color:var(--ut-red-dk); text-underline-offset:2px; }
body.ut-article .entry-content img{ max-width:100%; height:auto; display:block; }
body.ut-article .entry-content figure{ margin:34px 0 0; }
body.ut-article .entry-content figcaption{ font-size:13px; color:var(--ut-mut); margin-top:8px; }
/* same specificity trap: `body.ut-article .entry-content a` (0,0,3,1) outranks `.ut-btn` */
body.ut-article .entry-content a.ut-btn{ color:#fff; }
body.ut-article .entry-content a.ut-btn.alt{ color:#FBF7F0; }
body.ut-article .entry-content .ut-hero a{ text-decoration:none; }

/* the hero must break OUT of the article column, and the theme's own title is suppressed so the
   heading is not printed twice */
body.ut-article .entry-content > .ut-hero{
  margin-left:calc(50% - 50vw); margin-right:calc(50% - 50vw);
  width:100vw; max-width:100vw; margin-top:0;
}
body.ut-has-hero .entry-header,
body.ut-has-hero .entry-title{ display:none !important; }
body.ut-has-hero .entry-content{ margin-top:0; }
body.ut-has-hero .site-content,
body.ut-has-hero .content-area,
body.ut-has-hero .entry-content{ padding-top:0 !important; margin-top:0 !important; }
body.ut-has-hero .inside-article{ padding-top:0 !important; }

/* the theme's `img{height:auto}` beats `height:100%` on the absolutely positioned hero image,
   so it renders at natural height and body text is drawn over the photograph. Force it. */
.ut-hero.has-photo > img,
.ut-hero > img{
  position:absolute !important; inset:0 !important;
  width:100% !important; height:100% !important;
  object-fit:cover !important; max-width:none !important;
}

/* ---------------------------------------------------------------- responsive */
@media(max-width:1080px){
  /* LOAD-BEARING: the motto is nowrap and will widen the header past the viewport */
  .ut-brand .bdot,.ut-brand .bmotto{ display:none; }
}
@media(max-width:980px){
  .ut-rooms{ grid-template-columns:1fr 1fr; }
  .ut-mgrid{ grid-template-columns:1fr 1fr; }
  .ut-est .ut-wrap{ grid-template-columns:1fr; gap:30px; }
  .ut-facts{ grid-template-columns:1fr 1fr; }
  .ut-ft-cols{ grid-template-columns:1fr 1fr; }
  .ut-alert{ grid-template-columns:1fr; gap:14px; }
}
@media(max-width:760px){
  .ut-navtoggle{ display:block; }
  .ut-nav{ position:absolute; top:74px; left:0; right:0; background:var(--ut-paper);
    flex-direction:column; gap:0; padding:6px 26px 16px; display:none;
    border-bottom:3px solid var(--ut-red); box-shadow:0 18px 30px rgba(36,28,21,.12); }
  .ut-nav.open{ display:flex; }
  .ut-nav a{ padding:13px 0; border-bottom:1px solid var(--ut-line); }
  .ut-nav > li{ position:static; }
  .ut-sub{ position:static; display:block; border:0; box-shadow:none; padding:0 0 10px 12px;
    min-width:0; background:transparent; }
  .ut-caret{ display:none; }
  .ut-rooms,.ut-mgrid{ grid-template-columns:1fr; }
  .ut-facts{ grid-template-columns:1fr; }
  .ut-facts div{ border-right:0; border-bottom:1px solid var(--ut-line); padding-right:0; }
  .ut-hero .ut-wrap{ padding:88px 26px 40px; }
}
@media(max-width:520px){ .ut-brand .bs{ display:none; } }
@media(max-width:420px){ .ut-split-row{ font-size:14px; gap:10px; } }
