:root,
.theme-studio {
  --tv-bg: #f6f2ea;
  --tv-bg-soft: #fdf8f0;
  --tv-surface: #fffefa;
  --tv-surface-soft: #f7f3ea;
  --tv-text: #18342f;
  --tv-muted: #5f7680;
  --tv-border: #dfd5c4;
  --tv-primary: #bc5e37;
  --tv-primary-dark: #a34f2d;
  --tv-primary-soft: rgba(188, 94, 55, 0.14);
  --tv-ink-soft: #2c4e45;
  --tv-rad: 16px;
  --tv-rad-lg: 22px;
  --tv-font: Manrope, system-ui, -apple-system, Segoe UI, sans-serif;
  --tv-ease: cubic-bezier(.2, .7, .2, 1);
  --tv-header-h: 78px;
}

.theme-studio {
  font-family: var(--tv-font);
  color: var(--tv-text);
  line-height: 1.65;
  background: var(--tv-bg);
  -webkit-font-smoothing: antialiased;
}

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

.theme-studio :where(img, svg, video, canvas) {
  max-width: 100%;
  display: block;
}

.theme-studio h1,
.theme-studio h2,
.theme-studio h3,
.theme-studio h4 {
  line-height: 1.14;
  color: var(--tv-text);
}

.theme-studio .container {
  width: min(1260px, 100% - 2.35rem);
  margin-inline: auto;
}

.theme-studio .narrow {
  width: min(860px, 100% - 2.35rem);
  margin-inline: auto;
}

.theme-studio a {
  color: inherit;
  text-decoration: none;
}

.theme-studio .skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 99999;
  padding: .5rem 1rem;
  background: var(--tv-text);
  color: #fff;
  border-radius: 999px;
  border: 1px solid #fff;
}

.theme-studio .skip-link:focus {
  left: 1rem;
}

.theme-studio .btn {
  --tv-btn-pad-y: .78rem;
  --tv-btn-pad-x: 1.35rem;
  --tv-btn-radius: 12px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .48rem;
  min-height: 43px;
  border: 0;
  border-radius: var(--tv-btn-radius);
  padding: var(--tv-btn-pad-y) var(--tv-btn-pad-x);
  font-weight: 650;
  font-size: .91rem;
  letter-spacing: .01em;
  line-height: 1;
  transition: transform .25s var(--tv-ease), background-color .25s var(--tv-ease), color .25s var(--tv-ease), border-color .25s var(--tv-ease), box-shadow .25s var(--tv-ease);
  cursor: pointer;
  white-space: nowrap;
}

.theme-studio .btn:hover {
  transform: translateY(-1px);
}

.theme-studio .btn-lg {
  min-height: 50px;
  padding: .95rem 1.9rem;
}

.theme-studio .btn-sm {
  min-height: 36px;
  padding: .6rem 1rem;
  font-size: .82rem;
}

.theme-studio .btn-block {
  width: 100%;
}

.theme-studio .btn-primary,
.theme-studio .admin-topbar-pill,
.theme-studio .od-context-action.is-primary {
  background: linear-gradient(130deg, var(--tv-primary), var(--tv-primary-dark));
  color: #fff;
  box-shadow: 0 14px 35px rgba(188, 94, 55, .2);
}

.theme-studio .btn-primary:hover,
.theme-studio .admin-topbar-pill:hover,
.theme-studio .od-context-action.is-primary:hover {
  box-shadow: 0 14px 35px rgba(188, 94, 55, .32);
}

.theme-studio .btn-outline,
.theme-studio .btn-outline-light,
.theme-studio .btn-outline.btn-sm {
  background: transparent;
  color: var(--tv-text);
  border: 1px solid var(--tv-border);
}

.theme-studio .btn-outline:hover,
.theme-studio .btn-outline-light:hover,
.theme-studio .btn-outline.btn-sm:hover {
  border-color: var(--tv-primary);
  color: var(--tv-primary-dark);
}

.theme-studio .btn-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, .38);
}

.theme-studio .btn-outline-light:hover {
  background: rgba(255, 255, 255, .1);
}

.theme-studio .site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 254, 248, .98);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(188, 94, 55, .14);
}

.theme-studio .site-header.scrolled {
  box-shadow: 0 8px 30px rgba(28, 52, 47, .09);
}

