:root {
  --color-primary: #7B5E3B;
  --color-secondary: #C7A277;
  --color-accent: #6B8F71;
  --color-bg: #FBF7F2;
  --color-dark: #2A1F14;
  --color-text: #3D3228;
  --color-text-light: #7A6E63;
  --color-white: #FFFFFF;
  --color-border: #E8DFD4;
  --color-cream: #F5EDE3;
  --font-heading: 'Fraunces', serif;
  --font-body: 'DM Sans', sans-serif;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 15px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-accent);
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  line-height: 1.25;
  font-weight: 500;
}

h1 { font-size: 2.4rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p {
  margin-bottom: 0.8rem;
  font-size: 0.92rem;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.6rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-dark);
  color: var(--color-white);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.btn-accent:hover {
  background-color: #567a5a;
  color: var(--color-white);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 0.4rem;
  display: block;
}

.section-title {
  margin-bottom: 0.8rem;
}

.section-desc {
  color: var(--color-text-light);
  max-width: 560px;
  font-size: 0.9rem;
}

.text-center {
  text-align: center;
}

.section-desc.text-center {
  margin-left: auto;
  margin-right: auto;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
  background-color: transparent;
}

.site-header.scrolled {
  background-color: rgba(251, 247, 242, 0.97);
  box-shadow: 0 1px 12px rgba(42, 31, 20, 0.06);
}

.site-header.hidden {
  transform: translateY(-100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.7rem 1.2rem;
}

.header-logo {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-dark);
  letter-spacing: -0.3px;
  position: relative;
}

.header-logo::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.header-logo:hover {
  color: var(--color-primary);
}

.header-logo:hover::after {
  transform: scaleX(1);
}

.header-decor {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header-decor-line {
  width: 30px;
  height: 1px;
  background-color: var(--color-border);
}

.header-decor-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-secondary);
}

.header-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.header-nav .nav-list a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
  padding-bottom: 2px;
  letter-spacing: 0.2px;
}

.header-nav .nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--color-accent);
  transition: width 0.3s ease;
}

.header-nav .nav-list a:hover::after,
.header-nav .nav-list a.active::after {
  width: 100%;
}

.header-nav .nav-list a.active {
  color: var(--color-primary);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.menu-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--color-dark);
  border-radius: 1px;
  transition: all 0.3s ease;
}

.menu-bar:nth-child(1) {
  margin-bottom: 5px;
}

.menu-bar:nth-child(2) {
  margin-bottom: 5px;
  width: 16px;
}

.menu-toggle.open .menu-bar:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.menu-toggle.open .menu-bar:nth-child(2) {
  opacity: 0;
  width: 22px;
}

.menu-toggle.open .menu-bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(42, 31, 20, 0.3);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.active {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-dark) 0%, #4a3625 50%, var(--color-primary) 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 5rem 0 3rem;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 0.8rem;
  display: inline-block;
}

.hero h1 {
  color: var(--color-white);
  font-size: 2.6rem;
  margin-bottom: 1rem;
  font-weight: 500;
  line-height: 1.15;
}

.hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 1.4rem;
  max-width: 460px;
}

.hero-btns {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-btns .btn-primary {
  background-color: var(--color-secondary);
  color: var(--color-dark);
}

.hero-btns .btn-primary:hover {
  background-color: var(--color-white);
}

.hero-btns .btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--color-white);
}

