@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --color-bg: #F5F3EF;
  --color-bg-alt: #EDE9E3;
  --color-surface: #FFFFFF;
  --color-primary: #2D3436;
  --color-secondary: #636E72;
  --color-accent: #B8860B;
  --color-accent-light: #E8B86D;
  --color-text: #2D3436;
  --color-text-muted: #636E72;
  --color-border: #D4CFC7;
  --color-success: #27AE60;
  --color-error: #E74C3C;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
  --size-xs: 0.75rem;
  --size-sm: 0.875rem;
  --size-base: 1rem;
  --size-md: 1.125rem;
  --size-lg: 1.5rem;
  --size-xl: 2rem;
  --size-2xl: 2.5rem;
  --size-3xl: 3rem;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --max-width: 75rem;
}

*,*::before,*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--size-sm);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul,ol {
  list-style: none;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-primary);
}

h1 { font-size: var(--size-2xl); }
h2 { font-size: var(--size-xl); }
h3 { font-size: var(--size-lg); }
h4 { font-size: var(--size-md); }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a1d1e 100%);
  padding: var(--space-md) 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.logo {
  font-family: var(--font-heading);
  font-size: var(--size-lg);
  font-weight: 700;
  color: var(--color-surface);
  letter-spacing: 0.02em;
}

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  gap: var(--space-lg);
}

.nav-desktop a {
  color: var(--color-surface);
  font-size: var(--size-sm);
  font-weight: 400;
  padding: var(--space-xs) 0;
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent-light);
  transition: width var(--transition-base);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.burger-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: var(--space-xs);
  z-index: 1001;
}

.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-surface);
  transition: var(--transition-base);
}

.burger-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 18rem;
  height: 100vh;
  background: var(--color-primary);
  padding: var(--space-3xl) var(--space-lg);
  transition: right var(--transition-base);
  z-index: 1000;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.mobile-nav a {
  color: var(--color-surface);
  font-size: var(--size-base);
  display: block;
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-base);
  z-index: 999;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.hero {
  position: relative;
  min-height: 85vh;
  padding: var(--space-3xl) 0;
  display: flex;
  align-items: center;
  background-image: url('../visuals/bg-image-1.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(45, 52, 54, 0.75) 0%,
    rgba(245, 243, 239, 0.65) 40%,
    rgba(237, 233, 227, 0.5) 100%
  );
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.5);
  padding: var(--space-md);
  border-radius: var(--radius-lg);
}

.hero-tag {
  display: inline-block;
  font-size: var(--size-sm);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero h1 {
  font-size: var(--size-2xl);
  margin-bottom: var(--space-md);
  color: var(--color-surface);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 0, 0, 0.2);
}

.hero p {
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: var(--space-xl);
  font-size: var(--size-base);
  line-height: 1.65;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.hero .btn-primary {
  box-shadow: 0 4px 14px rgba(184, 134, 11, 0.4);
}

.hero .btn-primary:hover {
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.5);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--size-sm);
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: var(--transition-base);
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-surface);
}

.btn-primary:hover {
  background: var(--color-accent-light);
  color: var(--color-primary);
}

.btn-outline {
  border: 1px solid var(--color-border);
  color: var(--color-text);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.section {
  padding: var(--space-2xl) 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  margin-bottom: var(--space-sm);
}

.section-header p {
  color: var(--color-text-muted);
  max-width: 32rem;
  margin: 0 auto;
}

.mood-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.mood-card {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.mood-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.mood-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.mood-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.mood-card:hover .mood-card-img img {
  transform: scale(1.05);
}

.mood-card-content {
  padding: var(--space-md);
}

.mood-card h3 {
  font-size: var(--size-md);
  margin-bottom: var(--space-xs);
}

.mood-card p {
  font-size: var(--size-xs);
  color: var(--color-text-muted);
}

.concept-zone {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.concept-panel {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.concept-panel h3 {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  font-size: var(--size-md);
}

.concept-panel h3 i {
  color: var(--color-accent);
}

.concept-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.concept-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: var(--color-bg);
  border-radius: var(--radius-md);
  font-size: var(--size-xs);
}

.concept-item i {
  color: var(--color-accent);
  margin-top: 2px;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.product-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
}

.product-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: var(--space-md);
}

.product-info h3 {
  font-size: var(--size-base);
  margin-bottom: var(--space-xs);
}

.product-price {
  font-size: var(--size-md);
  font-weight: 600;
  color: var(--color-accent);
}

.style-routes {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.route-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.route-card:hover {
  box-shadow: var(--shadow-md);
}

.route-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  color: var(--color-accent);
  font-size: var(--size-lg);
  flex-shrink: 0;
}

.route-content h4 {
  font-size: var(--size-sm);
  margin-bottom: var(--space-xs);
}

.route-content p {
  font-size: var(--size-xs);
  color: var(--color-text-muted);
}

.contact-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a1d1e 100%);
  color: var(--color-surface);
  padding: var(--space-2xl) 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.contact-info h2 {
  color: var(--color-surface);
  margin-bottom: var(--space-md);
}

.contact-info p {
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--space-lg);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.contact-item i {
  color: var(--color-accent-light);
  margin-top: 2px;
}

.contact-item span {
  font-size: var(--size-sm);
  color: rgba(255,255,255,0.9);
}

.contact-form {
  background: var(--color-surface);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: var(--size-xs);
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--size-sm);
  font-family: inherit;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast);
  background: var(--color-bg);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-group textarea {
  min-height: 6rem;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 2px;
  accent-color: var(--color-accent);
}

