/* ===================================================================
   ZARAYSK TOURS - Main Stylesheet
   Extracted from inline styles, organized by BEM-like naming
   =================================================================== */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #333;
  line-height: 1.6;
  background: #faf8f3;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* --- Header styles moved to /css/header.css --- */

/* --- Hero Block --- */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url('https://resize.tripster.ru/GwM8huUKLopNzpD566DaUqwjP_E=/fit-in/1600x900/filters:no_upscale()/https://cdn.tripster.ru/photos/6294d1c4-b7c8-4a8f-9a9c-7310d5f129ef.jpg?width=1200&height=630') center/cover;
  background-attachment: fixed;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.15), rgba(52, 73, 94, 0.15));
  pointer-events: none;
}

.hero--small {
  min-height: 350px;
}

.hero__content {
  max-width: 700px;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 40px 20px;
}

.hero__title {
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.4);
}

.hero__title .accent {
  color: #e67e22;
  display: block;
}

.hero__subtitle {
  font-size: 18px;
  color: #fff;
  margin-bottom: 32px;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  max-width: 870px;
  margin: 0 auto;
  padding: 16px 20px 0;
  font-size: 14px;
  color: #999;
}

.breadcrumbs a {
  color: #e67e22;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: #d35400;
  text-decoration: underline;
}

.breadcrumbs span {
  margin: 0 8px;
  color: #ccc;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn--primary {
  background: #e67e22;
  color: #fff;
}

.btn--primary:hover {
  background: #d35400;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.btn--secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.cta-button {
  display: inline-block;
  background-color: #e67e22;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  margin-top: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #d35400;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

/* --- Article / Main Content --- */
.article-wrapper {
  max-width: 870px;
  margin: 0 auto;
  padding: 60px 20px;
  background: #fff;
}

.article-wrapper h1 {
  font-size: 2.5em;
  color: #2c3e50;
  margin-bottom: 26px;
  line-height: 1.2;
}

.article-wrapper h2 {
  color: #e67e22;
  border-bottom: 2px solid #eee;
  padding-bottom: 10px;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.8em;
}

.article-wrapper h3 {
  color: #444;
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 1.3em;
}

.article-wrapper p {
  margin-bottom: 16px;
  font-size: 1.05em;
  line-height: 1.8;
  color: #444;
}

.article-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 30px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  display: block;
}

.article-wrapper figure {
  margin: 30px 0;
}

.article-wrapper figcaption {
  text-align: center;
  font-style: italic;
  color: #999;
  margin-top: 10px;
  font-size: 0.95em;
}

.article-wrapper ul,
.article-wrapper ol {
  margin: 20px 0 20px 40px;
  line-height: 1.9;
}

.article-wrapper li {
  margin-bottom: 12px;
  font-size: 1.05em;
  color: #555;
}

/* Tables */
.article-wrapper table {
  width: 100%;
  border-collapse: collapse;
  margin: 34px 0;
  border: 1px solid #ddd;
}

.article-wrapper th,
.article-wrapper td {
  padding: 14px;
  text-align: left;
  border: 1px solid #ddd;
  font-size: 0.95em;
}

.article-wrapper th {
  background-color: #f5f5f5;
  font-weight: 600;
  color: #2c3e50;
}

.article-wrapper td {
  color: #555;
}

/* Blockquotes */
.article-wrapper blockquote {
  background: #f9f9f9;
  border-left: 5px solid #e67e22;
  margin: 25px 0;
  padding: 18px 22px;
  font-style: italic;
  color: #666;
  line-height: 1.8;
}

/* --- Info Blocks --- */
.info-block {
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 4px;
  font-size: 0.95em;
  color: #444;
}

.info-block--scenario {
  background: #f0f8ff;
  border: 1px solid #d0e8ff;
}

.info-block--trust {
  background: #fffef5;
  border-left: 4px solid #4caf50;
}

.info-block--trust strong {
  color: #2c3e50;
}

.info-block--highlight {
  background: #fef9f3;
  border-left: 4px solid #e67e22;
}

/* CTA Block - selling/booking promotion */
.cta-block {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: #fff !important;
  padding: 32px;
  margin: 40px 0;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(44, 62, 80, 0.2);
}

.cta-block,
.cta-block * {
  color: #fff !important;
}

.cta-block__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff !important;
}

.cta-block__text {
  font-size: 1rem;
  color: #fff !important;
  margin-bottom: 20px;
  line-height: 1.6;
}

.cta-block__btn {
  display: inline-block;
  background: #e67e22;
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}

.cta-block__btn:hover {
  background: #d35400;
  transform: translateY(-2px);
}

.cta-block__phone {
  display: block;
  margin-top: 14px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85) !important;
}

.cta-block__phone a {
  color: #e67e22 !important;
  font-weight: 600;
}

/* How-to List */
.howto-list {
  background: #fef9f3;
  padding: 20px;
  border-radius: 4px;
  margin: 20px 0;
}

