@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --sand-0: #fbf6ef;
  --sand-1: #f1e5d8;
  --sand-2: #dfcdbb;
  --sand-3: #c9ad96;
  --walnut-0: #946849;
  --walnut-1: #7d5a43;
  --walnut-2: #5f3f2b;
  --walnut-3: #2f2015;
  --cream: rgba(255, 251, 246, 0.9);
  --panel: rgba(255, 251, 246, 0.86);
  --panel-strong: rgba(255, 251, 246, 0.96);
  --line: rgba(86, 60, 43, 0.14);
  --line-strong: rgba(86, 60, 43, 0.24);
  --text: #2f2015;
  --muted: #78604d;
  --accent: #80583c;
  --accent-soft: #946849;
  --ok: #3e7e4d;
  --warn: #b77429;
  --danger: #aa4f41;
  --shadow: 0 26px 56px rgba(70, 44, 28, 0.11);
  --radius: 30px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  position: relative;
  color: var(--text);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(194, 156, 124, 0.24), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(125, 90, 67, 0.14), transparent 26%),
    linear-gradient(180deg, #fbf6ef 0%, var(--sand-0) 42%, var(--sand-1) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.06)),
    url("../img/walnussholz.jpeg") center / cover no-repeat;
  opacity: 0.05;
  mix-blend-mode: multiply;
}

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

a:hover {
  text-decoration: underline;
}

button,
input,
select {
  font: inherit;
}

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

.hidden {
  display: none !important;
}

.page {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 26px 0 52px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 251, 246, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: var(--text);
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 22px rgba(86, 60, 43, 0.13);
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand h1,
.brand-title {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 0.95;
  font-weight: 700;
}

.brand p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--text);
  background: rgba(255, 255, 255, 0.36);
}

.nav a.active,
.nav a:hover {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.card,
.section-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  margin-bottom: 24px;
}

.hero .card,
.section-card {
  padding: 28px;
}

.hero-copy {
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto 22px 18px auto;
  width: 140px;
  height: 84px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.08)),
    url("../img/swiss_airline_wing_out_of_window.jpg") center / cover no-repeat;
  opacity: 0.2;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(247, 250, 248, 0.8)),
    url("../img/340_in_airport_wide_upfront_symetric.jpg") center / cover no-repeat;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.16));
  opacity: 0.34;
}

.hero-globe {
  position: absolute;
  right: -8%;
  bottom: -12%;
  width: min(78%, 420px);
  filter: drop-shadow(0 24px 42px rgba(86, 60, 43, 0.16));
}

.hero-floating-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  width: min(76%, 300px);
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h2,
.section-title {
  margin: 0 0 12px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.95;
}

.lead,
.muted {
  color: var(--muted);
  line-height: 1.7;
}

.lead {
  margin: 0;
  font-size: 16px;
}

.hero-actions,
.account-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.button,
button.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 0;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, opacity 0.16s ease;
}

.button:hover,
button.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(19, 45, 64, 0.14);
  text-decoration: none;
}

.button.primary,
.button.secondary,
.button.ghost,
.button.apple,
button.button.primary,
button.button.secondary,
button.button.ghost,
button.button.apple {
  overflow: hidden;
}

.button.primary::before,
.button.secondary::before,
.button.ghost::before,
.button.apple::before,
button.button.primary::before,
button.button.secondary::before,
button.button.ghost::before,
button.button.apple::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  opacity: 0.4;
  pointer-events: none;
}

.button.primary,
button.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--walnut-1), var(--accent));
  box-shadow: 0 16px 28px rgba(194, 156, 124, 0.16);
}

.button.secondary,
button.button.secondary {
  color: var(--text);
  border: 1px solid var(--line-strong);
  background: rgba(255, 251, 246, 0.72);
}

.button.ghost,
button.button.ghost {
  color: var(--text);
  border: 1px solid var(--line);
  background: rgba(255, 251, 246, 0.52);
}

.button.apple,
button.button.apple {
  width: 100%;
  color: #20150f;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 251, 246, 0.86);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
  font-weight: 700;
}

.status-badge.ok {
  color: var(--ok);
}

.status-badge.warn {
  color: var(--warn);
}

.status-badge.error {
  color: var(--danger);
}

