/* naturvinresa.se - Premium Lifestyle CSS */
/* Luxury vagabond aesthetic for wine travelers */

/* CSS Variables */
:root {
  --color-bg: #faf8f5;
  --color-bg-warm: #f5f0e8;
  --color-text: #1a1a1a;
  --color-text-light: #5c5c5c;
  --color-burgundy: #722f37;
  --color-burgundy-dark: #5a252c;
  --color-burgundy-light: #8b3a44;
  --color-gold: #c9a961;
  --color-gold-light: #d4b97a;
  --color-olive: #6b7c5c;
  --color-cream: #f8f5f0;
  --color-border: #e8e2d8;
  --color-shadow: rgba(0, 0, 0, 0.08);
  
  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans: system-ui, -apple-system, sans-serif;
  
  --max-width: 800px;
  --max-width-wide: 1200px;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  
  --shadow-sm: 0 2px 8px var(--color-shadow);
  --shadow-md: 0 4px 20px var(--color-shadow);
  --shadow-lg: 0 8px 40px var(--color-shadow);
}

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

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

body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 0.75em;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); margin-top: 2em; }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); margin-top: 1.5em; }
h4 { font-size: 1.125rem; }

p {
  margin-bottom: 1.25em;
}

a {
  color: var(--color-burgundy);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--color-burgundy-light);
}

/* Header */
.site-header {
  background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.9) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-logo {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.site-logo:hover {
  color: var(--color-burgundy);
}

.site-logo span {
  color: var(--color-burgundy);
}

/* Navigation */
.site-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.site-nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-light);
  text-decoration: none;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.2s ease;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-burgundy);
  transition: width 0.3s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--color-burgundy);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  width: 100%;
}

/* Mobile nav — compact horizontal scroll */
@media (max-width: 640px) {
  .header-inner {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .site-logo {
    flex-shrink: 0;
  }

  .site-nav {
    flex-wrap: nowrap;
    gap: 0.25rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }

  .site-nav::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  .site-nav a {
    font-size: 0.8125rem;
    white-space: nowrap;
    padding: 0.75rem 0.5rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* Hero section - LUXURY */
.hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  overflow: hidden;
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding: 2.5rem 1rem;
  }
  
  .hero h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }
  
  .hero-tagline {
    font-size: 1.125rem;
  }
  
  .hero-intro {
    font-size: 1rem;
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(135deg, rgba(114, 47, 55, 0.8) 0%, rgba(90, 37, 44, 0.85) 50%, rgba(26, 26, 26, 0.9) 100%),
    url('../img/vineyard-sunset-hero.webp') center/cover no-repeat;
  z-index: -1;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  color: white;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 0.3em;
  color: white;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-style: italic;
  color: var(--color-gold-light);
  margin-bottom: 1.5em;
}

.hero-intro {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 600px;
  margin: 0 auto 2em;
  opacity: 0.95;
  line-height: 1.6;
}

.hero-cta {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-text);
}

.btn-primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  color: white;
}

/* Section styling */
.section {
  padding: 5rem 1.5rem;
}

.section-alt {
  background: var(--color-bg-warm);
}

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

.section-header h2 {
  margin-bottom: 0.5em;
}

.section-header p {
  color: var(--color-text-light);
  font-size: 1.125rem;
}

/* Article */
article {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

article h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  margin-bottom: 0.25em;
}

.article-meta {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: 2em;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.article-meta time::before {
  content: "·";
  margin-right: 1rem;
}

/* Lead paragraph */
.lead {
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  line-height: 1.6;
  color: var(--color-text-light);
  margin-bottom: 2em;
  padding-bottom: 1.5em;
  border-bottom: 1px solid var(--color-border);
}

/* Lists */
ul, ol {
  margin-bottom: 1.5em;
  padding-left: 1.5em;
}

li {
  margin-bottom: 0.75em;
}

/* Destination cards - LUXURY GRID */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: var(--max-width-wide);
  margin: 0 auto;
}

.destination-card {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
}

.destination-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.destination-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.destination-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.destination-card:hover .destination-card-image img {
  transform: scale(1.08);
}

.destination-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 100%);
}

.destination-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--color-burgundy);
  color: white;
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.destination-card-content {
  padding: 1.5rem;
}

.destination-card h3 {
  font-size: 1.5rem;
  margin: 0 0 0.5em;
}

.destination-card h3 a {
  color: var(--color-text);
  text-decoration: none;
}

