:root {
  --bg: #f8f1e5;
  --surface: rgba(255, 248, 238, 0.85);
  --surface-strong: #fff8ef;
  --line: rgba(76, 58, 33, 0.12);
  --text: #2f2417;
  --muted: #6f604c;
  --accent: #c96f3b;
  --accent-dark: #8a4f29;
  --accent-soft: #e8b16d;
  --leaf: #56703d;
  --sun: #f2bf58;
  --royal: #2e5973;
  --shadow: 0 20px 45px rgba(92, 66, 35, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(242, 191, 88, 0.22), transparent 30%),
    radial-gradient(circle at top right, rgba(86, 112, 61, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(46, 89, 115, 0.06), transparent 40%),
    linear-gradient(180deg, #f6ead8 0%, #f7f0e8 45%, #f2e4d2 100%);
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(138, 79, 41, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(138, 79, 41, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 80%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.site-header,
.site-footer,
.cta-banner,
.card,
.quote-card,
.step-card,
.mini-card,
.experience-card,
.results-header,
.listing-card,
.steps-bar,
.confirmation-card,
.map-placeholder {
  backdrop-filter: blur(12px);
}

.site-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  background: rgba(255, 248, 239, 0.65);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  position: relative;
}

.compact-header {
  align-items: center;
}

.brand-block {
  max-width: 320px;
  flex: 0 0 auto;
  position: relative;
  z-index: 1;
}

.brand {
  font-family: "Sora", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.site-header .brand-mark {
  padding: 10px 16px 10px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 252, 247, 0.98), rgba(244, 230, 211, 0.94));
  border: 1px solid rgba(138, 79, 41, 0.2);
  box-shadow: 0 16px 34px rgba(92, 66, 35, 0.14);
}

.site-header .brand-mark span {
  color: var(--accent-dark);
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: block;
  object-fit: contain;
  box-shadow: 0 10px 24px rgba(46, 89, 115, 0.14);
}

.site-header .brand-logo {
  width: 68px;
  height: 68px;
  padding: 0;
  background: #fffdf9;
  border: 2px solid rgba(138, 79, 41, 0.18);
  box-shadow: 0 16px 34px rgba(46, 89, 115, 0.2);
}

.nav-toggle {
  display: none;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(138, 79, 41, 0.18);
  background: rgba(255, 255, 255, 0.7);
  color: var(--accent-dark);
  font-weight: 700;
}

.brand-tag,
.site-footer p,
.section-text,
.hero-text {
  color: var(--muted);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-left: auto;
  gap: 12px;
}

.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(201, 111, 59, 0.12);
  color: var(--accent-dark);
  transform: translateY(-1px);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(138, 79, 41, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 10px 24px rgba(92, 66, 35, 0.08);
}

.language-option {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
}

.language-option.active {
  background: linear-gradient(135deg, rgba(201, 111, 59, 0.14), rgba(86, 112, 61, 0.12));
  color: var(--accent-dark);
}

.hero-copy,
.page-hero,
.farm-hero,
.section-heading {
  position: relative;
}

.hero-copy::after,
.page-hero::after {
  content: "";
  display: block;
  width: 112px;
  height: 10px;
  margin-top: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--sun), var(--royal));
}

.hero-section,
.split-panel,
.booking-layout,
.contact-layout,
.listing-layout,
.details-layout,
.farm-hero {
  display: grid;
  gap: 24px;
}

.home-hero,
.home-hero-aside,
.home-hero-metrics,
.home-intro-band,
.intro-points,
.signature-cards {
  display: grid;
  gap: 24px;
}

.hero-section,
.split-panel,
.farm-hero {
  grid-template-columns: 1.2fr 0.9fr;
  align-items: center;
}

.home-hero {
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: start;
  padding: 30px 0 10px;
}

.home-hero-copy {
  padding: 22px 0;
}

.home-hero-copy h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.home-hero-copy .hero-text {
  max-width: 62ch;
  font-size: 1.05rem;
  line-height: 1.85;
}

.home-hero-copy::after {
  content: "";
  display: block;
  width: 124px;
  height: 12px;
  margin-top: 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b46838, #d7b463, #6b8573);
}

.home-hero-aside {
  align-items: start;
}

.home-hero-visual {
  overflow: hidden;
  padding: 14px;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.95), rgba(249, 240, 228, 0.92));
}

.home-hero-image {
  min-height: 330px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(21, 34, 24, 0.08), rgba(21, 34, 24, 0.26)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
}

.home-hero-note {
  padding: 18px 6px 8px;
}