.hero-btns .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
  color: var(--color-white);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-scroll-hint i {
  font-size: 0.85rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

.section {
  padding: 3.5rem 0;
}

.section-alt {
  background-color: var(--color-cream);
}

.section-dark {
  background-color: var(--color-dark);
  color: var(--color-white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--color-white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.75);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.intro-text .section-title {
  font-size: 1.8rem;
}

.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.2rem;
}

.intro-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.intro-feature i {
  font-size: 1rem;
  color: var(--color-accent);
  margin-top: 2px;
  flex-shrink: 0;
}

.intro-feature span {
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.4;
}

.intro-visual {
  position: relative;
}

.intro-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.intro-card {
  background: var(--color-white);
  border-radius: 8px;
  padding: 1.2rem;
  text-align: center;
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease;
}

.intro-card:hover {
  transform: translateY(-3px);
}

.intro-card i {
  font-size: 1.4rem;
  color: var(--color-secondary);
  margin-bottom: 0.4rem;
}

.intro-card h4 {
  font-size: 0.85rem;
  margin-bottom: 0.2rem;
}

.intro-card p {
  font-size: 0.75rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.product-card {
  background: var(--color-white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(42, 31, 20, 0.08);
}

.product-card-icon {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-border) 100%);
}

.product-card-icon i {
  font-size: 2.4rem;
  color: var(--color-primary);
}

.product-card-body {
  padding: 1.2rem;
}

.product-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.product-card-body p {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-bottom: 0.6rem;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 0.6rem;
  display: block;
}

.product-meta {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
}

.product-meta span {
  font-size: 0.7rem;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.product-meta i {
  font-size: 0.65rem;
  color: var(--color-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.feature-item {
  text-align: center;
  padding: 1.5rem 0.8rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.7rem;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-primary));
}

.feature-icon i {
  font-size: 1rem;
  color: var(--color-white);
}

.feature-item h3 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.feature-item p {
  font-size: 0.78rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 1.5rem;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 1rem 0.5rem;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 300;
  color: var(--color-border);
  display: block;
  margin-bottom: 0.4rem;
  line-height: 1;
}

.process-step h3 {
  font-size: 0.92rem;
  margin-bottom: 0.3rem;
}

.process-step p {
  font-size: 0.78rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

.process-step::after {
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: -0.9rem;
  top: 1.4rem;
  font-size: 0.7rem;
  color: var(--color-border);
}

.process-step:last-child::after {
  display: none;
}

.cta-section {
  text-align: center;
  padding: 3rem 0;
}

.cta-section h2 {
  color: var(--color-white);
  margin-bottom: 0.6rem;
}

.cta-section p {
  margin-bottom: 1.2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-block {
  max-width: 600px;
  margin: 1.5rem auto 0;
  text-align: center;
  padding: 2rem;
  background: var(--color-white);
  border-radius: 8px;
  border: 1px solid var(--color-border);
  position: relative;
}

.testimonial-block::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-border);
  position: absolute;
  top: 0.2rem;
  left: 1rem;
  line-height: 1;
}

.testimonial-block p {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 0.8rem;
  position: relative;
}

.testimonial-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
}

.testimonial-role {
  font-size: 0.72rem;
  color: var(--color-text-light);
  display: block;
}

.page-banner {
  background: linear-gradient(135deg, var(--color-dark) 0%, #4a3625 100%);
  padding: 5.5rem 0 2.5rem;
  text-align: center;
}

.page-banner h1 {
  color: var(--color-white);
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.page-banner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  max-width: 500px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 0.8rem;
}

.breadcrumb a,
.breadcrumb span {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb a:hover {
  color: var(--color-secondary);
}

.breadcrumb i {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.3);
}

.workshop-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.workshop-detail:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.workshop-detail-img {
  border-radius: 8px;
  overflow: hidden;
}

.workshop-detail-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.workshop-detail-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.workshop-detail-content p {
  color: var(--color-text-light);
  font-size: 0.85rem;
}

.workshop-detail-content .product-price {
  font-size: 1.4rem;
  margin: 0.5rem 0;
}

.detail-list {
  margin: 0.8rem 0;
}

.detail-list li {
  font-size: 0.82rem;
  color: var(--color-text);
  padding: 0.25rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.detail-list li i {
  font-size: 0.65rem;
  color: var(--color-accent);
}

.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.expect-item {
  padding: 1.2rem;
  background: var(--color-white);
  border-radius: 8px;
  border: 1px solid var(--color-border);
  text-align: center;
}

.expect-item i {
  font-size: 1.3rem;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.expect-item h4 {
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.expect-item p {
  font-size: 0.78rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

.course-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.2rem;
}

.course-card {
  background: var(--color-white);
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease;
}

.course-card:hover {
  transform: translateY(-3px);
}

.course-card-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
}

.course-card-header i {
  font-size: 1.2rem;
  color: var(--color-secondary);
}

.course-card h3 {
  font-size: 1.05rem;
}

.course-card p {
  font-size: 0.82rem;
  color: var(--color-text-light);
}

.course-card .detail-list {
  margin: 0.5rem 0 0.8rem;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.2rem;
  font-size: 0.82rem;
}

.schedule-table th {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 0.6rem 0.8rem;
  text-align: left;
  font-weight: 500;
  font-size: 0.78rem;
}

.schedule-table td {
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid var(--color-border);
}

.schedule-table tr:nth-child(even) {
  background: var(--color-cream);
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-story img {
  border-radius: 8px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.value-card {
  padding: 1.2rem;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  text-align: center;
}

.value-card i {
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.value-card h3 {
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.value-card p {
  font-size: 0.78rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

.approach-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 1.2rem;
}

.approach-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--color-white);
  border-radius: 8px;
  border: 1px solid var(--color-border);
}

.approach-item i {
  font-size: 1.1rem;
  color: var(--color-accent);
  margin-top: 2px;
  flex-shrink: 0;
}

.approach-item h4 {
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.approach-item p {
  font-size: 0.78rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 1.5rem;
}

.contact-form-wrap {
  background: var(--color-white);
  border-radius: 8px;
  padding: 1.8rem;
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-accent), var(--color-primary));
}

.contact-form-wrap h3 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.contact-form-wrap > p {
  font-size: 0.82rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 0.9rem;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--color-text);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.form-consent input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--color-primary);
}

.form-consent label {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 1.4;
}

.form-consent a {
  color: var(--color-primary);
  text-decoration: underline;
}

.contact-info-wrap h3 {
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.contact-info-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i {
  font-size: 0.8rem;
  color: var(--color-primary);
}

.contact-info-text h4 {
  font-size: 0.82rem;
  margin-bottom: 0.1rem;
}

.contact-info-text p {
  font-size: 0.78rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

.contact-info-text a {
  font-size: 0.78rem;
  color: var(--color-text-light);
}

.contact-map {
  margin-top: 1rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.contact-map iframe {
  width: 100%;
  height: 200px;
  border: none;
  display: block;
}

.contact-hours {
  margin-top: 1rem;
  padding: 1rem;
  background: var(--color-cream);
  border-radius: 8px;
}

.contact-hours h4 {
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}

.contact-hours p {
  font-size: 0.78rem;
  color: var(--color-text-light);
  margin-bottom: 0.15rem;
}

.contact-themed {
  padding: 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-bg) 100%);
  border-radius: 8px;
  border: 1px dashed var(--color-border);
  margin-top: 1.5rem;
}

.contact-themed i {
  font-size: 1.8rem;
  color: var(--color-secondary);
  margin-bottom: 0.5rem;
}

.contact-themed h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.contact-themed p {
  font-size: 0.82rem;
  color: var(--color-text-light);
  max-width: 450px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 1.2rem;
}

.faq-item {
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--color-border);
}

.faq-item h4 {
  font-size: 0.88rem;
  margin-bottom: 0.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-item h4 i {
  font-size: 0.7rem;
  color: var(--color-accent);
}

.faq-item p {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-bottom: 0;
  padding-left: 1.2rem;
}

.fullpage-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.fullpage-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
}

.fullpage-inner {
  max-width: 480px;
}

.fullpage-inner i {
  font-size: 3rem;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.fullpage-inner h1 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.fullpage-inner p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}

.fullpage-inner .btn {
  margin-top: 0.5rem;
}

.error-code {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--color-border);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.site-footer {
  background-color: var(--color-dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 1.5rem 0 1rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 0.8rem;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-white);
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.footer-brand-text p {
  font-size: 0.72rem;
  margin-bottom: 0;
  max-width: 280px;
}

.footer-contact p {
  font-size: 0.72rem;
  margin-bottom: 0.15rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
}

.footer-contact a:hover {
  color: var(--color-secondary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.footer-copy {
  font-size: 0.68rem;
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-links a {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links a:hover {
  color: var(--color-secondary);
}

.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 1rem 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-popup.show {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: 0.78rem;
  margin-bottom: 0;
  flex: 1;
  min-width: 260px;
}

.cookie-inner a {
  color: var(--color-secondary);
  text-decoration: underline;
}

.cookie-btns {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-btns .btn {
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
}

.policy-content {
  padding: 2.5rem 0;
}

.policy-content h2 {
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.policy-content h3 {
  font-size: 1.05rem;
  margin-top: 1rem;
  margin-bottom: 0.4rem;
}

.policy-content p {
  font-size: 0.85rem;
  color: var(--color-text);
  margin-bottom: 0.6rem;
}

.policy-content ul {
  padding-left: 1.2rem;
  margin-bottom: 0.8rem;
}

.policy-content ul li {
  font-size: 0.85rem;
  color: var(--color-text);
  margin-bottom: 0.3rem;
  position: relative;
  padding-left: 0.8rem;
}

.policy-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color-secondary);
}

.policy-date {
  font-size: 0.78rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-step:nth-child(2)::after {
    display: none;
  }

  .about-story {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .menu-toggle {
    display: flex;
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100%;
    background: var(--color-bg);
    z-index: 999;
    padding: 4rem 1.5rem 2rem;
    transition: right 0.35s ease;
    box-shadow: -4px 0 20px rgba(42, 31, 20, 0.1);
    display: none;
  }

  .header-nav.open {
    right: 0;
    display: block;
  }

  .header-nav .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .header-nav .nav-list li {
    width: 100%;
  }

  .header-nav .nav-list a {
    display: block;
    padding: 0.7rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--color-border);
  }

  .mobile-overlay {
    display: block;
  }

  .header-decor {
    display: none;
  }

  .hero {
    min-height: 70vh;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-scroll-hint {
    display: none;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: 1fr 1fr;
  }

  .process-step::after {
    display: none;
  }

  .workshop-detail {
    grid-template-columns: 1fr;
  }

  .expect-grid {
    grid-template-columns: 1fr;
  }

  .course-cards {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .approach-items {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-btns {
    width: 100%;
    justify-content: center;
  }

  .schedule-table {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 13px;
  }

  .container {
    padding: 0 0.8rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .hero {
    min-height: 60vh;
  }

  .hero h1 {
    font-size: 1.7rem;
  }

  .hero-content {
    padding: 4rem 0 2rem;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn {
    text-align: center;
  }

  .intro-features {
    grid-template-columns: 1fr;
  }

  .intro-card-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .page-banner {
    padding: 4.5rem 0 2rem;
  }

  .page-banner h1 {
    font-size: 1.6rem;
  }

  .contact-form-wrap {
    padding: 1.2rem;
  }

  .error-code {
    font-size: 3.5rem;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 12px;
  }

  .header-inner {
    padding: 0.5rem 0.6rem;
  }

  .header-logo {
    font-size: 0.95rem;
  }

  .container {
    padding: 0 0.6rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.85rem;
  }

  .product-card-icon {
    height: 100px;
  }

  .fullpage-inner h1 {
    font-size: 1.4rem;
  }

  .error-code {
    font-size: 2.8rem;
  }

  .header-nav {
    width: 260px;
    right: -260px;
  }

  .footer-links {
    gap: 0.5rem;
  }

  .footer-links a {
    font-size: 0.62rem;
  }
}