.destination-card h3 a::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.destination-card h3 a:hover {
  color: var(--color-burgundy);
}

.destination-card {
  cursor: pointer;
}

.destination-card p {
  color: var(--color-text-light);
  font-size: 0.9375rem;
  margin-bottom: 0;
  line-height: 1.6;
}

.destination-card-meta {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.8125rem;
  color: var(--color-text-light);
}

/* Guide cards */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: var(--max-width-wide);
  margin: 0 auto;
}

.guide-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.guide-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-gold);
}

.guide-card h3 {
  font-size: 1.25rem;
  margin: 0 0 0.5em;
}

.guide-card {
  position: relative;
  cursor: pointer;
}

.guide-card h3 a {
  color: var(--color-text);
}

.guide-card h3 a::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.guide-card h3 a:hover {
  color: var(--color-burgundy);
}

.guide-card p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* Venue cards - LUXURY */
.venue-list {
  list-style: none;
  padding: 0;
  margin: 2em 0;
}

.venue-item {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}

.venue-item:hover {
  box-shadow: var(--shadow-md);
}

.venue-item.featured {
  border: 2px solid var(--color-gold);
  background: linear-gradient(135deg, white 0%, var(--color-cream) 100%);
}

.venue-item.featured::before {
  content: '★ Rekommenderas';
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-text);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}

.venue-item h3 {
  font-size: 1.5rem;
  margin: 0 0 0.5em;
}

.venue-item h3 a {
  color: var(--color-text);
  text-decoration: none;
}

.venue-item h3 a:hover {
  color: var(--color-burgundy);
}

