/* museum-info.cyou — Museum Info Desk Sharm LLC
   Azure + copper + sand · stacked header · stats-left hero · midk- */

:root {
  --midk-azure: #1e6b9a;
  --midk-azure-dk: #124a6e;
  --midk-copper: #b87333;
  --midk-copper-lt: #d4924f;
  --midk-sand: #f4ebe1;
  --midk-sand-dk: #e6d5c4;
  --midk-white: #fffcfa;
  --midk-ink: #1c2428;
  --midk-soft: #5a656c;
  --midk-rule: #d0c4b6;
  --midk-max: 1170px;
  --midk-head: Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --midk-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--midk-body);
  font-size: 16px;
  line-height: 1.68;
  color: var(--midk-ink);
  background: var(--midk-sand);
}

h1, h2, h3, h4 {
  font-family: var(--midk-head);
  font-weight: 800;
  color: var(--midk-azure-dk);
  line-height: 1.2;
  margin: 0 0 0.85rem;
  letter-spacing: -0.015em;
}

p { margin: 0 0 1.1rem; }

a { color: var(--midk-copper); }

a:hover { color: var(--midk-azure-dk); }

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

:focus-visible {
  outline: 2px solid var(--midk-copper);
  outline-offset: 3px;
}

.midk-container {
  max-width: var(--midk-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* Stacked header — brand band + nav strip */
.midk-brandband {
  background: var(--midk-azure);
  color: #fff;
  text-align: center;
  padding: 18px 0 14px;
}

.midk-brandband a {
  text-decoration: none;
  color: #fff;
}

.midk-brandband__title {
  font-family: var(--midk-head);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.midk-brandband__sub {
  font-size: 0.82rem;
  opacity: 0.85;
  margin-top: 4px;
}

.midk-navbar {
  background: var(--midk-white);
  border-bottom: 1px solid var(--midk-rule);
  position: sticky;
  top: 0;
  z-index: 80;
}

.midk-navbar__row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  min-height: 52px;
}

.midk-navlist {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  gap: 2px;
}

.midk-navlist a {
  text-decoration: none;
  color: var(--midk-ink);
  padding: 10px 13px;
  font-size: 0.9rem;
  font-weight: 600;
}

.midk-navlist a:hover,
.midk-navlist a.is-active {
  color: var(--midk-azure);
  background: rgba(30, 107, 154, 0.08);
}

.midk-navlist a.midk-navlist__desk {
  background: var(--midk-copper);
  color: #fff;
  margin-left: 8px;
}

.midk-navlist a.midk-navlist__desk:hover {
  background: var(--midk-copper-lt);
  color: #fff;
}

.midk-navbtn {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  right: 16px;
  top: 8px;
}

.midk-navbtn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--midk-azure);
  margin: 5px 0;
}

.midk-navbar { position: sticky; }

.midk-navbar .midk-container { position: relative; }

/* Stats-left hero */
.midk-hero {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: center;
  padding: 48px 0 56px;
}

.midk-hero__stats {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--midk-azure-dk);
  color: #fff;
  padding: 28px 22px;
}

.midk-hero__stats li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.midk-hero__stats li:last-child { border-bottom: 0; }

.midk-hero__stats strong {
  display: block;
  font-family: var(--midk-head);
  font-size: 2rem;
  color: var(--midk-copper-lt);
}

.midk-hero__stats span {
  font-size: 0.82rem;
  opacity: 0.9;
}

.midk-hero__eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--midk-copper);
  font-weight: 700;
}

.midk-hero h1 { font-size: clamp(1.95rem, 4vw, 2.65rem); }

.midk-hero__lead { color: var(--midk-soft); font-size: 1.04rem; }

/* Sharp buttons */
.midk-btn {
  display: inline-block;
  padding: 11px 20px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 0.93rem;
  font-family: inherit;
}

.midk-btn--solid {
  background: var(--midk-azure);
  color: #fff;
  border-color: var(--midk-azure);
}

.midk-btn--solid:hover {
  background: var(--midk-azure-dk);
  color: #fff;
}

.midk-btn--ghost {
  background: transparent;
  color: var(--midk-azure-dk);
  border-color: var(--midk-azure-dk);
}

.midk-btn--ghost:hover {
  background: var(--midk-sand-dk);
}