.theme-studio .top-bar {
  background: var(--tv-text);
  color: #d6e3db;
  font-size: .74rem;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.theme-studio .top-bar-inner {
  min-height: 39px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .9rem;
}

.theme-studio .top-bar-links {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.theme-studio .top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: inherit;
  transition: color .2s var(--tv-ease), border-color .2s var(--tv-ease), background-color .2s var(--tv-ease);
  padding: .25rem .52rem;
  border-radius: 999px;
}

.theme-studio .top-bar-highlight {
  border: 1px solid rgba(255,255,255,.2);
}

.theme-studio .top-bar-highlight:hover {
  color: #fff;
  border-color: rgba(255,255,255,.52);
  background: rgba(255,255,255,.08);
}

.theme-studio .top-bar a:hover {
  color: #fff;
}

.theme-studio .nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: .9rem;
  justify-content: space-between;
  position: relative;
}

.theme-studio .logo {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  z-index: 3;
}

.theme-studio .logo img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(19, 34, 29, .16);
}

.theme-studio .logo strong {
  display: block;
  line-height: 1.1;
  color: var(--tv-text);
  font-size: 1.11rem;
  font-weight: 800;
}

.theme-studio .logo small {
  display: block;
  color: var(--tv-muted);
  font-size: .74rem;
  margin-top: .15rem;
}

.theme-studio .main-nav {
  margin-left: 1rem;
  margin-right: auto;
}

.theme-studio .main-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: .25rem;
}

.theme-studio .main-nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 .88rem;
  border-radius: 12px;
  font-size: .82rem;
  font-weight: 650;
  letter-spacing: .01em;
  color: var(--tv-text);
  position: relative;
  transition: background-color .2s var(--tv-ease), color .2s var(--tv-ease), transform .2s var(--tv-ease);
}

.theme-studio .main-nav-link::after {
  content: "";
  position: absolute;
  left: .9rem;
  right: .9rem;
  bottom: .28rem;
  height: 2px;
  border-radius: 99px;
  background: var(--tv-primary);
  transform: scaleX(0);
  transition: transform .2s var(--tv-ease);
  transform-origin: left;
  opacity: .78;
}

.theme-studio .main-nav-link:hover::after,
.theme-studio .main-nav-link.active::after,
.theme-studio .main-nav-item.is-active .main-nav-link::after {
  transform: scaleX(1);
}

.theme-studio .main-nav-link.active,
.theme-studio .main-nav-item.is-active .main-nav-link {
  color: var(--tv-primary-dark);
  background: var(--tv-primary-soft);
}

.theme-studio .nav-actions {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-left: auto;
  justify-content: flex-end;
}

.theme-studio .menu-toggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--tv-border);
  border-radius: 999px;
  background: var(--tv-surface);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
}

.theme-studio .menu-toggle span {
  width: 17px;
  height: 2px;
  border-radius: 99px;
  background: var(--tv-text);
  display: block;
  transition: transform .2s var(--tv-ease), opacity .2s var(--tv-ease);
}

.theme-studio .menu-toggle span + span { margin-top: 4px; }

.theme-studio .menu-toggle.open span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.theme-studio .menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.theme-studio .menu-toggle.open span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.theme-studio .nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 45;
  background: rgba(10, 18, 16, .55);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s var(--tv-ease);
}

.theme-studio .nav-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

.theme-studio .mobile-nav-cta,
.theme-studio .hotel-hero-contact,
.theme-studio .hide-desktop,
.theme-studio .hide-mobile-v2 {
  display: none;
}

.theme-studio .site-header #mainNav {
  transition: transform .25s var(--tv-ease), visibility .25s;
}

.theme-studio .section {
  padding: clamp(3.8rem, 8vw, 6.3rem) 0;
}

.theme-studio .section-tight {
  padding: 2rem 0 0;
}

.theme-studio .text-muted {
  color: var(--tv-muted);
}

.theme-studio .section-label {
  font-size: .65rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  font-weight: 750;
  color: var(--tv-primary);
}

.theme-studio .hotel-hero {
  position: relative;
  isolation: isolate;
  min-height: min(88vh, 760px);
  padding-top: clamp(3.8rem, 10vw, 5.4rem);
  overflow: hidden;
  color: #fff;
  background: #10332d;
}

.theme-studio .hotel-hero-picture {
  position: absolute;
  inset: 0;
}

.theme-studio .hotel-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  transform: scale(1.01);
}

.theme-studio .hotel-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 22, 18, .94) 4%, rgba(10, 22, 18, .65) 42%, rgba(10, 22, 18, .22) 78%, rgba(10, 22, 18, .03) 100%);
  z-index: 1;
}

.theme-studio .hotel-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: calc(88vh - var(--tv-header-h));
}

.theme-studio .hotel-hero-copy {
  max-width: 760px;
}

.theme-studio .hotel-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  font-weight: 700;
  margin-bottom: 1rem;
}

.theme-studio .hotel-eyebrow.dark,
.theme-studio .hotel-eyebrow.hero-dark {
  color: #edc6ac;
}

.theme-studio .hotel-eyebrow::before {
  width: 30px;
  height: 1px;
  border-radius: 99px;
  background: var(--tv-primary);
  content: "";
}

