/* Weatherford Inn inner pages - extends the existing visual system. */
.inner-page {
  margin: 0;
  color: #1c2733;
  background: #ffffff;
  font-family: 'Poppins', sans-serif;
}

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

.inner-page img {
  max-width: 100%;
}

.inner-hero {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 20px;
  overflow: hidden;
  text-align: center;
  background-position: center;
  background-size: cover;
}

.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(4, 19, 42, 0.84), rgba(65, 90, 123, 0.68));
}

.inner-hero-content {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  color: #ffffff;
}

.inner-hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: #f7d77f;
  font-size: 26px;
}

.inner-hero h1 {
  margin: 0 0 14px;
  color: #ffffff;
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.15;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.inner-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.inner-breadcrumb a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.inner-section {
  padding: 72px 20px;
}

.inner-section.alt {
  background: #f4f7fb;
}

.inner-container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.inner-intro {
  max-width: 1020px;
  margin: 0 auto 42px;
  text-align: center;
}

.inner-kicker {
  display: block;
  margin-bottom: 10px;
  color: #a16c00;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.inner-title {
  position: relative;
  margin: 0 0 22px;
  padding-bottom: 17px;
  color: #153156;
  font-family: 'Lora', serif;
  font-size: clamp(1.8rem, 4vw, 2.65rem);
  font-weight: 600;
  line-height: 1.25;
}

.inner-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 76px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 20px;
  background: linear-gradient(90deg, #f7aa10, #d72427);
}

.inner-intro p,
.inner-copy p {
  margin: 0 0 16px;
  color: #263444;
  font-size: 16px;
  line-height: 1.85;
}

.feature-grid,
.attraction-grid,
.sitemap-grid,
.contact-grid,
.location-grid {
  display: grid;
  gap: 26px;
}

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

.feature-card,
.sitemap-card,
.contact-card,
.location-card {
  height: 100%;
  padding: 30px;
  border: 1px solid #dce4ee;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(21, 49, 86, 0.09);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.sitemap-card:hover,
.contact-card:hover,
.location-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(21, 49, 86, 0.15);
}

.feature-icon,
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: #415a7b;
  color: #ffffff;
  font-size: 23px;
  box-shadow: 0 8px 20px rgba(65, 90, 123, 0.22);
}

.feature-card h2,
.feature-card h3,
.sitemap-card h2,
.sitemap-card h3,
.contact-card h2,
.contact-card h3,
.location-card h2,
.location-card h3 {
  margin: 0 0 13px;
  color: #153156;
  font-family: 'Lora', serif;
  font-size: 21px;
  line-height: 1.35;
}

.feature-card p,
.contact-card p,
.location-card p {
  margin: 0;
  color: #344253;
  line-height: 1.75;
}

.feature-list,
.sitemap-list,
.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.sitemap-list li,
.contact-list li {
  position: relative;
  margin-bottom: 11px;
  padding-left: 27px;
  color: #2f3c4b;
  line-height: 1.55;
}

.feature-list li::before,
.sitemap-list li::before,
.contact-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  color: #a16c00;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f058';
}

.sitemap-list li::before {
  content: '\f054';
}

.sitemap-list a,
.contact-list a,
.inline-link {
  color: #153156;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.attraction-entry {
  display: grid;
  grid-template-rows: 280px 1fr;
  overflow: hidden;
  border: 1px solid #dce4ee;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 34px rgba(21, 49, 86, 0.1);
}

.attraction-entry img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.attraction-entry-content {
  padding: 28px;
}

.attraction-entry h2 {
  margin: 0 0 12px;
  color: #153156;
  font-family: 'Lora', serif;
  font-size: 23px;
}

.attraction-entry p {
  margin: 0;
  color: #344253;
  line-height: 1.75;
}

.attraction-entry:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  grid-template-columns: minmax(320px, 0.9fr) 1.1fr;
  grid-template-rows: minmax(300px, auto);
}

.map-shell {
  overflow: hidden;
  border: 8px solid #ffffff;
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(21, 49, 86, 0.18);
}

.map-shell iframe {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
}

.location-grid {
  grid-template-columns: 0.9fr 1.1fr;
  margin-top: 35px;
}