.message {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.6;
}

.message.show {
  display: block;
}

.message.success {
  color: #255733;
  background: rgba(111, 183, 123, 0.12);
  border-color: rgba(111, 183, 123, 0.22);
}

.message.error {
  color: #813c31;
  background: rgba(207, 109, 93, 0.12);
  border-color: rgba(207, 109, 93, 0.22);
}

.message.info {
  color: #65472e;
  background: rgba(155, 121, 92, 0.11);
  border-color: rgba(155, 121, 92, 0.22);
}

.info-stack {
  display: grid;
  gap: 12px;
}

.info-card {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.64);
}

.info-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-value {
  font-weight: 700;
}

.results-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.top-flights-list {
  display: grid;
  gap: 16px;
}

.offer-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(235, 244, 241, 0.86)),
    rgba(255, 251, 246, 0.9);
  overflow: hidden;
}

.offer-card::after {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  right: 14px;
  width: 9px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, var(--walnut-0), var(--accent));
}

.offer-card__main {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.offer-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.offer-card__airline {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.flight-logo {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.flight-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.flight-logo span {
  font-weight: 800;
  letter-spacing: 0.08em;
}

.offer-card__carrier {
  min-width: 0;
}

.offer-card__carrier strong {
  display: block;
  font-size: 18px;
}

.offer-card__carrier span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 2px;
}

.offer-card__route {
  display: grid;
  grid-template-columns: 1fr minmax(180px, 0.85fr) 1fr;
  gap: 18px;
  align-items: center;
}

.route-node {
  display: grid;
  gap: 4px;
}

.route-node--right {
  justify-items: end;
  text-align: right;
}

.route-node__code {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 0.92;
}

.route-node__name {
  font-size: 15px;
  font-weight: 700;
}

.route-node__meta {
  color: var(--muted);
  font-size: 13px;
}

.route-link {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.route-link__label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.route-link__line {
  position: relative;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(194, 156, 124, 0.12), rgba(194, 156, 124, 0.72), rgba(125, 90, 67, 0.18));
}

.route-link__line::before,
.route-link__line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 1.5px solid rgba(194, 156, 124, 0.72);
}

.route-link__line::before {
  left: -1px;
  border-left: 1.5px solid rgba(194, 156, 124, 0.72);
  transform: translateY(-50%) rotate(-45deg);
}

.route-link__line::after {
  right: -1px;
  border-right: 1.5px solid rgba(194, 156, 124, 0.72);
  transform: translateY(-50%) rotate(45deg);
}

.route-link__dates {
  font-size: 14px;
  font-weight: 700;
}

.offer-card__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill,
.fact-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.offer-card__price {
  display: grid;
  align-content: space-between;
  justify-items: end;
  gap: 12px;
  padding-right: 14px;
  text-align: right;
}

.offer-card__price strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 0.92;
}

.offer-card__price span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.offer-card__actions {
  display: grid;
  gap: 10px;
  width: 100%;
}

.empty-state {
  padding: 28px;
  border: 1px dashed rgba(194, 156, 124, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.3);
  color: var(--muted);
  text-align: center;
  line-height: 1.7;
}

.admin-heading {
  font-size: clamp(28px, 3.2vw, 40px) !important;
}

.admin-subtitle {
  margin: 0 0 18px;
  font-family: "Fraunces", Georgia, serif;
  font-size: 28px;
  line-height: 1;
}

.admin-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.admin-metric-card {
  display: grid;
  gap: 10px;
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.64);
}

.admin-metric-card.tone-brand {
  border-color: rgba(194, 156, 124, 0.26);
}

.admin-metric-card.tone-soft {
  border-color: rgba(86, 60, 43, 0.18);
}

.admin-metric-card.tone-ok {
  border-color: rgba(62, 126, 77, 0.24);
}

.admin-metric-card.tone-warn {
  border-color: rgba(183, 116, 41, 0.24);
}

.admin-metric-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-metric-value {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 0.92;
}

.admin-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 24px 0;
}

.admin-kv-grid {
  display: grid;
  gap: 12px;
}

.admin-kv-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.admin-kv-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.admin-kv-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.admin-kv-value {
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.admin-missing-grid {
  display: grid;
  gap: 14px;
}

.admin-missing-card {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.64);
}

