/* ============================================
   La Sosta di Sismano - Website Styles
   ============================================ */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --terracotta: #C75B39;
  --terracotta-light: #d4795e;
  --terracotta-dark: #8B4226;
  --olive: #5C6B3C;
  --olive-light: #7a8a5a;
  --cream: #FDF6EC;
  --brown: #3B2314;
  --gold: #D4A853;
  --gold-light: #e0be7a;
  --white: #ffffff;
  --text: #4a3728;
  --text-light: #7a6555;
  --border: #e8ddd0;
  --ldg-bnb-background: #ffffff;
  --ldg-bnb-border-radius: 0.42em;
  --ldg-bnb-box-shadow: 0px 24px 54px 0px rgba(0, 0, 0, 0.1);
  --ldg-bnb-padding: 14px;
  --ldg-bnb-input-background: #ffffff;
  --ldg-bnb-button-border-radius: 3.58em;
  --ldg-bnb-color-primary: #fac600;
  --ldg-bnb-color-primary-lighter: #fde380;
  --ldg-bnb-color-primary-darker: #7d6300;
  --ldg-bnb-color-primary-contrast: #333333;
  --ldg-component-calendar-cell-selection-bg-color: #fac600;
  --ldg-component-calendar-cell-selection-color: #333333;
  --ldg-component-calendar-cell-selected-bg-color: #fde380;
  --ldg-component-calendar-cell-selected-color: #333333;
  --ldg-bnb-font-family: inherit;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background-color: var(--cream);
  line-height: 1.7;
}

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

a {
  color: var(--terracotta-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--terracotta-light);
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  color: var(--brown);
  line-height: 1.3;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}


/* --- Navigation --- */
.nav {
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--brown);
  font-weight: 700;
  white-space: nowrap;
}

.nav-logo:hover {
  color: var(--terracotta);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 400;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--terracotta);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--terracotta);
}

.nav-links a.active {
  color: var(--terracotta-dark);
  font-weight: 600;
}

.nav-cta {
  font-size: 0.85rem !important;
  color: var(--white) !important;
  background-color: var(--terracotta-dark);
  border: 1px solid var(--terracotta-dark);
  padding: 0.4rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease !important;
}

