.kmer-static-page {
  --kmer-navy: #071b4d;
  --kmer-ink: #0b1744;
  --kmer-muted: #4d5b78;
  --kmer-accent: #d88910;
  --kmer-border: #dde4ee;
  --kmer-soft: #f7f9fc;
  color: var(--kmer-ink);
  background: #fff;
  padding-top: var(--hotels-header-offset, 78px);
}

.kmer-static-shell {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.kmer-static-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 88px 24px 72px;
  overflow: hidden;
  background-image: linear-gradient(rgba(7, 18, 48, .62), rgba(7, 18, 48, .58)), var(--kmer-hero-image);
  background-size: cover;
  background-position: center;
  text-align: center;
}

.kmer-static-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 6vw, 64px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

.kmer-static-hero p {
  max-width: 680px;
  margin: 20px auto 0;
  color: #fff;
  font-size: 21px;
  line-height: 1.45;
}

.kmer-hero-search {
  width: min(480px, 100%);
  margin: 28px auto 0;
  position: relative;
}

.kmer-hero-search svg {
  position: absolute;
  top: 50%;
  left: 20px;
  width: 21px;
  height: 21px;
  transform: translateY(-50%);
  stroke: var(--kmer-navy);
}

.kmer-hero-search input {
  width: 100%;
  height: 56px;
  border: 0;
  border-radius: 8px;
  padding: 0 20px 0 56px;
  box-shadow: 0 18px 45px rgba(7, 21, 77, .18);
  color: var(--kmer-navy);
}

.kmer-static-section {
  padding: 58px 0;
}

.kmer-section-title {
  margin: 0 0 30px;
  color: var(--kmer-navy);
  font-size: 30px;
  line-height: 1.2;
  font-weight: 900;
  text-align: center;
}

.kmer-card-grid,
.kmer-contact-card-grid {
  display: grid;
  gap: 22px;
}

.kmer-card-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.kmer-contact-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kmer-icon-card,
.kmer-contact-card,
.kmer-panel {
  border: 1px solid var(--kmer-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(7, 21, 77, .05);
}

.kmer-icon-card,
.kmer-contact-card {
  min-height: 188px;
  padding: 28px 20px;
  text-align: center;
}

.kmer-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--kmer-accent);
}

.kmer-icon-card > .kmer-icon,
.kmer-contact-card > .kmer-icon {
  width: 48px;
  height: 48px;
}

.kmer-icon svg,
.kmer-mini-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kmer-icon-card h3,
.kmer-contact-card h3 {
  margin: 16px 0 10px;
  color: var(--kmer-navy);
  font-size: 16px;
  font-weight: 900;
}

.kmer-icon-card p,
.kmer-contact-card p,
.kmer-panel p {
  margin: 0;
  color: var(--kmer-muted);
  line-height: 1.55;
}

.kmer-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--kmer-accent);
  font-weight: 800;
}

.kmer-faq-layout,
.kmer-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.kmer-faq-list,
.kmer-contact-faqs {
  overflow: hidden;
  border: 1px solid var(--kmer-border);
  border-radius: 8px;
  background: #fff;
}

.kmer-faq-list .accordion-item,
.kmer-contact-faqs .accordion-item {
  border: 0;
  border-bottom: 1px solid var(--kmer-border);
  background: transparent;
}

.kmer-faq-list .accordion-item:last-child,
.kmer-contact-faqs .accordion-item:last-child {
  border-bottom: 0;
}

.kmer-faq-list button,
.kmer-contact-faqs button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 24px;
  border: 0;
  background: #fff;
  color: var(--kmer-navy);
  font-weight: 900;
  text-align: left;
  font-size: 15px;
  line-height: 1.35;
}

.kmer-faq-list button span,
.kmer-contact-faqs button span {
  flex: 0 0 auto;
  color: var(--kmer-navy);
  font-size: 16px;
  line-height: 1;
}

.kmer-faq-list .accordion-body,
.kmer-contact-faqs .accordion-body {
  padding: 0 24px 22px;
  color: var(--kmer-muted);
  line-height: 1.7;
}

.kmer-help-card {
  padding: 42px 34px;
  background: linear-gradient(135deg, #fff, #f4f5f7);
  text-align: center;
}

.kmer-help-card > .kmer-icon {
  width: 52px;
  height: 52px;
}

.kmer-help-card h2,
.kmer-panel h2 {
  margin: 16px 0 12px;
  color: var(--kmer-navy);
  font-size: 28px;
  line-height: 1.12;
  font-weight: 900;
}

.kmer-contact-list {
  display: grid;
  gap: 18px;
  margin: 26px 0;
  text-align: left;
}

.kmer-contact-list a {
  color: var(--kmer-navy);
}

.kmer-contact-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
}

.kmer-mini-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 50%;
  background: #fff;
  color: var(--kmer-navy);
}

.kmer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 28px;
  border: 0;
  border-radius: 8px;
  background: var(--kmer-accent);
  color: #fff;
  font-weight: 900;
}

.kmer-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kmer-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 38px;
  border: 1px solid var(--kmer-border);
  border-radius: 8px;
  background: #fff;
}

.kmer-benefit {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 22px 20px;
  border-right: 1px solid var(--kmer-border);
}

.kmer-benefit .kmer-icon {
  width: 32px;
  height: 32px;
}

.kmer-benefit:last-child {
  border-right: 0;
}

.kmer-benefit strong {
  display: block;
  color: var(--kmer-navy);
  margin-bottom: 6px;
}

.kmer-contact-hero-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 28px;
  color: #fff;
  font-weight: 900;
}