.admin-missing-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.admin-missing-head strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 28px;
  line-height: 1;
}

.admin-missing-meta {
  color: var(--muted);
  font-size: 13px;
}

.admin-missing-context {
  font-size: 13px;
  font-weight: 700;
}

.admin-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.admin-filter-bar .button {
  min-height: 42px;
  padding: 0 14px;
}

.admin-filter-bar .button.active {
  border-color: rgba(194, 156, 124, 0.28);
  background: linear-gradient(135deg, var(--walnut-1), var(--accent));
  color: #fff;
}

.admin-user-grid,
.admin-error-grid {
  display: grid;
  gap: 14px;
}

.admin-user-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.8fr);
  gap: 16px;
  align-items: start;
  padding: 18px 20px;
  border: 1px solid rgba(86, 60, 43, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.44);
}

.admin-user-card strong,
.admin-user-card span {
  display: block;
}

.admin-user-card strong {
  overflow-wrap: anywhere;
  font-size: 16px;
}

.admin-user-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.admin-user-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.admin-user-meta span {
  margin: 0;
  padding: 6px 10px;
  border: 1px solid rgba(86, 60, 43, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  font-weight: 700;
}

.admin-error-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.admin-error-summary .admin-metric-card {
  min-height: 110px;
}

.admin-error-card {
  display: grid;
  gap: 12px;
  padding: 18px 20px;
  border: 1px solid rgba(86, 60, 43, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.44);
}

.admin-error-card.error {
  border-color: rgba(185, 86, 72, 0.24);
}

.admin-error-card.warn {
  border-color: rgba(183, 116, 41, 0.3);
}

.admin-error-card.ok {
  border-color: rgba(62, 126, 77, 0.22);
}

.admin-error-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
}

.admin-error-head strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
  line-height: 1.2;
}

.admin-error-code {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border: 1px solid rgba(86, 60, 43, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.admin-error-message {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.admin-error-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-error-meta span {
  padding: 6px 10px;
  border: 1px solid rgba(86, 60, 43, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.admin-error-details {
  border: 1px solid rgba(86, 60, 43, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.34);
  overflow: hidden;
}

.admin-error-details summary {
  cursor: pointer;
  padding: 12px 14px;
  color: var(--text);
  font-size: 13px;
  font-weight: 900;
}

.admin-error-details pre {
  max-height: 320px;
  margin: 0;
  padding: 14px;
  overflow: auto;
  border-top: 1px solid rgba(86, 60, 43, 0.12);
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.admin-error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.center-shell {
  width: 100%;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.login-body .page {
  width: 100%;
  max-width: none;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.login-window {
  position: relative;
  width: min(470px, calc(100vw - 32px));
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 251, 246, 0.9);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.login-window::before {
  content: "";
  position: absolute;
  inset: auto -18px -36px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.88), transparent 62%),
    url("../img/swiss_airline_phone_wallpaper.jpg") center / cover no-repeat;
  opacity: 0.14;
}

.login-window__content {
  position: relative;
  z-index: 1;
}

.login-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  color: var(--text);
}

.login-brand:hover {
  text-decoration: none;
}

.login-brand h1 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 34px;
  line-height: 0.96;
}

.login-brand p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.login-globe {
  width: 100%;
  height: 178px;
  margin: 22px 0 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 18px 34px rgba(19, 45, 64, 0.12);
  filter: none;
}

.auth-stack {
  display: grid;
  gap: 12px;
}

.google-login-button {
  display: grid;
  min-height: 48px;
  width: 100%;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.google-login-button > div,
.google-login-button iframe {
  width: 100% !important;
}

.google-login-button.is-loading {
  opacity: 0.72;
  pointer-events: none;
}

.footer-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.seo-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: 0;
  align-items: stretch;
  min-height: 460px;
  margin-bottom: 24px;
  overflow: hidden;
}

.seo-showcase__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4.6vw, 58px);
}

.seo-showcase__copy h1 {
  max-width: 760px;
  margin: 12px 0 14px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(42px, 4rem, 66px);
  line-height: 1;
}

.seo-showcase__copy .lead {
  max-width: 720px;
  font-size: 17px;
}

.seo-showcase__media {
  position: relative;
  min-width: 0;
  min-height: 460px;
  margin: 0;
  border-left: 1px solid var(--line);
  overflow: hidden;
  background: var(--sand-1);
}

.seo-showcase__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(47, 32, 21, 0.02), rgba(47, 32, 21, 0.22)),
    radial-gradient(circle at 22% 18%, rgba(255, 251, 246, 0.18), transparent 38%);
  pointer-events: none;
}