.nav-cta:hover {
  background-color: var(--terracotta-light) !important;
  border-color: var(--terracotta-light) !important;
  color: var(--white) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.lang-toggle {
  display: flex;
  gap: 0.25rem;
}

.lang-btn {
  background: none;
  border: 2px solid transparent;
  border-radius: 4px;
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.2rem 0.3rem;
  opacity: 0.5;
  transition: opacity 0.3s ease, border-color 0.3s ease;
  line-height: 1;
}

.lang-btn:hover {
  opacity: 0.8;
}

.lang-btn:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

.lang-btn.lang-active {
  opacity: 1;
  border-color: var(--terracotta);
}


/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(
      135deg,
      rgba(59, 35, 20, 0.7) 0%,
      rgba(199, 91, 57, 0.5) 50%,
      rgba(92, 107, 60, 0.4) 100%
    ),
    linear-gradient(
      to bottom,
      #8B6F47 0%,
      #A0845C 30%,
      #7A8A5A 60%,
      #5C6B3C 100%
    );
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 2rem 1.5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(59, 35, 20, 0.5) 0%,
    rgba(59, 35, 20, 0.35) 50%,
    rgba(59, 35, 20, 0.6) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-subtitle {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-tagline {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
  font-weight: 300;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background-color: var(--gold);
  margin: 1.5rem auto;
}


/* --- Sections --- */
.section {
  padding: 5rem 0;
}

.section-alt {
  background-color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.section-header .divider {
  width: 50px;
  height: 2px;
  background-color: var(--gold);
  margin: 0 auto 1rem;
}

.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}


/* --- Intro Section --- */
.intro-text {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.intro-text .italian {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--terracotta-dark);
}


/* --- Booking Widget --- */
#book-now {
  scroll-margin-top: 96px;
}

.booking-widget {
  max-width: 760px;
  margin: 0 auto;
}

.availability-widget {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 20px rgba(59, 35, 20, 0.05);
}

.availability-widget-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.availability-eyebrow {
  color: var(--terracotta-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
}

.availability-widget h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.availability-widget-header p:last-child {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.55;
}

.availability-message {
  color: var(--text-light);
  font-size: 0.92rem;
  margin: 0;
}

.availability-controls {
  display: grid;
  grid-template-columns: 2.25rem 1fr 2.25rem;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.availability-range-title {
  color: var(--brown);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
}

.availability-nav-button {
  aspect-ratio: 1;
  background-color: var(--bg, #faf7f2);
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.availability-nav-button:hover:not(:disabled),
.availability-nav-button:focus-visible {
  background-color: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  color: var(--white);
  outline: none;
}

.availability-nav-button:disabled {
  cursor: default;
  opacity: 0.45;
}

.availability-months {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.availability-month h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.availability-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.25rem;
}

.availability-weekday {
  color: var(--text-light);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.2rem 0;
  text-align: center;
  text-transform: uppercase;
}

.availability-day {
  align-items: center;
  aspect-ratio: 1;
  background-color: var(--cream);
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--text);
  display: flex;
  font-size: 0.78rem;
  justify-content: center;
  line-height: 1;
  min-width: 0;
}

.availability-day-empty {
  background-color: transparent;
}

.availability-day.is-unavailable {
  background-color: var(--terracotta-dark);
  color: var(--white);
  font-weight: 700;
}

.availability-footer {
  align-items: center;
  color: var(--text-light);
  display: flex;
  flex-wrap: wrap;
  font-size: 0.8rem;
  gap: 0.65rem 1rem;
  justify-content: space-between;
  margin-top: 1rem;
}

.availability-legend {
  align-items: center;
  display: inline-flex;
  gap: 0.35rem;
}

.availability-swatch {
  background-color: var(--terracotta-dark);
  border-radius: 3px;
  display: inline-block;
  height: 0.75rem;
  width: 0.75rem;
}

.enquiry-form {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(59, 35, 20, 0.05);
}

.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

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

.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.field-optional {
  font-weight: 400;
  color: var(--text-light);
  margin-left: 0.25rem;
  font-size: 0.8rem;
}

.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  background-color: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent, #7a5a3a);
  box-shadow: 0 0 0 3px rgba(122, 90, 58, 0.15);
}

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

.enquiry-send-label {
  margin: 1.75rem 0 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}

.enquiry-hosts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.enquiry-host {
  background-color: var(--bg, #faf7f2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.1rem;
}

.enquiry-host-name {
  font-weight: 600;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.enquiry-host-tag {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  background-color: var(--white);
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  border: 1px solid var(--border);
}

.enquiry-host-actions {
  display: flex;
  gap: 0.5rem;
}

.btn-enquire {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.65rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  border: 1px solid transparent;
  min-width: 0;
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.15;
  min-width: 0;
}

.btn-label {
  font-size: 0.9rem;
  font-weight: 600;
}

.btn-detail {
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0.85;
  letter-spacing: 0.01em;
  margin-top: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.btn-enquire:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 35, 20, 0.12);
}

.btn-whatsapp {
  background-color: #075e54;
  color: #fff;
}

.btn-whatsapp:hover {
  background-color: #0a8275;
}

.btn-email {
  background-color: var(--white);
  color: var(--text);
  border-color: var(--border);
}

.btn-email:hover {
  background-color: var(--bg, #faf7f2);
}

.btn-icon {
  font-size: 1rem;
  line-height: 1;
}

.enquiry-note {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
}

@media (max-width: 600px) {
  .availability-widget {
    padding: 1.25rem;
  }
  .availability-widget-header {
    display: block;
  }
  .availability-months {
    grid-template-columns: 1fr;
  }
  .availability-footer {
    align-items: flex-start;
    flex-direction: column;
  }
  .enquiry-form {
    padding: 1.5rem 1.25rem;
  }
  .enquiry-grid {
    grid-template-columns: 1fr;
  }
  .enquiry-hosts {
    grid-template-columns: 1fr;
  }
}


/* --- Highlights Grid --- */
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.highlight-card {
  background-color: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 8px;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(59, 35, 20, 0.1);
}

.highlight-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.highlight-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.highlight-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}


/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #c9a882 0%,
    #a0845c 40%,
    #8B6F47 70%,
    #7a6555 100%
  );
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.gallery-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem;
}


/* --- Testimonial --- */
.testimonial {
  text-align: center;
  padding: 4rem 0;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1.5rem;
  letter-spacing: 4px;
  margin-bottom: 1rem;
}

.testimonial-rating {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.testimonial-count {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.testimonial blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.testimonial blockquote::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--terracotta);
  display: block;
  margin-bottom: -0.5rem;
}


/* --- Guest Favourite Badge --- */
.guest-favourite {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--terracotta-dark);
  border: 2px solid var(--terracotta-dark);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}


/* --- House Info --- */
.house-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
}

.house-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.house-info-item:last-child {
  border-bottom: none;
}

.house-info-label {
  color: var(--text-light);
  font-size: 0.95rem;
}

.house-info-value {
  font-weight: 600;
  color: var(--brown);
  font-size: 0.95rem;
}


/* --- Amenities --- */
.amenities-top-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 800px;
  margin: 0 auto;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background-color: var(--cream);
  border-radius: 6px;
  font-size: 0.95rem;
  color: var(--text);
}

.amenity-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 2rem;
  text-align: center;
}

