/* =========================================================================
   Sunset Harbor Resort & Casino — design system
   Warm parchment base with a deep-teal ink and amber/terracotta accent —
   the read of a sunset settling over Lake Tahoe's south shore. Bold
   geometric-sans display type paired with a warm serif body (the inverse
   pairing of a typical resort site): mountain-lodge signage energy up top,
   easy fireside reading underneath. Notched-corner cards, a jagged ridge-
   line divider under the hero, and a diagonal stat band replace the usual
   rounded-card, centered-rule resort template. Hand-written, no framework,
   no web fonts, no CDN.
   ========================================================================= */

:root {
  --shr-cream:       #faf3e6;
  --shr-cream-deep:  #f1e6d2;
  --shr-parchment:   #ece0c8;
  --shr-ink:         #26201a;
  --shr-ink-soft:    #4f463b;
  --shr-ink-faint:   #85796a;

  --shr-teal-950:    #0a2426;
  --shr-teal-900:    #0f3638;
  --shr-teal-800:    #154548;
  --shr-teal-700:    #1c5a5d;
  --shr-teal-line:   rgba(21, 69, 72, 0.14);

  --shr-amber:       #d97a34;
  --shr-amber-light: #f0a25a;
  --shr-amber-dark:  #a8541f;
  --shr-clay:        #c1552f;
  --shr-clay-light:  #e08256;

  --shr-white:       #ffffff;

  --shr-font-display: Futura, 'Century Gothic', 'Trebuchet MS', 'Segoe UI', sans-serif;
  --shr-font-body: Georgia, 'Iowan Old Style', 'Palatino Linotype', 'Book Antiqua', Palatino, serif;

  --shr-wrap-w: 1240px;
  --shr-notch: 22px;
  --shr-shadow-sm: 0 2px 14px rgba(38, 32, 26, 0.10);
  --shr-shadow-md: 0 20px 42px rgba(10, 36, 38, 0.16);
  --shr-shadow-glow: 0 16px 34px rgba(217, 122, 52, 0.28);
  --shr-ease: 260ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body.shr-body {
  margin: 0;
  font-family: var(--shr-font-body);
  color: var(--shr-ink-soft);
  background: var(--shr-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; }
h1, h2, h3, h4 {
  font-family: var(--shr-font-display);
  color: var(--shr-teal-950);
  line-height: 1.14;
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: 0.005em;
  text-transform: none;
}
p { margin: 0 0 1em; color: var(--shr-ink-soft); }
address { font-style: normal; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.shr-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--shr-amber);
  color: var(--shr-white);
  padding: 0.75em 1.25em;
  z-index: 1000;
  font-weight: 700;
}
.shr-skip:focus { left: 1em; top: 1em; }

.shr-wrap {
  width: 100%;
  max-width: var(--shr-wrap-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Accent bar (section-head ornament) ---------- */
.shr-accent-bar {
  display: block;
  width: 6px;
  height: 34px;
  margin-bottom: 14px;
  background: linear-gradient(180deg, var(--shr-amber), var(--shr-clay));
}
.shr-section__head.shr-center .shr-accent-bar { margin-left: auto; margin-right: auto; }

/* ---------- Buttons (clipped corner) ---------- */
.shr-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85em 1.8em;
  font-weight: 700;
  font-family: var(--shr-font-display);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: transform var(--shr-ease), box-shadow var(--shr-ease), background var(--shr-ease), color var(--shr-ease);
  border: none;
  cursor: pointer;
}
.shr-btn--primary {
  background: linear-gradient(120deg, var(--shr-amber-light), var(--shr-amber));
  color: var(--shr-teal-950);
}
.shr-btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shr-shadow-glow); }
.shr-btn--ghost {
  background: transparent;
  color: var(--shr-teal-900);
  box-shadow: inset 0 0 0 1.5px var(--shr-teal-800);
}
.shr-btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--shr-amber); color: var(--shr-amber-dark); transform: translateY(-2px); }
.shr-btn--dark {
  background: var(--shr-teal-900);
  color: var(--shr-cream);
}
.shr-btn--dark:hover { background: var(--shr-teal-800); transform: translateY(-2px); }
.shr-btn--block { display: flex; justify-content: center; width: 100%; }