.seo-showcase__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.seo-showcase--destination .seo-showcase__media img {
  object-position: center center;
}

.seo-showcase--fair .seo-showcase__media img {
  object-position: 42% center;
}

.seo-showcase--zrh .seo-showcase__media img {
  object-position: center center;
}

.seo-showcase--deals .seo-showcase__media img {
  object-position: center center;
}

.seo-showcase--article .seo-showcase__media img {
  object-position: center center;
}

.seo-showcase--standby .seo-showcase__media img {
  object-position: 44% center;
}

.seo-media-caption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 251, 246, 0.44);
  border-radius: 20px;
  background: rgba(255, 251, 246, 0.86);
  box-shadow: 0 18px 38px rgba(47, 32, 21, 0.18);
  backdrop-filter: blur(18px);
}

.seo-media-caption strong,
.seo-media-caption span {
  min-width: 0;
}

.seo-media-caption strong {
  font-size: 16px;
  line-height: 1.25;
}

.seo-media-caption span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.seo-promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 24px;
}

.seo-promise-card {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 251, 246, 0.82);
  box-shadow: 0 18px 34px rgba(70, 44, 28, 0.08);
}

.seo-promise-card b {
  display: block;
  font-size: 17px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.seo-promise-card span {
  color: var(--muted);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.seo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}

.seo-copy h1,
.seo-copy h2 {
  margin: 12px 0 12px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.92;
}

.seo-copy .lead {
  max-width: 720px;
}

.seo-proof {
  display: grid;
  gap: 12px;
}

.seo-media-card {
  min-height: 100%;
  padding: 0;
  overflow: hidden;
}

.seo-media-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.seo-media-card__body {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.seo-media-card__body strong {
  font-size: 18px;
  line-height: 1.3;
}

.seo-media-card__body span {
  color: var(--muted);
  line-height: 1.6;
}

.seo-proof-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.54);
}

.seo-proof-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.seo-proof-card span {
  color: var(--muted);
  line-height: 1.6;
}

.seo-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  align-items: start;
  gap: 24px;
  margin-bottom: 24px;
}

.seo-article {
  display: grid;
  gap: 20px;
}

.seo-article h3 {
  margin: 0 0 10px;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.seo-article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.seo-article ul {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.seo-link-list {
  display: grid;
  gap: 10px;
}

.seo-link-list a {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--text);
  font-weight: 800;
}

.seo-link-list a:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.78);
}

.seo-deal-board,
.seo-strategy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 24px;
}

.seo-deal-card,
.seo-strategy-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
}

.seo-deal-card {
  display: grid;
  gap: 12px;
}

.seo-deal-card__route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-deal-card strong {
  font-family: "Fraunces", Georgia, serif;
  font-size: 28px;
  line-height: 1;
}

.seo-deal-card span,
.seo-strategy-card span {
  color: var(--muted);
  line-height: 1.6;
}

.seo-strategy-card b {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.article-rhythm {
  display: grid;
  gap: 22px;
}

.article-callout {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(145, 102, 73, 0.2);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(145, 102, 73, 0.12), rgba(255, 251, 246, 0.72)),
    rgba(255, 255, 255, 0.58);
}

.article-callout strong {
  font-size: 18px;
  line-height: 1.25;
}

.booking-window-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.booking-window-card {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
}

.booking-window-card strong {
  font-size: 17px;
  line-height: 1.25;
}

.booking-window-card span {
  color: var(--muted);
  line-height: 1.65;
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.keyword-cloud span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.seo-aside-spaced {
  margin-top: 18px;
}

.seo-showcase--guide {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.78fr);
  min-height: 380px;
}

.seo-showcase--guide .seo-showcase__copy {
  padding: clamp(24px, 2.5vw, 32px);
}

