:root {
  --ink: var(--global-palette3, #182031);
  --ink-text: rgba(24, 32, 49, 0.88);
  --ink-soft: rgba(24, 32, 49, 0.64);
  --ink-09: rgba(24, 32, 49, 0.09);
  --gold: var(--global-palette1, #d4b87a);
  --gold-d: var(--global-palette2, #a8863e);
  --gold-lab: #6f5726;
  --cream: var(--global-palette7, #f5f0e8);
  --cream-l: var(--global-palette8, #faf7f2);
  --on-dark: rgba(255, 255, 255, 0.84);
  --on-dark-soft: rgba(255, 255, 255, 0.66);
  --serif: var(--global-heading-font-family, "Cormorant Garamond", Georgia, serif);
  --body: var(--global-body-font-family, "EB Garamond", Georgia, serif);
  --action-size: 16px;
  --footer-action-size: 14px;
  --footer-base-h: 52px;
  --footer-safe: env(safe-area-inset-bottom, 0px);
  --footer-h: calc(var(--footer-base-h) + var(--footer-safe));
  --header-h: 64px;
  --content-x: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body.room-directory-template {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

html.crd-drawer-open,
body.room-directory-template.crd-drawer-open {
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

body.room-directory-template a {
  color: inherit;
  text-decoration-color: var(--gold-lab);
}

.crd-app a {
  text-decoration: none;
}

body.room-directory-template img {
  display: block;
}

.crd-app {
  position: relative;
  width: min(100%, 600px);
  min-height: 100vh;
  margin: 0 auto;
  padding-top: var(--header-h);
  padding-bottom: var(--footer-h);
  background: var(--cream);
  box-shadow:
    0 0 0 1px rgba(24, 32, 49, 0.07),
    0 32px 80px rgba(24, 32, 49, 0.14);
}

.crd-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 50;
  width: min(100%, 600px);
  height: var(--header-h);
  transform: translateX(-50%);
  padding: 0 var(--content-x);
  background: var(--ink);
  border-bottom: 0;
  box-shadow:
    0 1px 0 rgba(212, 184, 122, 0.1),
    0 10px 24px rgba(24, 32, 49, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.crd-header::after {
  content: "";
  position: absolute;
  left: clamp(22px, 5vw, 72px);
  right: clamp(22px, 5vw, 72px);
  bottom: -1px;
  height: 1px;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to right,
    rgba(184, 151, 90, 0) 0%,
    rgba(184, 151, 90, 0.38) 18%,
    rgba(212, 184, 122, 0.82) 38%,
    rgba(230, 203, 147, 0.98) 50%,
    rgba(212, 184, 122, 0.82) 62%,
    rgba(184, 151, 90, 0.38) 82%,
    rgba(184, 151, 90, 0) 100%
  );
  box-shadow:
    0 -1px 0 rgba(212, 184, 122, 0.1),
    0 0 8px rgba(212, 184, 122, 0.12);
}

.crd-logo,
.crd-burger,
.crd-drawer-nav button,
.crd-home-nav-btn,
.crd-home-shop-promo-link,
.crd-inline-button,
.crd-back {
  border: 0;
  background: transparent !important;
  cursor: pointer;
}

.crd-logo:hover,
.crd-logo:focus,
.crd-logo:active,
.crd-burger:hover,
.crd-burger:focus,
.crd-burger:active,
.crd-drawer-nav button:hover,
.crd-drawer-nav button:focus,
.crd-drawer-nav button:active,
.crd-home-nav-btn:hover,
.crd-home-nav-btn:focus,
.crd-home-nav-btn:active,
.crd-home-shop-promo-link:hover,
.crd-home-shop-promo-link:focus,
.crd-home-shop-promo-link:active,
.crd-inline-button:hover,
.crd-inline-button:focus,
.crd-inline-button:active,
.crd-back:hover,
.crd-back:focus,
.crd-back:active {
  background: transparent !important;
  box-shadow: none;
}

.crd-back:hover,
.crd-back:focus,
.crd-back:active {
  color: var(--gold-lab) !important;
}

.crd-logo {
  padding: 0;
}

.crd-wordmark {
  color: #fff;
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.crd-burger {
  min-height: 44px;
  padding: 0;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: var(--action-size);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.crd-burger:hover,
.crd-burger:focus,
.crd-burger.is-open {
  color: var(--gold);
}

.crd-burger-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.crd-burger-lines span {
  width: 22px;
  height: 1px;
  background: currentColor;
  display: block;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.crd-burger.is-open .crd-burger-lines span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.crd-burger.is-open .crd-burger-lines span:nth-child(2) {
  opacity: 0;
}

.crd-burger.is-open .crd-burger-lines span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.crd-overlay {
  position: fixed;
  inset: 0;
  z-index: 48;
  background: rgba(24, 32, 49, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s ease;
}

.crd-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.crd-drawer {
  position: fixed;
  top: var(--header-h);
  right: 0;
  z-index: 49;
  width: 100vw;
  height: calc(100vh - var(--header-h));
  height: calc(100dvh - var(--header-h));
  background:
    linear-gradient(
      90deg,
      #182031 0%,
      #182031 52%,
      rgba(24, 32, 49, 0.92) 68%,
      rgba(24, 32, 49, 0.76) 84%,
      rgba(24, 32, 49, 0.5) 100%
    ),
    var(--crd-drawer-bg-image, none) right center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: saturate(0.72) contrast(0.94);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.crd-drawer.is-open {
  transform: translateX(0);
}

.crd-drawer-nav {
  width: 100%;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.crd-drawer-nav button {
  width: 100%;
  max-width: 320px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(212, 184, 122, 0.1);
  color: var(--on-dark);
  font-family: var(--serif);
  font-size: var(--action-size);
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.crd-drawer-nav button:last-child {
  border-bottom: 0;
}

.crd-drawer-nav button:hover,
.crd-drawer-nav button.is-active {
  color: var(--gold);
}

.crd-drawer-lang {
  width: 100%;
  max-width: 320px;
  margin-top: 10px;
  padding-top: 8px;
  border-top: 0;
  display: flex;
  justify-content: center;
}

.crd-drawer-lang .caron-lang-switcher {
  color: var(--on-dark) !important;
  display: inline-flex;
  align-items: center;
  font-family: var(--serif) !important;
  font-size: var(--action-size) !important;
  letter-spacing: 0.2em !important;
  line-height: 1;
  text-transform: uppercase;
}

.crd-drawer-lang .caron-lang-switcher__list {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.crd-drawer-lang .caron-lang-switcher__link {
  color: var(--on-dark-soft) !important;
  font-family: var(--serif) !important;
  font-size: var(--action-size) !important;
  letter-spacing: 0.2em !important;
  text-decoration: none;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.crd-drawer-lang .caron-lang-switcher__link.is-current,
.crd-drawer-lang .caron-lang-switcher__item.is-active .caron-lang-switcher__link {
  color: var(--gold) !important;
  opacity: 1;
}

.crd-drawer-lang .caron-lang-switcher__separator {
  color: rgba(212, 184, 122, 0.56) !important;
  font-family: var(--serif) !important;
  font-size: var(--action-size) !important;
  letter-spacing: 0 !important;
  opacity: 1;
}

.crd-drawer-lang .caron-lang-switcher__link:hover,
.crd-drawer-lang .caron-lang-switcher__link:focus {
  color: var(--gold) !important;
}

.crd-sticky-footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  z-index: 47;
  width: min(100%, 600px);
  height: var(--footer-h);
  padding-bottom: var(--footer-safe);
  transform: translateX(-50%);
  background: var(--ink);
  border: 1px solid rgba(212, 184, 122, 0.34);
  border-bottom: 0;
  display: flex;
}

.crd-footer-signature {
  padding: 12px 24px 18px;
  background: var(--cream);
  color: var(--ink);
  text-align: center;
}

.crd-footer-signature p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.crd-footer-signature a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(24, 32, 49, 0.34);
}

.crd-footer-btn {
  flex: 1;
  height: var(--footer-base-h);
  color: var(--gold) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  text-decoration: none;
  font-family: var(--serif);
  font-size: var(--footer-action-size);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.crd-footer-btn + .crd-footer-btn {
  border-left: 1px solid rgba(212, 184, 122, 0.16);
}

.crd-footer-btn:active,
.crd-footer-btn:hover {
  background: rgba(212, 184, 122, 0.08);
}

.crd-footer-btn svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.crd-footer-btn .crd-wa-svg {
  fill: currentColor;
  stroke: none;
}

.crd-panel {
  display: none;
}

.crd-panel.is-active {
  display: block;
  animation: crdFade 200ms ease both;
}

@keyframes crdFade {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.crd-home-photo {
  position: relative;
  height: 330px;
  background: var(--ink);
  overflow: hidden;
}

.crd-home-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.82;
}

.crd-home-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(24, 32, 49, 0.06) 0%, rgba(24, 32, 49, 0.86) 100%);
}

.crd-home-hero-text {
  position: absolute;
  left: var(--content-x);
  right: var(--content-x);
  bottom: 34px;
  z-index: 1;
}

.crd-home-dark {
  padding: 28px var(--content-x) 38px;
  background: var(--ink);
  border-bottom: 1px solid rgba(212, 184, 122, 0.14);
}

.crd-home-eyebrow,
.crd-kicker {
  display: block;
  color: var(--gold-lab);
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.34em;
  line-height: 1.3;
  text-transform: uppercase;
}

.crd-home-eyebrow {
  color: var(--gold);
  margin-bottom: 24px;
}

.crd-home-title {
  margin: 0 0 18px;
  color: #fff;
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.crd-home-title em,
.crd-pi h2 em {
  color: var(--gold-d);
  font-style: italic;
}

.crd-home-title em {
  color: var(--gold);
}

.crd-pi-rule {
  display: block;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(184, 151, 90, 0) 0%,
    rgba(184, 151, 90, 0.38) 18%,
    rgba(212, 184, 122, 0.82) 38%,
    rgba(230, 203, 147, 0.98) 50%,
    rgba(212, 184, 122, 0.82) 62%,
    rgba(184, 151, 90, 0.38) 82%,
    rgba(184, 151, 90, 0) 100%
  );
  box-shadow:
    0 -1px 0 rgba(212, 184, 122, 0.08),
    0 0 8px rgba(212, 184, 122, 0.1);
}

.crd-home-info-row {
  padding: 17px 0;
  border-bottom: 1px solid rgba(212, 184, 122, 0.16);
  display: block;
}

.crd-home-info-label {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1.18;
  text-transform: uppercase;
}

.crd-home-info-value {
  color: var(--on-dark);
  font-family: var(--serif);
  font-size: 17px;
  text-align: left;
}

.crd-home-info-value strong {
  color: var(--on-dark);
  font-weight: 400;
}

.crd-wifi-inline-label {
  color: var(--on-dark);
  font-family: var(--body);
  font-size: 17px;
  letter-spacing: 0;
  text-transform: none;
}

.crd-home-copy {
  color: var(--on-dark);
  justify-content: flex-start;
  margin-top: 4px;
}

.crd-home-copy .crd-copy-btn,
.crd-home-copy .crd-copy-status {
  color: var(--gold);
}

.crd-home-shop-promo {
  margin: 0;
  padding: 17px 0 18px;
  border-bottom: 1px solid rgba(212, 184, 122, 0.16);
}

.crd-home-shop-promo-text {
  margin: 0 0 9px;
  color: var(--on-dark);
  display: block;
  font-size: 17px;
  line-height: 1.62;
}

.crd-home-shop-promo-link {
  padding: 0 0 4px;
  color: var(--gold) !important;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(212, 184, 122, 0.68);
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
}

.crd-home-shop-promo-link:hover,
.crd-home-shop-promo-link:focus {
  color: #fff !important;
  border-color: #fff;
}

.crd-home-nav {
  padding: 34px var(--content-x) 42px;
}

.crd-home-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.crd-home-nav-list li {
  border-bottom: 1px solid var(--ink-09);
}

.crd-home-nav-list li:first-child {
  border-top: 1px solid var(--ink-09);
}

.crd-home-nav-btn {
  width: 100%;
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
  font: inherit;
  text-align: left;
}

.crd-home-nav-btn span:first-child {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.18;
}

.crd-home-nav-btn small {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-family: var(--body);
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1.32;
  text-transform: none;
}

.crd-home-nav-btn span:last-child {
  color: var(--gold-lab);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1;
}

.crd-home-nav-btn:hover {
  color: var(--gold-lab);
}

.crd-home-foot {
  margin-top: 8px;
  padding: 0 var(--content-x) 14px;
  border-top: 0;
  text-align: left;
}

.crd-home-foot .crd-note {
  margin: 0;
}

.crd-pi {
  padding: 0 var(--content-x) 20px;
}

.crd-back {
  margin: 22px 0 32px;
  padding: 0;
  color: var(--ink-text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font: inherit;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
}

.crd-back span {
  color: var(--gold-lab);
  margin: 0 2px;
}

.crd-kicker {
  margin-bottom: 26px;
}

.crd-pi h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.crd-pi-rule {
  width: min(208px, 62%);
  margin: 18px 0 20px;
}

.crd-panel-summary {
  margin: 0 0 28px;
  color: var(--ink-text);
  font-size: 17px;
  line-height: 1.68;
}

.crd-body {
  margin: 0 0 28px;
  color: var(--ink-text);
  font-size: 17px;
  line-height: 1.68;
}

.crd-feature-photo {
  margin: 6px 0 28px;
}

.crd-feature-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.96);
}

.crd-rows {
  margin-bottom: 30px;
}

.crd-row {
  padding: 12px 0;
  border-bottom: 1px solid var(--ink-09);
  display: block;
}

.crd-row-label {
  display: block;
  margin-bottom: 7px;
}

.crd-row-value {
  display: block;
}

.crd-row:first-child {
  border-top: 1px solid var(--ink-09);
}

.crd-row:last-child {
  border-bottom: 0;
}

.crd-row-label,
.crd-channel-heading {
  color: var(--gold-lab);
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.crd-row-value {
  color: var(--ink-text);
  font-size: 17px;
  line-height: 1.68;
}

.crd-note {
  margin: 18px 0 0;
  padding: 14px 16px 15px;
  background: var(--cream-l);
  border-left: 2px solid var(--gold);
  color: var(--ink-text);
  font-size: 17px;
  line-height: 1.68;
}

.crd-sub {
  margin-top: 36px;
}

.crd-accordion {
  border-top: 1px solid var(--ink-09);
}

.crd-accordion + .crd-accordion {
  margin-top: 0;
}

.crd-accordion-title {
  padding: 17px 0;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.18;
  list-style: none;
}

.crd-accordion-title::-webkit-details-marker {
  display: none;
}

.crd-accordion-title::after {
  content: "+";
  flex-shrink: 0;
  color: var(--gold-lab);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
}

.crd-accordion[open] .crd-accordion-title::after {
  content: "-";
}

.crd-accordion[open] {
  padding-bottom: 22px;
}

.crd-accordion.is-animating {
  will-change: height;
}

.crd-accordion > :not(summary) {
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.crd-accordion .crd-rows,
.crd-accordion .crd-list-rows {
  margin-bottom: 0;
}

.crd-accordion .crd-note {
  margin-bottom: 0;
}

.crd-sub-title {
  display: block;
  margin-bottom: 16px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
}

[data-panel="breakfast"] .crd-sub-title {
  color: var(--gold-lab);
  font-size: 14px;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.crd-list-rows {
  margin-bottom: 20px;
}

.crd-gold-list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink-09);
}

.crd-gold-list li {
  position: relative;
  padding: 10px 0 10px 18px;
  border-bottom: 1px solid var(--ink-09);
  color: var(--ink-text);
  font-size: 17px;
  line-height: 1.68;
}

.crd-gold-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05em;
  width: 8px;
  height: 1px;
  background: var(--gold);
}

.crd-list-row {
  padding: 12px 0;
  border-bottom: 1px solid var(--ink-09);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.crd-list-row:first-child {
  border-top: 1px solid var(--ink-09);
}

.crd-list-row:last-child {
  border-bottom: 0;
}

.crd-list-name {
  min-width: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.crd-list-name small {
  display: block;
  margin-top: 3px;
  color: var(--ink-soft);
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.65;
}

.crd-list-meta {
  flex-shrink: 0;
  color: var(--ink-soft);
  font-size: 15px;
  white-space: nowrap;
}

.crd-list-meta a,
.crd-inline-link,
.crd-maps-link {
  color: var(--gold-lab);
  background: transparent;
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
}

.crd-inline-button {
  margin-top: 10px;
  padding-left: 0;
  padding-right: 0;
}

.crd-list-meta a,
.crd-inline-link,
.crd-maps-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 5px;
  color: var(--gold-lab) !important;
  border-bottom: 1px solid currentColor;
  transition: color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.crd-list-meta a:hover,
.crd-list-meta a:focus,
.crd-inline-link:hover,
.crd-inline-link:focus,
.crd-maps-link:hover,
.crd-maps-link:focus {
  color: var(--ink) !important;
  border-color: var(--ink);
  transform: translateY(-1px);
}

.crd-row-value a[href^="tel:"],
.crd-row-value a[href*="wa.me"] {
  display: inline-flex;
  align-items: center;
  margin-top: 0;
  padding: 0 0 4px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--gold-lab) !important;
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-decoration: none;
  text-transform: none;
  transition: border-color 0.18s ease, color 0.18s ease;
}

.crd-row-value a[href^="tel:"]:hover,
.crd-row-value a[href^="tel:"]:focus,
.crd-row-value a[href*="wa.me"]:hover,
.crd-row-value a[href*="wa.me"]:focus {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink) !important;
}

.crd-bar-card {
  margin: 10px 0 30px;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--ink);
  box-shadow: none;
}

.crd-bar-section + .crd-bar-section {
  margin-top: 38px;
  padding-top: 0;
  border-top: 0;
}

.crd-bar-section h3 {
  margin: 0 0 16px;
  color: var(--gold-lab);
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.crd-bar-items {
  border-top: 0;
}

.crd-bar-item {
  min-height: 58px;
  padding: 13px 0;
  border-bottom: 0;
  display: grid;
  grid-template-columns: minmax(0, max-content) minmax(24px, 1fr) auto;
  column-gap: 10px;
  align-items: start;
}

.crd-bar-item + .crd-bar-item {
  padding-top: 7px;
}

.crd-bar-item::before {
  content: "";
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  height: 1px;
  margin-top: 0.72em;
  background-image: repeating-linear-gradient(
    to right,
    rgba(168, 134, 62, 0.38) 0 2px,
    transparent 2px 7px
  );
  background-position: left center;
  background-repeat: repeat-x;
}

.crd-bar-item-copy {
  grid-column: 1;
  grid-row: 1 / span 2;
  min-width: 0;
}

.crd-bar-item-copy strong {
  color: var(--ink);
  display: block;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.crd-bar-item-copy small {
  margin-top: 4px;
  color: var(--ink-soft);
  display: block;
  font-size: 15px;
  line-height: 1.25;
}

.crd-bar-price {
  grid-column: 3;
  grid-row: 1;
  flex-shrink: 0;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  font-family: var(--body);
  font-size: 18px;
  white-space: nowrap;
}

.crd-bar-price strong {
  font-size: 1em;
  font-weight: 400;
  line-height: 1;
}

.crd-place {
  padding: 24px 0;
  border-bottom: 1px solid var(--ink-09);
}

.crd-place:first-child {
  border-top: 1px solid var(--ink-09);
}

.crd-place img {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 18px;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.96);
}

.crd-place:nth-child(3) img,
.crd-place:nth-child(4) img {
  object-position: center 18%;
}

.crd-place-top {
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.crd-place h3 {
  margin: 0;
  min-width: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.crd-place-top span {
  flex-shrink: 0;
  color: var(--ink-soft);
  font-size: 15px;
  white-space: nowrap;
}

.crd-place p {
  margin: 0 0 12px;
  color: var(--ink-text);
  font-size: 17px;
  line-height: 1.62;
}

.crd-shop-list {
  margin: 8px 0 30px;
  border-top: 1px solid var(--ink-09);
}

.crd-shop-product {
  position: relative;
  padding: 22px 0;
  border-bottom: 1px solid var(--ink-09);
  display: grid;
  grid-template-columns: 122px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.crd-shop-product-image {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: var(--cream-l);
}

.crd-shop-product--no-image {
  grid-template-columns: 1fr;
}

.crd-shop-product-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: saturate(0.92) contrast(0.96);
}

.crd-shop-product-copy h3 {
  grid-column: 1 / -1;
  grid-row: 1;
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.24;
  overflow-wrap: anywhere;
}

.crd-shop-product-copy {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  row-gap: 7px;
  align-items: start;
}

.crd-shop-product-price {
  grid-column: 1;
  grid-row: 2;
  width: fit-content;
  margin: 0;
  padding: 0;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 5px;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.15;
  white-space: nowrap;
}

.crd-shop-product-price strong {
  color: inherit;
  font-size: 1em;
  font-weight: 400;
  line-height: 1;
}

.crd-shop-product-copy p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--ink-text);
  font-size: 16px;
  line-height: 1.55;
}

.crd-channel-group {
  margin-top: 20px;
}

.crd-weather {
  padding: 16px 0 4px;
  border-top: 1px solid var(--ink-09);
}

.crd-weather .weatherwidget-io {
  min-height: 190px;
}

.crd-channel-heading {
  display: block;
  margin-bottom: 10px;
}

.crd-channel-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  row-gap: 0;
  border-top: 1px solid var(--ink-09);
  padding-top: 12px;
}

.crd-channel-list span {
  min-height: 0;
  padding: 5px 0;
  border: 0;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.crd-channel-list small {
  min-width: 20px;
  border: 0;
  color: var(--gold-lab);
  flex-shrink: 0;
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.25;
}

.crd-channel-list strong {
  color: var(--ink);
  font-family: var(--body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.25;
}

.crd-copy-value {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.crd-copy-btn {
  padding: 0;
  border: 0;
  background: transparent !important;
  color: var(--gold-lab);
  display: inline-flex;
  cursor: pointer;
}

.crd-copy-btn svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.crd-copy-status {
  color: var(--gold-lab);
  font-family: var(--serif);
  font-size: 13px;
}

@media (max-width: 480px) {
  .crd-bar-item {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 12px;
  }

  .crd-bar-item::before {
    display: none;
  }

  .crd-bar-item-copy {
    grid-column: 1;
  }

  .crd-bar-price {
    grid-column: 2;
  }
}

@media (max-width: 380px) {
  :root {
    --content-x: 18px;
    --action-size: 15px;
    --footer-action-size: 13px;
  }

  .crd-header,
  .crd-home-dark,
  .crd-home-nav,
  .crd-home-foot,
  .crd-pi {
    padding-left: var(--content-x);
    padding-right: var(--content-x);
  }

  .crd-wordmark {
    font-size: 16px;
    letter-spacing: 0.02em;
  }

  .crd-burger {
    font-size: var(--action-size);
    gap: 9px;
  }

  .crd-drawer-nav {
    padding-left: 24px;
    padding-right: 24px;
  }

  .crd-drawer-nav button,
  .crd-drawer-lang .caron-lang-switcher,
  .crd-drawer-lang .caron-lang-switcher__link {
    letter-spacing: 0.12em !important;
  }

  .crd-home-title {
    font-size: 32px;
  }

  .crd-pi h2 {
    font-size: 30px;
  }

  .crd-home-nav-btn span:first-child {
    font-size: 17px;
  }

  .crd-shop-product {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 13px;
  }

  .crd-shop-product--no-image {
    grid-template-columns: 1fr;
  }

  .crd-shop-product-copy h3 {
    font-size: 18px;
  }

  .crd-shop-product-price {
    font-size: 16px;
  }

  .crd-shop-product-copy p {
    font-size: 16px;
  }
}

@media (max-width: 340px) {
  :root {
    --content-x: 16px;
    --footer-action-size: 12px;
  }

  .crd-wordmark {
    font-size: 15px;
  }

  .crd-burger-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .crd-home-title {
    font-size: 30px;
  }

  .crd-home-eyebrow,
  .crd-kicker {
    font-size: 13px;
    letter-spacing: 0.24em;
  }

  .crd-pi h2 {
    font-size: 28px;
  }

  .crd-list-row {
    display: block;
  }

  .crd-list-meta {
    display: block;
    margin-top: 9px;
    white-space: normal;
  }

  .crd-shop-product {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
  }

  .crd-shop-product-image {
    padding: 8px;
  }
}
