/* ==============================================
   DESIGN TOKENS
   ============================================== */
:root {
  --white:      #ffffff;
  --dark:       #1a1a1a;
  --olive:      #8b7830;
  --light-gray: #efede8;
  --max-w:      1440px;
  --font-display: 'Alfa Slab One', Georgia, serif;
  --font-body:    'Sanchez', Georgia, serif;
}

/* ==============================================
   RESET & BASE
   ============================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  transition: opacity 0.2s ease;
}

a:hover { opacity: 0.7; }

/* ==============================================
   HERO
   ============================================== */
.hero {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center 38%;
  background-repeat: no-repeat;
}

/* ==============================================
   BRUSH IMAGES (replace all SVG arrows/underlines)
   ============================================== */
.brush-img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Section-level centered divider */
.divider-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 48px 8px;
}

/* Double brush stacked */
.divider-double-wrap {
  gap: 8px;
  padding: 12px 48px 20px;
}

/* Left-aligned divider (before Travel Tips) */
.divider-left {
  display: flex;
  justify-content: flex-start;
  padding: 12px clamp(24px, 5vw, 80px) 8px;
}

/* Heading underline brush — centered under heading text */
.brush-heading {
  margin: 8px auto 0;
  max-width: 420px;
}

/* Label underline brush — small, left-aligned */
.brush-label {
  max-width: 220px;
  margin: 4px auto 10px;
}

/* Travel Tips heading underline — left-aligned */
.brush-travel-heading {
  margin: 6px 0 24px;
  max-width: 380px;
}

/* ==============================================
   SHARED HEADING STYLES
   ============================================== */
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.08;
  display: inline-block;
}

.section-heading-wrap { margin-bottom: 44px; }
.section-heading-wrap.centered { text-align: center; }

.hosts-heading-wrap {
  text-align: center;
  padding: 52px 20px 14px;
}

/* ==============================================
   YOUR HOSTS SECTION
   ============================================== */
.hosts-section {
  background: var(--white);
}

.hosts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.hosts-left { overflow: hidden; }

.hosts-main-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hosts-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 44px 56px 56px;
}

.hosts-greeting {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  margin-bottom: 28px;
}

.hosts-portrait {
  max-width: min(340px, 90%);
  height: auto;
  margin: 0 auto 36px;
}

.hosts-bio { max-width: 480px; text-align: center; }

.hosts-bio p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #2a2a2a;
  margin-bottom: 1rem;
}

.hosts-bio p:last-child { margin-bottom: 0; }

/* ==============================================
   INFO SECTION
   ============================================== */
.info-section {
  background: var(--white);
  padding: 72px 20px 80px;
}

.info-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.info-block { margin-bottom: 36px; }

.info-label {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--dark);
  margin-bottom: 4px;
}

.info-block p {
  font-size: 1.1rem;
  line-height: 1.72;
  color: #2a2a2a;
}

.map-wrap {
  margin-bottom: 44px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: none;
}

.section-rule {
  border: none;
  border-top: 1px solid #e0ddd8;
  margin: 52px 0 44px;
}

/* ==============================================
   GUEST FORM SECTION
   ============================================== */
.form-section {
  background: var(--white);
  padding: 64px 20px 80px;
  border-top: 1px solid #e8e4de;
}

.form-inner {
  max-width: 800px;
  margin: 0 auto;
}

.form-intro {
  font-size: 1.1rem;
  line-height: 1.72;
  color: #555;
  font-style: italic;
  text-align: center;
  margin: 0 auto 32px;
  max-width: 600px;
}

.jotform-wrap { min-height: 900px; }

.jotform-wrap iframe {
  display: block;
  width: 100%;
  min-height: 900px;
  border: none;
}

/* ==============================================
   TRAVEL TIPS SECTION
   ============================================== */
.travel-section {
  background: var(--light-gray);
}

.travel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 800px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.travel-text {
  padding: clamp(40px, 5vw, 72px) clamp(32px, 5vw, 72px) clamp(40px, 5vw, 72px) clamp(40px, 6vw, 88px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.travel-heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5.4rem);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.0;
  margin-bottom: 6px;
}

.travel-subheading {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  font-style: normal;
  color: var(--olive);
  margin: 28px 0 8px;
  line-height: 1.2;
}

.travel-text p {
  font-size: 1.08rem;
  line-height: 1.72;
  color: #2a2a2a;
  margin-bottom: 10px;
}

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

.travel-text a {
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.travel-photo-wrap { overflow: hidden; }

.travel-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

/* ==============================================
   RESPONSIVE — TABLET
   ============================================== */
@media (max-width: 1024px) {
  .hosts-right { padding: 36px 36px 48px; }
  .travel-text { padding: 48px 36px 48px 48px; }
}

/* ==============================================
   RESPONSIVE — MOBILE
   ============================================== */
@media (max-width: 768px) {

  .divider-center,
  .divider-double-wrap,
  .divider-left {
    padding-left: 16px;
    padding-right: 16px;
  }

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

  .hosts-left { height: 380px; }
  .hosts-main-photo { height: 100%; }

  .hosts-right {
    padding: 32px 24px 40px;
    align-items: flex-start;
  }

  .hosts-portrait-wrap { align-self: center; }
  .hosts-bio { max-width: 100%; }

  .info-section { padding: 48px 20px 56px; }
  .map-wrap iframe { height: 320px; }

  .form-section { padding: 48px 16px 56px; }
  .jotform-wrap,
  .jotform-wrap iframe { min-height: 1100px; }

  .travel-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .travel-text { padding: 40px 24px; }

  .travel-photo-wrap { height: 460px; }
  .travel-photo { height: 100%; }
}

/* ==============================================
   UTILITY
   ============================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
