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

:root {
  --primary: #f4a261;
  --secondary: #e76f51;
  --light: #faf9f6;
  --neutral: #e9ecef;
  --dark: #2b2d42;
  --text: #264653;
}

body {
  font-family: 'Crimson Pro', serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
  font-size: 15px;
}

h1,
h2,
h3,
h4,
h5,
h6,
button,
.cta-button,
.logo,
nav {
  font-family: 'Space Grotesk', sans-serif;
}

h1 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
}

h2 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  font-weight: 500;
}

p {
  margin-bottom: 0.8rem;
}

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

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

header {
  background: var(--light);
  padding: 1rem 0;
  border-bottom: 1px solid var(--neutral);
  position: relative;
  z-index: 999;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
}

.main-nav {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.3s;
}

.main-nav a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark);
  cursor: pointer;
}

main {
  min-height: calc(100vh - 200px);
}

.hero {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 1.8rem;
  color: var(--text);
}

.hero-image img {
  width: 100%;
  border-radius: 4px;
}

.cta-button {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--primary);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 3px;
  transition: background 0.3s;
}

.cta-button:hover {
  background: var(--secondary);
}

.cta-button.secondary {
  background: var(--dark);
}

.cta-button.secondary:hover {
  background: var(--text);
}

.about {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
}

.vertical-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.3;
}

.about-content {
  max-width: 900px;
}

.features {
  background: var(--neutral);
  padding: 4rem 1.5rem;
}

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

.feature-card {
  background: white;
  padding: 1.8rem;
  border-radius: 4px;
  text-align: center;
}

.feature-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin-bottom: 0.8rem;
}

.feature-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.products {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
}

.products-content h2 {
  margin-bottom: 2rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-card {
  background: white;
  border: 1px solid var(--neutral);
  border-radius: 4px;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.product-card h3 {
  padding: 1rem 1rem 0.5rem;
  font-size: 1.1rem;
}

.product-card p {
  padding: 0 1rem;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.price {
  display: block;
  padding: 0 1rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.product-button {
  display: block;
  margin: 0 1rem 1rem;
  padding: 0.7rem;
  background: var(--dark);
  color: white;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 3px;
  transition: background 0.3s;
}

.product-button:hover {
  background: var(--text);
}

.why-choose {
  background: white;
  padding: 4rem 1.5rem;
}

.why-choose-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: center;
}

.why-text h2 {
  margin-bottom: 1rem;
}

.why-text p {
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.benefits-list i {
  color: var(--primary);
  font-size: 1.2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-box {
  background: var(--neutral);
  padding: 2rem 1.5rem;
  border-radius: 4px;
  text-align: center;
  border-left: 3px solid var(--primary);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
}

.testimonials {
  background: var(--neutral);
  padding: 4rem 1.5rem;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

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

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 4px;
  border-left: 3px solid var(--primary);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1rem;
}

.author {
  display: block;
  font-weight: 600;
  color: var(--dark);
  font-size: 0.9rem;
}

.cta-section {
  background: var(--dark);
  color: white;
  padding: 4rem 1.5rem;
  text-align: center;
}

.page-hero {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
}

.page-hero-content {
  max-width: 900px;
}

.schedule {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.workshop-item {
  background: white;
  border: 1px solid var(--neutral);
  padding: 2rem;
  border-radius: 4px;
}

.workshop-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.workshop-level {
  background: var(--primary);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 600;
}

.workshop-details {
  margin-bottom: 1rem;
}

.workshop-details p {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.workshop-details i {
  color: var(--primary);
  width: 16px;
}

.workshop-description {
  margin-bottom: 1.5rem;
}

.workshop-button {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  background: var(--dark);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 3px;
  transition: background 0.3s;
}

.workshop-button:hover {
  background: var(--text);
}

.workshop-info {
  background: var(--neutral);
  padding: 4rem 1.5rem;
}

.workshop-info h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

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

.info-item {
  background: white;
  padding: 1.8rem;
  border-radius: 4px;
  text-align: center;
}

.info-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.gallery-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 3fr 4fr 3fr;
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem 1rem 1rem;
}

.gallery-caption h3 {
  color: white;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.gallery-caption p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

.gallery-info {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
}

.gallery-info h2 {
  margin-bottom: 1.5rem;
}

.gallery-info p {
  margin-bottom: 1.2rem;
}

.contact-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1.5rem 4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 3rem;
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
  margin-bottom: 1.5rem;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 4px;
  border: 1px solid var(--neutral);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid var(--neutral);
  border-radius: 3px;
  font-family: 'Crimson Pro', serif;
  font-size: 0.95rem;
}

.form-group textarea {
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 400;
}

.checkbox-label input[type='checkbox'] {
  margin-top: 0.2rem;
  width: auto;
}

.submit-button {
  width: 100%;
  padding: 0.9rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 3px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-button:hover {
  background: var(--secondary);
}

.contact-details {
  background: white;
  padding: 2rem;
  border-radius: 4px;
  border: 1px solid var(--neutral);
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-item i {
  font-size: 1.3rem;
  color: var(--primary);
  margin-top: 0.2rem;
}

.contact-item h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.contact-item p {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.map-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

#map {
  width: 100%;
  height: 400px;
  border-radius: 4px;
  background: var(--neutral);
}

.thankyou-section,
.error-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 100px);
  padding: 2rem 1.5rem;
}

.thankyou-content,
.error-content {
  text-align: center;
  max-width: 600px;
}

.thankyou-content i {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.error-content h1 {
  font-size: 6rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.thankyou-actions,
.error-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.policy-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.policy-content h1 {
  margin-bottom: 0.5rem;
}

.policy-date {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.policy-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

footer {
  background: var(--dark);
  color: white;
  padding: 2rem 1.5rem;
  margin-top: auto;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-info {
  text-align: center;
}

.footer-info p {
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.85rem;
  color: white;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: white;
  padding: 1.5rem;
  z-index: 1000;
  display: none;
}

.cookie-popup.show {
  display: block;
}

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-content p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.cookie-buttons button {
  padding: 0.6rem 1.5rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 3px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.cookie-buttons button:hover {
  background: var(--secondary);
}

.cookie-buttons a {
  color: white;
  font-size: 0.9rem;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

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

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

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

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

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

  .why-choose-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

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

  .menu-toggle {
    display: block;
  }

  .main-nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--light);
    padding: 1rem;
    border-bottom: 1px solid var(--neutral);
    gap: 1rem;
    z-index: 999;
  }

  h1 {
    font-size: 1.8rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .about,
  .products,
  .page-hero {
    grid-template-columns: 1fr;
  }

  .vertical-label {
    writing-mode: horizontal-tb;
    font-size: 1.5rem;
  }

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

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

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

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

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .thankyou-actions,
  .error-actions {
    flex-direction: column;
  }

  .error-content h1 {
    font-size: 4rem;
  }

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

@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  .hero-text h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  body {
    font-size: 14px;
  }

  .header-container {
    padding: 0 1rem;
  }

  .hero,
  .about,
  .products,
  .page-hero,
  .schedule,
  .gallery-section,
  .contact-section,
  .policy-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .features,
  .testimonials,
  .workshop-info {
    padding: 3rem 1rem;
  }

  .cta-section {
    padding: 3rem 1rem;
  }
}
