:root {
  /* Color palette from Figma design */
  --color-burgundy: #8b4049;
  --color-burgundy-dark: #6d323a;
  --color-cream: #f5f1ea;
  --color-beige: #e8dfd3;
  --color-charcoal: #3a3a3a;
  
  /* Legacy variables for compatibility */
  --brand: #8b4049;
  --brand-light: #6d323a;
  --accent-red: #8b4049;
  --ink: #3a3a3a;
  --bg: #f5f1ea;
  --bg-alt: #e8dfd3;
  --alt: #FFFFFF;
  --muted: #6B5B5B;
  --border: #e8dfd3;
  --shadow: rgba(0, 0, 0, 0.08);
  --shadow-hover: rgba(139, 64, 73, 0.15);
  --radius: 20px;
  --radius-small: 12px;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--color-cream);
  color: var(--color-charcoal);
  font: 18px/1.6 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Responsive images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

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

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

h1, h2, h3, h4 {
  margin: 0 0 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}

h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-burgundy);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-burgundy);
  position: relative;
  padding-bottom: 0.5rem;
  font-weight: 600;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  margin-top: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--color-burgundy);
  font-weight: 600;
  line-height: 1.4;
}

h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

/* Header */
.site-header {
  background: var(--alt);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header-logo {
  height: 64px;
  width: auto;
}

.header-nav {
  display: none;
  gap: 2rem;
  align-items: center;
}

.header-nav a {
  color: var(--color-charcoal);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.header-instagram {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-burgundy);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.header-instagram:hover {
  color: var(--color-burgundy-dark);
}

.header-instagram-icon {
  width: 20px;
  height: 20px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 500px;
  background-image: url('/images/hero.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100%;
  overflow: hidden;
}

.hero-logo {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
  width: 100px;
  height: auto;
  max-width: 100%;
  background: var(--color-cream);
  padding: 12px;
  border-radius: var(--radius-small);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 500px;
  width: 100%;
}

.hero-text-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  background: rgba(0, 0, 0, 0.5);
}

.hero-text-content {
  max-width: 100%;
  text-align: center;
}

.hero-tagline {
  font-size: 1.5rem;
  color: #FFFFFF;
  margin: 0 0 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  font-style: italic;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: center;
  display: inline-block;
}

.hero-bullets li {
  color: #FFFFFF;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  padding-left: 2.5rem;
  position: relative;
}

.hero-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 18px;
  height: 18px;
  background: var(--color-burgundy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #FFFFFF;
  background: var(--color-burgundy);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-cta:hover {
  background: var(--color-burgundy-dark);
  transform: translateY(-2px);
}

.hero-cta-icon {
  width: 20px;
  height: 20px;
}

.hero-image-area {
  display: none;
}

/* Tablet and up - begin split layout */
@media (min-width: 768px) {
  .hero {
    min-height: 600px;
  }

  .hero-logo {
    width: 120px;
    top: 24px;
    left: 24px;
    padding: 14px;
  }

  .hero-container {
    grid-template-columns: 45% 55%;
    min-height: 600px;
  }

  .hero-text-wrapper {
    background: rgba(58, 58, 58, 0.6);
    padding: 4rem 3rem;
    justify-content: flex-start;
  }

  .hero-text-content {
    text-align: left;
    max-width: 100%;
  }

  .hero-bullets {
    text-align: left;
  }

  .hero-tagline {
    font-size: 1.75rem;
  }

  .hero-image-area {
    display: block;
    /* Background image is on .hero, this area just shows it */
  }
}

/* Desktop - full split layout */
@media (min-width: 1025px) {
  .hero {
    min-height: 700px;
  }

  .hero-logo {
    width: 150px;
    top: 32px;
    left: 32px;
    padding: 16px;
  }

  .hero-container {
    grid-template-columns: 40% 60%;
    min-height: 700px;
  }

  .hero-text-wrapper {
    padding: 4rem;
  }

  .hero-tagline {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .hero-bullets {
    margin-bottom: 2.5rem;
  }

  .hero-bullets li {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  border: 2px solid var(--ink);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  cursor: pointer;
  background: transparent;
  color: var(--ink);
}

.btn:hover {
  background: var(--ink);
  color: var(--alt);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow);
}

.btn.primary {
  background: var(--color-burgundy);
  border-color: var(--color-burgundy);
  color: var(--alt);
  box-shadow: 0 4px 12px var(--shadow-hover);
}

.btn.primary:hover {
  background: var(--color-burgundy-dark);
  border-color: var(--color-burgundy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--shadow-hover);
}

.preorder-note {
  color: var(--muted);
  margin-top: 0.75rem;
  font-size: 0.95rem;
  font-style: italic;
}

/* Sections */
.section {
  padding: 80px 0;
}

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

.section-cream {
  background: var(--color-cream);
}

.section-white {
  background: var(--alt);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  max-width: 672px;
  margin: 0 auto;
  opacity: 0.9;
  color: var(--color-charcoal);
}

/* Grid and Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin: 20px 0 30px;
}

.card {
  background: var(--alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px var(--shadow);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-hover);
  border-color: var(--brand);
}

.card h4 {
  margin: 0 0 0.5rem;
  color: var(--color-burgundy);
  font-size: 1.2rem;
}

.card .muted {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0.5rem 0;
}

.price {
  font-weight: 600;
  margin-top: 0.75rem;
  color: var(--color-burgundy);
  font-size: 1.1rem;
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
  font-style: italic;
  margin-top: 1rem;
}

.muted {
  color: var(--muted);
}

/* About Section */
.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto 4rem;
}

.about-feature {
  text-align: center;
  padding: 2rem;
  background: var(--color-cream);
  border-radius: var(--radius);
}

.about-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--color-burgundy);
  border-radius: 50%;
  margin-bottom: 1rem;
  color: var(--alt);
}

.about-feature-icon svg {
  width: 32px;
  height: 32px;
}

.about-feature h3 {
  margin-bottom: 0.75rem;
}

.about-feature p {
  color: var(--color-charcoal);
  opacity: 0.8;
}

.about-info {
  max-width: 768px;
  margin: 4rem auto 0;
  padding: 2rem;
  background: var(--color-beige);
  border-radius: var(--radius);
  text-align: center;
}

.about-info h3 {
  margin-bottom: 1rem;
}

.about-info p {
  color: var(--color-charcoal);
  opacity: 0.9;
}

/* Products Section */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

/* Desktop - limit to 3 columns */
@media (min-width: 1025px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: var(--alt);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.product-image {
  width: 100%;
  height: 256px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-content {
  padding: 1.5rem;
}

.product-content h3 {
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.product-description {
  color: var(--color-charcoal);
  opacity: 0.8;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.product-button {
  width: 100%;
  background: var(--color-burgundy);
  color: var(--alt);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}

.product-button:hover {
  background: var(--color-burgundy-dark);
}

/* Instagram Feed Section */
.instagram-feed-header {
  text-align: center;
  margin-bottom: 3rem;
}

.instagram-feed-title {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.instagram-feed-title svg {
  width: 32px;
  height: 32px;
  color: var(--color-burgundy);
}

.instagram-feed-button {
  display: inline-block;
  margin-top: 1.5rem;
  background: linear-gradient(90deg, #9333ea, #ec4899);
  color: var(--alt);
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.2s ease;
}

.instagram-feed-button:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.instagram-feed-button svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
}

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

@media (min-width: 768px) {
  .instagram-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.instagram-post {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-small);
  cursor: pointer;
  text-decoration: none;
}

.instagram-post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.instagram-post:hover .instagram-post-image {
  transform: scale(1.1);
}

.instagram-post-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--alt);
  padding: 1rem;
}

.instagram-post:hover .instagram-post-overlay {
  opacity: 1;
}

.instagram-post-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 0.75rem;
}

.instagram-post-stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.instagram-post-stat svg {
  width: 20px;
  height: 20px;
}

.instagram-post-caption {
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.instagram-ugc {
  margin-top: 4rem;
  background: var(--color-cream);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

.instagram-ugc h3 {
  margin-bottom: 1rem;
}

.instagram-ugc p {
  color: var(--color-charcoal);
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.instagram-hashtags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.instagram-hashtag {
  background: var(--alt);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  color: var(--color-burgundy);
  font-weight: 500;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1280px;
  margin: 0 auto;
}

.contact-info h3 {
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--color-burgundy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--alt);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-details h4 {
  margin-bottom: 0.25rem;
  color: var(--color-charcoal);
  font-size: 1rem;
}

.contact-details p {
  color: var(--color-charcoal);
  opacity: 0.8;
  margin: 0;
}

.contact-form {
  background: var(--color-cream);
  padding: 2rem;
  border-radius: var(--radius);
}

.contact-form h3 {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  color: var(--color-charcoal);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-small);
  border: 1px solid var(--color-beige);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-burgundy);
  box-shadow: 0 0 0 2px rgba(139, 64, 73, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  background: var(--color-burgundy);
  color: var(--alt);
  padding: 0.75rem 1rem;
  border-radius: 9999px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}

.form-submit:hover {
  background: var(--color-burgundy-dark);
}

/* Footer */
.site-footer {
  padding: 48px 0;
  margin-top: 0;
  background: var(--color-burgundy);
  color: var(--alt);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-columns h4 {
  color: var(--alt);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-columns a {
  color: var(--alt);
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.footer-columns a:hover {
  opacity: 1;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.footer-social a svg {
  width: 20px;
  height: 20px;
}

.footer-social a.instagram {
  background: linear-gradient(135deg, #9333ea, #ec4899);
}

.footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
  opacity: 0.9;
}

.footer-columns p {
  margin: 0.5rem 0;
  line-height: 1.6;
}

.tiny {
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* Instagram Grid */
.ig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

code {
  background: var(--bg-alt);
  padding: 2px 8px;
  border-radius: 6px;
  font-family: 'Monaco', 'Menlo', 'Courier New', monospace;
  font-size: 0.9em;
  color: var(--brand);
  border: 1px solid var(--border);
}

/* ========================================
   RESPONSIVE DESIGN - Mobile First Approach
   ======================================== */

/* Base styles are mobile-first (already defined above) */

/* Small phones (up to 480px) */
@media (max-width: 480px) {
  html, body {
    font-size: 15px;
  }

  .container {
    padding: 0 16px;
  }

  h1 {
    font-size: 1.9rem;
    line-height: 1.2;
  }

  h2 {
    font-size: 1.5rem;
    margin-top: 1.25rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  h4 {
    font-size: 1.05rem;
  }

  .hero-image-container {
    padding: 20px 16px;
  }

  .hero-img {
    border-radius: var(--radius-small);
    box-shadow: 0 4px 16px var(--shadow);
  }

  .hero {
    padding: 30px 0 24px;
  }

  .hero-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .logo {
    width: 120px;
  }

  .hero-text {
    width: 100%;
  }

  .hero-text .tagline {
    font-size: 1rem;
    margin: 0.5rem 0 1.25rem;
  }

  .cta-row {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
    text-align: center;
    padding: 0.7rem 1.25rem;
    font-size: 0.9rem;
    min-height: 44px; /* Better touch target */
  }

  .section {
    padding: 32px 0;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .card {
    padding: 20px;
  }

  .ig-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .preorder-note {
    font-size: 0.85rem;
  }
}

/* Header responsive */
@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }
  
  .header-instagram span {
    display: inline;
  }
}

@media (max-width: 767px) {
  .header-nav {
    display: none;
  }
  
  .header-instagram span {
    display: none;
  }
}

/* Large phones / Small tablets (481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  html, body {
    font-size: 16px;
  }

  .container {
    padding: 0 20px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-image-container {
    padding: 30px 20px;
  }

  .hero-img {
    border-radius: var(--radius-small);
  }

  .hero {
    padding: 40px 0 30px;
  }

  .hero-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .logo {
    width: 140px;
  }

  .hero-text .tagline {
    font-size: 1.15rem;
  }

  .section {
    padding: 40px 0;
  }

  .grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
  }

  .ig-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

  .cta-row {
    flex-wrap: wrap;
  }

  .btn {
    min-width: 140px;
    min-height: 44px; /* Better touch target */
  }

  .footer-columns {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
  }
}

/* Tablets (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    max-width: 960px;
    padding: 0 32px;
  }

  .hero-image-container {
    padding: 50px 32px;
  }

  .hero {
    padding: 50px 0 40px;
  }

  .hero-flex {
    gap: 36px;
  }

  .logo {
    width: 150px;
  }

  .section {
    padding: 50px 0;
  }

  .grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 18px;
  }

  .ig-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 22px;
  }

  .footer-columns {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

/* Desktop (1025px and up) */
@media (min-width: 1025px) {
  .container {
    max-width: 1200px;
    padding: 0 40px;
  }

  .hero-image-container {
    padding: 60px 40px;
  }

  .hero {
    padding: 60px 0 50px;
  }

  .hero-flex {
    gap: 40px;
  }

  .section {
    padding: 60px 0;
  }

  .grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
  }

  .ig-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
  }
}

/* Large Desktop (1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }

  .hero-image-container {
    max-width: 1600px;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .btn {
    min-height: 44px;
    min-width: 44px;
  }

  .card:hover {
    transform: none; /* Disable hover effects on touch devices */
  }

  .logo:hover {
    transform: none;
  }
}

/* Print styles */
@media print {
  .hero-image,
  .cta-row,
  .site-footer {
    display: none;
  }

  .section {
    padding: 20px 0;
    page-break-inside: avoid;
  }
}
