/* ============================================
   RAJDHANI GROCERIES — Brand Styles
   Plum + Amber | Editorial Serif Design
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --plum-50: #faf5f7;
  --plum-100: #f3e8ed;
  --plum-200: #e8d0d9;
  --plum-300: #d4a8b8;
  --plum-400: #c07d91;
  --plum-500: #a35271;
  --plum-600: #8b3f5c;
  --plum-700: #6e3048;
  --plum-800: #5c253a;
  --plum-900: #3d1724;
  --plum-950: #230c14;

  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-200: #fde68a;
  --amber-300: #fcd34d;
  --amber-400: #fbbf24;
  --amber-500: #f59e0b;
  --amber-600: #d97706;
  --amber-700: #b45309;
  --amber-800: #92400e;
  --amber-900: #78350f;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 3px rgba(61, 23, 36, 0.08);
  --shadow-md: 0 4px 20px rgba(61, 23, 36, 0.1);
  --shadow-lg: 0 12px 40px rgba(61, 23, 36, 0.15);
  --shadow-xl: 0 20px 60px rgba(61, 23, 36, 0.2);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--plum-900);
  background: var(--plum-50);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* --- Typography --- */
.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-700);
  background: var(--amber-100);
  padding: 0.4em 1em;
  border-radius: 50px;
  margin-bottom: var(--space-md);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--plum-900);
  margin-bottom: var(--space-md);
}

.text-accent {
  color: var(--amber-600);
  font-style: italic;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--plum-700);
  max-width: 560px;
  line-height: 1.7;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.875em 1.75em;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--plum-800);
  color: #fff;
  box-shadow: 0 4px 16px rgba(92, 37, 58, 0.3);
}

.btn-primary:hover {
  background: var(--plum-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(92, 37, 58, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--plum-800);
  border: 2px solid var(--plum-200);
}

.btn-outline:hover {
  border-color: var(--plum-400);
  background: var(--plum-100);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 245, 247, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--plum-100);
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(250, 245, 247, 0.95);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--plum-900);
}

.nav-logo-icon {
  color: var(--amber-600);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--plum-700);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber-500);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--plum-900);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--plum-800);
  color: #fff !important;
  padding: 0.5em 1.25em;
  border-radius: var(--radius-xl);
  font-weight: 600 !important;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: var(--plum-700);
  transform: translateY(-1px);
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--plum-800);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--plum-50);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--plum-800);
  padding: 8px;
}

.mobile-link {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--plum-800);
  transition: var(--transition);
}

.mobile-link:hover {
  color: var(--amber-600);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--plum-900);
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(163, 82, 113, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(245, 158, 11, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 60% 80%, rgba(163, 82, 113, 0.2) 0%, transparent 50%);
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--amber-300);
  background: rgba(251, 191, 36, 0.12);
  border: 1px solid rgba(251, 191, 36, 0.25);
  padding: 0.5em 1em;
  border-radius: 50px;
  margin-bottom: var(--space-lg);
}

.hero-badge svg {
  color: var(--amber-400);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  margin-bottom: var(--space-lg);
}

.hero-headline-accent {
  display: block;
  font-size: 0.55em;
  font-weight: 400;
  font-style: italic;
  color: var(--amber-300);
  margin-top: 0.15em;
  line-height: 1.3;
}

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--plum-200);
  max-width: 480px;
  margin-bottom: var(--space-xl);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.hero-actions .btn-primary {
  background: var(--amber-600);
  color: var(--plum-900);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
}

.hero-actions .btn-primary:hover {
  background: var(--amber-500);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}

.hero-actions .btn-outline {
  border-color: var(--plum-400);
  color: var(--plum-100);
}

.hero-actions .btn-outline:hover {
  border-color: var(--amber-400);
  color: var(--amber-300);
  background: rgba(251, 191, 36, 0.08);
}

/* Floating Cards */
.hero-floating-cards {
  position: relative;
  height: 480px;
}

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  color: #fff;
  animation: float 6s ease-in-out infinite;
}

.float-card-icon {
  color: var(--amber-400);
  margin-bottom: var(--space-sm);
}

.float-card-number {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.25em;
}

.float-card-number span {
  color: var(--amber-400);
  font-size: 1.5em;
}

.float-card-label {
  font-size: 0.8125rem;
  color: var(--plum-200);
  font-weight: 500;
}

.float-card-1 {
  top: 0;
  left: 0;
  width: 200px;
  animation-delay: 0s;
}

.float-card-2 {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 210px;
  animation-delay: 2s;
}

.float-card-3 {
  bottom: 0;
  left: 30%;
  width: 190px;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}

