/* =============================================
   MĂRGINIMEA SIBIULUI — Stylesheet
   ============================================= */

:root {
  --primary: #5c4a1e;
  --primary-light: #8b6914;
  --primary-dark: #3d3010;
  --accent: #c8860a;
  --accent-light: #e8a830;
  --green: #4a7c59;
  --green-light: #6aaa7c;
  --sky: #3d7ab0;
  --bg: #faf8f3;
  --bg-alt: #f3ede0;
  --white: #ffffff;
  --text: #2c2416;
  --text-muted: #6b5e4a;
  --text-light: #9a8a74;
  --border: #e0d4bc;
  --shadow-sm: 0 2px 8px rgba(92,74,30,0.08);
  --shadow-md: 0 6px 24px rgba(92,74,30,0.12);
  --shadow-lg: 0 16px 48px rgba(92,74,30,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }
h1 { font-size: clamp(2.8rem, 7vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-large { padding: 16px 36px; font-size: 1rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(250,248,243,0.97);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.navbar.scrolled .logo-text { color: var(--primary); }
.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 6px;
  transition: all var(--transition);
}
.navbar.scrolled .nav-links a { color: var(--text-muted); }
.nav-links a:hover {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.navbar.scrolled .nav-links a:hover {
  background: var(--bg-alt);
  color: var(--primary);
}
.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: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--text); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center/cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

/* Fallback gradient if image fails */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    #2d4a1e 0%,
    #4a3010 30%,
    #1a3a2e 60%,
    #2c1a0a 100%
  );
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,15,5,0.55) 0%,
    rgba(20,15,5,0.4) 40%,
    rgba(20,15,5,0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-block;
  background: rgba(200,134,10,0.9);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-title em {
  font-style: italic;
  color: var(--accent-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-subtitle span {
  font-size: 0.85em;
  color: var(--accent-light);
  font-style: italic;
}

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.6; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ===== AWARDS STRIP ===== */
.awards-strip {
  background: var(--primary);
  padding: 20px 0;
}
.awards-inner {
  display: flex;
  gap: 0;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.award-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 32px;
  color: var(--white);
}
.award-icon { font-size: 1.8rem; }
.award-item strong { display: block; font-size: 0.95rem; }
.award-item span { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.award-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  color: var(--primary-dark);
  margin-bottom: 20px;
}
.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.about-card {
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-light);
}
.about-icon { font-size: 2.5rem; margin-bottom: 16px; }
.about-card h3 { color: var(--primary); margin-bottom: 12px; font-size: 1.1rem; }
.about-card p { color: var(--text-muted); font-size: 0.92rem; }

.about-quote {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
}
.about-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-style: italic;
  color: rgba(255,255,255,0.95);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== VILLAGES ===== */
.villages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.village-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.village-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--border);
  transition: background var(--transition);
}
.village-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.village-card:hover::before { background: var(--accent); }
.village-card.featured {
  border-color: var(--accent-light);
  background: linear-gradient(to bottom, #fffdf6, var(--white));
}
.village-card.featured::before { background: var(--accent); }

.village-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.village-card h3 { color: var(--primary); margin-bottom: 4px; }
.village-year { color: var(--accent); font-size: 0.82rem; font-weight: 600; margin-bottom: 12px; }
.village-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; }
.village-attractions {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.village-attractions li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}
.village-attractions li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
}