.home-hero-note h2 {
  margin: 0 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

.home-hero-note p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.75;
}

.home-hero-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.home-hero-metrics article,
.signature-card {
  padding: 18px 18px 20px;
  border-radius: 24px;
  border: 1px solid rgba(117, 93, 54, 0.12);
  background: rgba(255, 251, 245, 0.78);
  box-shadow: 0 18px 35px rgba(92, 66, 35, 0.08);
}

.home-hero-metrics strong,
.signature-card h3 {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
}

.home-hero-metrics span,
.signature-card p,
.intro-card p,
.intro-points p {
  color: var(--muted);
  line-height: 1.7;
}

.home-search-panel {
  background: rgba(255, 251, 245, 0.9);
}

.home-intro-band {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
}

.intro-card {
  background: linear-gradient(135deg, rgba(255, 252, 247, 0.96), rgba(242, 233, 218, 0.88));
}

.intro-card h2 {
  margin-top: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  letter-spacing: -0.04em;
}

.intro-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-featured-shell {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(249, 240, 228, 0.88));
}

.signature-grid {
  gap: 18px;
}

.signature-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.signature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(180, 104, 56, 0.14), rgba(107, 133, 115, 0.18));
  color: var(--accent-dark);
  font-family: "Sora", sans-serif;
  font-weight: 700;
}

.home-destination-panel {
  align-items: start;
}

.home-story-panel {
  align-items: stretch;
}

.home-story-card {
  background: linear-gradient(180deg, rgba(255, 250, 243, 0.96), rgba(244, 235, 223, 0.88));
}

.home-cta-banner {
  background: linear-gradient(135deg, rgba(251, 246, 238, 0.95), rgba(236, 224, 206, 0.9));
}

.hero-section {
  padding: 48px 0 28px;
}

.hero-copy h1,
.page-hero h1,
.farm-hero h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.page-hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
}

.hero-text,
.section-text {
  max-width: 60ch;
  font-size: 1.02rem;
  line-height: 1.7;
}

.card,
.quote-card,
.step-card,
.mini-card,
.experience-card,
.listing-card,
.results-header,
.steps-bar,
.cta-banner,
.site-footer,
.map-placeholder {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.card,
.quote-card,
.step-card,
.mini-card,
.results-header,
.steps-bar,
.cta-banner,
.site-footer,
.detail-card,
.contact-form,
.booking-form,
.booking-summary,
.approval-card,
.onboarding-form,
.filter-panel,
.booking-widget,
.info-card {
  padding: 24px;
}

.search-panel h2,
.section-heading h2,
.listing-copy h2,
.detail-card h2,
.booking-form h2,
.booking-summary h2,
.contact-form h2,
.info-card h2,
.onboarding-form h2,
.approval-card h2 {
  margin-top: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.03em;
}

.search-grid,
.form-grid {
  display: grid;
  gap: 14px;
}

.search-grid label,
.filter-panel label,
.booking-form label,
.contact-form label,
.onboarding-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(111, 96, 76, 0.22);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
}

textarea {
  resize: vertical;
}