.float-card-2 {
  animation-name: float2;
}

@keyframes float2 {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 16px)); }
}

.float-card-3 {
  animation-name: float3;
}

@keyframes float3 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
  padding: var(--space-4xl) 0;
  background: var(--plum-50);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-header .section-tag {
  margin-bottom: var(--space-sm);
}

.section-header .section-desc {
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--plum-100);
}

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

.product-card-img {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-card-body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.product-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-100);
  color: var(--amber-700);
  border-radius: var(--radius-sm);
}

.product-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--plum-900);
}

.product-card-body p {
  font-size: 0.9375rem;
  color: var(--plum-600);
  line-height: 1.65;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: var(--space-4xl) 0;
  background: var(--plum-900);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 0% 50%, rgba(163, 82, 113, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 100% 100%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
}

.about .container {
  position: relative;
  z-index: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -30px;
  width: 55%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--plum-900);
  box-shadow: var(--shadow-lg);
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  top: -20px;
  right: 40px;
  background: var(--amber-500);
  color: var(--plum-900);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-badge-number {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-badge-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.about-content {
  color: #fff;
}

.about-content .section-tag {
  background: rgba(251, 191, 36, 0.15);
  color: var(--amber-400);
}

.about-content .section-title {
  color: #fff;
}

.about-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--plum-200);
  margin-bottom: var(--space-md);
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.about-value {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.about-value-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(251, 191, 36, 0.12);
  color: var(--amber-400);
  border-radius: var(--radius-sm);
}

.about-value strong {
  display: block;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.15em;
}

.about-value span {
  font-size: 0.875rem;
  color: var(--plum-300);
  line-height: 1.5;
}

/* ============================================
   VISIT SECTION
   ============================================ */
.visit {
  padding: var(--space-4xl) 0;
  background: var(--plum-50);
}

.visit .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3xl);
}

.visit-content {
  max-width: 600px;
}

.visit-desc {
  font-size: 1.0625rem;
  color: var(--plum-600);
  line-height: 1.7;
}

.visit-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  width: 100%;
}

.visit-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: left;
  border: 1px solid var(--plum-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.visit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--amber-200);
}

.visit-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--plum-100);
  color: var(--plum-700);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

.visit-card h4 {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--plum-900);
  margin-bottom: 0.5em;
}

.visit-card p {
  font-size: 0.9375rem;
  color: var(--plum-600);
  line-height: 1.6;
}

.visit-card a {
  color: var(--amber-700);
  font-weight: 500;
  transition: var(--transition);
}

.visit-card a:hover {
  color: var(--amber-600);
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
  background: var(--plum-100);
}

.map-container {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  filter: grayscale(30%) contrast(1.05);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: var(--space-4xl) 0;
  background: var(--plum-50);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-desc {
  margin-bottom: var(--space-xl);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 1rem;
  color: var(--plum-700);
  transition: var(--transition);
}

.contact-detail svg {
  color: var(--amber-600);
  flex-shrink: 0;
}

.contact-detail a {
  color: var(--plum-700);
  transition: var(--transition);
}

.contact-detail a:hover {
  color: var(--amber-600);
}

/* Form */
.contact-form-wrapper {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--plum-100);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--plum-800);
}

.form-group input,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 0.75em 1em;
  border: 2px solid var(--plum-200);
  border-radius: var(--radius-sm);
  background: var(--plum-50);
  color: var(--plum-900);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--amber-500);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--plum-300);
}

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

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--space-md);
  padding: var(--space-2xl);
}

.form-success.show {
  display: flex;
}

.success-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--amber-100);
  color: var(--amber-600);
  border-radius: 50%;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--plum-900);
}

.form-success p {
  font-size: 0.9375rem;
  color: var(--plum-600);
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--plum-950);
  color: var(--plum-200);
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--plum-300);
  margin-top: var(--space-md);
  max-width: 280px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.footer-logo-icon {
  color: var(--amber-500);
}

.footer-links h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-md);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.6em;
}

.footer-links li a {
  font-size: 0.9375rem;
  color: var(--plum-300);
  transition: var(--transition);
}

.footer-links li a:hover {
  color: var(--amber-400);
}

.footer-bottom {
  border-top: 1px solid var(--plum-800);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--plum-400);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-floating-cards {
    display: none;
  }

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

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

  .about-images {
    max-width: 500px;
    margin: 0 auto;
  }

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

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

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 80px;
  }

  .hero-headline {
    font-size: clamp(2rem, 8vw, 3rem);
  }

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

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

  .about-img-secondary {
    right: -10px;
    bottom: -20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

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

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .contact-form-wrapper {
    padding: var(--space-lg);
  }
}
