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

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

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background-color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* =====================
   TYPOGRAPHY HELPERS
===================== */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8a6a3a;
  margin-bottom: 0.75rem;
  display: block;
}

.eyebrow.centered {
  text-align: center;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: #8a6a3a;
  margin-bottom: 0.5rem;
  display: block;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

h2.centered {
  text-align: center;
}

.body-text {
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 300;
}

/* =====================
   NAVIGATION
===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 1.2rem 2rem;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 0.9rem 2rem;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.02em;
  transition: color 0.3s;
}

.navbar.scrolled .nav-logo .logo-text {
  color: #1a1a1a;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-links li a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: color 0.2s;
}

.nav-links li a:hover {
  color: #ffffff;
}

.navbar.scrolled .nav-links li a {
  color: #3a3a3a;
}

.navbar.scrolled .nav-links li a:hover {
  color: #8a6a3a;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: background 0.3s;
}

.navbar.scrolled .nav-toggle span {
  background: #1a1a1a;
}

/* =====================
   HERO
===================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 20% top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.45) 50%,
    rgba(0,0,0,0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 2rem 2.5rem;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.25rem;
  display: block;
}

.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 2rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-cta {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  border: 2px solid rgba(255,255,255,0.8);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.hero-cta:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #1a1a1a;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* =====================
   SECTIONS
===================== */
.section {
  padding: 7rem 2rem;
}

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

/* =====================
   SPLIT BLOCKS
===================== */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.split-block.reverse {
  direction: rtl;
}

.split-block.reverse > * {
  direction: ltr;
}

.split-text h2 {
  text-align: left;
}

.split-image {
  width: 100%;
}

.img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background-color: #e8e0d4;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.img-placeholder span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9a8a78;
  font-weight: 500;
}

.img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.section-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 4px;
  display: block;
  aspect-ratio: 4/3;
}

/* =====================
   ABOUT
===================== */
.about-section {
  background-color: #ffffff;
}

/* =====================
   RANCH
===================== */
.ranch-section {
  background-color: #f7f4ef;
}

/* =====================
   PHOTO GALLERY
===================== */
.photo-gallery-section {
  background: #111;
  padding: 6px;
}

.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  max-width: 1400px;
  margin: 0 auto;
}

.photo-gallery-item {
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

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

/* =====================
   RANCH INFO
===================== */
.ranch-info-section {
  background-color: #f7f4ef;
}

.ranch-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.ranch-info-text h2 {
  text-align: left;
}

.ranch-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  background: #ffffff;
  border: 1px solid #e8e0d4;
  border-radius: 6px;
  padding: 2rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #8a6a3a;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
}

@media (max-width: 900px) {
  .ranch-info-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* =====================
   VALUES
===================== */
.values-section {
  background-color: #ffffff;
}

.values-section h2 {
  margin-bottom: 3.5rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.value-card {
  text-align: center;
  padding: 1rem;
}

.value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  color: #8a6a3a;
}

.value-icon svg {
  width: 100%;
  height: 100%;
}

.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.9rem;
  color: #5a5a5a;
  line-height: 1.7;
  font-weight: 300;
}

/* =====================
   BEEF / PRICING
===================== */
.beef-section {
  background-color: #f7f4ef;
}

.beef-section .split-block {
  margin-bottom: 5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid #e8e0d4;
  border-radius: 6px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}

.pricing-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.pricing-card.featured {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #ffffff;
}

.featured-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: #8a6a3a;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 0 0 4px 4px;
}

.pricing-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 1.25rem;
}

.pricing-card.featured h3 {
  color: #ffffff;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #8a6a3a;
}

.pricing-card.featured .price {
  color: #d4a85a;
}

.price-unit {
  font-size: 0.8rem;
  color: #888;
}

.pricing-card.featured .price-unit {
  color: #aaa;
}

.price-list {
  list-style: none;
  margin-bottom: 2rem;
}

.price-list li {
  font-size: 0.9rem;
  color: #5a5a5a;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f0ebe3;
  font-weight: 300;
}

.pricing-card.featured .price-list li {
  color: #cccccc;
  border-bottom-color: rgba(255,255,255,0.1);
}

