:root {
  --panel: #efe8e1;
  --max: 1360px;
}

body {
  line-height: 1.5;
}

.hero {
  padding: 34px 0 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 2.05fr);
  gap: 24px;
  align-items: stretch;
}

.hero-left-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
  height: 100%;
}

.panel {
  overflow: hidden;
  min-width: 0;
}

.hero-copy {
  padding: 28px 40px 30px 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.hero-logo {
  width: min(100%, 270px);
  height: auto;
  margin: 4px 0 18px;
  object-fit: contain;
}

.hero-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 2.9vw, 3.15rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  max-width: 10ch;
  padding-top: 0;
}

.accent {
  color: var(--accent);
}

.hero-copy p {
  font-size: 0.98rem;
  color: var(--muted);
  margin: 0 0 22px;
  max-width: 32ch;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.btn {
  padding: 14px 18px;
}

.btn-secondary {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}

.hero-price-panel {
  padding: 22px 22px 20px;
  background: linear-gradient(180deg, #f7f2ed 0%, #f2ebe4 100%);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero-price-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hero-price-panel .section-title {
  margin: 0 0 16px;
}

.hero-price-panel .section-title h3 {
  font-size: 1.35rem;
}

.hero-price-panel .price-grid {
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 0;
}

.hero-price-panel .price-box {
  padding: 14px 16px;
}

.hero-price-panel .price-box strong {
  font-size: 1.35rem;
}

.hero-price-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.95rem;
}

.booking-btn {
  display: block;
  width: 100%;
  margin-top: auto;
  text-align: center;
  font-size: 1rem;
  padding: 16px 22px;
}

.hero-stack {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 24px;
  min-width: 0;
}

.hero-visual {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.hero-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  background: rgba(162, 31, 90, 0.92);
  color: var(--white);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hero-badge strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 4px;
}

.features {
  padding: 28px;
  background: linear-gradient(180deg, #f3ede7 0%, #ede4db 100%);
  min-width: 0;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.features h3 {
  margin: 0 0 22px;
  font-size: 2rem;
  text-transform: uppercase;
  line-height: 1.1;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
}

.feature-item {
  padding: 18px 14px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  min-height: 118px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  min-width: 0;
}

.feature-item:nth-child(3n) {
  border-right: 0;
}

.feature-item:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1.5px solid rgba(162, 31, 90, 0.4);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 800;
  flex: 0 0 auto;
}

.feature-item strong {
  font-size: 1rem;
  text-transform: uppercase;
}

.feature-item span,
.callout p,
.muted {
  color: var(--muted);
}

.callout {
  margin-top: 18px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--border);
  min-width: 0;
}

.section {
  padding: 18px 0 26px;
}

.section-title {
  gap: 18px;
  margin: 22px 0 18px;
}

.section-title h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.cards-5,
.cards-6,
.cards-2 {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

.cards-5 {
  grid-template-columns: repeat(5, 1fr);
}

.cards-6 {
  grid-template-columns: repeat(6, 1fr);
}

.cards-2 {
  grid-template-columns: 1fr 1fr;
}

.card {
  overflow: visible;
}

.card img {
  width: 100%;
  aspect-ratio: 1.1 / 0.9;
  object-fit: cover;
}

.card-content {
  padding: 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mini-label {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.card h4 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  text-transform: uppercase;
}

.card p,
.list li,
.target-card p {
  color: var(--muted);
  margin: 0;
}

.target-card {
  padding: 22px 18px;
  min-height: 100%;
}

.target-card .icon {
  margin-bottom: 14px;
}

.target-card h4 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  text-transform: uppercase;
}

.list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
  flex-grow: 0;
}

.list li {
  position: relative;
  padding-left: 24px;
}

.list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}

.map-box {
  margin-top: 18px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.map-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.92rem;
  color: var(--accent);
  font-weight: 700;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.price-box {
  background: linear-gradient(135deg, #1f2835, #2b3545);
  color: var(--white);
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.price-box small {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
  font-size: 0.75rem;
}

.price-box strong {
  font-size: 1.6rem;
  line-height: 1;
  white-space: nowrap;
}

.footer-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer .icon {
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--accent);
  background: rgba(255, 255, 255, 0.04);
  flex: 0 0 auto;
}

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

  .hero-left-stack {
    gap: 18px;
    height: auto;
  }

  .hero-copy {
    padding: 24px;
  }

  .hero-copy h2,
  .hero-copy p {
    max-width: none;
  }

  .hero-stack {
    gap: 18px;
  }

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

  .feature-item:nth-child(3n) {
    border-right: 1px solid var(--border);
  }

  .feature-item:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--border);
  }

  .feature-item:nth-child(2n) {
    border-right: 0;
  }

  .feature-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .cards-5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-6 {
    grid-template-columns: repeat(3, 1fr);
  }

  .cards-2 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-price-panel .price-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 720px) {
  .hero-copy,
  .features,
  .card-content,
  .target-card,
  .hero-price-panel {
    padding: 18px;
  }

  .hero-logo {
    width: min(100%, 220px);
    margin-bottom: 16px;
  }

  .hero-copy h2 {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
    line-height: 1.04;
  }

  .hero-copy p {
    font-size: 0.96rem;
  }

  .hero-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 14px 16px;
  }

  .cards-5,
  .cards-6 {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-item,
  .feature-item:nth-child(2n),
  .feature-item:nth-child(3n) {
    border-right: 0;
  }

  .feature-item:not(:last-child) {
    border-bottom: 1px solid var(--border);
  }

  .feature-item:last-child {
    border-bottom: 0;
  }

  .price-grid,
  .hero-price-panel .price-grid {
    grid-template-columns: 1fr;
  }

  .map-box iframe {
    height: 260px;
  }
}