.howto-list ol {
  margin-left: 20px;
}

/* Content wrapper for CTA centering */
.content-center {
  text-align: center;
  margin-top: 40px;
}

/* --- Contact Form --- */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form__group {
  margin-bottom: 20px;
}

.contact-form__label {
  display: block;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 6px;
  font-size: 14px;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s ease;
  background: #fff;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: #e67e22;
  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.contact-form__checkbox input[type="checkbox"] {
  margin-top: 3px;
  accent-color: #e67e22;
}

.contact-form__submit {
  width: 100%;
  padding: 14px 28px;
  background: #e67e22;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.contact-form__submit:hover {
  background: #d35400;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.contact-form__submit:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.contact-form__message {
  padding: 12px 16px;
  border-radius: 4px;
  margin-top: 16px;
  font-size: 14px;
}

.contact-form__message--success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.contact-form__message--error {
  background: #fce4ec;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

/* Honeypot (anti-spam) */
.contact-form__hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* --- Booking Form Section (inline on every page) --- */
.booking-section {
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
  color: #fff;
  padding: 48px 20px;
  margin-top: 40px;
}

.booking-section__inner {
  max-width: 600px;
  margin: 0 auto;
}

.booking-section__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
}

.booking-section__subtitle {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  font-size: 1rem;
}

.booking-section label {
  display: block;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
  font-size: 14px;
}

.booking-section input[type="text"],
.booking-section input[type="tel"],
.booking-section input[type="email"],
.booking-section textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  margin-bottom: 16px;
  transition: border-color 0.3s;
}

.booking-section input::placeholder,
.booking-section textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.booking-section input:focus,
.booking-section textarea:focus {
  outline: none;
  border-color: #e67e22;
  background: rgba(255, 255, 255, 0.15);
}

.booking-section textarea {
  resize: vertical;
  min-height: 80px;
}

.booking-section__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.booking-section__checkbox input[type="checkbox"] {
  margin-top: 3px;
  accent-color: #e67e22;
}

.booking-section__checkbox a {
  color: #e67e22;
  text-decoration: underline;
}

.booking-section__submit {
  width: 100%;
  padding: 14px 28px;
  background: #e67e22;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}

.booking-section__submit:hover {
  background: #d35400;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.4);
}

.booking-section__submit:disabled {
  background: #666;
  cursor: not-allowed;
}

.booking-section__success {
  text-align: center;
  padding: 20px;
}

.booking-section__success p:first-child {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2ecc71;
  margin-bottom: 8px;
}

.booking-section__phone {
  text-align: center;
  margin-top: 16px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.booking-section__phone a {
  color: #e67e22;
  font-weight: 600;
}

/* --- Footer --- */
.site-footer {
  background: #2c3e50;
  color: #fff;
  padding: 48px 20px 24px;
  border-top: 3px solid #e67e22;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.site-footer__col h3 {
  font-size: 18px;
  font-weight: 700;
  color: #e67e22;
  margin-bottom: 16px;
}

.site-footer__col p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  line-height: 1.6;
}

.site-footer__col a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer__col a:hover {
  color: #e67e22;
}

.site-footer__nav {
  list-style: none;
  padding: 0;
}

.site-footer__nav li {
  margin-bottom: 10px;
}

.site-footer__nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer__nav a:hover {
  color: #e67e22;
}

.site-footer__bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* --- Sidebar (for pages with sidebar layout) --- */
.page-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
}

.page-layout--single {
  grid-template-columns: 1fr;
}

.sidebar {
  position: sticky;
  top: 80px;
  align-self: start;
}

.sidebar__block {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.sidebar__block h3 {
  font-size: 16px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e67e22;
}

.sidebar__block ul {
  list-style: none;
  padding: 0;
}

.sidebar__block li {
  margin-bottom: 8px;
}

.sidebar__block a {
  font-size: 14px;
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sidebar__block a:hover {
  color: #e67e22;
}

/* --- Cards Grid --- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin: 30px 0;
}

.card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card__body {
  padding: 20px;
}

.card__title {
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 8px;
}

.card__text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.card__link {
  display: inline-block;
  margin-top: 12px;
  color: #e67e22;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s ease;
}

.card__link:hover {
  color: #d35400;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .page-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* Header responsive styles in /css/header.css */

  .hero__title {
    font-size: 36px;
  }

  .hero__subtitle {
    font-size: 16px;
  }

  .hero__buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .article-wrapper h1 {
    font-size: 1.8em;
  }

  .article-wrapper h2 {
    font-size: 1.4em;
  }

  .article-wrapper p {
    font-size: 1em;
  }

  .article-wrapper ul,
  .article-wrapper ol {
    margin-left: 20px;
  }

  .article-wrapper {
    padding: 40px 20px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero--small {
    min-height: 250px;
  }
}

/* --- Article Cards Section (homepage) --- */
.article-cards-section {
  padding: 60px 20px;
  background: #faf8f3;
}

.article-cards-section__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 12px;
}

.article-cards-section__subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.article-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.article-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.article-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.article-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #e67e22;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.article-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 8px;
  line-height: 1.3;
}