.kmer-contact-hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.kmer-contact-hero-badges svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kmer-panel {
  padding: 28px;
}

.kmer-contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.kmer-field-full {
  grid-column: 1 / -1;
}

.kmer-contact-form input,
.kmer-contact-form textarea {
  width: 100%;
  border: 1px solid var(--kmer-border);
  border-radius: 7px;
  background: #fff;
  color: var(--kmer-navy);
}

.kmer-contact-form input {
  height: 48px;
  padding: 0 16px;
}

.kmer-contact-form textarea {
  min-height: 130px;
  padding: 14px 16px;
  resize: vertical;
}

.kmer-check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--kmer-muted);
  font-size: 13px;
}

.kmer-check-row input {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--kmer-accent);
}

.kmer-map-card {
  overflow: hidden;
  padding: 0;
}

.kmer-map-card .kmer-panel-body {
  padding: 28px;
}

.kmer-map-frame {
  width: 100%;
  height: 235px;
  border: 0;
  display: block;
  background: #e8edf3;
}

.kmer-transfer-box {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 24px 28px;
  background: #fafafa;
}

.kmer-transfer-box .kmer-icon {
  width: 40px;
  height: 40px;
}

.kmer-contact-faq-section {
  padding-top: 10px;
}

.kmer-contact-faq-section .kmer-contact-faqs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: visible;
  border-left: 0;
  border-right: 0;
}

.kmer-contact-faq-section .accordion-item {
  border-bottom: 0;
  border-right: 1px solid var(--kmer-border);
  min-width: 0;
}

.kmer-contact-faq-section .accordion-item:last-child {
  border-right: 0;
}

.kmer-error {
  margin-top: 6px;
  color: #b42318;
  font-size: 12px;
}

.kmer-about-hero {
  min-height: 360px;
  justify-content: flex-start;
  text-align: left;
}

.kmer-about-hero .kmer-static-shell {
  width: min(1120px, calc(100% - 48px));
}

.kmer-about-eyebrow,
.kmer-section-eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--kmer-accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.kmer-about-hero .kmer-about-eyebrow {
  color: #fff;
}

.kmer-about-hero h1 {
  max-width: 570px;
  font-size: clamp(42px, 5.3vw, 62px);
  line-height: 1.12;
}

.kmer-about-hero h1 span {
  color: var(--kmer-accent);
}

.kmer-about-hero p {
  max-width: 560px;
  margin-left: 0;
}

.kmer-about-hero .kmer-button {
  margin-top: 22px;
}

.kmer-about-story,
.kmer-about-comfort {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 52px;
  align-items: center;
}

.kmer-about-gallery {
  display: grid;
  grid-template-columns: 1.35fr .7fr;
  gap: 14px;
}

.kmer-about-gallery img,
.kmer-about-comfort-img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.kmer-about-gallery-main {
  height: 330px;
  grid-row: span 2;
}

.kmer-about-gallery-small {
  height: 154px;
}

.kmer-about-copy h2,
.kmer-about-comfort h2 {
  margin: 0 0 20px;
  color: var(--kmer-navy);
  font-size: 34px;
  line-height: 1.16;
  font-weight: 900;
}

.kmer-about-copy p,
.kmer-about-comfort p {
  color: var(--kmer-muted);
  line-height: 1.7;
}

.kmer-about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.kmer-about-stat {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  border-right: 1px solid var(--kmer-border);
}

.kmer-about-stat:last-child {
  border-right: 0;
}

.kmer-about-stat .kmer-icon {
  width: 28px;
  height: 28px;
}

.kmer-about-stat strong {
  display: block;
  color: var(--kmer-navy);
  font-size: 22px;
  line-height: 1;
}

.kmer-about-values {
  background: #fafafa;
}

.kmer-values-grid,
.kmer-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.kmer-value-card {
  min-height: 170px;
}

.kmer-about-comfort {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
}

.kmer-about-checks {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.kmer-about-checks li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--kmer-navy);
}

.kmer-check-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--kmer-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}

.kmer-about-comfort-img {
  height: 260px;
}

.kmer-testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kmer-testimonial-card {
  padding: 24px;
}

.kmer-stars {
  color: var(--kmer-accent);
  font-size: 18px;
  letter-spacing: 2px;
}

.kmer-testimonial-author {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.kmer-testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

@media (max-width: 991px) {
  .kmer-card-grid,
  .kmer-contact-card-grid,
  .kmer-benefits,
  .kmer-contact-faq-section .kmer-contact-faqs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kmer-faq-layout,
  .kmer-contact-layout,
  .kmer-about-story,
  .kmer-about-comfort {
    grid-template-columns: 1fr;
  }

  .kmer-values-grid,
  .kmer-testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .kmer-static-shell {
    width: min(100% - 28px, 1120px);
  }

  .kmer-static-hero {
    min-height: 330px;
    padding: 56px 16px 44px;
  }

  .kmer-card-grid,
  .kmer-contact-card-grid,
  .kmer-benefits,
  .kmer-contact-faq-section .kmer-contact-faqs,
  .kmer-contact-form-grid,
  .kmer-values-grid,
  .kmer-testimonial-grid,
  .kmer-about-stats {
    grid-template-columns: 1fr;
  }

  .kmer-about-gallery {
    grid-template-columns: 1fr;
  }

  .kmer-about-gallery-main,
  .kmer-about-gallery-small,
  .kmer-about-comfort-img {
    height: 220px;
  }

  .kmer-benefit,
  .kmer-contact-faq-section .accordion-item {
    border-right: 0;
    border-bottom: 1px solid var(--kmer-border);
  }
}