.hero-actions,
.pill-row,
.search-badges,
.listing-features,
.feature-chips,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.primary {
  background: linear-gradient(135deg, var(--accent), #d98839);
  color: #fffaf4;
  box-shadow: 0 12px 24px rgba(201, 111, 59, 0.28);
}

.secondary {
  border-color: rgba(138, 79, 41, 0.18);
  background: rgba(255, 255, 255, 0.55);
  color: var(--accent-dark);
}

.text-link {
  color: var(--royal);
  font-weight: 700;
}

.admin-logout,
.admin-link-button {
  font: inherit;
}

.admin-logout {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(138, 79, 41, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: var(--accent-dark);
  font-weight: 700;
}

.pill,
.search-badges span,
.listing-features span,
.feature-chips span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(86, 112, 61, 0.1);
  color: var(--leaf);
  font-size: 0.93rem;
  font-weight: 700;
}

.section-block,
.page-stack {
  display: grid;
  gap: 24px;
}

.region-strip {
  overflow: hidden;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.region-grid article {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(138, 79, 41, 0.1);
}

.region-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.page-stack {
  padding-top: 34px;
}

.section-block {
  padding: 18px 0;
}

.section-heading {
  max-width: 680px;
}

.left-aligned {
  max-width: unset;
}

.card-grid,
.steps-grid,
.feature-list {
  display: grid;
  gap: 20px;
}

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.experience-card,
.listing-card {
  overflow: hidden;
}

.media,
.listing-media,
.gallery-tile {
  min-height: 220px;
  background-size: cover;
  background-position: center;
}

.media-one {
  background-image: linear-gradient(135deg, rgba(59, 97, 43, 0.35), rgba(201, 111, 59, 0.22)), url("https://images.unsplash.com/photo-1500937386664-56d1dfef3854?auto=format&fit=crop&w=900&q=80");
}

.media-two {
  background-image: linear-gradient(135deg, rgba(86, 112, 61, 0.22), rgba(242, 191, 88, 0.28)), url("https://images.unsplash.com/photo-1464226184884-fa280b87c399?auto=format&fit=crop&w=900&q=80");
}

.media-three {
  background-image: linear-gradient(135deg, rgba(201, 111, 59, 0.18), rgba(47, 36, 23, 0.28)), url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=900&q=80");
}

.media-four {
  background-image: linear-gradient(135deg, rgba(242, 191, 88, 0.18), rgba(86, 112, 61, 0.26)), url("https://images.unsplash.com/photo-1472396961693-142e6e269027?auto=format&fit=crop&w=900&q=80");
}

.media-five {
  background-image: linear-gradient(135deg, rgba(46, 89, 115, 0.2), rgba(242, 191, 88, 0.18)), url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=900&q=80");
}

.media-six {
  background-image: linear-gradient(135deg, rgba(201, 111, 59, 0.18), rgba(126, 154, 88, 0.26)), url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=80");
}

.media-seven {
  background-image: linear-gradient(135deg, rgba(86, 112, 61, 0.22), rgba(46, 89, 115, 0.18)), url("https://images.unsplash.com/photo-1502082553048-f009c37129b9?auto=format&fit=crop&w=900&q=80");
}

.media-eight {
  background-image: linear-gradient(135deg, rgba(201, 111, 59, 0.14), rgba(242, 191, 88, 0.24)), url("https://images.unsplash.com/photo-1510797215324-95aa89f43c33?auto=format&fit=crop&w=900&q=80");
}

.card-body,
.listing-copy {
  padding: 22px;
}

.card-meta,
.listing-footer,
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.split-panel,
.testimonial-band {
  align-items: start;
}

.mini-card h3,
.step-card h3,
.quote-card strong,
.detail-card h2,
.listing-copy h2,
.experience-card h3 {
  margin-bottom: 10px;
}

.steps-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card span,
.step-state span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(201, 111, 59, 0.12);
  color: var(--accent-dark);
  font-family: "Sora", sans-serif;
}

.testimonial-band {
  padding: 10px 0;
}

.quote-card p {
  margin-top: 0;
  font-size: 1.05rem;
  line-height: 1.7;
}

.cta-banner,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.listing-layout,
.details-layout,
.booking-layout,
.contact-layout {
  grid-template-columns: 320px minmax(0, 1fr);
  align-items: start;
}

.results-panel,
.details-main,
.details-side,
.contact-details {
  display: grid;
  gap: 20px;
}

.filter-panel fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 10px;
}

.filter-panel legend {
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--text);
}

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.listing-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
}

.page-hero,
.slim-hero {
  padding: 12px 0 6px;
}

.farm-hero {
  grid-template-columns: minmax(0, 1fr) 320px;
}

.booking-widget,
.booking-summary {
  position: sticky;
  top: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 20px;
}

.gallery-tile {
  min-height: 180px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-tile.tall {
  grid-row: span 2;
  min-height: 380px;
}

.detail-list,
.number-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.review-item + .review-item,
.summary-row + .summary-row {
  margin-top: 12px;
}

.map-placeholder {
  display: grid;
  place-items: center;
  min-height: 180px;
  background:
    linear-gradient(135deg, rgba(86, 112, 61, 0.2), rgba(242, 191, 88, 0.26)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.18) 0 12px, transparent 12px 24px);
}

.steps-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.step-state {
  padding: 12px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--muted);
  font-weight: 700;
}

.step-state.active {
  color: var(--text);
  background: rgba(201, 111, 59, 0.12);
}

.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.full-span {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-feedback {
  min-height: 24px;
  margin: 8px 0 0;
  color: var(--royal);
  font-weight: 700;
}

.form-feedback.is-error {
  color: #b3432f;
}

.form-feedback.is-success {
  color: var(--royal);
}

.admin-hint {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.compact-actions {
  margin-top: 8px;
}

.loading-card {
  min-height: 100%;
}

.dynamic-feature-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.96), rgba(255, 248, 239, 0.9)),
    var(--surface);
}

