:root {
  --pine: #145f58;
  --forest: #153631;
  --emerald: #1f6f67;
  --mint: #dcebe7;
  --ivory: #fffaf4;
  --paper: #f5efe6;
  --panel: rgba(255, 252, 247, 0.84);
  --panel-strong: #fff9f3;
  --sun: #d9a25f;
  --sun-soft: #f6d59b;
  --sun-deep: #9a6233;
  --ink: #18211f;
  --muted: #5f655f;
  --line: rgba(21, 54, 49, 0.1);
  --line-strong: rgba(21, 54, 49, 0.18);
  --shadow: 0 24px 54px rgba(14, 28, 25, 0.11);
  --shadow-soft: 0 12px 28px rgba(14, 28, 25, 0.08);
  --radius: 1.4rem;
  --radius-lg: 2rem;
  --radius-xl: 2.6rem;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Noto Sans Devanagari", sans-serif;
  --hero-photo: url("https://images.unsplash.com/photo-1629909613654-28e377c37b09?auto=format&fit=crop&w=1400&q=80");
  --faq-photo: url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&w=1200&q=80");
  --why-photo: url("https://images.unsplash.com/photo-1516549655169-df83a0774514?auto=format&fit=crop&w=1200&q=80");
  --visit-photo: url("https://images.unsplash.com/photo-1521590832167-7bcbfaa6381f?auto=format&fit=crop&w=900&q=80");
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    background:
      radial-gradient(1100px 700px at 10% 0%, rgba(217, 162, 95, 0.16), transparent 54%),
      radial-gradient(900px 520px at 100% 20%, rgba(31, 111, 103, 0.12), transparent 50%),
      linear-gradient(180deg, #fbf7f1 0%, #f5efe7 100%);
    line-height: 1.7;
    letter-spacing: -0.01em;
  }

  body::before,
  body::after {
    content: "";
    position: fixed;
    inset: auto;
    width: 24rem;
    height: 24rem;
    border-radius: 999px;
    pointer-events: none;
    filter: blur(18px);
    opacity: 0.45;
    z-index: -1;
  }

  body::before {
    top: -8rem;
    right: -7rem;
    background: radial-gradient(circle, rgba(246, 213, 155, 0.6), transparent 68%);
  }

  body::after {
    left: -8rem;
    bottom: 12rem;
    background: radial-gradient(circle, rgba(31, 111, 103, 0.22), transparent 70%);
  }

  img,
  svg,
  iframe {
    display: block;
    max-width: 100%;
  }

  a {
    color: var(--forest);
    text-decoration: none;
  }

  a:hover {
    color: var(--pine);
  }

  main {
    overflow: hidden;
  }

  :focus-visible {
    outline: 3px solid rgba(217, 162, 95, 0.45);
    outline-offset: 3px;
  }

  .sz-skip {
    position: absolute;
    left: -999px;
  }

  .sz-skip:focus {
    left: 1rem;
    top: 1rem;
    z-index: 50;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .sz-header {
    position: sticky;
    top: 0;
    z-index: 30;
    border-bottom: 1px solid rgba(21, 54, 49, 0.08);
    background: rgba(255, 250, 244, 0.76);
    backdrop-filter: blur(20px);
  }

  .sz-header__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .sz-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: inherit;
  }

  .sz-logo img {
    height: 56px;
    width: auto;
  }

  .sz-logo__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(31, 111, 103, 0.14), rgba(217, 162, 95, 0.18));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  }

  .sz-logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }

  .sz-logo__text strong,
  h1,
  h2,
  h3,
  .sz-footer__name {
    margin: 0;
    font-family: var(--serif);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.03em;
  }

  .sz-logo__text strong {
    font-size: clamp(1.45rem, 2vw, 1.95rem);
    color: var(--forest);
    font-weight: 600;
  }

  .sz-logo__text small {
    margin-top: 0.25rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .sz-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .sz-nav ul {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .sz-nav li {
    display: flex;
  }

  .sz-nav ul a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    color: var(--forest);
    font-size: 0.95rem;
    font-weight: 600;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  }

  .sz-nav ul a:hover,
  .sz-nav ul a:focus-visible {
    background: rgba(31, 111, 103, 0.08);
    transform: translateY(-1px);
    box-shadow: inset 0 0 0 1px rgba(21, 54, 49, 0.08);
  }

  .sz-header__call {
    margin-left: 0.1rem;
    white-space: nowrap;
  }

  .sz-nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border: 1px solid rgba(21, 54, 49, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    padding: 0.7rem 1rem;
    font: inherit;
    font-weight: 700;
    color: var(--forest);
    box-shadow: var(--shadow-soft);
  }

  .sz-kicker {
    margin: 0 0 0.55rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sun-deep);
  }

  h1 {
    font-size: clamp(2.4rem, 5vw, 4.65rem);
  }

  h2 {
    font-size: clamp(1.8rem, 3vw, 2.75rem);
  }

  h3 {
    font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  }

  .sz-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0 0 0.9rem;
    padding: 0.42rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(21, 54, 49, 0.1);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-soft);
    color: var(--forest);
    font-size: 0.84rem;
    font-weight: 600;
  }

  .sz-lead {
    max-width: 44rem;
    color: var(--muted);
    font-size: clamp(1.02rem, 1.75vw, 1.14rem);
  }

  .sz-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.9rem 1.45rem;
    border-radius: 999px;
    border: 1px solid rgba(21, 54, 49, 0.12);
    background: rgba(255, 255, 255, 0.72);
    color: var(--forest);
    font-weight: 700;
    letter-spacing: -0.01em;
    box-shadow: var(--shadow-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
  }

  .sz-btn:hover,
  .sz-btn:focus-visible {
    transform: translateY(-2px);
    color: var(--forest);
    border-color: rgba(21, 54, 49, 0.18);
    box-shadow: 0 18px 30px rgba(14, 28, 25, 0.12);
  }

  .sz-btn--gold {
    border-color: rgba(133, 85, 28, 0.24);
    background: linear-gradient(135deg, var(--sun), var(--sun-soft));
    color: #2f2215;
    box-shadow: 0 18px 34px rgba(153, 98, 48, 0.22);
  }

  .sz-btn--ghost {
    background: rgba(31, 111, 103, 0.06);
  }

  .sz-hero,
  .sz-section,
  .sz-why,
  .sz-visit,
  .sz-book,
  .sz-contact,
  .sz-page,
  .sz-metrics,
  .sz-facts {
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .sz-hero {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
    align-items: center;
    min-height: 660px;
    margin-top: 1rem;
    padding-top: 4.4rem;
    padding-bottom: 3rem;
    overflow: hidden;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(21, 54, 49, 0.08);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 244, 0.7));
    box-shadow: 0 28px 70px rgba(17, 31, 28, 0.09);
  }

  .sz-hero::before,
  .sz-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .sz-hero::before {
    background:
      linear-gradient(90deg, rgba(249, 244, 237, 0.92) 0%, rgba(249, 244, 237, 0.72) 36%, rgba(249, 244, 237, 0.18) 100%),
      var(--hero-photo) center/cover no-repeat;
    opacity: 1;
  }

  .sz-hero::after {
    background:
      radial-gradient(circle at 12% 18%, rgba(217, 162, 95, 0.16), transparent 18%),
      radial-gradient(circle at 85% 24%, rgba(31, 111, 103, 0.12), transparent 16%);
  }

  .sz-hero__copy,
  .sz-hero__spotlight {
    position: relative;
    z-index: 1;
  }

  .sz-hero__copy {
    max-width: 42rem;
  }

  .sz-hero__hi {
    margin: 0;
    color: var(--forest);
    font-size: 1.08rem;
    font-weight: 700;
  }

  .sz-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
  }

  .sz-hero__spotlight {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: var(--ivory);
    background:
      linear-gradient(180deg, rgba(14, 28, 25, 0.5), rgba(14, 18, 17, 0.88)),
      var(--visit-photo) center/cover no-repeat;
    box-shadow: 0 28px 54px rgba(14, 28, 25, 0.18);
  }

  .sz-hero__rating {
    padding: 1.2rem 1rem 1.05rem;
    border-radius: 1.4rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    backdrop-filter: blur(12px);
  }

  .sz-hero__score {
    margin: 0;
    font-size: clamp(3.2rem, 7vw, 4.8rem);
    line-height: 0.95;
    letter-spacing: -0.04em;
  }

  .sz-stars {
    margin: 0.4rem 0 0.5rem;
    color: #f9de8b;
    letter-spacing: 0.18em;
  }

  .sz-hero__mini-card {
    margin-top: 1rem;
    padding: 1rem 1rem 1.05rem;
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .sz-muted {
    color: var(--muted);
    font-size: 0.92rem;
  }

  .sz-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    padding-top: 1.15rem;
    padding-bottom: 2rem;
  }

  .sz-metric,
  .sz-feature-card,
  .sz-card,
  blockquote,
  .sz-map,
  .sz-form,
  .sz-faq-item,
  .sz-gallery__item,
  .sz-facts article {
    border: 1px solid rgba(21, 54, 49, 0.08);
    background: var(--panel);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
  }

  .sz-metric {
    padding: 1.35rem 1rem;
    text-align: center;
  }

  .sz-metric__value {
    margin: 0;
    font-family: var(--serif);
    font-size: 1.95rem;
    line-height: 1;
  }

  .sz-metric__label {
    margin: 0.3rem 0 0;
    color: var(--muted);
    font-weight: 600;
  }

  .sz-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding-top: 0;
    padding-bottom: 2rem;
  }

  .sz-facts article {
    padding: 1.35rem;
  }

  .sz-facts h2 {
    font-size: 1.25rem;
    margin-bottom: 0.35rem;
  }

  .sz-section {
    padding-top: 3.4rem;
    padding-bottom: 3.4rem;
  }

  .sz-section:nth-of-type(even) {
    position: relative;
  }

  .sz-section:nth-of-type(even)::before {
    content: "";
    position: absolute;
    inset: 1rem 0;
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.18));
    z-index: -1;
  }

  .sz-section--cream {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
  }

  .sz-section--cream::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(249, 242, 234, 0.92), rgba(249, 242, 234, 0.96)), var(--faq-photo) center/cover no-repeat;
    opacity: 1;
  }

  .sz-section--cream > * {
    position: relative;
    z-index: 1;
  }

  .sz-section__head {
    margin-bottom: 2rem;
  }

  .sz-section__head h2 {
    max-width: 42rem;
  }

  .sz-feature-grid,
  .sz-cards,
  .sz-quotes,
  .sz-gallery {
    display: grid;
    gap: 1rem;
  }

  .sz-feature-grid,
  .sz-cards,
  .sz-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sz-quotes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sz-cards--wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sz-feature-card {
    position: relative;
    padding: 1.55rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 241, 234, 0.95));
    overflow: hidden;
  }

  .sz-feature-card::before {
    content: "";
    position: absolute;
    inset: auto auto -2rem -2rem;
    width: 7rem;
    height: 7rem;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(217, 162, 95, 0.18), transparent 70%);
  }

  .sz-feature-card__badge {
    display: inline-flex;
    margin-bottom: 0.72rem;
    padding: 0.22rem 0.7rem;
    border-radius: 999px;
    background: rgba(31, 111, 103, 0.08);
    color: var(--forest);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .sz-card {
    color: inherit;
    padding: 1.5rem;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 243, 237, 0.96)),
      linear-gradient(135deg, rgba(217, 162, 95, 0.08), transparent 55%);
  }

  .sz-card:hover,
  .sz-card:focus-visible {
    color: inherit;
    transform: translateY(-5px);
    border-color: rgba(21, 54, 49, 0.12);
    box-shadow: 0 24px 44px rgba(14, 28, 25, 0.12);
  }

  .sz-card--static:hover,
  .sz-card--static:focus-visible {
    transform: none;
  }

  .sz-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.15rem;
    height: 3.15rem;
    margin-bottom: 0.8rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(31, 111, 103, 0.14), rgba(217, 162, 95, 0.16));
    color: var(--forest);
    font-weight: 800;
  }

  .sz-section__more {
    margin-top: 1.2rem;
  }

  .sz-section__more a {
    font-weight: 800;
    color: var(--forest);
    text-decoration: underline;
    text-underline-offset: 0.18em;
  }

  .sz-why {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.4rem;
    align-items: start;
  }

  .sz-why ul {
    list-style: none;
    margin: 0;
    padding: 1.4rem;
    border-radius: var(--radius-lg);
    background:
      linear-gradient(180deg, rgba(17, 29, 26, 0.55), rgba(17, 23, 22, 0.88)),
      var(--why-photo) center/cover no-repeat;
    box-shadow: var(--shadow);
  }

  .sz-why li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    color: var(--ivory);
    background: rgba(255, 255, 255, 0.08);
    font-weight: 600;
  }

  .sz-why li + li {
    margin-top: 0.6rem;
  }

  .sz-why li::before {
    content: "✓";
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 999px;
    background: rgba(217, 162, 95, 0.18);
    color: #f6deb2;
    font-weight: 900;
    margin-top: 0.15rem;
  }

  blockquote {
    margin: 0;
    padding: 1.5rem;
    border-left: 4px solid var(--sun);
  }

  blockquote p {
    margin: 0 0 0.85rem;
    font-family: var(--serif);
    font-size: 1.24rem;
    line-height: 1.35;
  }

  blockquote footer {
    color: var(--muted);
    font-weight: 700;
    font-size: 0.92rem;
  }

  .sz-gallery__item {
    overflow: hidden;
    margin: 0;
  }

  .sz-gallery__item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
  }

  .sz-gallery__item:hover img {
    transform: scale(1.05);
  }

  .sz-faq-list {
    display: grid;
    gap: 0.95rem;
  }

  .sz-faq-item {
    padding: 0.1rem 1.1rem;
  }

  .sz-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 0.92rem 2rem 0.92rem 0;
    font-weight: 800;
    position: relative;
  }

  .sz-faq-item summary::-webkit-details-marker {
    display: none;
  }

  .sz-faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0.1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.8rem;
    height: 1.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(31, 111, 103, 0.08);
    color: var(--forest);
  }

  .sz-faq-item[open] summary::after {
    content: "−";
  }

  .sz-faq-item__answer {
    padding-bottom: 0.8rem;
    color: var(--muted);
  }

  .sz-visit,
  .sz-book,
  .sz-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem;
    align-items: start;
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }

  .sz-visit > div,
  .sz-book > div,
  .sz-contact > div {
    min-width: 0;
  }

  .sz-map {
    overflow: hidden;
    min-height: 320px;
  }

  .sz-map iframe {
    width: 100%;
    height: 340px;
    border: 0;
  }

  .sz-visit .sz-map {
    display: none;
  }

  .sz-form {
    display: grid;
    gap: 0.95rem;
    padding: 1.45rem;
  }

  .sz-form label {
    display: grid;
    gap: 0.35rem;
    font-size: 0.92rem;
    font-weight: 700;
  }

  .sz-form input,
  .sz-form textarea {
    width: 100%;
    border: 1px solid rgba(21, 54, 49, 0.12);
    border-radius: 0.95rem;
    background: rgba(255, 255, 255, 0.94);
    padding: 0.82rem 0.95rem;
    font: inherit;
    color: var(--ink);
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
  }

  .sz-form input:focus,
  .sz-form textarea:focus {
    border-color: rgba(31, 111, 103, 0.42);
    box-shadow: 0 0 0 4px rgba(31, 111, 103, 0.09);
    outline: none;
  }

  .sz-form button {
    cursor: pointer;
    font: inherit;
  }

  .sz-form__ok,
  .sz-form__err {
    margin: 0;
    padding: 0.8rem 0.95rem;
    border-radius: 0.9rem;
    font-weight: 600;
  }

  .sz-form__ok {
    background: rgba(31, 111, 103, 0.1);
    color: var(--forest);
  }

  .sz-form__err {
    background: rgba(217, 162, 95, 0.14);
    color: var(--sun-deep);
  }

  .sz-form__or {
    margin: 0;
    color: var(--muted);
  }

  .sz-page {
    padding-top: 3.4rem;
    padding-bottom: 3.8rem;
  }

  .sz-page__hero {
    margin-bottom: 1.4rem;
    max-width: 44rem;
  }

  .sz-prose {
    max-width: 46rem;
  }

  .sz-prose p {
    color: var(--muted);
  }

  .sz-contact__list {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
  }

  .sz-contact__list li {
    margin-bottom: 0.8rem;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(21, 54, 49, 0.08);
  }

  .sz-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
  }

  .sz-404__inner {
    width: 100%;
    max-width: 760px;
    padding: 2.5rem 0;
  }

  .sz-footer {
    margin-top: 3rem;
    padding: 3.2rem 1.25rem 5.4rem;
    color: var(--ivory);
    background:
      radial-gradient(900px 320px at 20% 0%, rgba(217, 162, 95, 0.16), transparent 60%),
      linear-gradient(155deg, #1b2d29 0%, #223833 100%);
  }

  .sz-footer a {
    color: #efd9b0;
  }

  .sz-footer__grid,
  .sz-footer__bar {
    max-width: 1240px;
    margin: 0 auto;
  }

  .sz-footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 1.4rem;
    margin-bottom: 2rem;
  }

  .sz-footer__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .sz-footer__bar ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .sz-footer__bar a {
    color: inherit;
  }

  .sz-footer__name {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
  }

  .sz-footer__logo {
    display: block;
    max-width: 170px;
    height: auto;
    margin: 0 0 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }

  .sz-sticky {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 40;
    display: flex;
    gap: 0.55rem;
  }

  .sz-sticky a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: var(--forest);
    color: var(--ivory);
    font-weight: 800;
    box-shadow: 0 16px 28px rgba(14, 28, 25, 0.2);
  }

  .sz-sticky__gold {
    background: linear-gradient(135deg, var(--sun), var(--sun-soft)) !important;
    color: #2d1e12 !important;
  }

  .sz-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }

  .sz-reveal.is-revealed {
    opacity: 1;
    transform: translateY(0);
  }

  @keyframes floatIn {
    from {
      opacity: 0;
      transform: translateY(16px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media (max-width: 1060px) {
    .sz-hero,
    .sz-visit,
    .sz-book,
    .sz-contact,
    .sz-why {
      grid-template-columns: 1fr;
    }

    .sz-hero {
      min-height: auto;
      padding-top: 3.4rem;
      padding-bottom: 3.1rem;
    }

    .sz-metrics,
    .sz-facts,
    .sz-feature-grid,
    .sz-cards,
    .sz-quotes,
    .sz-gallery,
    .sz-footer__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 820px) {
    .sz-header__inner {
      flex-wrap: wrap;
    }

    .sz-nav-toggle {
      display: inline-flex;
    }

    .sz-nav {
      order: 3;
      width: 100%;
      display: none;
      flex-direction: column;
      align-items: stretch;
      gap: 0.8rem;
      margin-top: 0.35rem;
      padding: 1rem;
      border-radius: 1.2rem;
      background: rgba(255, 252, 247, 0.92);
      border: 1px solid rgba(21, 54, 49, 0.08);
      box-shadow: var(--shadow-soft);
    }

    .sz-nav.is-open {
      display: flex;
    }

    .sz-nav ul {
      width: 100%;
      flex-direction: column;
      align-items: stretch;
    }

    .sz-nav ul a,
    .sz-header__call {
      width: 100%;
    }

    .sz-footer__bar {
      flex-direction: column;
      align-items: flex-start;
    }

    .sz-sticky {
      left: 1rem;
      right: 1rem;
    }

    .sz-sticky a {
      flex: 1;
    }
  }

  @media (max-width: 640px) {
    .sz-hero,
    .sz-section,
    .sz-why,
    .sz-visit,
    .sz-book,
    .sz-contact,
    .sz-page,
    .sz-metrics,
    .sz-facts {
      padding-left: 1rem;
      padding-right: 1rem;
    }

    .sz-hero {
      padding-top: 2.8rem;
      padding-bottom: 2.5rem;
      border-radius: 1.5rem;
    }

    .sz-hero__actions {
      flex-direction: column;
    }

    .sz-hero__actions .sz-btn,
    .sz-btn {
      width: 100%;
    }

    .sz-feature-grid,
    .sz-cards,
    .sz-quotes,
    .sz-gallery,
    .sz-metrics,
    .sz-facts,
    .sz-footer__grid,
    .sz-cards--wide {
      grid-template-columns: 1fr;
    }

    .sz-section,
    .sz-page {
      padding-top: 2.8rem;
      padding-bottom: 2.8rem;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }

    .sz-reveal {
      opacity: 1;
      transform: none;
    }
  }
