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

      :root {
        --bg: hsl(40 20% 97%);
        --fg: hsl(200 25% 15%);
        --card: hsl(0 0% 100%);
        --card-fg: hsl(200 25% 15%);
        --primary: hsl(152 45% 28%);
        --primary-fg: hsl(40 20% 97%);
        --secondary: hsl(35 80% 52%);
        --secondary-fg: hsl(0 0% 100%);
        --muted: hsl(40 15% 92%);
        --muted-fg: hsl(200 10% 45%);
        --border: hsl(40 15% 88%);
        --star: hsl(45 93% 47%);
        --score-bg: hsl(152 45% 28%);
        --score-fg: hsl(0 0% 100%);
        --rank-bg: hsl(35 80% 52%);
        --rank-fg: hsl(0 0% 100%);
        --radius: 0.75rem;
        --font-display: 'Playfair Display', serif;
        --font-body: 'Source Sans 3', sans-serif;
      }

      body {
        font-family: var(--font-body);
        background: var(--bg);
        color: var(--fg);
        -webkit-font-smoothing: antialiased;
        line-height: 1.6;
      }

      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
      }

      /* Header */
      .site-header {
        background: var(--card);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 1px 3px rgba(0,0,0,0.05);
      }
      .site-header .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
      }
      .site-header .logo { height: 40px; width: auto; }
      .site-header nav { display: none; gap: 1.5rem; font-size: 0.875rem; font-weight: 500; }
      .site-header nav a { color: var(--muted-fg); text-decoration: none; transition: color 0.2s; }
      .site-header nav a:hover { color: var(--fg); }
      @media (min-width: 768px) {
        .site-header nav { display: flex; }
      }

      /* Hero */
      .hero { padding: 1rem 0 1.5rem; }
      @media (min-width: 768px) { .hero { padding: 2rem 0; } }
      .hero h1 {
        font-family: var(--font-display);
        font-size: 1.5rem;
        font-weight: 800;
        line-height: 1.2;
      }
      @media (min-width: 768px) { .hero h1 { font-size: 2.25rem; } }
      .hero .disclosure {
        margin-top: 0.75rem;
        color: var(--muted-fg);
        font-size: 0.75rem;
      }
      .hero .disclosure a {
        color: var(--primary);
        font-weight: 600;
        text-decoration: underline;
      }

      /* Hotel list */
      .hotel-list { padding-bottom: 0.5rem; display: flex; flex-direction: column; gap: 1rem; }
      @media (min-width: 768px) { .hotel-list { padding-bottom: 0.5rem; } }

      /* Hotel Card */
      .hotel-card {
        position: relative;
        background: var(--card);
        border-radius: var(--radius);
        border: 1px solid var(--border);
        box-shadow: 0 1px 3px rgba(0,0,0,0.06);
        overflow: hidden;
        transition: box-shadow 0.3s;
      }
      .hotel-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
      .hotel-card .rank-badge {
        position: absolute;
        top: 0.75rem;
        left: 0.75rem;
        z-index: 10;
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        background: var(--rank-bg);
        color: var(--rank-fg);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 0.875rem;
        box-shadow: 0 2px 6px rgba(0,0,0,0.15);
      }
      .hotel-card .card-inner { display: flex; flex-direction: column; }
      @media (min-width: 768px) { .hotel-card .card-inner { flex-direction: row; } }

      .hotel-card .card-image {
        height: 13rem;
        flex-shrink: 0;
        overflow: hidden;
        display: block;
      }
      @media (min-width: 768px) {
        .hotel-card .card-image { width: 10rem; height: auto; }
      }
      .hotel-card .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
      }
      .hotel-card:hover .card-image img { transform: scale(1.05); }

      .hotel-card .card-content {
        flex: 1;
        padding: 1.25rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 0.75rem;
      }
      .hotel-card .stars { display: flex; gap: 2px; margin-bottom: 0.25rem; }
      .hotel-card .stars svg { width: 16px; height: 16px; fill: var(--star); color: var(--star); }
      .hotel-card .hotel-name {
        font-family: var(--font-display);
        font-size: 1.125rem;
        font-weight: 700;
        line-height: 1.3;
        margin-bottom: 0.25rem;
      }
      .hotel-card .hotel-address {
        display: flex;
        align-items: center;
        gap: 0.25rem;
        color: var(--muted-fg);
        font-size: 0.875rem;
      }
      .hotel-card .hotel-address svg { width: 14px; height: 14px; flex-shrink: 0; }
      .hotel-card .hotel-desc {
        font-size: 0.875rem;
        color: var(--muted-fg);
        margin-top: 0.375rem;
        line-height: 1.6;
      }
      .hotel-card .review-price {
        display: flex;
        /*align-items: flex-end; */
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-top: auto;
      }
      .hotel-card .review { display: flex; align-items: center; gap: 0.5rem; }
      .hotel-card .review-score {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.25rem;
        height: 2.25rem;
        border-radius: 0.375rem;
        background: var(--score-bg);
        color: var(--score-fg);
        font-weight: 700;
        font-size: 0.875rem;
      }
      .hotel-card .review-text { font-size: 0.875rem; line-height: 1.3; }
      .hotel-card .review-text .sentiment { font-weight: 600; color: var(--fg); }
      .hotel-card .review-text .count { color: var(--muted-fg); font-size: 0.75rem; }
      .hotel-card .price { text-align: right; }
      .hotel-card .price .label { font-size: 0.75rem; color: var(--muted-fg); }
      .hotel-card .price .amount { font-weight: 700; font-size: 1.125rem; }
      .hotel-card .price .unit { font-size: 0.75rem; color: var(--muted-fg); }

      .hotel-card .card-cta {
        padding: 1.25rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-top: 1px solid var(--border);
        gap: 0.5rem;
      }
      @media (min-width: 768px) {
        .hotel-card .card-cta { border-top: none; border-left: 1px solid var(--border); }
      }
      .btn-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--secondary);
        color: var(--secondary-fg);
        font-family: var(--font-body);
        font-weight: 700;
        font-size: 0.95rem;
        padding: 0.35rem 1.5rem;
        border-radius: 0.375rem;
        text-decoration: none;
        box-shadow: 0 2px 6px rgba(0,0,0,0.12);
        transition: all 0.2s;
        white-space: nowrap;
        border: none;
        cursor: pointer;
        width:100%;
      }

       @media (min-width: 768px) {
        .btn-cta { width: auto; font-size: 1.2em; }
      }
      .btn-cta:hover { opacity: 0.9; box-shadow: 0 4px 12px rgba(0,0,0,0.18); }
      .cta-sub {
        display: flex;
        align-items: center;
        gap: 0.375rem;
        font-size: 0.75rem;
        color: var(--muted-fg);
      }
      .cta-sub img { height: 1rem; width: auto; }

      /* Article */
      .article-section { padding: 2em 0 1rem; }
      @media (min-width: 768px) { .article-section { padding: 2rem 0 1rem; } }
      .article-section h2 {
        font-family: var(--font-display);
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
      }
      @media (min-width: 768px) { .article-section h2 { font-size: 1.875rem; } }
      .article-section .prose { color: var(--muted-fg); }
      .article-section .prose p { margin-bottom: 1rem; }

      /* Footer */
      .site-footer {
        border-top: 1px solid var(--border);
        background: var(--card);
        margin-top: 3rem;
        padding: 2rem 0;
      }
      .site-footer nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1.5rem;
        font-size: 0.875rem;
      }
      .site-footer nav a { color: var(--muted-fg); text-decoration: none; transition: color 0.2s; }
      .site-footer nav a:hover { color: var(--fg); }
      .site-footer .copy {
        text-align: center;
        font-size: 0.75rem;
        color: var(--muted-fg);
        margin-top: 1rem;
      }

      /* Sticky CTA */
      .sticky-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 50;
        background: hsla(0,0%,100%,0.95);
        backdrop-filter: blur(8px);
        border-top: 1px solid var(--border);
        box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
        transform: translateY(100%);
        transition: transform 0.3s ease;
      }
      .sticky-cta.visible { transform: translateY(0); }
      .sticky-cta .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
      }
      .sticky-cta .sticky-info { flex: 1; min-width: 0; }
      .sticky-cta .sticky-name {
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 0.875rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }
      @media (min-width: 768px) { .sticky-cta .sticky-name { font-size: 1rem; } }
      .sticky-cta .sticky-price { font-size: 0.75rem; color: var(--muted-fg); }
      .sticky-cta .sticky-price span { font-weight: 700; color: var(--fg); }

       .sticky-cta .btn-cta { width: auto; }
      .disclaimer { margin-top: 1rem; font-size: 0.75rem; color: var(--muted-fg); font-style: italic; }

      /* Disclosure modal */
      .modal-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 100;
        align-items: center;
        justify-content: center;
      }
      .modal-overlay.open { display: flex; }
      .modal-box {
        background: var(--card);
        border-radius: var(--radius);
        max-width: 32rem;
        width: 90%;
        padding: 1.5rem;
        position: relative;
      }
      .modal-box h3 {
        font-family: var(--font-display);
        font-size: 1.25rem;
        margin-bottom: 1rem;
      }
      .modal-box p { font-size: 0.875rem; color: var(--muted-fg); margin-bottom: 0.75rem; line-height: 1.6; }
      .modal-close {
        position: absolute;
        top: 0.75rem;
        right: 0.75rem;
        background: none;
        border: none;
        font-size: 1.25rem;
        cursor: pointer;
        color: var(--muted-fg);
      }


	@font-face {
		font-family: 'CameraPlainVariable';
		src: url('https://cdn.gpteng.co/mcp-widgets/v1/fonts/CameraPlainVariable.woff2') format('woff2');
		font-weight: 100 900;
		font-style: normal;
		font-display: swap;
	}

	#lovable-badge {
		--badge-bg: #1b1b1b;
		--badge-text: #c5c1b9;
		--badge-text-hover: #dcdad5;
		--badge-radius: 6px;
		--badge-padding: 8px;
		--badge-gap: 6px;
		--badge-shadow: 
			0 0 0 1px rgba(0, 0, 0, 0.88),
			0 1px 0 0 rgba(0, 0, 0, 0.04),
			0 2px 2px -1px rgba(0, 0, 0, 0.08),
			0 4px 4px -2px rgba(0, 0, 0, 0.08),
			0 8px 8px -4px rgba(0, 0, 0, 0.08),
			0 16px 16px -8px rgba(0, 0, 0, 0.08);
		--badge-transition-duration: 0.2s;
		--badge-transition-easing: cubic-bezier(0.16, 1, 0.32, 1);
		--focus-color: #575ECF;
		--focus-offset: 2px;
		--focus-width: 2px;
		
		position: fixed;
		bottom: 12px;
		right: 12px;
		height: 24px;
		display: flex;
		align-items: center;
		z-index: 1000000;
		background-color: var(--badge-bg);
		color: var(--badge-text);
		border-radius: var(--badge-radius);
		box-shadow: var(--badge-shadow);
		font-size: 12px;
		font-family: CameraPlainVariable, "CameraPlainVariable Fallback", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
		font-weight: 400 !important;
		text-transform: none !important;
		font-feature-settings: normal !important;
		transform: translateZ(0);
		will-change: transform, opacity;
	}

	#lovable-badge-cta {
		display: flex;
		align-items: center;
		gap: var(--badge-gap);
		padding: 0 var(--badge-padding);
		height: 100%;
		color: inherit;
		text-decoration: none;
		white-space: nowrap;
		border-radius: var(--badge-radius) 0 0 var(--badge-radius);
		transition: 
			background-color var(--badge-transition-duration) ease,
			color var(--badge-transition-duration) ease,
			transform 0.1s ease;
	}

	#lovable-badge-cta:hover {
		background: rgba(255, 255, 255, 0.04);
		color: var(--badge-text-hover);
	}

	#lovable-badge-cta:active {
		transform: scale(0.98);
	}

	#lovable-badge-cta:focus {
		outline: none;
	}

	#lovable-badge-cta:focus-visible {
		outline: var(--focus-width) solid var(--focus-color);
		outline-offset: var(--focus-offset);
		z-index: 1;
	}

	#lovable-badge-text {
		line-height: 1;
	}

	#lovable-badge-divider {
		width: 1px;
		height: 24px;
		background-color: rgba(255, 255, 255, 0.04);
		flex-shrink: 0;
	}

	#lovable-badge-close {
		width: 24px;
		height: 24px;
		min-width: 24px;
		min-height: 24px;
		cursor: pointer;
		background: none;
		border: none;
		padding: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 0 var(--badge-radius) var(--badge-radius) 0;
		flex-shrink: 0;
		transition: 
			background-color var(--badge-transition-duration) ease,
			transform 0.1s ease;
	}

	#lovable-badge-close:hover {
		background: rgba(255, 255, 255, 0.04);
	}

	#lovable-badge-close:active {
		transform: scale(0.92);
	}

	#lovable-badge-close:focus {
		outline: none;
	}

	#lovable-badge-close:focus-visible {
		outline: var(--focus-width) solid var(--focus-color);
		outline-offset: calc(var(--focus-offset) * -1);
		z-index: 1;
	}

	#lovable-badge-close svg path {
		fill: var(--badge-text);
		transition: fill var(--badge-transition-duration) ease;
	}

	#lovable-badge-close:hover svg path {
		fill: var(--badge-text-hover);
	}

	@media (prefers-reduced-motion: reduce) {
		#lovable-badge-cta,
		#lovable-badge-close,
		#lovable-badge-close svg path {
			transition: none;
		}
		
		#lovable-badge-cta:active,
		#lovable-badge-close:active {
			transform: none;
		}
	}

	@media (prefers-contrast: high) {
		#lovable-badge {
			--badge-bg: #000;
			--badge-text: #fff;
			--badge-text-hover: #fff;
			border: 2px solid currentColor;
		}
		
		#lovable-badge-cta:focus-visible,
		#lovable-badge-close:focus-visible {
			outline-width: 3px;
		}
	}