.article-card__desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  flex: 1;
}

.article-card__link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e67e22;
}

@media (max-width: 768px) {
  .article-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .article-cards-section__title {
    font-size: 1.5rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .article-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 28px;
  }

  .article-wrapper h1 {
    font-size: 1.5em;
  }

  .article-wrapper h2 {
    font-size: 1.2em;
  }
}

/* ===================================================================
   HOMEPAGE SECTIONS (hp-*)
   =================================================================== */

.hp-section-title {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  color: #222;
  margin-bottom: 8px;
}

.hp-section-subtitle {
  text-align: center;
  color: #777;
  font-size: 16px;
  margin-bottom: 40px;
}

/* --- Stats bar --- */
.hp-stats {
  background: #e67e22;
  padding: 0;
}

.hp-stats__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hp-stats__item {
  text-align: center;
  padding: 32px 16px;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.hp-stats__item:last-child {
  border-right: none;
}

.hp-stats__number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.hp-stats__label {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
}

/* --- About section --- */
.hp-about {
  padding: 80px 20px;
  background: #fff;
}

.hp-about__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hp-about__text h2 {
  font-size: 32px;
  font-weight: 800;
  color: #222;
  margin-bottom: 20px;
}

.hp-about__text p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 16px;
}

.hp-about__text a {
  color: #e67e22;
  font-weight: 600;
}

.hp-about__image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.hp-about__caption {
  display: block;
  text-align: center;
  font-size: 13px;
  color: #999;
  margin-top: 12px;
}

/* --- Attractions grid --- */
.hp-attractions {
  padding: 80px 20px;
  background: #faf8f3;
}

.hp-attractions__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hp-attractions__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.hp-attr-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.hp-attr-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.hp-attr-card__icon {
  font-size: 36px;
  display: block;
  margin-bottom: 12px;
}

.hp-attr-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}

.hp-attr-card p {
  font-size: 13px;
  color: #777;
  line-height: 1.5;
}

.hp-attractions__more {
  text-align: center;
  margin-top: 32px;
}

.hp-attractions__more a {
  color: #e67e22;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
}

.hp-attractions__more a:hover {
  text-decoration: underline;
}

/* --- CTA section --- */
.hp-cta {
  background: linear-gradient(135deg, #e67e22, #d35400);
  padding: 64px 20px;
  text-align: center;
}

.hp-cta__inner {
  max-width: 700px;
  margin: 0 auto;
}

.hp-cta__inner h2 {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.hp-cta__inner p {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  line-height: 1.6;
}

.btn--lg {
  padding: 16px 40px;
  font-size: 17px;
}

.hp-cta .btn--primary {
  background: #fff;
  color: #e67e22;
}

.hp-cta .btn--primary:hover {
  background: #f5f5f5;
}

.hp-cta__phone {
  display: block;
  margin-top: 16px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
}

.hp-cta__phone a {
  color: #fff;
  font-weight: 600;
}

/* --- Excursions grid --- */
.hp-excursions {
  padding: 80px 20px;
  background: #fff;
}

.hp-excursions__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hp-excursions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hp-exc-card {
  background: #faf8f3;
  border-radius: 12px;
  padding: 32px 24px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.hp-exc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.hp-exc-card__tag {
  display: inline-block;
  background: #e67e22;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 16px;
  align-self: flex-start;
}

.hp-exc-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.hp-exc-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  flex: 1;
}

.hp-exc-card__link {
  display: inline-block;
  margin-top: 16px;
  color: #e67e22;
  font-weight: 600;
  font-size: 14px;
}

/* --- Links grid --- */
.hp-links {
  padding: 60px 20px;
  background: #faf8f3;
}

.hp-links__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hp-links__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.hp-link-card {
  background: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.hp-link-card:hover {
  background: #e67e22;
  color: #fff;
}

/* --- Contact bar --- */
.hp-contact {
  padding: 24px 20px;
  background: #f5f0e8;
  text-align: center;
}

.hp-contact__inner {
  max-width: 800px;
  margin: 0 auto;
  font-size: 15px;
  color: #555;
}

.hp-contact__inner a {
  color: #e67e22;
  font-weight: 600;
}

/* --- Homepage responsive --- */
@media (max-width: 768px) {
  .hp-stats__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-stats__item {
    padding: 20px 12px;
  }

  .hp-stats__number {
    font-size: 28px;
  }

  .hp-about__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hp-attractions__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .hp-excursions__grid {
    grid-template-columns: 1fr;
  }

  .hp-section-title {
    font-size: 24px;
  }

  .hp-cta__inner h2 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .hp-stats__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .hp-attractions__grid {
    grid-template-columns: 1fr 1fr;
  }

  .hp-attr-card {
    padding: 20px 12px;
  }

  .hp-attr-card__icon {
    font-size: 28px;
  }
}