.dynamic-feature-card .media {
  min-height: 260px;
}

.seo-spotlight-card {
  display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.seo-spotlight-card:hover,
.seo-spotlight-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 45px rgba(92, 66, 35, 0.16);
  border-color: rgba(201, 111, 59, 0.24);
}

.spotlight-shell {
  position: relative;
}

.seo-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.85fr;
  gap: 24px;
  align-items: stretch;
  padding: 20px 0 8px;
}

.seo-hero-copy,
.seo-hero-panel {
  position: relative;
}

.seo-hero-copy {
  padding: 36px;
  border-radius: 34px;
  border: 1px solid rgba(76, 58, 33, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.seo-hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.92;
}

.seo-hero-copy > * {
  position: relative;
  z-index: 1;
}

.jaipur-theme .seo-hero-copy {
  background: linear-gradient(135deg, rgba(242, 191, 88, 0.22), rgba(201, 111, 59, 0.12));
}

.udaipur-theme .seo-hero-copy {
  background: linear-gradient(135deg, rgba(86, 112, 61, 0.2), rgba(46, 89, 115, 0.12));
}

.jodhpur-theme .seo-hero-copy {
  background: linear-gradient(135deg, rgba(201, 111, 59, 0.2), rgba(47, 36, 23, 0.08));
}

.seo-hero-panel {
  padding: 28px;
}

.seo-hero-panel strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  line-height: 1.05;
}

.seo-stat-stack,
.seo-copy-grid {
  display: grid;
  gap: 20px;
}

.seo-stat-stack {
  margin-top: 20px;
}

.seo-stat-stack article {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(138, 79, 41, 0.12);
}

.seo-stat-stack strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.seo-stat-stack span {
  color: var(--muted);
  line-height: 1.6;
}

.seo-copy-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.upload-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.single-preview-grid {
  grid-template-columns: minmax(0, 1fr);
}

.upload-preview-card {
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(138, 79, 41, 0.12);
  background: rgba(255, 255, 255, 0.55);
}

.upload-preview-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 700;
}

.upload-preview-card img,
.upload-preview-strip img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.upload-preview-card img {
  display: none;
  max-height: 180px;
}

.upload-preview-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.upload-preview-strip img {
  min-height: 78px;
  max-height: 78px;
}

.preview-empty {
  color: var(--muted);
  font-size: 0.95rem;
}

.dynamic-blog-card {
  display: grid;
  gap: 16px;
}

.blog-cover,
.article-hero-image {
  min-height: 220px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
}

.article-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.article-body {
  display: grid;
  gap: 18px;
}

.article-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
  font-size: 1.03rem;
}

.article-sidebar {
  position: sticky;
  top: 20px;
}

.admin-shell {
  padding-bottom: 80px;
}

.admin-summary,
.admin-grid,
.admin-list,
.admin-actions {
  display: grid;
  gap: 20px;
}

.admin-summary {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.summary-card {
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 248, 239, 0.88);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.summary-card strong {
  display: block;
  margin-top: 8px;
  font-family: "Sora", sans-serif;
  font-size: 2rem;
}

.admin-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.admin-badge,
.status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(46, 89, 115, 0.1);
  color: var(--royal);
  font-weight: 700;
}

.admin-item {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(138, 79, 41, 0.12);
  background: rgba(255, 255, 255, 0.52);
}

.admin-item h3,
.admin-item p {
  margin-top: 0;
}

.admin-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}

.admin-item p {
  color: var(--muted);
  line-height: 1.6;
}

.admin-actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-action {
  min-height: 42px;
  border: 1px solid rgba(138, 79, 41, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  font-weight: 700;
}

.admin-action:hover,
.admin-action:focus-visible {
  background: rgba(201, 111, 59, 0.12);
}

.empty-state {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.45);
  color: var(--muted);
}

.full-width-section {
  width: 100%;
}

.auth-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
}

.auth-card {
  width: min(560px, 100%);
  padding: 34px;
}

.auth-form {
  display: grid;
  gap: 16px;
}

.scenic-panel {
  align-items: stretch;
}

.visual-stack {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 20px;
}

.highlight-panel {
  align-self: stretch;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stat-row article {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(138, 79, 41, 0.1);
}

.stat-row strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.8rem;
}

.story-grid,
.article-grid,
.seo-grid,
.link-grid,
.photo-grid {
  display: grid;
  gap: 20px;
}