.checkbox-group label {
  font-size: var(--size-xs);
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.checkbox-group a {
  color: var(--color-accent);
  text-decoration: underline;
}

.map-container {
  margin-top: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 12rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.7);
  padding: var(--space-lg) 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: var(--size-md);
  font-weight: 700;
  color: var(--color-surface);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm) var(--space-md);
}

.footer-links a {
  font-size: var(--size-xs);
  color: rgba(255,255,255,0.6);
}

.footer-links a:hover {
  color: var(--color-accent-light);
}

.footer-copy {
  font-size: var(--size-xs);
}

.footer-copy span {
  color: var(--color-accent-light);
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-surface);
  padding: var(--space-md);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.cookie-popup.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  text-align: center;
}

.cookie-content p {
  font-size: var(--size-xs);
  color: var(--color-text-muted);
}

.cookie-content a {
  color: var(--color-accent);
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: var(--space-sm);
}

.cookie-btns .btn {
  padding: var(--space-xs) var(--space-md);
  font-size: var(--size-xs);
}

.page-header {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a1d1e 100%);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.page-header h1 {
  color: var(--color-surface);
  margin-bottom: var(--space-sm);
}

.page-header p {
  color: rgba(255,255,255,0.7);
  max-width: 32rem;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  font-size: var(--size-xs);
  margin-bottom: var(--space-md);
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
}

.breadcrumb span {
  color: var(--color-accent-light);
}

.content-section {
  padding: var(--space-2xl) 0;
}

.content-block {
  max-width: 48rem;
  margin: 0 auto;
}

.content-block h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}

.content-block h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.content-block p {
  margin-bottom: var(--space-md);
  color: var(--color-text-muted);
}

.content-block ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

.content-block li {
  position: relative;
  padding-left: var(--space-md);
  margin-bottom: var(--space-sm);
  color: var(--color-text-muted);
}

.content-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 4px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 50%;
}

.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl);
}

.error-content h1 {
  font-size: var(--size-3xl);
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.error-content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.thank-you-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl);
}

.thank-you-content i {
  font-size: var(--size-3xl);
  color: var(--color-success);
  margin-bottom: var(--space-md);
}

.thank-you-content h1 {
  margin-bottom: var(--space-md);
}

.thank-you-content p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  max-width: 28rem;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.feature-card {
  background: var(--color-surface);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-base);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
}

.feature-card i {
  font-size: var(--size-xl);
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.feature-card h3 {
  font-size: var(--size-base);
  margin-bottom: var(--space-sm);
}

.feature-card p {
  font-size: var(--size-xs);
  color: var(--color-text-muted);
}

.team-section {
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.team-card {
  background: var(--color-surface);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.team-avatar {
  width: 4rem;
  height: 4rem;
  background: var(--color-bg-alt);
  border-radius: 50%;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--size-lg);
  color: var(--color-accent);
}

.team-card h3 {
  font-size: var(--size-base);
  margin-bottom: var(--space-xs);
}

.team-card p {
  font-size: var(--size-xs);
  color: var(--color-text-muted);
}

.tip-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.tip-card {
  background: var(--color-surface);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--color-accent);
}

.tip-card h3 {
  font-size: var(--size-base);
  margin-bottom: var(--space-sm);
}

.tip-card p {
  font-size: var(--size-xs);
  color: var(--color-text-muted);
}

.cta-section {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  padding: var(--space-2xl) 0;
  text-align: center;
}

.cta-section h2 {
  color: var(--color-surface);
  margin-bottom: var(--space-sm);
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-lg);
}

.cta-section .btn {
  background: var(--color-surface);
  color: var(--color-accent);
}

.cta-section .btn:hover {
  background: var(--color-primary);
  color: var(--color-surface);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  text-align: center;
}

.stat-item h3 {
  font-size: var(--size-xl);
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
}

.stat-item p {
  font-size: var(--size-xs);
  color: var(--color-text-muted);
}

.timeline {
  position: relative;
  padding-left: var(--space-lg);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-lg);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-lg) - 3px);
  top: 0;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
}

.timeline-item h4 {
  font-size: var(--size-sm);
  margin-bottom: var(--space-xs);
}

.timeline-item p {
  font-size: var(--size-xs);
  color: var(--color-text-muted);
}

.inspiration-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.inspiration-card {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.inspiration-card-content {
  padding: var(--space-md);
}

.inspiration-tag {
  display: inline-block;
  font-size: var(--size-xs);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 1.5rem;
  }
  
  .content-block h2 {
    font-size: 1.25rem;
}
}

@media (min-width: 480px) {
  .mood-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .tip-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  h1 { font-size: var(--size-3xl); }
  h2 { font-size: var(--size-2xl); }
  
  .hero {
    min-height: 90vh;
    padding: var(--space-3xl) 0 calc(var(--space-3xl) + 2rem);
  }
  
  .hero h1 {
    font-size: var(--size-3xl);
  }
  
  .hero-tag {
    font-size: var(--size-base);
  }
  
  .hero p {
    font-size: var(--size-md);
  }
  
  .nav-desktop {
    display: block;
  }
  
  .burger-btn {
    display: none;
  }
  
  .mood-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .concept-zone {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  .cookie-content {
    flex-direction: row;
    text-align: left;
  }
  
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .stats-row {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .inspiration-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero {
    min-height: 92vh;
  }
  
  .hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
  }
  
  .concept-zone {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .tip-cards {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .inspiration-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