.coordinate-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.coordinate-box {
  padding: 16px;
  border-radius: 12px;
  background: #edf2f8;
  color: #153156;
  font-weight: 700;
  text-align: center;
}

.direction-form,
.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field-group label {
  display: block;
  margin-bottom: 8px;
  color: #153156;
  font-weight: 700;
}

.field-group input,
.field-group textarea,
.field-group select {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #b6c2d1;
  border-radius: 9px;
  background: #ffffff;
  color: #182536;
  font: inherit;
}

.field-group textarea {
  min-height: 145px;
  resize: vertical;
}

.field-group input:focus,
.field-group textarea:focus,
.field-group select:focus {
  border-color: #415a7b;
  outline: 3px solid rgba(65, 90, 123, 0.2);
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 13px 25px;
  border: 0;
  border-radius: 28px;
  background: #415a7b;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.primary-action:hover,
.primary-action:focus {
  background: #153156;
  color: #ffffff;
  transform: translateY(-2px);
}

.form-status {
  margin: 0;
  padding: 12px 14px;
  border-radius: 9px;
  background: #edf2f8;
  color: #153156;
}

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

.gallery-item {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border: 0;
  border-radius: 16px;
  background: #dce4ee;
  cursor: zoom-in;
  box-shadow: 0 9px 26px rgba(21, 49, 86, 0.14);
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item:hover img,
.gallery-item:focus img {
  transform: scale(1.05);
}

.gallery-item span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 18px;
  background: linear-gradient(transparent, rgba(3, 8, 49, 0.9));
  color: #ffffff;
  font-weight: 600;
  text-align: left;
}

.lightbox {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 72px 72px 45px;
  background: rgba(2, 8, 26, 0.94);
}

.lightbox.open {
  display: flex;
}

.lightbox-figure {
  margin: 0;
  text-align: center;
}

.lightbox-image {
  max-width: min(1100px, 88vw);
  max-height: 78vh;
  border-radius: 10px;
  object-fit: contain;
}

.lightbox-caption {
  margin-top: 14px;
  color: #ffffff;
  font-size: 16px;
}

.lightbox-control {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(21, 49, 86, 0.82);
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
}

.lightbox-close {
  top: 18px;
  right: 20px;
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.faq-list {
  display: grid;
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  border: 1px solid #d7e0eb;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(21, 49, 86, 0.07);
}

.faq-item summary {
  position: relative;
  padding: 21px 58px 21px 24px;
  color: #153156;
  font-weight: 700;
  line-height: 1.5;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  color: #a16c00;
  font-size: 27px;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-answer {
  padding: 0 24px 22px;
  color: #334253;
  line-height: 1.75;
}

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

.contact-grid {
  grid-template-columns: 0.85fr 1.15fr;
}

.contact-card address {
  margin: 0;
  font-style: normal;
}

.footer-address .gen,
.footer-address .add,
.footer-address .add a {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
}

.footer-address .cgsl {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 1100px) {
  .feature-grid,
  .sitemap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 850px) {
  .inner-hero {
    min-height: 300px;
  }

  .attraction-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .attraction-entry:last-child:nth-child(odd) {
    grid-column: auto;
    grid-template-columns: 1fr;
    grid-template-rows: 280px 1fr;
  }

  .map-shell iframe {
    height: 430px;
  }
}

@media (max-width: 620px) {
  .inner-section {
    padding: 52px 16px;
  }

  .inner-hero {
    min-height: 260px;
    padding: 52px 16px;
  }

  .feature-grid,
  .sitemap-grid,
  .gallery-grid,
  .form-row,
  .coordinate-row {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .sitemap-card,
  .contact-card,
  .location-card,
  .attraction-entry-content {
    padding: 23px;
  }

  .gallery-item,
  .gallery-item img {
    min-height: 230px;
  }

  .map-shell iframe {
    height: 360px;
  }

  .lightbox {
    padding: 75px 12px 35px;
  }

  .lightbox-image {
    max-width: 96vw;
    max-height: 72vh;
  }

  .lightbox-control {
    width: 44px;
    height: 44px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-card,
  .sitemap-card,
  .contact-card,
  .location-card,
  .gallery-item img,
  .primary-action {
    transition: none;
  }
}