/* ---------- Header ---------- */
.shr-header {
  background: var(--shr-cream);
  border-bottom: 1px solid var(--shr-teal-line);
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow var(--shr-ease), padding var(--shr-ease);
}
.shr-header.is-scrolled { box-shadow: var(--shr-shadow-sm); }
.shr-header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 92px;
}
.shr-brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.shr-brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(140deg, var(--shr-teal-800), var(--shr-teal-950));
  color: var(--shr-amber-light);
  font-family: var(--shr-font-display);
  font-weight: 700;
  font-size: 0.98rem;
}
.shr-brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.shr-brand__name { color: var(--shr-teal-950); font-family: var(--shr-font-display); font-size: 1.28rem; font-weight: 700; }
.shr-brand__tag { color: var(--shr-amber-dark); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--shr-font-body); }

.shr-nav { flex: 1; display: flex; justify-content: center; }
.shr-nav__list { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; justify-content: center; }
.shr-nav__item > a {
  color: var(--shr-ink-soft);
  font-family: var(--shr-font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
  display: inline-block;
}
.shr-nav__item > a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--shr-amber);
  transition: width var(--shr-ease);
}
.shr-nav__item > a:hover::after,
.shr-nav__item.is-active > a::after { width: 100%; }
.shr-nav__item.is-active > a { color: var(--shr-teal-950); }

.shr-header__side { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.shr-header__phone { font-family: var(--shr-font-display); font-weight: 700; font-size: 0.86rem; color: var(--shr-teal-900); white-space: nowrap; }
.shr-header__phone:hover { color: var(--shr-amber-dark); }
.shr-header__cta { padding: 0.62em 1.35em; font-size: 0.72rem; }

.shr-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 260;
}
.shr-nav-toggle span {
  display: block;
  height: 2px;
  background: var(--shr-teal-950);
  transition: transform var(--shr-ease), opacity var(--shr-ease);
}
.shr-nav-toggle.is-active span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.shr-nav-toggle.is-active span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

@media (max-width: 980px) {
  .shr-header__inner { height: 76px; }
  .shr-nav-toggle { display: flex; }
  .shr-header__phone { display: none; }
  .shr-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--shr-cream);
    border-bottom: 1px solid var(--shr-teal-line);
    box-shadow: var(--shr-shadow-md);
    justify-content: flex-start;
    padding: 8px 24px 26px;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--shr-ease), opacity var(--shr-ease), visibility var(--shr-ease);
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }
  .shr-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .shr-nav__list { flex-direction: column; align-items: flex-start; gap: 2px; width: 100%; }
  .shr-nav__item { width: 100%; border-bottom: 1px solid var(--shr-teal-line); }
  .shr-nav__item > a { display: block; padding: 15px 0; font-size: 0.9rem; }
}

/* ---------- Hero ---------- */
.shr-hero {
  position: relative;
  background: linear-gradient(180deg, var(--shr-cream) 0%, var(--shr-cream-deep) 100%);
  padding: 76px 0 132px;
  overflow: hidden;
}
.shr-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.shr-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--shr-amber-dark);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 700;
  font-family: var(--shr-font-display);
  margin-bottom: 18px;
}
.shr-hero h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); max-width: 15ch; color: var(--shr-teal-950); }
.shr-hero__lede { color: var(--shr-ink-soft); font-size: 1.08rem; max-width: 50ch; }
.shr-hero__actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }

.shr-hero__scene {
  position: relative;
  height: 380px;
  overflow: hidden;
  clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%, 0 10%);
  box-shadow: var(--shr-shadow-md);
}
.shr-hero__scene-sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 38%, var(--shr-amber-light) 0%, var(--shr-amber) 16%, transparent 34%),
    linear-gradient(180deg, #f6c66b 0%, #e2854a 32%, var(--shr-clay) 56%, var(--shr-teal-800) 82%, var(--shr-teal-950) 100%);
}
.shr-hero__scene-water {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 46%;
  background: repeating-linear-gradient(180deg, rgba(250, 243, 230, 0.14) 0px, rgba(250, 243, 230, 0.14) 2px, transparent 2px, transparent 14px), var(--shr-teal-900);
}
.shr-hero__scene-ridge {
  position: absolute;
  left: 0; right: 0; bottom: 42%;
  height: 90px;
  background: var(--shr-teal-950);
  clip-path: polygon(0% 100%, 0% 40%, 8% 55%, 18% 20%, 27% 48%, 38% 10%, 47% 42%, 58% 25%, 68% 50%, 79% 15%, 89% 46%, 100% 30%, 100% 100%);
}
.shr-hero__scene-tag {
  position: absolute;
  left: 22px;
  bottom: 20px;
  color: var(--shr-cream);
  font-family: var(--shr-font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.shr-hero__ridge-divider {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 70px;
  background: var(--shr-cream);
  clip-path: polygon(0% 100%, 0% 62%, 5% 78%, 12% 40%, 20% 70%, 28% 30%, 36% 66%, 44% 20%, 52% 58%, 60% 34%, 68% 72%, 76% 26%, 84% 60%, 92% 38%, 100% 68%, 100% 100%);
}

@media (max-width: 900px) {
  .shr-hero__grid { grid-template-columns: 1fr; }
  .shr-hero__scene { height: 260px; }
}

/* ---------- Diagonal stat band ---------- */
.shr-stat-band {
  position: relative;
  background: linear-gradient(100deg, var(--shr-teal-950), var(--shr-teal-800));
  padding: 46px 0;
  margin-top: -70px;
}
.shr-stat-band__row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.shr-stat { text-align: center; padding: 4px 12px; }
.shr-stat__num { display: block; font-family: var(--shr-font-display); font-size: 1.9rem; font-weight: 700; color: var(--shr-amber-light); }
.shr-stat__label { font-size: 0.72rem; color: var(--shr-cream); text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.82; }
@media (max-width: 780px) {
  .shr-stat-band__row { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
}

/* ---------- Page header (non-home) ---------- */
.shr-page-header {
  position: relative;
  background: var(--shr-cream-deep);
  padding: 56px 0 60px;
  border-bottom: 1px solid var(--shr-teal-line);
}
.shr-breadcrumb { color: var(--shr-amber-dark); font-family: var(--shr-font-display); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; font-weight: 700; display: block; }
.shr-page-header h1 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); max-width: 24ch; }
.shr-page-header .shr-lede { color: var(--shr-ink-soft); max-width: 62ch; font-size: 1.02rem; margin: 0; }

/* ---------- Sections ---------- */
.shr-section { padding: 80px 0; }
.shr-section--alt { background: var(--shr-cream-deep); border-top: 1px solid var(--shr-teal-line); border-bottom: 1px solid var(--shr-teal-line); }
.shr-section--dark { background: var(--shr-teal-950); }
.shr-section--dark h2, .shr-section--dark h3 { color: var(--shr-cream); }
.shr-section--dark p { color: rgba(250, 243, 230, 0.78); }
.shr-section__head { max-width: 680px; margin: 0 0 44px; }
.shr-section__head.shr-center { margin: 0 auto 44px; text-align: center; }
.shr-eyebrow {
  display: inline-block;
  color: var(--shr-amber-dark);
  font-family: var(--shr-font-display);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.shr-section__head h2 { font-size: clamp(1.55rem, 2.8vw, 2.1rem); margin-top: 4px; }
.shr-section__head p { font-size: 1rem; }

/* ---------- Grid / cards (notched corner) ---------- */
.shr-grid { display: grid; gap: 26px; }
.shr-grid--2 { grid-template-columns: repeat(2, 1fr); }
.shr-grid--3 { grid-template-columns: repeat(3, 1fr); }
.shr-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .shr-grid--3, .shr-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .shr-grid--2, .shr-grid--3, .shr-grid--4 { grid-template-columns: 1fr; } }

.shr-card {
  background: var(--shr-white);
  clip-path: polygon(0 0, calc(100% - var(--shr-notch)) 0, 100% var(--shr-notch), 100% 100%, 0 100%);
  box-shadow: var(--shr-shadow-sm);
  padding: 30px 26px;
  transition: transform var(--shr-ease), box-shadow var(--shr-ease);
  position: relative;
}
.shr-card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: var(--shr-notch);
  height: var(--shr-notch);
  background: linear-gradient(135deg, var(--shr-amber), var(--shr-clay));
}
.shr-card:hover { transform: translateY(-4px); box-shadow: var(--shr-shadow-md); }
.shr-card__icon {
  width: 44px;
  height: 44px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--shr-teal-950);
  color: var(--shr-amber-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--shr-font-display);
  font-weight: 700;
  font-size: 0.86rem;
  margin-bottom: 18px;
}
.shr-card h3 { font-size: 1.16rem; }
.shr-card p:last-child { margin-bottom: 0; }
.shr-card__link { display: inline-block; margin-top: 10px; color: var(--shr-amber-dark); font-family: var(--shr-font-display); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.03em; text-transform: uppercase; border-bottom: 1px solid transparent; transition: border-color var(--shr-ease); }
.shr-card__link:hover { border-color: var(--shr-amber-dark); }