.card-btn {
  display: block;
  text-align: center;
  padding: 0.85rem 1.5rem;
  border: 2px solid #8a6a3a;
  color: #8a6a3a;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
}

.card-btn:hover {
  background: #8a6a3a;
  color: #ffffff;
}

.pricing-card.featured .card-btn {
  border-color: #d4a85a;
  color: #d4a85a;
}

.pricing-card.featured .card-btn:hover {
  background: #d4a85a;
  color: #1a1a1a;
}

/* =====================
   HOW TO ORDER
===================== */
.order-section {
  position: relative;
  padding: 7rem 2rem;
}

.order-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
}

.order-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 10, 5, 0.82);
}

.order-container {
  position: relative;
  z-index: 2;
}

.order-intro {
  text-align: center;
  max-width: 560px;
  margin: 0.5rem auto 3.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
}

.order-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 780px;
  margin: 0 auto;
}

.order-step {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.order-step:last-child {
  border-bottom: none;
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #d4a85a;
  line-height: 1;
  min-width: 60px;
}

.step-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.step-content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  font-weight: 300;
}

@media (max-width: 600px) {
  .order-step {
    gap: 1.5rem;
  }
  .step-number {
    font-size: 2rem;
    min-width: 45px;
  }
}

/* =====================
   CTA BANNER
===================== */
.cta-banner {
  position: relative;
  padding: 7rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #2c1f0e;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 13, 5, 0.65);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  font-weight: 300;
}

.cta-btn {
  display: inline-block;
  padding: 1rem 2.8rem;
  background: #8a6a3a;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.2s, transform 0.2s;
}

.cta-btn:hover {
  background: #a07840;
  transform: translateY(-2px);
}

/* =====================
   CONTACT
===================== */
.contact-section {
  position: relative;
  padding: 8rem 2rem;
  background-color: #1c1209;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 8, 3, 0.72);
}

.contact-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.contact-intro {
  text-align: center;
  max-width: 560px;
  margin: 1rem auto 3.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
}

.contact-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 36px;
  height: 36px;
  color: #d4a85a;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.phone-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.phone-number:hover {
  color: #d4a85a;
}

/* =====================
   PRIVACY POLICY PAGE
===================== */
.policy-section {
  padding: 10rem 2rem 6rem;
  background-color: #faf8f4;
}

.policy-date {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 3rem;
  font-style: italic;
}

.policy-body {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.policy-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.75rem;
}

.policy-block p {
  font-size: 0.95rem;
  color: #5a5a5a;
  line-height: 1.9;
  font-weight: 300;
}

.policy-block a {
  color: #8a6a3a;
  text-decoration: underline;
}

/* =====================
   FOOTER
===================== */
.site-footer {
  background-color: #111111;
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.footer-nav a {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: rgba(255,255,255,0.9);
}

.footer-bottom {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 900px) {
  .split-block,
  .split-block.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2.5rem;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }

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

  .gallery-item.tall {
    grid-row: span 1;
  }

  .gallery-item.tall .img-placeholder {
    aspect-ratio: 4/3;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.98);
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li a {
    color: #3a3a3a;
    font-size: 0.9rem;
  }

  .nav-toggle {
    display: flex;
  }

  .section {
    padding: 4.5rem 1.25rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .gallery-item.wide {
    grid-column: span 1;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-nav {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
}

/* =====================
   MOBILE IMAGE FIXES
===================== */
@media (max-width: 768px) {

  /* Hero */
  .hero {
    height: 84vw;
    min-height: 280px;
  }

  .hero-img {
    object-position: center 20%;
    height: 100%;
  }

  .hero-heading {
    font-size: 1.6rem;
    margin-bottom: 0;
  }

  /* Section split images */
  .section-img {
    aspect-ratio: 16/9;
    width: 100%;
    border-radius: 4px;
  }

  /* Photo gallery — 2 columns on mobile */
  .photo-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Ranch stats */
  .ranch-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Order section */
  .order-section {
    padding: 4.5rem 1.25rem;
  }

  /* Contact section */
  .contact-section {
    padding: 5rem 1.25rem;
  }

  .phone-number {
    font-size: 1.8rem;
  }
}