.theme-studio .hotel-hero h1,
.theme-studio .page-hero h1 {
  margin: .1rem 0 .9rem;
  color: #fff;
  font-size: clamp(2.9rem, 6vw, 5.35rem);
  line-height: .96;
  letter-spacing: -.01em;
}

.theme-studio .page-hero h1 {
  color: #fff;
}

.theme-studio .hotel-hero-copy p {
  color: rgba(255, 255, 255, .84);
  max-width: 60ch;
  margin-bottom: 1.2rem;
}

.theme-studio .hotel-hero-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.theme-studio .hotel-text-link {
  color: #fff;
  font-weight: 650;
  display: inline-flex;
  align-items: center;
  gap: .42rem;
}

.theme-studio .hotel-text-link:hover {
  color: #fff;
}

.theme-studio .hotel-text-link.dark {
  color: var(--tv-text);
}

.theme-studio .hotel-hero-proof {
  margin-top: 1.35rem;
  border: 1px solid rgba(255, 255, 255, .34);
  background: rgba(7, 32, 25, .26);
  border-radius: var(--tv-rad);
  padding: .6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.theme-studio .hotel-hero-proof > span {
  padding: 1rem 1.1rem;
  text-align: center;
  min-height: 78px;
  display: grid;
  place-content: center;
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.theme-studio .hotel-hero-proof > span:last-child {
  border-right: 0;
}

.theme-studio .hotel-hero-proof strong {
  font-size: 1.35rem;
  line-height: 1.1;
  color: #fff;
}

.theme-studio .hotel-hero-proof small {
  color: rgba(255, 255, 255, .78);
  margin-top: .25rem;
  font-size: .63rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.theme-studio .hotel-hero-notes {
  margin-top: .9rem;
  display: flex;
  gap: .85rem;
  color: rgba(255, 255, 255, .86);
  font-size: .66rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.theme-studio .hotel-hero-contact {
  margin-top: 1rem;
}

.theme-studio .contact-quick-shell {
  margin-top: -48px;
  position: relative;
  z-index: 4;
}

.theme-studio .contact-quick-bar {
  background: var(--tv-surface);
  border: 1px solid var(--tv-border);
  border-radius: var(--tv-rad-lg);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(19, 46, 40, .11);
}

.theme-studio .contact-quick-item {
  min-height: 82px;
  display: grid;
  place-content: center;
  gap: .22rem;
  border-right: 1px solid var(--tv-border);
  text-align: center;
  padding: .75rem 1rem;
}

.theme-studio .contact-quick-item:last-child { border-right: 0; }

.theme-studio .contact-quick-label {
  color: #8f6e42;
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.theme-studio .contact-quick-item strong {
  font-size: .98rem;
}

.theme-studio .contact-quick-cta {
  border: 0;
  align-self: stretch;
  border-left: 1px solid var(--tv-border);
  font-weight: 750;
  padding: .95rem;
}

.theme-studio .hotel-booking-assistant-shell {
  background: linear-gradient(180deg, #f6f2ea 0%, #efe7d8 100%);
  margin-top: 0;
  padding-top: 1.85rem;
}

.theme-studio .hotel-booking-assistant {
  display: grid;
  grid-template-columns: 1.1fr .95fr .95fr .95fr auto;
  gap: .8rem;
}

.theme-studio .hotel-booking-assistant label {
  background: var(--tv-surface);
  border: 1px solid var(--tv-border);
  border-radius: 12px;
  padding: .55rem .7rem;
  display: grid;
  gap: .25rem;
}

.theme-studio .hotel-booking-assistant label > span {
  color: var(--tv-muted);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.theme-studio .hotel-booking-assistant input,
.theme-studio .hotel-booking-assistant select {
  border: 0;
  outline: none;
  color: var(--tv-text);
  background: transparent;
  font: inherit;
  font-weight: 650;
}

.theme-studio .booking-assistant-summary {
  padding: .45rem .2rem;
  color: var(--tv-ink-soft);
}

.theme-studio .booking-assistant-summary span {
  display: block;
  font-size: .7rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: #8f6e42;
  font-weight: 700;
  margin-bottom: .3rem;
}

.theme-studio .booking-assistant-actions {
  grid-column: 5 / 6;
  display: grid;
  gap: .5rem;
}

.theme-studio .booking-assistant-trust {
  margin-top: .9rem;
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  color: var(--tv-muted);
  font-size: .82rem;
}

.theme-studio .booking-assistant-trust span {
  background: var(--tv-surface);
  border: 1px solid var(--tv-border);
  padding: .52rem .9rem;
  border-radius: 999px;
}

.theme-studio .booking-assistant-trust strong {
  color: var(--tv-text);
  margin-right: .3rem;
}

.theme-studio .hotel-intro-grid,
.theme-studio .hotel-room-grid,
.theme-studio .amenity-grid,
.theme-studio .hotel-experience-grid,
.theme-studio .hotel-faq-grid,
.theme-studio .product-detail-grid,
.theme-studio .hotel-review-slider,
.theme-studio .map-grid,
.theme-studio .contact-grid,
.theme-studio .local-seo-grid,
.theme-studio .filters-wrap,
.theme-studio .blog-cat-filter,
.theme-studio .pagination,
.theme-studio .error-actions,
.theme-studio .grid-3 {
  display: grid;
  gap: 1.05rem;
}

.theme-studio .hotel-intro-grid,
.theme-studio .hotel-room-grid,
.theme-studio .hotel-experience-grid,
.theme-studio .local-seo-grid,
.theme-studio .contact-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.theme-studio .hotel-intro-grid > * { grid-column: span 6; }
.theme-studio .hotel-intro-stat { grid-column: span 3; }
.theme-studio .hotel-intro-stat { margin-top: .6rem; }

.theme-studio .hotel-room-grid,
.theme-studio .amenity-grid,
.theme-studio .map-grid,
.theme-studio .local-area-list,
.theme-studio .local-cat-links,
.theme-studio .grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.theme-studio .card,
.theme-studio .hotel-room-card,
.theme-studio .admin-card,
.theme-studio .product-buy-card,
.theme-studio .contact-quick-shell .btn,
.theme-studio .contact-info .info-card,
.theme-studio .map-embed,
.theme-studio .article-cover,
.theme-studio .article-contact-strip,
.theme-studio .seo-related-block {
  border-radius: var(--tv-rad);
  border: 1px solid var(--tv-border);
  background: var(--tv-surface);
}

.theme-studio .hotel-room-card,
.theme-studio .card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.theme-studio .hotel-room-meta,
.theme-studio .card-foot,
.theme-studio .product-spec-list,
.theme-studio .hotel-review-slider,
.theme-studio .local-seo-aside,
.theme-studio .info-card,
.theme-studio .article-cover,
.theme-studio .product-spec-list li,
.theme-studio .seo-related-list li {
  border-radius: 12px;
}

.theme-studio .card-img,
.theme-studio .hotel-room-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f3eee6;
}

.theme-studio .card-img img,
.theme-studio .hotel-room-media img,
.theme-studio .article-cover img,
.theme-studio .product-visual img,
.theme-studio .hotel-experience-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.theme-studio .card-body,
.theme-studio .hotel-room-body,
.theme-studio .product-trust-strip {
  padding: 1.15rem;
}

.theme-studio .card-foot {
  margin-top: .85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--tv-muted);
  font-size: .85rem;
  border-top: 1px dashed var(--tv-border);
  padding-top: .85rem;
}

.theme-studio .hotel-room-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: .95rem;
  padding-top: .75rem;
  border-top: 1px dashed var(--tv-border);
}

.theme-studio .hotel-room-foot a,
.theme-studio .card-link {
  color: var(--tv-primary);
  font-weight: 700;
}

.theme-studio .hotel-room-meta,
.theme-studio .hotel-room-meta li,
.theme-studio .product-spec-list,
.theme-studio .product-spec-list li,
.theme-studio .faq-list,
.theme-studio .local-area-list,
.theme-studio .seo-related-list,
.theme-studio .seo-audit-list,
.theme-studio .local-cat-links,
.theme-studio .footer-area-tags,
.theme-studio .filter,
.theme-studio .blog-cat-filter {
  list-style: none;
  margin: 0;
  padding: 0;
}

.theme-studio .hotel-room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .42rem;
  margin-top: .75rem;
}

.theme-studio .hotel-room-meta li,
.theme-studio .product-spec-list li {
  padding: .42rem .65rem;
  background: var(--tv-bg-soft);
  border: 1px solid var(--tv-border);
  border-radius: 999px;
  font-size: .78rem;
}

.theme-studio .hotel-room-body > div > span,
.theme-studio .tag {
  font-size: .66rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--tv-primary-dark);
  font-weight: 750;
}

.theme-studio .amenity-item {
  min-height: 190px;
  padding: 1.25rem 1.2rem;
  display: grid;
  gap: .5rem;
  align-content: start;
  border: 1px solid var(--tv-border);
  border-radius: var(--tv-rad);
  background: linear-gradient(170deg, #fffefa, #f8f2e8);
}

.theme-studio .amenity-item span {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  background: var(--tv-primary);
}

.theme-studio .hotel-section-head {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem;
}

.theme-studio .hotel-section-head.centered {
  flex-direction: column;
  align-items: flex-start;
}

.theme-studio .hotel-experience-section {
  background: linear-gradient(135deg, #f6f2ea, #f1ece0);
}

.theme-studio .hotel-experience-grid {
  align-items: center;
  gap: 2.2rem;
}

.theme-studio .hotel-experience-visual {
  border-radius: var(--tv-rad-lg);
  overflow: hidden;
  background: #ddd4c4;
  height: 100%;
}

.theme-studio .hotel-experience-copy {
  align-self: stretch;
}

.theme-studio .hotel-experience-copy li {
  margin: .52rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.theme-studio .hotel-experience-copy li::before {
  content: "•";
  color: var(--tv-primary);
  position: absolute;
  left: 0;
}

.theme-studio .hotel-review-slider {
  background: var(--tv-surface);
  padding: 1.3rem 1.25rem 1.2rem;
  position: relative;
}

.theme-studio .hotel-quote-mark {
  position: absolute;
  top: .5rem;
  right: .8rem;
  color: var(--tv-primary);
  font-size: 3rem;
  line-height: 1;
  opacity: .3;
}

.theme-studio .hotel-review {
  margin: 0;
  display: none;
}

.theme-studio .hotel-review.active {
  display: block;
}

.theme-studio .hotel-review p {
  margin-bottom: 1rem;
}

.theme-studio .hotel-review footer {
  color: var(--tv-muted);
  font-size: .92rem;
  border-top: 1px solid var(--tv-border);
  margin-top: .9rem;
  padding-top: .9rem;
}

.theme-studio .hotel-review-nav {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
}

.theme-studio .hotel-review-nav button {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--tv-border);
  background: var(--tv-surface);
  color: var(--tv-text);
}

.theme-studio .hotel-final-cta {
  background: #10332d;
  color: #fff;
}

.theme-studio .hotel-final-cta h2 {
  color: #fff;
}

.theme-studio .cta-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.1rem;
}

.theme-studio .page-hero {
  padding: clamp(4rem, 10vw, 6.5rem) 0;
  background: linear-gradient(130deg, #10332d, #193d33 50%, #2a4d44);
  color: #fff;
}

.theme-studio .page-hero .section-label {
  color: #ffd1a8;
}

.theme-studio .page-hero p,
.theme-studio .page-hero-meta {
  color: rgba(255, 255, 255, .85);
  max-width: 70ch;
}

.theme-studio .blog-search {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .6rem;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  padding: .45rem .5rem .45rem .85rem;
  max-width: 680px;
}

.theme-studio .blog-search input {
  border: 0;
  outline: none;
  background: transparent;
  color: #fff;
}

.theme-studio .blog-search input::placeholder {
  color: rgba(255, 255, 255, .62);
}

.theme-studio .blog-cat-filter,
.theme-studio .pagination,
.theme-studio .article-share,
.theme-studio .cta-box-actions,
.theme-studio .product-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .7rem;
}

.theme-studio .blog-cat-chip,
.theme-studio .filter {
  border: 1px solid var(--tv-border);
  border-radius: 999px;
  padding: .48rem .8rem;
  background: var(--tv-surface);
}

.theme-studio .blog-cat-chip.active,
.theme-studio .filter.active {
  background: #18342f;
  color: #fff;
  border-color: transparent;
}

.theme-studio .search-result-info {
  margin-bottom: 1rem;
}

.theme-studio .error-page {
  min-height: calc(100vh - 220px);
  display: grid;
  align-items: center;
}

.theme-studio .error-illustration {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(130deg, #fff, #f4efe4);
  border: 1px solid var(--tv-border);
  display: grid;
  place-content: center;
  font-size: 3rem;
  margin-bottom: 1rem;
}

.theme-studio .error-code {
  color: #dcb58f;
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1;
  font-weight: 750;
}

.theme-studio .prose,
.theme-studio .article-prose,
.theme-studio .prose * {
  max-width: 100%;
}

.theme-studio .prose {
  color: #2d413a;
  font-size: 1.06rem;
}

.theme-studio .prose h2,
.theme-studio .prose h3,
.theme-studio .prose h4 {
  margin-top: 2.3rem;
}

.theme-studio .prose p,
.theme-studio .prose ul,
.theme-studio .prose ol {
  margin: 0 0 1.05rem;
}

.theme-studio .prose table {
  width: 100%;
  border-collapse: collapse;
}

.theme-studio .prose th,
.theme-studio .prose td {
  border: 1px solid var(--tv-border);
  padding: .62rem .75rem;
  text-align: left;
}

.theme-studio .prose th {
  background: var(--tv-surface);
}

.theme-studio .prose blockquote {
  border-left: 4px solid var(--tv-primary);
  margin: 1.3rem 0;
  padding: .9rem 1rem;
  background: var(--tv-surface);
  border-radius: 0 var(--tv-rad) var(--tv-rad) 0;
}

.theme-studio .article-cover,
.theme-studio .contact-form,
.theme-studio .product-buy-card,
.theme-studio .product-trust-strip,
.theme-studio .info-card,
.theme-studio .article-contact-strip,
.theme-studio .cta-section,
.theme-studio .local-seo-cta,
.theme-studio .section-contact,
.theme-studio .seo-related-block {
  background: var(--tv-surface);
}

.theme-studio .article-meta-bar {
  margin: .95rem 0 1.2rem;
  display: inline-flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.theme-studio .meta-chip {
  padding: .42rem .65rem;
  background: var(--tv-bg-soft);
  border: 1px solid var(--tv-border);
  border-radius: 999px;
  color: var(--tv-ink-soft);
  font-size: .78rem;
}

.theme-studio .article-contact-strip {
  padding: .85rem;
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.theme-studio .acs-btn {
  border: 1px solid var(--tv-border);
  border-radius: 999px;
  background: var(--tv-surface);
  padding: .68rem .95rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 650;
}

.theme-studio .article-share {
  margin-top: 1.2rem;
}

.theme-studio .share-btn {
  border: 1px solid var(--tv-border);
  border-radius: 999px;
  background: var(--tv-surface);
  padding: .55rem .9rem;
  font-weight: 600;
}

.theme-studio .seo-related-list li {
  padding: .75rem;
  border: 1px solid var(--tv-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .7rem;
}

.theme-studio .contact-form,
.theme-studio .contact-form.success-box {
  border-radius: var(--tv-rad-lg);
  border: 1px solid var(--tv-border);
  padding: 1.6rem;
  background: var(--tv-surface);
}

.theme-studio .form-row {
  display: grid;
  gap: .8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.theme-studio .contact-form input,
.theme-studio .contact-form select,
.theme-studio .contact-form textarea,
.theme-studio .hotel-booking-assistant input,
.theme-studio .admin-form input,
.theme-studio .admin-form textarea,
.theme-studio .admin-form select {
  border: 1px solid var(--tv-border);
  border-radius: 11px;
  background: #fff;
  min-height: 46px;
  width: 100%;
  padding: .7rem .85rem;
  color: var(--tv-text);
  font: inherit;
}

.theme-studio .contact-form label,
.theme-studio .admin-form label {
  margin-bottom: .38rem;
  display: inline-block;
  font-weight: 650;
  color: var(--tv-ink-soft);
}

.theme-studio .contact-form .form-note {
  margin-top: .65rem;
  color: var(--tv-muted);
  font-size: .82rem;
}

.theme-studio .field-error,
.theme-studio .input-invalid {
  color: #a23b3b;
}

.theme-studio .input-invalid {
  border-color: #c54c4c !important;
}

.theme-studio .map-embed,
.theme-studio .map-placeholder {
  min-height: 250px;
  border: 1px solid var(--tv-border);
  border-radius: 14px;
  padding: 1rem;
}

.theme-studio .map-placeholder {
  background: linear-gradient(180deg, var(--tv-surface), var(--tv-bg-soft));
  display: grid;
  place-content: center;
  text-align: center;
}

.theme-studio .map-placeholder-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .7rem;
}

.theme-studio .site-footer {
  background: #0d3027;
  color: #dce6e2;
  margin-top: 2rem;
  padding: 3rem 0 2rem;
}

.theme-studio .footer-promo {
  display: flex;
  gap: 1.2rem;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  padding: 1.2rem;
  margin-bottom: 1.8rem;
  background: linear-gradient(130deg, rgba(188,94,55,.22), rgba(13,48,39,.1));
}

.theme-studio .footer-tagline {
  display: inline-block;
  margin-bottom: .45rem;
  color: rgba(255,255,255,.82);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.theme-studio .footer-promo-title {
  margin: 0 0 .45rem;
  color: #fff;
}

.theme-studio .footer-promo-text,
.theme-studio .footer-brand-about,
.theme-studio .footer-brand-meta,
.theme-studio .footer-brand-col p {
  color: rgba(220,230,226,.8);
}

.theme-studio .footer-promo-actions {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.theme-studio .footer-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1.8fr repeat(3, minmax(0, 1fr));
  align-items: start;
}

.theme-studio .footer-heading {
  color: #e5b17b;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .68rem;
  margin-bottom: .8rem;
}

.theme-studio .footer-brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: .8rem;
}

.theme-studio .footer-brand {
  font-size: 1.02rem;
  letter-spacing: .01em;
  font-weight: 800;
  color: #fff;
}

.theme-studio .footer-brand-col p {
  margin: .2rem 0 .7rem;
}

.theme-studio .footer-brand-about {
  max-width: 41ch;
}

.theme-studio .footer-contact-btn {
  margin-top: .6rem;
}

.theme-studio .footer-nav,
.theme-studio .footer-nav a,
.theme-studio .footer-brand-col p {
  display: block;
}

.theme-studio .footer-nav a {
  padding: .32rem 0;
  color: rgba(220,230,226,.82);
}

.theme-studio .footer-nav a:hover {
  color: #fff;
}

.theme-studio .footer-bottom {
  margin-top: 2.2rem;
  padding: 1.1rem 0;
  border-top: 1px solid rgba(255,255,255,.14);
  display: flex;
  justify-content: space-between;
  gap: .8rem;
  flex-wrap: wrap;
  font-size: .85rem;
}

.theme-studio .footer-area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.theme-studio .footer-area-tags span {
  display: inline-flex;
  padding: .24rem .58rem;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  font-size: .78rem;
}

.theme-studio .footer-social {
  margin-top: .8rem;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}

.theme-studio .footer-social a {
  width: 35px;
  height: 35px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.theme-studio .whatsapp-btn,
.theme-studio .scroll-top {
  position: fixed;
  right: 1rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  z-index: 61;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 35px rgba(21, 56, 46, .23);
}

.theme-studio .whatsapp-btn {
  bottom: 1.2rem;
  background: linear-gradient(145deg, #25d366, #12ad53);
  color: #fff;
}

.theme-studio .scroll-top {
  bottom: 6.2rem;
  background: #173a31;
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  transform: translateY(12px);
}

.theme-studio .scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.theme-studio .mobile-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 61;
  background: var(--tv-surface);
  border-top: 1px solid var(--tv-border);
  padding: .45rem .65rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .45rem;
}

.theme-studio .mobile-cta-bar .btn {
  width: 100%;
  min-height: 44px;
}

.theme-studio .mobile-cta-bar [class*="btn-call"] {
  border-color: #cce9e0;
}

.theme-studio .sticky-contact-bar {
  position: fixed;
  right: 1rem;
  top: 42%;
  transform: translateY(-50%);
  z-index: 55;
  border-radius: 14px;
  background: var(--tv-surface);
  border: 1px solid var(--tv-border);
  box-shadow: 0 10px 28px rgba(17, 51, 43, .16);
  overflow: hidden;
  display: grid;
}

.theme-studio .sticky-contact-item {
  display: grid;
  grid-template-columns: 26px 1fr;
  align-items: center;
  gap: .45rem;
  padding: .58rem .72rem;
  width: 172px;
}

.theme-studio .sticky-contact-item + .sticky-contact-item {
  border-top: 1px solid var(--tv-border);
}

.theme-studio .sticky-label {
  font-size: .73rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.theme-studio .sticky-icon { color: var(--tv-primary); }

.theme-studio .cookie-banner {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 58;
  background: rgba(17, 33, 28, .9);
  color: #fff;
  backdrop-filter: blur(10px);
}

.theme-studio .cookie-inner {
  width: min(1140px, 100% - 2.2rem);
  margin: 0 auto;
  padding: .85rem 0;
  display: grid;
  gap: .65rem;
  align-items: center;
  justify-content: space-between;
  grid-template-columns: 1fr auto;
}

.theme-studio .cookie-actions {
  display: inline-flex;
  gap: .45rem;
}

.theme-studio .breadcrumbs {
  padding: .85rem 0;
}

.theme-studio .breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  align-items: center;
  font-size: .8rem;
}

.theme-studio .breadcrumbs li {
  color: var(--tv-muted);
}

.theme-studio .breadcrumbs li + li::before {
  content: "›";
  margin-right: .45rem;
  color: #9aa7a2;
}

.theme-studio .breadcrumbs a {
  color: #7f7f7f;
}

.theme-studio .hotel-room-card.featured::after,
.theme-studio .card-hover-cta,
.theme-studio .card-foot::before {
  content: none;
}

.theme-studio .local-seo-section,
.theme-studio .feature-card,
.theme-studio .admin-dashboard,
.theme-studio .hotel-blog-preview .hotel-room-card {
  background: transparent;
}

.theme-studio .hide-desktop { display: none !important; }

@media (max-width: 1200px) {
  .theme-studio .hotel-intro-grid > * { grid-column: span 12; }
  .theme-studio .hotel-intro-stat { grid-column: span 4; }
}

@media (max-width: 1024px) {
  .theme-studio .container { width: min(1100px, 100% - 1.7rem); }
  .theme-studio .hotel-room-grid,
  .theme-studio .amenity-grid,
  .theme-studio .grid-3,
  .theme-studio .local-seo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .theme-studio .hotel-experience-grid > * {
    grid-column: span 12;
  }
}

@media (max-width: 860px) {
  .theme-studio .top-bar { display: none; }
  .theme-studio .hide-mobile,
  .theme-studio .hide-mobile-v2 { display: none !important; }
  .theme-studio .menu-toggle { display: inline-flex; }
  .theme-studio .nav-actions { margin-left: auto; }
  .theme-studio .hide-desktop { display: inline-flex !important; }
  .theme-studio .nav-wrap { min-height: 72px; }

  .theme-studio .main-nav {
    position: fixed;
    inset-block: 0;
    inset-inline-end: 0;
    inset-inline-start: auto;
    width: min(86vw, 340px);
    border-left: 1px solid var(--tv-border);
    border-radius: 16px 0 0 16px;
    background: var(--tv-surface);
    box-shadow: -8px 0 30px rgba(11, 26, 22, .2);
    padding: 4.8rem .5rem .9rem;
    display: flex;
    flex-direction: column;
    overflow: auto;
    transform: translateX(100%);
    visibility: hidden;
    z-index: 50;
  }

  .theme-studio .main-nav.open {
    transform: translateX(0);
    visibility: visible;
  }

  .theme-studio .main-nav-list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: .2rem;
  }

  .theme-studio .main-nav-item {
    width: 100%;
  }

  .theme-studio .main-nav-link {
    justify-content: flex-start;
    width: 100%;
    min-height: 48px;
    border-radius: 12px;
    padding: 0 .95rem;
  }

  .theme-studio .main-nav-link::after { left: .95rem; right: .95rem; }

  .theme-studio .mobile-nav-cta {
    margin-top: auto;
    display: grid;
    gap: .6rem;
    padding: .65rem .45rem 0;
  }

  .theme-studio .hotel-hero {
    min-height: calc(100svh - 78px);
  }

  .theme-studio .hotel-hero-copy h1 { font-size: clamp(2.35rem, 10vw, 3.15rem); }
  .theme-studio .hotel-hero-proof {
    grid-template-columns: 1fr;
  }
  .theme-studio .hotel-hero-proof > span { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .theme-studio .hotel-hero-proof > span:last-child { border-bottom: 0; }

  .theme-studio .contact-quick-shell {
    margin-top: .5rem;
  }
  .theme-studio .contact-quick-bar {
    grid-template-columns: 1fr 1fr;
  }
  .theme-studio .contact-quick-item:nth-child(3) { display: none; }
  .theme-studio .contact-quick-cta { border: 0; grid-column: 1 / -1; }

  .theme-studio .hotel-booking-assistant {
    grid-template-columns: 1fr 1fr;
    padding-bottom: .85rem;
  }

  .theme-studio .booking-assistant-actions,
  .theme-studio .booking-assistant-summary {
    grid-column: 1 / -1;
  }

  .theme-studio .hotel-intro-stat { grid-column: span 6; }
  .theme-studio .local-seo-content,
  .theme-studio .local-seo-aside,
  .theme-studio .hotel-intro-stat,
  .theme-studio .contact-grid > * { grid-column: span 12; }

  .theme-studio .footer-promo { padding: .95rem; }
  .theme-studio .footer-promo-actions {
    width: 100%;
    justify-content: flex-start;
  }
  .theme-studio .footer-promo-actions .btn { width: 100%; }

  .theme-studio .footer-grid,
  .theme-studio .page-hero .container,
  .theme-studio .breadcrumbs .container,
  .theme-studio .contact-grid {
    grid-template-columns: 1fr;
  }

  .theme-studio .footer-grid > div {
    max-width: 100%;
  }
  .theme-studio .footer-bottom { flex-direction: column; align-items: flex-start; }

  .theme-studio .sticky-contact-bar {
    display: none;
  }
}

@media (max-width: 540px) {
  .theme-studio .container { width: calc(100% - 1.4rem); }
  .theme-studio .hotel-booking-assistant,
  .theme-studio .hotel-room-grid,
  .theme-studio .amenity-grid,
  .theme-studio .grid-3,
  .theme-studio .blog-cat-filter,
  .theme-studio .filters,
  .theme-studio .form-row {
    grid-template-columns: 1fr;
  }

  .theme-studio .hotel-hero-proof { gap: 0; }
  .theme-studio .btn,
  .theme-studio .btn-lg,
  .theme-studio .btn-sm {
    width: 100%;
  }

  .theme-studio .hotel-hero-actions .btn {
    width: 100%;
  }
  .theme-studio .hotel-room-foot {
    flex-wrap: wrap;
  }
  .theme-studio .hotel-hero-copy p { margin-bottom: .8rem; }
}