/* ---------- Info panel (metrics inside a card) ---------- */
.shr-panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--shr-ink-faint);
  font-family: var(--shr-font-display);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.shr-metric-row { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px dashed var(--shr-teal-line); }
.shr-metric-row:last-child { border-bottom: none; }
.shr-metric-row span:first-child { color: var(--shr-ink-faint); font-size: 0.86rem; }
.shr-metric-row span:last-child { color: var(--shr-teal-950); font-weight: 700; font-family: var(--shr-font-display); }

/* ---------- Bars (satisfaction visuals) ---------- */
.shr-bars { display: flex; flex-direction: column; gap: 18px; }
.shr-bar-row__label { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--shr-ink-soft); margin-bottom: 7px; }
.shr-bar-row__label strong { color: var(--shr-teal-950); font-family: var(--shr-font-display); }
.shr-bar-track { height: 8px; background: var(--shr-cream-deep); overflow: hidden; }
.shr-bar-fill { height: 100%; background: linear-gradient(90deg, var(--shr-amber-dark), var(--shr-amber-light)); }
.shr-bar-fill--teal { background: linear-gradient(90deg, var(--shr-teal-700), var(--shr-teal-900)); }

/* ---------- Steps (vertical, connecting line on the left) ---------- */
.shr-steps { display: flex; flex-direction: column; gap: 0; counter-reset: shrstep; }
.shr-step {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding-bottom: 34px;
}
.shr-step:last-child { padding-bottom: 0; }
.shr-step::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: var(--shr-teal-line);
}
.shr-step:last-child::before { display: none; }
.shr-step__num {
  counter-increment: shrstep;
  width: 48px;
  height: 48px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--shr-teal-950);
  color: var(--shr-amber-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--shr-font-display);
  font-weight: 700;
  z-index: 1;
}
.shr-step__num::before { content: counter(shrstep); }
.shr-step__body h3 { font-size: 1.06rem; margin-bottom: 6px; }
.shr-step__body p { margin-bottom: 0; }