.midk-btnrow {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

.midk-section { padding: 46px 0; }

.midk-section--light { background: var(--midk-white); }

.midk-section__intro { max-width: 62ch; margin-bottom: 26px; }

.midk-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.midk-card {
  background: var(--midk-white);
  border: 1px solid var(--midk-rule);
  padding: 20px 18px 22px;
  text-align: center;
}

.midk-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  background: var(--midk-sand);
  border: 2px solid var(--midk-copper);
  display: grid;
  place-items: center;
  font-family: var(--midk-head);
  font-weight: 800;
  color: var(--midk-azure);
  font-size: 0.85rem;
}

.midk-card--photo {
  padding: 0;
  text-align: left;
  overflow: hidden;
}

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

.midk-card--photo .midk-card__body { padding: 16px 18px 20px; }

.midk-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.midk-faq details {
  border: 1px solid var(--midk-rule);
  background: var(--midk-white);
  margin-bottom: 8px;
  padding: 12px 16px;
}

.midk-faq summary { cursor: pointer; font-weight: 700; }

.midk-table {
  width: 100%;
  border-collapse: collapse;
}

.midk-table th,
.midk-table td {
  border: 1px solid var(--midk-rule);
  padding: 10px 12px;
  text-align: left;
}

.midk-table th {
  background: var(--midk-azure);
  color: #fff;
}

.midk-form label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 4px;
}

.midk-form input,
.midk-form select,
.midk-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--midk-rule);
  margin-bottom: 14px;
  font: inherit;
}

.midk-form textarea { min-height: 125px; resize: vertical; }

.midk-form__status { font-weight: 700; color: var(--midk-azure); }

.midk-cta {
  background: var(--midk-copper);
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.midk-cta a { color: var(--midk-sand); }

.midk-pagehead { padding: 40px 0 16px; }

.midk-pagehead h1 { font-size: clamp(1.85rem, 4vw, 2.45rem); }

.midk-content { max-width: 70ch; }

.midk-content--wide { max-width: none; }

.midk-team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.midk-team figure {
  margin: 0;
  text-align: center;
  background: var(--midk-white);
  border: 1px solid var(--midk-rule);
  padding: 14px;
}

.midk-team img {
  width: 92px;
  height: 92px;
  border-radius: 4px;
  object-fit: cover;
  margin: 0 auto 10px;
}

.midk-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.midk-price {
  background: var(--midk-white);
  border: 2px solid var(--midk-rule);
  padding: 24px 18px;
}

.midk-price--focus {
  border-color: var(--midk-copper);
  box-shadow: inset 0 0 0 1px var(--midk-copper);
}

.midk-price__amt {
  font-family: var(--midk-head);
  font-size: 2rem;
  color: var(--midk-copper);
  font-weight: 800;
}

/* Footer — 2 wide + 1 narrow */
.midk-footer {
  background: var(--midk-azure-dk);
  color: #c5d4de;
  margin-top: 44px;
}

.midk-footer a { color: var(--midk-copper-lt); }

.midk-footer__layout {
  display: grid;
  grid-template-columns: 1.4fr 1.4fr 0.9fr;
  gap: 24px;
  padding: 38px 0 26px;
}

.midk-footer__label {
  color: #fff;
  font-family: var(--midk-head);
  font-weight: 800;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.midk-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.midk-footer li { margin-bottom: 7px; }

.midk-footer address {
  font-style: normal;
  line-height: 1.6;
  font-size: 0.88rem;
}

.midk-footer__legal {
  font-size: 0.82rem;
  opacity: 0.85;
}

.midk-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 0;
  font-size: 0.82rem;
}

@media (max-width: 870px) {
  .midk-hero { grid-template-columns: 1fr; }
  .midk-hero__stats { display: flex; flex-wrap: wrap; gap: 0; }
  .midk-hero__stats li { flex: 1 1 33%; border-bottom: 0; border-right: 1px solid rgba(255,255,255,0.12); padding: 12px; }
  .midk-cards, .midk-pricing, .midk-team { grid-template-columns: 1fr 1fr; }
  .midk-split { grid-template-columns: 1fr; }
  .midk-footer__layout { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .midk-navbtn { display: block; }
  .midk-navlist {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 8px 0 12px;
  }
  .midk-navlist.is-open { display: flex; }
  .midk-navbar__row { justify-content: flex-start; }
  .midk-cards, .midk-pricing, .midk-team { grid-template-columns: 1fr; }
  .midk-footer__layout { grid-template-columns: 1fr; }
  .midk-hero__stats li { flex: 1 1 50%; }
}

@media (max-width: 430px) {
  .midk-brandband__title { font-size: 1.1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