.venue-meta {
  font-size: 0.875rem;
  color: var(--color-text-light);
  margin-bottom: 1em;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.venue-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.venue-item p {
  margin-bottom: 1em;
  line-height: 1.7;
}

.venue-details {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.venue-detail {
  display: flex;
  gap: 0.5rem;
  font-size: 0.9375rem;
}

.venue-detail strong {
  color: var(--color-burgundy);
  min-width: 80px;
}

/* Comparison table - LUXURY */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 2em 0;
  font-size: 0.9375rem;
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.comparison-table th {
  font-weight: 600;
  background: var(--color-bg-warm);
  font-family: var(--font-serif);
  color: var(--color-burgundy);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: var(--color-cream);
}

/* FAQ section - LUXURY */
.faq {
  margin: 3em 0;
  padding: 2.5rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.faq h2 {
  margin-top: 0;
  color: var(--color-burgundy);
}

.faq-item {
  margin-bottom: 2em;
  padding-bottom: 2em;
  border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.faq-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75em;
  color: var(--color-text);
}

.faq-item p {
  margin-bottom: 0;
  color: var(--color-text-light);
}

/* Breadcrumbs */
.breadcrumbs {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem 0;
  font-size: 0.875rem;
  color: var(--color-text-light);
}

.breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: var(--color-border);
}

.breadcrumbs a {
  color: var(--color-text-light);
}

.breadcrumbs a:hover {
  color: var(--color-burgundy);
}

/* Blockquote - LUXURY */
blockquote {
  margin: 2.5em 0;
  padding: 2em 2.5em;
  border-left: 4px solid var(--color-gold);
  background: var(--color-cream);
  font-style: italic;
  font-size: 1.125rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

blockquote p:last-child {
  margin-bottom: 0;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
}

figure {
  margin: 2.5em 0;
}

figcaption {
  font-size: 0.875rem;
  color: var(--color-text-light);
  text-align: center;
  margin-top: 0.75em;
}

/* Article image */
.article-image {
  margin: 2em -1.5rem;
  position: relative;
}

.article-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 0;
}

@media (min-width: 840px) {
  .article-image {
    margin: 2em 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  
  .article-image img {
    border-radius: var(--radius-lg);
  }
}

/* Links section */
.links-section {
  margin: 2.5em 0;
  padding: 2rem;
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.links-section h3 {
  margin-top: 0;
  font-size: 1.25rem;
  color: var(--color-burgundy);
}

.links-section ul {
  margin-bottom: 0;
}

.links-section li {
  margin-bottom: 0.75em;
}

/* Tags/badges */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.375rem 0.75rem;
  border-radius: 100px;
  background: var(--color-burgundy);
  color: white;
}

.tag-gold {
  background: var(--color-gold);
  color: var(--color-text);
}

.tag-olive {
  background: var(--color-olive);
}

/* Footer - LUXURY */
.site-footer {
  background: linear-gradient(135deg, var(--color-text) 0%, #2d2d2d 100%);
  color: var(--color-cream);
  padding: 4rem 1.5rem 2rem;
  margin-top: 5rem;
}

.footer-inner {
  max-width: var(--max-width-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
}

.footer-section h4 {
  font-size: 0.875rem;
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25em;
  color: var(--color-gold);
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 0;
}

.footer-section a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
  padding: 0.5rem 0;
  min-height: 44px;
  line-height: 1.5;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  max-width: var(--max-width-wide);
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* Print styles */
@media print {
  .site-header,
  .site-footer,
  .hero::before {
    display: none;
  }
  
  article {
    max-width: 100%;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Focus styles */
a:focus,
button:focus {
  outline: 2px solid var(--color-burgundy);
  outline-offset: 2px;
}

/* Selection */
::selection {
  background: var(--color-burgundy);
  color: white;
}

/* Lifestyle section */
.lifestyle-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, var(--color-bg-warm) 0%, var(--color-cream) 100%);
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: var(--max-width-wide);
  margin: 0 auto;
}

.lifestyle-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.lifestyle-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.lifestyle-item:hover img {
  transform: scale(1.05);
}

.lifestyle-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.7) 100%);
  color: white;
}

.lifestyle-item-overlay h4 {
  font-size: 1.125rem;
  margin: 0;
  color: white;
}

/* Hub page styling */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: var(--max-width-wide);
  margin: 0 auto;
}

.hub-card {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
  border: 1px solid var(--color-border);
  cursor: pointer;
}

.hub-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.hub-card-image {
  height: 180px;
  overflow: hidden;
}

.hub-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hub-card:hover .hub-card-image img {
  transform: scale(1.08);
}

.hub-card-content {
  padding: 1.5rem;
}

.hub-card h3 {
  margin: 0 0 0.5em;
  font-size: 1.25rem;
}

.hub-card h3 a {
  color: var(--color-text);
}

.hub-card h3 a::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hub-card h3 a:hover {
  color: var(--color-burgundy);
}

.hub-card p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* Newsletter section */
.newsletter {
  background: linear-gradient(135deg, var(--color-burgundy) 0%, var(--color-burgundy-dark) 100%);
  padding: 4rem 1.5rem;
  text-align: center;
  color: white;
}

.newsletter h2 {
  color: white;
  margin-bottom: 0.5em;
}

.newsletter p {
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto 1.5em;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  /* Grids become single column */
  .destination-grid,
  .guide-grid,
  .hub-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Lifestyle grid becomes 2 columns on small screens */
  .lifestyle-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  
  .lifestyle-item {
    aspect-ratio: 1/1;
  }
  
  .lifestyle-item-overlay {
    padding: 0.75rem;
  }
  
  .lifestyle-item-overlay h4 {
    font-size: 0.875rem;
  }
  
  /* Section padding reduced */
  .section,
  .lifestyle-section {
    padding: 3rem 1rem;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  /* Destination cards */
  .destination-card-image {
    height: 180px;
  }
  
  .destination-card-content {
    padding: 1.25rem;
  }
  
  .destination-card-meta {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  /* Guide cards */
  .guide-card {
    padding: 1.5rem;
  }
  
  /* Venue items */
  .venue-item {
    padding: 1.5rem;
  }
  
  .venue-details {
    gap: 0.5rem;
  }
  
  .venue-detail strong {
    min-width: auto;
    display: block;
    margin-bottom: 0.25rem;
  }
  
  /* Comparison table — horizontal scroll on mobile */
  .comparison-table {
    font-size: 0.875rem;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.75rem;
    white-space: nowrap;
  }
  
  /* FAQ */
  .faq {
    padding: 1.5rem;
  }
  
  /* Footer */
  .site-footer {
    padding: 3rem 1rem 1.5rem;
  }
  
  .footer-inner {
    gap: 2rem;
  }
  
  /* Buttons */
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .site-logo {
    font-size: 1.5rem;
  }
  
  .site-nav a {
    font-size: 0.75rem;
    padding: 0.75rem 0.375rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .destination-card-meta span {
    font-size: 0.75rem;
  }
  
  .lifestyle-grid {
    grid-template-columns: 1fr;
  }
  
  .lifestyle-item {
    aspect-ratio: 16/9;
  }
}