/* ---------- Table ---------- */
.shr-table-wrap { overflow-x: auto; box-shadow: var(--shr-shadow-sm); }
.shr-table { width: 100%; border-collapse: collapse; background: var(--shr-white); min-width: 560px; }
.shr-table th, .shr-table td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--shr-teal-line); font-size: 0.9rem; }
.shr-table thead th { background: var(--shr-teal-950); color: var(--shr-amber-light); font-family: var(--shr-font-display); font-weight: 700; text-transform: uppercase; font-size: 0.7rem; letter-spacing: 0.07em; border-bottom: 3px solid var(--shr-amber); }
.shr-table tbody tr:hover { background: var(--shr-cream-deep); }
.shr-table tbody tr:last-child td { border-bottom: none; }

/* ---------- Rate / package cards (ribbon instead of pill) ---------- */
.shr-rate-card { display: flex; flex-direction: column; position: relative; }
.shr-rate-card .shr-price { font-family: var(--shr-font-display); font-size: 2rem; font-weight: 700; color: var(--shr-teal-950); margin: 10px 0 4px; }
.shr-rate-card .shr-price span { font-family: var(--shr-font-body); font-size: 0.84rem; color: var(--shr-ink-faint); font-weight: 500; }
.shr-rate-card ul { margin: 18px 0; display: flex; flex-direction: column; gap: 9px; }
.shr-rate-card li { padding-left: 20px; position: relative; font-size: 0.88rem; color: var(--shr-ink-soft); }
.shr-rate-card li::before { content: ""; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; background: var(--shr-amber); clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); }
.shr-rate-card--featured { box-shadow: var(--shr-shadow-glow); }
.shr-rate-card--featured .shr-ribbon {
  position: absolute;
  top: 16px;
  right: -34px;
  width: 150px;
  text-align: center;
  transform: rotate(40deg);
  background: var(--shr-clay);
  color: var(--shr-cream);
  font-family: var(--shr-font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* ---------- Testimonial / quote ---------- */
.shr-quote {
  background: var(--shr-white);
  clip-path: polygon(0 0, calc(100% - var(--shr-notch)) 0, 100% var(--shr-notch), 100% 100%, 0 100%);
  box-shadow: var(--shr-shadow-sm);
  padding: 30px 26px;
  position: relative;
}
.shr-quote::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: var(--shr-notch);
  height: var(--shr-notch);
  background: linear-gradient(135deg, var(--shr-amber), var(--shr-clay));
}
.shr-quote p { color: var(--shr-ink); font-size: 0.97rem; font-style: italic; }
.shr-quote__author { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.shr-avatar {
  width: 40px;
  height: 40px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--shr-teal-950);
  color: var(--shr-amber-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--shr-font-display);
  font-weight: 700;
  font-size: 0.82rem;
}
.shr-quote__author strong { display: block; color: var(--shr-teal-950); font-size: 0.92rem; font-style: normal; font-family: var(--shr-font-display); }
.shr-quote__author span { font-size: 0.76rem; color: var(--shr-ink-faint); }
.shr-stars { color: var(--shr-amber); letter-spacing: 3px; font-size: 0.84rem; margin-bottom: 10px; display: block; }

/* ---------- CTA band ---------- */
.shr-cta {
  position: relative;
  background: linear-gradient(120deg, var(--shr-teal-950), var(--shr-teal-800));
  text-align: center;
  padding: 30px 0 70px;
  overflow: hidden;
}
.shr-cta__wave {
  height: 44px;
  background: linear-gradient(100deg, var(--shr-amber), var(--shr-clay));
  clip-path: polygon(0 40%, 8% 60%, 16% 30%, 24% 55%, 32% 20%, 40% 50%, 48% 25%, 56% 58%, 64% 32%, 72% 60%, 80% 28%, 88% 55%, 96% 35%, 100% 50%, 100% 100%, 0 100%);
  margin-bottom: 40px;
}
.shr-cta__inner { position: relative; }
.shr-cta h2 { color: var(--shr-cream); }
.shr-cta p { color: rgba(250, 243, 230, 0.78); max-width: 56ch; margin: 0 auto 26px; }
.shr-cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Team (square photo, corner brackets) ---------- */
.shr-crew-card { text-align: center; }
.shr-crew-photo {
  position: relative;
  width: 88px;
  height: 88px;
  margin: 0 auto 16px;
  background: var(--shr-cream-deep);
  color: var(--shr-teal-950);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--shr-font-display);
  font-size: 1.4rem;
  font-weight: 700;
}
.shr-crew-photo::before, .shr-crew-photo::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid var(--shr-amber);
}
.shr-crew-photo::before { top: -6px; left: -6px; border-right: none; border-bottom: none; }
.shr-crew-photo::after { bottom: -6px; right: -6px; border-left: none; border-top: none; }
.shr-crew-role { color: var(--shr-amber-dark); font-family: var(--shr-font-display); font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; display: block; }