/* ===== NATURE ===== */
.nature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 24px;
  margin-bottom: 64px;
}
.nature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.nature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.nature-card.large {
  grid-column: span 2;
  background: linear-gradient(135deg, #f0f7f0 0%, var(--white) 100%);
  border-color: var(--green-light);
}
.nature-icon { font-size: 2.2rem; margin-bottom: 16px; }
.nature-card h3 { color: var(--primary); margin-bottom: 12px; }
.nature-card p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 16px; }
.nature-details {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.nature-details span {
  background: var(--bg-alt);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

.seasons-title {
  text-align: center;
  color: var(--primary-dark);
  margin-bottom: 32px;
  font-family: 'Playfair Display', serif;
}
.seasons-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.season-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
.season-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.season-card.season-best {
  border-color: var(--accent);
  background: linear-gradient(to bottom, #fffdf4, var(--white));
}
.season-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}
.season-icon { font-size: 2rem; display: block; margin-bottom: 12px; }
.season-card h4 { color: var(--primary); margin-bottom: 8px; }
.season-card p { color: var(--text-muted); font-size: 0.85rem; }

/* ===== CULTURE ===== */
.culture-grid {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-bottom: 64px;
}
.culture-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.culture-item.reverse { direction: rtl; }
.culture-item.reverse > * { direction: ltr; }
.culture-img {
  height: 340px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}
.costume-img {
  background: url('img/port.jpg') center/cover no-repeat;
}
.glass-icons-img {
  background: url('img/Testatagen_Col02.gif') center/cover no-repeat;
}
.pastoral-img {
  background: url('img/harta saliste cu poiana soarelui traseu stil.png') center/cover no-repeat;
}
.crafts-img {
  background: url('img/mestesuguri.jpg') center/cover no-repeat;
}
.culture-content h3 { color: var(--primary); margin-bottom: 16px; }
.culture-content p { color: var(--text-muted); line-height: 1.8; }
.culture-content strong { color: var(--primary-light); }

.festivals-section { margin-bottom: 64px; }
.festivals-section h3 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-dark);
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 32px;
}
.festivals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.festival-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border-top: 3px solid var(--accent);
}
.festival-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.festival-date {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.festival-card h4 { color: var(--primary); margin-bottom: 8px; font-size: 1rem; }
.festival-card p { color: var(--text-muted); font-size: 0.88rem; }

.personalities-section h3 {
  font-family: 'Playfair Display', serif;
  color: var(--primary-dark);
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 32px;
}
.personalities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.personality-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.personality-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.personality-initial {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.personality-card h4 { color: var(--primary); margin-bottom: 4px; }
.personality-card p:first-of-type { color: var(--accent); font-size: 0.82rem; font-weight: 600; margin-bottom: 10px; }
.personality-card p:last-child { color: var(--text-muted); font-size: 0.88rem; }
.personality-card em { color: var(--primary-light); }

/* ===== GASTRONOMY ===== */
.food-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.food-category {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}
.food-cat-icon { font-size: 2.5rem; margin-bottom: 16px; }
.food-category h3 { color: var(--primary); margin-bottom: 24px; font-size: 1.2rem; }
.food-items { display: flex; flex-direction: column; gap: 20px; }
.food-item strong {
  display: block;
  color: var(--primary-light);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.food-item p { color: var(--text-muted); font-size: 0.88rem; }

/* ===== ACCOMMODATION ===== */
.accommodation-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-bottom: 64px;
}
.acc-type-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.acc-type-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.acc-type-icon { font-size: 2.8rem; margin-bottom: 16px; }
.acc-type-card h3 { color: var(--primary); margin-bottom: 12px; font-size: 1.05rem; }
.acc-type-card p { color: var(--text-muted); font-size: 0.88rem; }

.listings-section { margin-bottom: 64px; }
.listings-title {
  font-family: 'Playfair Display', serif;
  color: var(--primary-dark);
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 12px;
}
.listings-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 40px;
}
.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.listing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.listing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.listing-card.partner { border-color: var(--accent-light); }
.listing-card.partner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
}
.listing-img-partner {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.casa-rudi-img {
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.25)),
    url('https://primary.jwwb.nl/public/e/4/7/casa-rudi-ella/vnu7hf/dscn5441jpg.jpg?enable-io=true&width=816') center/cover no-repeat;
}
.partner-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.listing-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.listing-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.listing-img-placeholder {
  height: 200px;
  background: linear-gradient(135deg, #e8e0d0, #d4c8b4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  border-bottom: 1px solid var(--border);
}
.listing-info { padding: 24px; }
.listing-location { font-size: 0.8rem; color: var(--accent); font-weight: 600; display: block; margin-bottom: 8px; }
.listing-info h4 { color: var(--primary); margin-bottom: 8px; font-size: 1rem; }
.listing-info p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 16px; }
.listing-tags { display: flex; gap: 6px; margin-bottom: 16px; flex-wrap: wrap; }
.tag {
  background: var(--bg-alt);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

.join-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  text-align: center;
  color: var(--white);
}
.join-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 16px;
}
.join-cta p { color: rgba(255,255,255,0.82); max-width: 600px; margin: 0 auto 32px; }
.join-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 500px;
  margin: 0 auto 36px;
  text-align: left;
}
.benefit { color: rgba(255,255,255,0.9); font-size: 0.9rem; }

/* ===== CONTACT ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.contact-info h3 { color: var(--primary-dark); margin-bottom: 32px; }
.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.info-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.info-item strong { display: block; color: var(--primary); margin-bottom: 4px; font-size: 0.95rem; }
.info-item p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }
.info-item a { color: var(--accent); }
.info-item a:hover { text-decoration: underline; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(200,134,10,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  margin-top: 16px;
  padding: 12px 20px;
  background: #f0f9f0;
  border: 1px solid #a8d8a8;
  border-radius: 8px;
  color: #2d6a2d;
  font-size: 0.92rem;
}
.form-success.visible { display: block; }

/* ===== FOOTER ===== */
.footer { background: var(--primary-dark); color: var(--white); padding: 72px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 64px;
  margin-bottom: 48px;
}
.footer-brand h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: var(--accent-light);
}
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-bottom: 8px; }
.footer-quote { font-style: italic; color: rgba(255,255,255,0.5) !important; font-size: 0.82rem !important; margin-top: 16px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 { color: var(--accent-light); font-size: 0.88rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--accent-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 0.82rem; }
.footer-credits { color: rgba(255,255,255,0.55) !important; }
.footer-credits a { color: var(--accent-light); transition: color var(--transition); }
.footer-credits a:hover { color: var(--white); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nature-grid { grid-template-columns: repeat(2, 1fr); }
  .nature-card.large { grid-column: span 2; }
  .food-grid { grid-template-columns: 1fr 1fr; }
  .listings-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--primary-dark);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 50;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; color: rgba(255,255,255,0.9) !important; }

  .awards-inner { gap: 0; }
  .award-item { padding: 12px 16px; }
  .award-divider { display: none; }

  .nature-grid { grid-template-columns: 1fr; }
  .nature-card.large { grid-column: span 1; }
  .seasons-inner { grid-template-columns: 1fr 1fr; gap: 16px; }

  .culture-item { grid-template-columns: 1fr; gap: 32px; }
  .culture-item.reverse { direction: ltr; }
  .culture-img { height: 240px; }

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

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

  .join-cta { padding: 36px 24px; }
  .join-benefits { grid-template-columns: 1fr; max-width: none; }

  .form-row { grid-template-columns: 1fr; }

  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 2.6rem; }
  .seasons-inner { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .villages-grid { grid-template-columns: 1fr; }
}