.amenities-full {
  max-width: 800px;
  margin: 2rem auto 0;
  display: none;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.amenities-full.amenities-open {
  display: grid;
}

.amenities-category h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--brown);
}

.amenities-category ul {
  list-style: none;
}

.amenities-category li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
  font-size: 0.92rem;
}

.amenities-category li:last-child {
  border-bottom: none;
}

.amenities-toggle-wrap {
  text-align: center;
  margin-top: 2rem;
}

.amenities-toggle {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--terracotta-dark);
  background: none;
  border: 1px solid var(--terracotta-dark);
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.amenities-toggle:hover {
  background-color: var(--terracotta);
  color: var(--white);
}


/* --- Day Trips --- */
.daytrips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 600px;
  margin: 0 auto;
}

.daytrip-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.daytrip-item:last-child {
  border-bottom: none;
}

.daytrip-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--brown);
}

.daytrip-time {
  color: var(--text-light);
  font-size: 0.95rem;
}


/* --- Host Section --- */
.hosts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.host-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.host-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.host-header h3 {
  font-size: 1.4rem;
}

.host-badge {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  color: var(--terracotta-dark);
  border: 1px solid var(--terracotta-dark);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-weight: 600;
}

.host-details {
  list-style: none;
  margin-bottom: 1rem;
}

.host-details li {
  color: var(--text-light);
  font-size: 0.95rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
}

.host-details li:last-child {
  border-bottom: none;
}

.host-bio {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}


/* --- About Page Sections --- */
.about-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #c9a882 0%,
    #a0845c 50%,
    #7a8a5a 100%
  );
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image .gallery-placeholder {
  height: 100%;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-text .divider {
  width: 50px;
  height: 2px;
  background-color: var(--gold);
  margin-bottom: 1.25rem;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.02rem;
  line-height: 1.8;
}

.about-text p:last-child {
  margin-bottom: 0;
}


/* --- Things To Do --- */
.things-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.thing-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thing-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(59, 35, 20, 0.08);
}

.thing-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 3rem;
  text-align: center;
}

.thing-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.thing-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.6;
}

.drive-time {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  color: var(--olive);
  background-color: rgba(92, 107, 60, 0.1);
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  margin-bottom: 0.4rem;
}


/* --- Getting Here --- */
.getting-here {
  max-width: 750px;
  margin: 0 auto;
}

.getting-here p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.travel-options {
  list-style: none;
  margin-top: 1.5rem;
}

.travel-options li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.travel-options li:last-child {
  border-bottom: none;
}

.travel-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}


/* --- Footer --- */
.footer {
  background-color: var(--brown);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.footer p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer a {
  color: var(--gold-light);
}

.footer a:hover {
  color: var(--gold);
}

.footer-cta-link {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7) !important;
  transition: all 0.3s ease;
}

.footer-cta-link:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
}


/* --- Contact Section --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.contact-card {
  background-color: var(--cream);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.contact-card h3 {
  font-size: 1rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Lato', sans-serif;
  margin-bottom: 0.5rem;
}

.contact-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--brown);
  margin-bottom: 1rem;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.contact-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail a {
  color: var(--terracotta-dark);
}

.contact-detail a:hover {
  color: var(--terracotta-light);
}

.contact-details {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}


/* --- Page Header (for About) --- */
.page-header {
  background:
    linear-gradient(
      135deg,
      rgba(59, 35, 20, 0.75) 0%,
      rgba(92, 107, 60, 0.55) 100%
    ),
    linear-gradient(
      to right,
      #8B6F47 0%,
      #7A8A5A 100%
    );
  color: var(--white);
  text-align: center;
  padding: 6rem 1.5rem 4rem;
}

.page-header h1 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-header p {
  opacity: 0.85;
  font-size: 1.1rem;
}

.page-header .divider {
  width: 50px;
  height: 2px;
  background-color: var(--gold);
  margin: 1rem auto;
}


/* =====================
   Responsive Breakpoints
   ===================== */

/* Tablet (600px+) */
@media (min-width: 600px) {
  .hero h1 {
    font-size: 3.5rem;
  }

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

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

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

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

  .amenities-top-grid {
    grid-template-columns: 1fr 1fr;
  }

  .amenities-full {
    grid-template-columns: 1fr 1fr;
  }

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

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

/* Desktop (900px+) */
@media (min-width: 900px) {
  .hero h1 {
    font-size: 4rem;
  }

  .hero-tagline {
    font-size: 1.3rem;
  }

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

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

  .about-section.reverse {
    direction: rtl;
  }

  .about-section.reverse > * {
    direction: ltr;
  }

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

/* FAQ section */
.faq {
  max-width: 720px;
  margin: 0 auto;
}
.faq-item + .faq-item {
  margin-top: 2rem;
}
.faq h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: inherit;
}
.faq p {
  margin: 0;
  line-height: 1.7;
}