/* ---------- Feature tiles ---------- */
.shr-feature-tile {
  background: var(--shr-white);
  box-shadow: var(--shr-shadow-sm);
  padding: 22px;
  transition: transform var(--shr-ease), box-shadow var(--shr-ease);
  border-left: 3px solid var(--shr-amber);
}
.shr-feature-tile:hover { transform: translateY(-3px); box-shadow: var(--shr-shadow-md); }
.shr-feature-tile__mark {
  font-family: var(--shr-font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--shr-teal-950);
  margin-bottom: 12px;
}
.shr-feature-tile strong { display: block; color: var(--shr-teal-950); margin-bottom: 4px; font-family: var(--shr-font-display); }
.shr-feature-tile span { font-size: 0.8rem; color: var(--shr-ink-faint); }

/* ---------- Gallery (CSS-only scene tiles, staggered heights) ---------- */
.shr-scene-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.shr-scene-tile {
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  box-shadow: var(--shr-shadow-sm);
}
.shr-scene-tile--tall { min-height: 320px; grid-row: span 2; }
.shr-scene-tile span {
  position: relative;
  color: var(--shr-cream);
  font-family: var(--shr-font-display);
  font-size: 1rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}
.shr-scene-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 36, 38, 0.78));
}
.shr-scene-tile--1 { background: radial-gradient(circle at 25% 20%, var(--shr-amber-light), transparent 55%), linear-gradient(135deg, var(--shr-teal-800), var(--shr-teal-950)); }
.shr-scene-tile--2 { background: radial-gradient(circle at 75% 30%, var(--shr-clay-light), transparent 55%), linear-gradient(135deg, var(--shr-teal-950), var(--shr-teal-700)); }
.shr-scene-tile--3 { background: radial-gradient(circle at 50% 80%, var(--shr-amber), transparent 60%), linear-gradient(135deg, var(--shr-teal-900), #0a2426); }
.shr-scene-tile--4 { background: radial-gradient(circle at 30% 70%, var(--shr-teal-700), transparent 55%), linear-gradient(135deg, var(--shr-teal-950), var(--shr-teal-800)); }
.shr-scene-tile--5 { background: radial-gradient(circle at 70% 20%, var(--shr-clay), transparent 55%), linear-gradient(135deg, var(--shr-teal-800), #0a2426); }
.shr-scene-tile--6 { background: radial-gradient(circle at 40% 40%, var(--shr-amber-light), transparent 55%), linear-gradient(135deg, #0a2426, var(--shr-teal-900)); }
.shr-scene-tile--7 { background: radial-gradient(circle at 60% 60%, var(--shr-clay-light), transparent 55%), linear-gradient(135deg, var(--shr-teal-900), var(--shr-teal-700)); }
.shr-scene-tile--8 { background: radial-gradient(circle at 25% 55%, var(--shr-amber), transparent 55%), linear-gradient(135deg, var(--shr-teal-950), var(--shr-teal-800)); }
.shr-scene-tile--9 { background: radial-gradient(circle at 75% 75%, var(--shr-teal-700), transparent 55%), linear-gradient(135deg, #0a2426, var(--shr-teal-950)); }
@media (max-width: 900px) { .shr-scene-grid { grid-template-columns: repeat(2, 1fr); } .shr-scene-tile--tall { grid-row: span 1; min-height: 200px; } }
@media (max-width: 560px) { .shr-scene-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ (details/summary, no JS) ---------- */
.shr-faq-item {
  border-bottom: 1px solid var(--shr-teal-line);
  padding: 20px 4px;
  border-left: 3px solid transparent;
  transition: border-color var(--shr-ease), background var(--shr-ease);
}
.shr-faq-item[open] { border-left-color: var(--shr-amber); background: var(--shr-white); }
.shr-faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-family: var(--shr-font-display);
  color: var(--shr-teal-950);
  font-size: 0.98rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 0 14px;
}
.shr-faq-item summary::-webkit-details-marker { display: none; }
.shr-faq-item summary::after { content: "+"; font-size: 1.2rem; color: var(--shr-amber); font-family: var(--shr-font-display); }
.shr-faq-item[open] summary::after { content: "\2212"; }
.shr-faq-item p { margin: 12px 14px 0; }

/* ---------- Forms ---------- */
.shr-form-panel {
  background: var(--shr-white);
  box-shadow: var(--shr-shadow-sm);
  padding: 34px;
}
.shr-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
@media (max-width: 640px) { .shr-form-row { grid-template-columns: 1fr; } }
.shr-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.shr-field label { font-weight: 700; font-family: var(--shr-font-display); font-size: 0.8rem; color: var(--shr-teal-950); text-transform: uppercase; letter-spacing: 0.02em; }
.shr-field input,
.shr-field select,
.shr-field textarea {
  font-family: var(--shr-font-body);
  font-size: 0.94rem;
  padding: 12px 14px;
  border: 1px solid var(--shr-teal-line);
  background: var(--shr-cream);
  color: var(--shr-ink);
  transition: border-color var(--shr-ease), box-shadow var(--shr-ease);
}
.shr-field input:focus,
.shr-field select:focus,
.shr-field textarea:focus {
  outline: none;
  border-color: var(--shr-amber);
  box-shadow: 0 0 0 3px rgba(217, 122, 52, 0.16);
}
.shr-form-note { font-size: 0.82rem; color: var(--shr-ink-faint); }

/* ---------- Map / locate panel (contact / booking / directions) ---------- */
.shr-map-panel {
  position: relative;
  height: 220px;
  background: var(--shr-teal-950);
  overflow: hidden;
}
.shr-map-panel--lg { height: 300px; }
.shr-map-panel__topo {
  position: absolute;
  inset: 0;
  background-image:
    repeating-radial-gradient(circle at 30% 40%, transparent 0, transparent 22px, rgba(217, 122, 52, 0.10) 23px, transparent 24px),
    repeating-radial-gradient(circle at 78% 70%, transparent 0, transparent 30px, rgba(240, 162, 90, 0.08) 31px, transparent 32px);
}
.shr-map-panel__pin {
  position: absolute;
  top: 46%;
  left: 50%;
  width: 14px;
  height: 14px;
  background: var(--shr-amber);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 8px rgba(217, 122, 52, 0.18);
}
.shr-map-panel__coords {
  position: absolute;
  bottom: 12px;
  left: 14px;
  color: rgba(250, 243, 230, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  font-variant-numeric: tabular-nums;
}
.shr-map-panel__label {
  position: absolute;
  top: 12px;
  right: 16px;
  color: var(--shr-amber-light);
  font-family: var(--shr-font-display);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---------- Journal / blog ---------- */
.shr-post-card { display: flex; flex-direction: column; }
.shr-post-meta { font-family: var(--shr-font-display); font-size: 0.72rem; color: var(--shr-amber-dark); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; font-weight: 700; }
.shr-post-card h3 { font-size: 1.1rem; }
.shr-article { max-width: 720px; margin: 0 auto; }
.shr-article h2 { margin-top: 1.6em; font-size: 1.44rem; }
.shr-article h3 { margin-top: 1.3em; font-size: 1.14rem; }
.shr-article ul, .shr-article ol { margin: 0 0 1.2em; padding-left: 1.4em; color: var(--shr-ink-soft); }
.shr-article li { margin-bottom: 0.5em; }
.shr-article blockquote {
  border-left: 3px solid var(--shr-amber);
  margin: 1.7em 0;
  padding: 0.4em 0 0.4em 1.5em;
  font-style: italic;
  color: var(--shr-ink);
  font-size: 1.05rem;
}
.shr-article-header { text-align: center; margin-bottom: 36px; }
.shr-article-header .shr-post-meta { margin-bottom: 12px; }

/* ---------- Footer ---------- */
.shr-footer { background: var(--shr-teal-950); color: rgba(250, 243, 230, 0.62); padding: 0 0 0; position: relative; }
.shr-footer__wave {
  height: 40px;
  background: linear-gradient(100deg, var(--shr-amber), var(--shr-clay));
  clip-path: polygon(0 0, 100% 0, 100% 55%, 92% 30%, 84% 62%, 76% 25%, 68% 58%, 60% 22%, 52% 60%, 44% 28%, 36% 55%, 28% 20%, 20% 62%, 12% 30%, 0 55%);
}
.shr-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 34px;
  padding: 54px 0 44px;
  border-bottom: 1px solid rgba(250, 243, 230, 0.12);
}
@media (max-width: 960px) { .shr-footer__top { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .shr-footer__top { grid-template-columns: 1fr; } }
.shr-footer__col h3 { color: var(--shr-amber-light); font-family: var(--shr-font-display); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 16px; }
.shr-footer__brand .shr-brand__name { display: block; color: var(--shr-cream); font-family: var(--shr-font-display); font-size: 1.28rem; margin-bottom: 12px; }
.shr-footer__badges { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }
.shr-tag {
  border: 1px solid rgba(250, 243, 230, 0.22);
  padding: 6px 10px;
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  color: var(--shr-amber-light);
  display: inline-block;
  width: fit-content;
  font-family: var(--shr-font-display);
}
.shr-footer address { font-size: 0.88rem; margin-bottom: 10px; }
.shr-footer a:hover { color: var(--shr-amber-light); }
.shr-hours li { display: flex; justify-content: space-between; gap: 12px; font-size: 0.8rem; padding: 4px 0; }
.shr-footer__links li { margin-bottom: 9px; font-size: 0.86rem; }
.shr-footer__bottom { padding: 20px 0; }
.shr-footer__bottom-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.74rem; }

/* ---------- 404 ---------- */
.shr-error { text-align: center; padding: 108px 0; }
.shr-error .shr-error-code { font-family: var(--shr-font-display); font-size: 5.6rem; font-weight: 700; color: var(--shr-amber); line-height: 1; }
.shr-error h1 { margin-top: 8px; }

/* ---------- Reveal on scroll ----------
   Gated behind html.js-on (set by an inline script in inc/header.php) so
   crawlers and no-JS visitors always see full content at opacity: 1. */
.shr-reveal { opacity: 1; transform: none; }
html.js-on .shr-reveal { opacity: 0; transform: scale(0.97) translateY(10px); transition: opacity 520ms ease, transform 520ms ease; }
html.js-on .shr-reveal.is-visible { opacity: 1; transform: scale(1) translateY(0); }

/* ---------- Utility ---------- */
.shr-text-center { text-align: center; }
.shr-mt-0 { margin-top: 0; }
.shr-mb-0 { margin-bottom: 0; }
.shr-check-list li { padding-left: 24px; position: relative; margin-bottom: 10px; }
.shr-check-list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; background: var(--shr-amber); clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%); }
.shr-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
@media (max-width: 800px) { .shr-two-col { grid-template-columns: 1fr; } }
.shr-tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