.seo-showcase--guide .seo-showcase__copy h1 {
  max-width: 760px;
  font-size: clamp(34px, 2.7rem, 44px);
  line-height: 1;
}

.seo-showcase--guide .seo-showcase__copy .lead {
  max-width: 700px;
  font-size: 16px;
  line-height: 1.68;
}

.seo-showcase--guide .seo-showcase__media {
  min-height: 380px;
}

.article-catchphrases {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 14px 0 2px;
}

.article-catchphrases span {
  padding: 7px 10px;
  border: 1px solid rgba(145, 102, 73, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.guide-intro-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 24px;
}

.guide-intro-card {
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 251, 246, 0.84);
  box-shadow: 0 18px 34px rgba(70, 44, 28, 0.08);
}

.guide-intro-card b,
.guide-point b {
  line-height: 1.25;
}

.guide-intro-card span,
.guide-point span,
.guide-soft-cta p,
.guide-source-list a {
  color: var(--muted);
  line-height: 1.65;
}

.guide-layout {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
}

.guide-article {
  gap: 26px;
}

.guide-section {
  display: grid;
  gap: 14px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(86, 60, 43, 0.1);
}

.guide-section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.guide-section h2 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
}

.guide-section p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.82;
}

.guide-section strong {
  color: var(--text);
}

.guide-point-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.guide-point {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
}

.guide-point::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.48em;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  box-shadow: 0 0 0 5px rgba(145, 102, 73, 0.1);
}

.guide-point div {
  display: grid;
  gap: 6px;
}

.guide-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.guide-image-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
}

.guide-image-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.guide-image-card figcaption {
  display: grid;
  gap: 5px;
  padding: 14px 16px 16px;
}

.guide-image-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.guide-soft-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(145, 102, 73, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(145, 102, 73, 0.1), rgba(255, 251, 246, 0.7)),
    rgba(255, 255, 255, 0.58);
}

.guide-soft-cta p {
  margin: 4px 0 0;
}

.guide-aside {
  display: grid;
  gap: 16px;
}

.guide-aside-media {
  overflow: hidden;
  padding: 0;
}

.guide-aside-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.guide-aside-media div {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.guide-source-list {
  display: grid;
  gap: 10px;
}

.guide-source-list a {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.52);
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .seo-showcase,
  .seo-hero,
  .seo-content-grid,
  .seo-promise-grid,
  .seo-deal-board,
  .seo-strategy-grid,
  .guide-intro-grid,
  .guide-layout,
  .guide-point-grid,
  .guide-media-grid,
  .guide-soft-cta {
    grid-template-columns: 1fr;
  }

  .seo-showcase__media {
    min-height: 320px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .booking-window-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 260px;
  }
}

@media (max-width: 760px) {
  .page {
    width: min(var(--max), calc(100% - 18px));
    padding-top: 18px;
  }

  .topbar {
    padding: 12px 14px;
    border-radius: 20px;
  }

  .brand {
    width: 100%;
  }

  .nav {
    width: 100%;
  }

  .nav a {
    flex: 1 1 0;
  }

  .hero .card,
  .section-card {
    padding: 22px;
  }

  .seo-showcase {
    min-height: 0;
    border-radius: 22px;
  }

  .seo-showcase__copy {
    padding: 24px;
  }

  .seo-showcase__copy h1 {
    font-size: clamp(34px, 2.9rem, 46px);
  }

  .seo-media-caption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 14px;
  }

  .offer-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }

  .admin-metric-grid,
  .admin-detail-grid,
  .admin-error-summary,
  .admin-user-card,
  .admin-error-head {
    grid-template-columns: 1fr;
  }

  .admin-filter-bar,
  .admin-user-meta,
  .admin-error-actions {
    justify-content: flex-start;
  }

  .offer-card__route {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .route-node,
  .route-node--right {
    justify-items: start;
    text-align: left;
  }

  .offer-card__price {
    justify-items: start;
    padding-right: 0;
    text-align: left;
  }

  .hero-globe {
    width: min(88%, 340px);
    right: -12%;
  }

  .hero-floating-card {
    width: min(100%, 300px);
  }

  .login-window {
    padding: 24px;
    border-radius: 18px;
  }
}