.story-grid,
.article-grid,
.seo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.link-grid,
.photo-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story-card,
.blog-card,
.location-card,
.photo-card,
.legal-card {
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 248, 239, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.story-card p,
.blog-card p,
.location-card p,
.photo-card p,
.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.7;
}

.page-banner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.banner-image {
  min-height: 320px;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
}

.about-banner {
  background-image: linear-gradient(135deg, rgba(46, 89, 115, 0.18), rgba(242, 191, 88, 0.22)), url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1200&q=80");
}

.dynamic-banner-image {
  background-image: linear-gradient(135deg, rgba(46, 89, 115, 0.18), rgba(242, 191, 88, 0.22));
}

.locations-banner {
  background-image: linear-gradient(135deg, rgba(201, 111, 59, 0.18), rgba(86, 112, 61, 0.24)), url("https://images.unsplash.com/photo-1501594907352-04cda38ebc29?auto=format&fit=crop&w=1200&q=80");
}

.blog-banner {
  background-image: linear-gradient(135deg, rgba(46, 89, 115, 0.18), rgba(201, 111, 59, 0.22)), url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1200&q=80");
}

.location-link-card,
.blog-link-card {
  display: block;
}

.location-link-card strong,
.blog-link-card strong {
  display: inline-block;
  margin-top: 10px;
  color: var(--royal);
}

.legal-shell {
  display: grid;
  gap: 18px;
}

.dynamic-content-grid,
.contact-dynamic-cards {
  display: grid;
  gap: 20px;
}

.single-action-row {
  grid-template-columns: minmax(0, 1fr);
}

.confirmation-card {
  margin-top: 24px;
  padding: 18px;
  background: rgba(201, 111, 59, 0.08);
  border-radius: 22px;
}

.onboarding-intro,
.contact-layout {
  align-items: stretch;
}

.approval-card {
  align-self: stretch;
}

.site-footer {
  margin-top: 36px;
}

@media (max-width: 980px) {
  .hero-section,
  .home-hero,
  .split-panel,
  .listing-layout,
  .details-layout,
  .booking-layout,
  .contact-layout,
  .farm-hero,
  .seo-hero,
  .article-hero,
  .cta-banner,
  .site-footer,
  .listing-card,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .three-up,
  .two-up,
  .steps-grid,
  .steps-bar,
  .gallery-grid,
  .region-grid,
  .two-col,
  .admin-summary,
  .admin-grid,
  .admin-actions,
  .home-hero-metrics,
  .story-grid,
  .article-grid,
  .seo-grid,
  .seo-copy-grid,
  .link-grid,
  .photo-grid,
  .upload-preview-grid,
  .visual-stack,
  .page-banner,
  .stat-row,
  .home-intro-band,
  .intro-points,
  .signature-cards {
    grid-template-columns: 1fr;
  }

  .site-header,
  .cta-banner,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .language-switcher {
    align-self: flex-start;
  }

  .gallery-tile.tall {
    grid-row: span 1;
    min-height: 240px;
  }

  .booking-widget,
  .booking-summary {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 14px;
  }

  .site-header,
  .card,
  .quote-card,
  .step-card,
  .mini-card,
  .results-header,
  .steps-bar,
  .cta-banner,
  .site-footer,
  .detail-card,
  .contact-form,
  .booking-form,
  .booking-summary,
  .approval-card,
  .onboarding-form,
  .filter-panel,
  .booking-widget,
  .info-card {
    padding: 18px;
    border-radius: 22px;
  }

  .hero-copy h1,
  .home-hero-copy h1,
  .page-hero h1,
  .farm-hero h1 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .home-hero {
    padding-top: 18px;
  }

  .home-hero-copy {
    padding-top: 6px;
  }

  .home-hero-image {
    min-height: 240px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .seo-hero-copy,
  .seo-hero-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .article-hero,
  .upload-preview-card {
    padding: 18px;
    border-radius: 22px;
  }

  .main-nav {
    gap: 8px;
  }

  .language-switcher {
    width: 100%;
    justify-content: space-between;
  }

  .language-option {
    flex: 1;
  }

  .main-nav a {
    padding: 9px 12px;
  }

  .site-header .brand-mark {
    padding: 8px 12px 8px 8px;
    gap: 10px;
  }

  .site-header .brand-logo {
    width: 56px;
    height: 56px;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-header {
    align-items: stretch;
  }

  .main-nav {
    display: none;
    width: 100%;
    padding-top: 8px;
    border-top: 1px solid var(--line);
  }

  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav a {
    width: 100%;
    background: rgba(255, 255, 255, 0.5);
  }
}