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

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111827;
  background: #f9fafb;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Top bar */

.top-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, rgba(249,250,251,0.92), rgba(249,250,251,0.7));
  border-bottom: 1px solid rgba(229,231,235,0.8);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 600;
  background: radial-gradient(circle at 20% 0%, #facc15, #b45309);
  color: #111827;
  box-shadow: 0 6px 20px rgba(15,23,42,0.35);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: #6b7280;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
}

.nav a {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  color: #111827;
  transition: background 0.15s ease, color 0.15s ease;
}

.nav a:hover {
  background: rgba(17,24,39,0.04);
}

.nav-cta {
  border: 1px solid rgba(148,163,184,0.9);
  padding-inline: 0.85rem;
}

.nav-cta:hover {
  background: #111827;
  color: #f9fafb;
}

/* Hero */

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(115deg, rgba(15,23,42,0.78), rgba(15,23,42,0.35)),
    url("https://images.pexels.com/photos/1581796/pexels-photo-1581796.jpeg?auto=compress&cs=tinysrgb&w=1600");
  background-size: cover;
  background-position: center;
  color: #f9fafb;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(251,191,36,0.18), transparent);
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  padding: 3.5rem 1.25rem;
}

.hero-text h1 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 3vw + 1.5rem, 3.4rem);
  line-height: 1.05;
  margin: 0 0 1.25rem;
}

.hero-kicker {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #e5e7eb;
  margin-bottom: 0.8rem;
}

.hero-body {
  max-width: 36rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #e5e7eb;
}

.hero-actions {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.btn.primary {
  background: #facc15;
  color: #1f2933;
  box-shadow: 0 18px 45px rgba(15,23,42,0.45);
}

.btn.primary:hover {
  background: #eab308;
}

.btn.ghost {
  background: transparent;
  border-color: rgba(249,250,251,0.45);
}

.btn.ghost:hover {
  background: rgba(15,23,42,0.5);
}

.hero-card {
  position: relative;
  display: grid;
  gap: 1.1rem;
}

.hero-card-photo {
  border-radius: 1.25rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 18px 50px rgba(0,0,0,0.5);
}

.main-photo {
  height: 220px;
  background-image: url("https://images.pexels.com/photos/159534/cows-curious-cattle-agriculture-159534.jpeg?auto=compress&cs=tinysrgb&w=1600");
}

.second-photo {
  position: absolute;
  right: -18px;
  top: 140px;
  width: 150px;
  height: 140px;
  background-image: url("https://images.pexels.com/photos/1996333/pexels-photo-1996333.jpeg?auto=compress&cs=tinysrgb&w=1200");
  border: 2px solid rgba(249,250,251,0.9);
}

.hero-card-info {
  margin-top: 3.4rem;
  padding: 1.25rem 1.4rem;
  border-radius: 1.15rem;
  background: rgba(15,23,42,0.85);
  border: 1px solid rgba(148,163,184,0.5);
  box-shadow: 0 18px 40px rgba(15,23,42,0.75);
}

.hero-card-info h2 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
}

.hero-card-info ul {
  margin: 0;
  padding-left: 1.05rem;
  font-size: 0.85rem;
  color: #e5e7eb;
}

.hero-card-info li + li {
  margin-top: 0.25rem;
}

/* Sections */

.section {
  padding: 4.5rem 0;
  background: #f9fafb;
}

.section.soft {
  background: #f3f4f6;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section h2 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 2rem;
  margin: 0 0 0.75rem;
}

.section-header p {
  margin: 0;
  color: #4b5563;
  font-size: 0.98rem;
}

.two-column {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  align-items: center;
}

.two-column.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
}

.section-text p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #374151;
  margin-top: 0;
  margin-bottom: 1rem;
}

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

/* Collage */

.ranch-collage {
  position: relative;
  height: 320px;
}

.collage-large,
.collage-small {
  position: absolute;
  border-radius: 1.4rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 18px 40px rgba(15,23,42,0.18);
}

.collage-large {
  inset: 0 18% 18% 0;
  background-image: url("https://images.pexels.com/photos/1580071/pexels-photo-1580071.jpeg?auto=compress&cs=tinysrgb&w=1600");
}

.collage-small {
  width: 54%;
  height: 42%;
  border: 3px solid #f9fafb;
}

.collage-top {
  top: -8%;
  right: -3%;
  background-image: url("https://images.pexels.com/photos/1750775/pexels-photo-1750775.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.collage-bottom {
  bottom: -10%;
  left: 32%;
  background-image: url("https://images.pexels.com/photos/129590/pexels-photo-129590.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

/* Cards */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.card {
  border-radius: 1.25rem;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 30px rgba(15,23,42,0.05);
}

.card-photo {
  height: 160px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.exp-river {
  background-image: url("https://images.pexels.com/photos/106152/pexels-photo-106152.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.exp-pasture {
  background-image: url("https://images.pexels.com/photos/1996335/pexels-photo-1996335.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.exp-firepit {
  background-image: url("https://images.pexels.com/photos/5718025/pexels-photo-5718025.jpeg?auto=compress&cs=tinysrgb&w=1200");
}

.card-body {
  padding: 1.3rem 1.4rem 1.4rem;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.card-body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4b5563;
}

/* Stays */

.stay-photo {
  height: 320px;
  border-radius: 1.5rem;
  background-image: url("https://images.pexels.com/photos/406014/pexels-photo-406014.jpeg?auto=compress&cs=tinysrgb&w=1600");
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 40px rgba(15,23,42,0.18);
}

.bullet-list {
  padding-left: 1.1rem;
  margin: 1rem 0 1.25rem;
  color: #374151;
  font-size: 0.96rem;
}

.bullet-list li + li {
  margin-top: 0.25rem;
}

/* Location */

.location-details {
  margin-top: 1.25rem;
  font-size: 0.95rem;
}

.location-details p {
  margin-bottom: 0.5rem;
}

.location-details .note {
  font-size: 0.88rem;
  color: #6b7280;
}

.map-embed iframe {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: 1.25rem;
  box-shadow: 0 18px 40px rgba(15,23,42,0.16);
}

/* Contact */

.contact-block {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.contact-panel {
  padding: 1.5rem 1.6rem;
  border-radius: 1.25rem;
  background: #111827;
  color: #f9fafb;
  border: 1px solid #111827;
  box-shadow: 0 18px 40px rgba(15,23,42,0.4);
}

.contact-panel h3 {
  margin: 0 0 0.5rem;
}

.contact-email a {
  font-size: 1rem;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #d1d5db;
}

/* Footer */

.footer {
  border-top: 1px solid #e5e7eb;
  background: #f9fafb;
  padding: 1.8rem 0 2.2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: #6b7280;
  flex-wrap: wrap;
}

.brand-mini {
  font-weight: 600;
  color: #111827;
}

.footer-email a {
  font-weight: 500;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.footer-meta {
  margin-top: 0.35rem;
  font-size: 0.8rem;
}

.footer-copy {
  margin-top: 0.25rem;
}

/* Responsive */

@media (max-width: 960px) {
  .hero-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    max-width: 360px;
    margin-top: 1.5rem;
  }

  .two-column,
  .two-column.reverse,
  .contact-block {
    grid-template-columns: minmax(0, 1fr);
  }

  .two-column.reverse .section-media {
    order: -1;
  }

  .ranch-collage {
    margin-top: 0.75rem;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .hero-content {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .section {
    padding: 3.25rem 0;
  }

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

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-card {
    max-width: 100%;
  }
}
