:root {
  --etm-ink: #16202a;
  --etm-muted: #6f7478;
  --etm-line: #e9dfd1;
  --etm-bg: #fbf7f0;
  --etm-card: #ffffff;
  --etm-accent: #c85f2d;
  --etm-accent-dark: #9f421b;
  --etm-sand: #f4e8d6;
  --etm-good: #159447;
  --etm-up: #d75c43;
  --etm-shadow: 0 18px 45px rgba(39, 26, 16, 0.12);
  --etm-radius: 18px;
  --etm-serif: Georgia, "Times New Roman", serif;
  --etm-sans: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--etm-bg);
  color: var(--etm-ink);
  font-family: var(--etm-sans);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.etm-container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

/* Header */

.etm-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--etm-line);
}

.etm-header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.etm-brand img {
  height: 46px;
  width: auto;
}

.etm-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.etm-nav a:hover {
  color: var(--etm-accent);
}

.etm-menu-toggle {
  display: none;
}

/* Hero */

.etm-hero {
  min-height: 520px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  color: #ffffff;
}

.etm-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 18, 24, 0.76), rgba(11, 18, 24, 0.2));
}

.etm-hero > * {
  position: relative;
}

.etm-hero-content {
  max-width: 680px;
  padding: 90px 0;
}

.etm-hero h1 {
  font-family: var(--etm-serif);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
  margin: 16px 0;
}

.etm-hero p {
  font-size: 19px;
  max-width: 600px;
}

.etm-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

/* Shared Elements */

.etm-kicker,
.etm-badge {
  display: inline-flex;
  background: #fff7ec;
  color: var(--etm-accent-dark);
  border: 1px solid #f0d4b8;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.etm-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--etm-accent);
  color: #ffffff;
  border: 0;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.etm-button:hover {
  background: var(--etm-accent-dark);
}

.etm-button.light,
.etm-button-secondary {
  background: #ffffff;
  color: var(--etm-accent-dark);
}

.etm-button.small {
  padding: 10px 14px;
  font-size: 11px;
  margin-top: 12px;
}

/* Sections */

.etm-section {
  padding: 56px 0;
}

.etm-section-head {
  display: block;
  margin-bottom: 24px;
}

.etm-section-head p {
  max-width: 760px;
  color: var(--etm-muted);
}

.etm-section h2,
.etm-page-title h1 {
  font-family: var(--etm-serif);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  margin: 0 0 8px;
}

.etm-section-head h2 a:hover {
  color: var(--etm-accent-dark);
}

/* Cards */

.etm-card {
  background: var(--etm-card);
  border: 1px solid var(--etm-line);
  border-radius: var(--etm-radius);
  box-shadow: 0 10px 25px rgba(46, 35, 24, 0.06);
  overflow: hidden;
}

.etm-card-pad {
  padding: 18px;
}

.etm-card h3 {
  margin-top: 0;
}

.etm-hotel-card img,
.etm-region-card img,
.etm-post-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

/* Grids */

.etm-weather-grid,
.etm-price-grid,
.etm-hotel-grid,
.etm-region-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.etm-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.etm-icon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
  color: var(--etm-muted);
}

/* Transparency / About */

.etm-transparency {
  padding: 56px 0 32px;
}

.etm-transparency-box {
  background: #fff8ee;
  border: 1px solid #efd5b6;
  border-radius: var(--etm-radius);
  box-shadow: 0 10px 25px rgba(46, 35, 24, 0.06);
  padding: 42px;
}

.etm-transparency-box .etm-section-head {
  display: block;
  margin-bottom: 32px;
}

.etm-transparency-box .etm-section-head h2 a {
  color: var(--etm-accent-dark);
}

.etm-transparency-box .etm-icon-grid div {
  text-align: left;
}

/* Utility */

.is-good {
  color: var(--etm-good) !important;
}

.is-up {
  color: var(--etm-up) !important;
}

/* Footer */

.etm-footer {
  background: #17202a;
  color: #dfe7ed;
  margin-top: 40px;
  padding: 54px 0;
}

.etm-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 36px;
}

.etm-footer-logo {
  height: 48px;
  margin-bottom: 14px;
}

/* Pages */

.etm-page-title {
  padding: 56px 0 20px;
}

.etm-page-content {
  margin-bottom: 40px;
}

.etm-content {
  background: #ffffff;
  border-radius: var(--etm-radius);
  padding: 32px;
  border: 1px solid var(--etm-line);
}

/* Responsive */

@media (max-width: 900px) {
  .etm-menu-toggle {
    display: block;
  }

  .etm-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid var(--etm-line);
    padding: 20px;
  }

  .etm-nav.is-open {
    display: block;
  }

  .etm-nav ul {
    display: grid;
    gap: 14px;
  }

  .etm-weather-grid,
  .etm-price-grid,
  .etm-region-grid,
  .etm-hotel-grid,
  .etm-post-grid,
  .etm-icon-grid {
    grid-template-columns: 1fr 1fr;
  }

  .etm-footer-grid {
    grid-template-columns: 1fr;
  }

  .etm-hero {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .etm-container {
    width: min(100% - 26px, 1180px);
  }

  .etm-weather-grid,
  .etm-price-grid,
  .etm-region-grid,
  .etm-hotel-grid,
  .etm-post-grid,
  .etm-icon-grid {
    grid-template-columns: 1fr;
  }

  .etm-hero h1 {
    font-size: 42px;
  }

  .etm-hero-content {
    padding: 70px 0;
  }

  .etm-content {
    padding: 22px;
  }

  .etm-transparency-box {
    padding: 26px;
  }
}
	
/* A1.4 · Card Polish */

.etm-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.etm-card[href]:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(46, 35, 24, 0.12);
  border-color: #dfc8aa;
}

.etm-card h3 {
  font-size: 22px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.etm-card p {
  color: var(--etm-muted);
  font-size: 16px;
  line-height: 1.55;
}

.etm-card img {
  height: 220px;
  object-fit: cover;
}

.etm-region-card,
.etm-hotel-card,
.etm-post-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.etm-card-pad {
  flex: 1;
}

@media (max-width: 620px) {
  .etm-card img {
    height: 210px;
  }
}
	
/* A2.4 · Hotel Meta Badges */

.etm-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
}

.etm-card-meta span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #fff7ec;
  border: 1px solid #f0d4b8;
  color: var(--etm-accent-dark);
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}