*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #252120;
}

body {
  line-height: 1.6;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 55%),
    radial-gradient(circle at bottom right, rgba(228, 203, 179, 0.9), transparent 55%),
    #f7efe6;
}

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

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

main {
  padding: 5rem 6vw 4.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.section-heading.narrow {
  max-width: 520px;
}

.section-heading h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 600;
  font-size: 2.3rem;
  margin: 0 0 0.75rem;
}

.section-heading p {
  margin: 0;
  color: rgba(37, 33, 32, 0.8);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.15s ease;
}

.btn.primary {
  background-color: #a46946;
  color: #fff;
}

.btn.primary:hover {
  background-color: #8f5738;
  transform: translateY(-1px);
}

.btn.secondary {
  background-color: #f7efe6;
  border-color: #a46946;
  color: #a46946;
}

.btn.secondary:hover {
  background-color: #a46946;
  color: #fff;
}

.btn.ghost {
  background-color: transparent;
  border-color: rgba(37, 33, 32, 0.2);
}

.btn.ghost:hover {
  border-color: #252120;
  background-color: rgba(255, 255, 255, 0.6);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.small {
  font-size: 0.85rem;
  color: rgba(37, 33, 32, 0.8);
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6vw;
  min-height: 4.5rem;
  background-color: rgba(247, 239, 230, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 14px 30px rgba(60, 38, 20, 0.08);
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: opacity 0.2s ease;
  padding: 1.1rem 0;
}

.logo-area:hover {
  opacity: 0.8;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background-color: #252120;
  color: #f7efe6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
}

.logo-text {
  font-weight: 600;
  letter-spacing: 0.03em;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 25;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: #252120;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}

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

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

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

.main-nav {
  display: flex;
  gap: 0.5rem;
  font-size: 0.95rem;
  align-self: stretch;
}

.main-nav a {
  position: relative;
  padding: 0.35rem 0.8rem 0.4rem;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.main-nav a::after {
  display: none;
}

.main-nav a:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

.main-nav a.active {
  background-color: #252120;
  color: #f7efe6;
}

.main-nav a.nav-btn,
.main-nav a.nav-btn-primary {
  background: #ffffff;
  border: 1px solid #d1d5db;
  color: #374151;
  font-weight: 500;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.85rem;
  line-height: 1;
}

.main-nav a.nav-btn:hover,
.main-nav a.nav-btn-primary:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  color: #111827;
  transform: translateY(-1px);
}

/* NAVIGATION DROPDOWN */
.nav-dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  cursor: pointer;
}

.dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 0.5rem 0;
  min-width: 180px;
  box-shadow: 0 12px 40px rgba(92, 68, 44, 0.2);
  border: 1px solid rgba(37, 33, 32, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 100;
}

.nav-dropdown:last-child .nav-dropdown-menu {
  left: auto;
  right: 0;
}

.nav-dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
  color: #252120;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  border-radius: 0;
  position: relative;
  text-align: center;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover {
  background-color: rgba(164, 105, 70, 0.1);
  color: #a46946;
}

.nav-dropdown-menu a.active {
  background-color: rgba(164, 105, 70, 0.15);
  color: #a46946;
  font-weight: 600;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  margin-top: 3rem;
  margin-bottom: 4rem;
}

.hero-content {
  text-align: center;
  margin: 0 auto;
  max-width: 560px;
}

.hero-content h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2.7rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.hero-content h1 span {
  display: inline-block;
}

.eyebrow {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin: 0 0 0.8rem;
}

.hero-subtitle {
  margin: 0 0 1.6rem;
  max-width: 34rem;
  color: rgba(37, 33, 32, 0.9);
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  justify-content: center;
}

.hero-note {
  font-size: 0.9rem;
  color: rgba(37, 33, 32, 0.85);
}

.hero-media {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.hero-photo {
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  background-color: #e1d4c6;
}

.hero-media-left .tall {
  height: 220px;
  background-image: linear-gradient(135deg,
      rgba(247, 239, 230, 0.2),
      rgba(0, 0, 0, 0.12)),
    url("https://images.pexels.com/photos/3822621/pexels-photo-3822621.jpeg?auto=compress&cs=tinysrgb&w=800");
}

.hero-media-left .square {
  height: 160px;
  background-image: url("https://images.pexels.com/photos/3823079/pexels-photo-3823079.jpeg?auto=compress&cs=tinysrgb&w=800");
}

.hero-media-right .wide {
  height: 190px;
  background-image: url("https://images.pexels.com/photos/4056723/pexels-photo-4056723.jpeg?auto=compress&cs=tinysrgb&w=800");
}

.hero-media-right .square {
  height: 190px;
  background-image: url("https://images.pexels.com/photos/3823054/pexels-photo-3823054.jpeg?auto=compress&cs=tinysrgb&w=800");
}

/* PILLARS */
.pillars {
  margin-bottom: 4rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.card {
  background-color: rgba(255, 255, 255, 0.64);
  border-radius: 16px;
  padding: 1.6rem 1.7rem;
  box-shadow: 0 12px 26px rgba(92, 68, 44, 0.09);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  font-size: 0.96rem;
}

/* HIGHLIGHT STRIP */
.highlight-strip {
  background-color: #e9dbc8;
  border-radius: 18px;
  padding: 2.5rem 2.2rem;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(92, 68, 44, 0.16);
}

.highlight-content {
  text-align: center;
  max-width: 700px;
}

.highlight-content h2 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 1.7rem;
  margin: 0 0 0.8rem;
}

.highlight-content p {
  margin: 0 0 1.5rem;
  color: rgba(37, 33, 32, 0.85);
  line-height: 1.7;
}

.highlight-btn {
  padding: 0.6rem 1.4rem !important;
  font-size: 0.85rem !important;
  display: inline-block;
}

/* FEATURED CLASSES */
.featured-classes {
  margin-bottom: 4rem;
}

.class-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.class-card {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  padding: 1.6rem 1.7rem 1.4rem;
  border: 1px solid rgba(37, 33, 32, 0.05);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease,
    background-color 0.2s ease;
}

.class-card h3 {
  margin: 0.7rem 0 0.35rem;
}

.class-card p {
  margin: 0;
}

.class-card .meta {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: rgba(37, 33, 32, 0.8);
}

.tag {
  display: inline-flex;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background-color: #f7efe6;
}

/* TESTIMONIAL PREVIEW */
.testimonial-preview {
  margin-bottom: 3rem;
}

.testimonial-card {
  max-width: 640px;
  margin: 0 auto;
  padding: 1.8rem 1.9rem 1.6rem;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(37, 33, 32, 0.06);
  text-align: center;
}

.card:hover,
.class-card:hover,
.testimonial-card:hover,
.panel:hover,
.post-card:hover,
.testimonial-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(92, 68, 44, 0.16);
  background-color: rgba(255, 255, 255, 0.9);
}

.testimonial-card .quote {
  margin: 0 0 0.9rem;
  font-size: 1rem;
}

.testimonial-card .author {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
  color: rgba(37, 33, 32, 0.8);
}

/* COMMON PAGE LAYOUTS */
.page-hero {
  max-width: 820px;
  margin: 2.5rem auto 3rem;
  text-align: center;
}

.page-hero h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 2.5rem;
  margin: 0 0 0.6rem;
}

.page-hero p {
  margin: 0;
  color: rgba(37, 33, 32, 0.85);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.panel {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  padding: 1.6rem 1.8rem;
  border: 1px solid rgba(37, 33, 32, 0.06);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.panel h2,
.panel h3 {
  margin-top: 0;
  font-family: "Playfair Display", "Times New Roman", serif;
}

.muted {
  color: rgba(37, 33, 32, 0.8);
  font-size: 0.95rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ABOUT PAGE IMAGE */
.about-portrait {
  width: 100%;
  height: 240px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  background-color: #e1d4c6;
  background-image: linear-gradient(135deg,
      rgba(247, 239, 230, 0.2),
      rgba(0, 0, 0, 0.16)),
    url("https://images.pexels.com/photos/3822621/pexels-photo-3822621.jpeg?auto=compress&cs=tinysrgb&w=800");
}

.chip {
  font-size: 0.85rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background-color: #f7efe6;
}

/* TABLES (Schedule) */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -0.5rem;
  padding: 0 0.5rem;
  position: relative;
}

.table-wrapper::-webkit-scrollbar {
  height: 8px;
}

.table-wrapper::-webkit-scrollbar-track {
  background: rgba(37, 33, 32, 0.05);
  border-radius: 4px;
}

.table-wrapper::-webkit-scrollbar-thumb {
  background: #a46946;
  border-radius: 4px;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
  background: #8f5738;
}

.schedule-table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.schedule-table thead {
  background-color: #e9dbc8;
}

.schedule-table th,
.schedule-table td {
  padding: 0.75rem 0.9rem;
  text-align: center;
}

.schedule-table tbody tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.7);
}

.schedule-table tbody tr:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.45);
}

.badge {
  display: inline-flex;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  background-color: #f7efe6;
}

/* FORMS (Booking / Contact) */
form {
  display: grid;
  gap: 1rem;
  text-align: left;
}

label {
  font-size: 0.9rem;
  font-weight: 500;
  display: block;
  text-align: left;
  margin-bottom: 0.4rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(37, 33, 32, 0.18);
  font: inherit;
  background-color: rgba(255, 255, 255, 0.85);
  text-align: left;
}

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

/* BLOG */
/* Featured Post Section */
.featured-post-section {
  margin: 3rem 0 4rem;
}

.featured-post-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(92, 68, 44, 0.12);
  border: 1px solid rgba(37, 33, 32, 0.08);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(92, 68, 44, 0.18);
}

.featured-post-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-color: #e1d4c6;
}

.featured-post-content {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.post-category {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a46946;
  font-weight: 600;
  margin-bottom: 1rem;
}

.featured-post-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin: 0 0 1rem;
  color: #252120;
  line-height: 1.2;
}

.post-footer {
  display: flex;
  gap: 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: rgba(37, 33, 32, 0.7);
}

.post-date {
  color: rgba(37, 33, 32, 0.7);
}

.read-time {
  color: rgba(37, 33, 32, 0.7);
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.post-card {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(37, 33, 32, 0.08);
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(92, 68, 44, 0.08);
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(92, 68, 44, 0.15);
}

.post-image {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: #e1d4c6;
}

.post-content {
  padding: 1.8rem 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.post-content .post-category {
  margin-bottom: 0.5rem;
}

.post-card h3 {
  margin: 0.5rem 0 0.8rem;
  font-size: 1.3rem;
  font-family: "Playfair Display", serif;
  color: #252120;
  line-height: 1.3;
}

.post-meta {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  color: rgba(37, 33, 32, 0.6);
  font-weight: 500;
}

.post-footer-small {
  margin-top: auto;
  padding-top: 1rem;
  margin-bottom: 1rem;
}

.post-footer-small .post-date {
  font-size: 0.85rem;
  color: rgba(37, 33, 32, 0.6);
}

.read-more-link {
  display: inline-block;
  color: #a46946;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease, transform 0.2s ease;
  margin-top: 0.5rem;
}

.read-more-link:hover {
  color: #8f5738;
  transform: translateX(5px);
}

/* Related Resources Section */
.related-resources {
  margin: 5rem 0;
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(233, 219, 200, 0.3), rgba(247, 239, 230, 0.5));
  border-radius: 24px;
}

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

.resource-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 18px;
  padding: 2rem 1.8rem;
  text-align: center;
  border: 1px solid rgba(37, 33, 32, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 24px rgba(92, 68, 44, 0.08);
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(92, 68, 44, 0.15);
}

.resource-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.resource-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin: 0 0 0.8rem;
  color: #252120;
}

.resource-card p {
  color: rgba(37, 33, 32, 0.85);
  line-height: 1.7;
  margin: 0 0 1.2rem;
  font-size: 0.95rem;
}

.resource-card .text-link {
  color: #a46946;
  font-weight: 600;
}

.resource-card .text-link:hover {
  color: #8f5738;
}

/* Blog Newsletter Section */
.blog-newsletter {
  margin: 4rem 0;
}

.newsletter-card {
  background: linear-gradient(135deg, #a46946 0%, #8f5738 100%);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  text-align: center;
  color: white;
  box-shadow: 0 16px 40px rgba(164, 105, 70, 0.25);
}

.newsletter-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  margin: 0 0 1rem;
  color: white;
}

.newsletter-content>p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 0 2rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.newsletter-form-inline {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form-inline input {
  flex: 1;
  min-width: 250px;
  padding: 0.9rem 1.2rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  color: #252120;
}

.newsletter-form-inline input:focus {
  outline: none;
  border-color: white;
  background: white;
}

.newsletter-form-inline .btn {
  padding: 0.9rem 2rem;
  font-size: 1rem;
  white-space: nowrap;
}

.newsletter-note {
  font-size: 0.85rem;
  opacity: 0.8;
  margin: 0;
}

/* TESTIMONIALS PAGE */
.testimonial-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.testimonial-item {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(37, 33, 32, 0.06);
  text-align: center;
}

.testimonial-item p {
  margin-top: 0;
}

.testimonial-item .name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-item .details {
  font-size: 0.85rem;
  color: rgba(37, 33, 32, 0.8);
}

/* FOOTER */
.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 3.5rem 5vw 1.5rem;
  background: linear-gradient(to bottom, rgba(247, 239, 230, 0.4), rgba(255, 255, 255, 0.6));
  margin-top: 4rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 4rem;
  margin-bottom: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  margin: 0 0 1.5rem;
  color: rgba(37, 33, 32, 0.85);
  line-height: 1.7;
  font-size: 0.95rem;
}

.social-icons {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  color: #252120;
  transition: all 0.3s ease;
  border: 1px solid rgba(37, 33, 32, 0.1);
}

.social-icon:hover {
  background-color: #a46946;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(164, 105, 70, 0.3);
  border-color: #a46946;
}

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

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  font-size: 0.9rem;
}

.footer-column h4 {
  font-family: "Playfair Display", serif;
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #252120;
  font-weight: 600;
}

.footer-column p {
  margin: 0 0 1rem;
  color: rgba(37, 33, 32, 0.85);
  line-height: 1.7;
}

.footer-column p strong {
  color: #252120;
  font-weight: 600;
  display: block;
  margin-bottom: 0.3rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(37, 33, 32, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: #a46946;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.newsletter {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(37, 33, 32, 0.1);
}

.newsletter h4 {
  margin-bottom: 0.5rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.newsletter-form input {
  padding: 0.7rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(37, 33, 32, 0.2);
  font-size: 0.9rem;
  background-color: rgba(255, 255, 255, 0.9);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.newsletter-form input:focus {
  outline: none;
  border-color: #a46946;
  box-shadow: 0 0 0 3px rgba(164, 105, 70, 0.1);
}

.newsletter-form .btn {
  padding: 0.7rem 1.2rem;
  font-size: 0.9rem;
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(37, 33, 32, 0.7);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(37, 33, 32, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.85rem;
}

.footer-legal a:hover {
  color: #a46946;
  text-decoration: underline;
}

.footer-legal span {
  color: rgba(37, 33, 32, 0.4);
}

/* SCROLL TO TOP BUTTON */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #a46946;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(164, 105, 70, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 100;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background-color: #8f5738;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(164, 105, 70, 0.5);
}

.scroll-to-top:active {
  transform: translateY(-1px);
}

.scroll-to-top svg {
  width: 20px;
  height: 20px;
}

/* RESPONSIVE */
/* iPad Pro and smaller devices */
@media (max-width: 1024px) {
  main {
    padding: 4rem 5vw 3rem;
  }

  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 1.1rem 5vw;
  }

  .menu-toggle {
    display: flex;
    width: 32px;
    height: 32px;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(247, 239, 230, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem 6vw;
    gap: 0;
    box-shadow: 0 10px 30px rgba(60, 38, 20, 0.15);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease, visibility 0.3s ease;
    display: flex;
  }

  .main-nav.nav-open {
    max-height: 1000px;
    opacity: 1;
    visibility: visible;
    padding: 1.5rem 6vw;
    overflow: visible;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1rem;
    width: 100%;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    text-align: center;
  }

  .main-nav a.nav-btn,
  .main-nav a.nav-btn-primary {
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .main-nav a:last-child {
    margin-bottom: 0;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    padding: 0.8rem 1rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    pointer-events: auto;
    position: relative;
    z-index: 10;
    justify-content: center;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0;
    margin-left: 1rem;
    margin-bottom: 0.5rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    display: block;
    width: calc(100% - 1rem);
    pointer-events: none;
    z-index: 15;
  }

  .nav-dropdown-menu.show {
    max-height: 500px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    overflow: visible;
  }

  .nav-dropdown-menu a {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    display: block !important;
    width: 100%;
    opacity: 1 !important;
    visibility: visible !important;
    white-space: nowrap;
    text-align: center;
  }

  .hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.6fr);
  }

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

  .hero-media-left {
    display: none;
  }

  .pillars-grid,
  .class-grid,
  .blog-grid,
  .testimonial-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-post-card {
    grid-template-columns: 1fr;
  }

  .featured-post-image {
    min-height: 300px;
  }

  .featured-post-content {
    padding: 2rem 2rem;
  }

  .featured-post-content h2 {
    font-size: 1.6rem;
  }

  .resources-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .newsletter-card {
    padding: 2.5rem 2rem;
  }

  .newsletter-content h2 {
    font-size: 1.8rem;
  }

  .newsletter-form-inline {
    flex-direction: column;
  }

  .newsletter-form-inline input {
    width: 100%;
    min-width: 100%;
  }

  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-main {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }

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

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

@media (max-width: 640px) {
  .site-header {
    padding: 1rem 5vw;
  }

  .menu-toggle {
    width: 28px;
    height: 28px;
  }

  .main-nav {
    padding: 1.2rem 5vw;
  }

  .main-nav.nav-open {
    padding: 1.2rem 5vw;
  }

  .main-nav a {
    padding: 0.7rem 0.9rem;
    font-size: 0.9rem;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-media-right {
    display: none;
  }

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

  .scroll-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 45px;
    height: 45px;
  }

  .table-wrapper {
    margin: 0 -1rem;
    padding: 0 1rem;
  }

  .schedule-table {
    font-size: 0.85rem;
    min-width: 550px;
  }

  .schedule-table th,
  .schedule-table td {
    padding: 0.6rem 0.5rem;
    white-space: nowrap;
  }

  .pillars-grid,
  .class-grid,
  .blog-grid,
  .testimonial-list,
  .footer-columns {
    grid-template-columns: minmax(0, 1fr);
  }

  .featured-post-card {
    grid-template-columns: 1fr;
  }

  .featured-post-image {
    min-height: 250px;
  }

  .featured-post-content {
    padding: 1.8rem 1.5rem;
  }

  .featured-post-content h2 {
    font-size: 1.4rem;
  }

  .post-image {
    height: 180px;
  }

  .post-content {
    padding: 1.5rem 1.5rem 1.2rem;
  }

  .post-card h3 {
    font-size: 1.2rem;
  }

  .resources-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .resource-card {
    padding: 1.8rem 1.5rem;
  }

  .newsletter-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
  }

  .newsletter-content h2 {
    font-size: 1.6rem;
  }

  .newsletter-content>p {
    font-size: 1rem;
  }

  .newsletter-form-inline {
    flex-direction: column;
    width: 100%;
  }

  .newsletter-form-inline input {
    width: 100%;
    min-width: 100%;
  }

  .newsletter-form-inline .btn {
    width: 100%;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1fr);
  }

  .highlight-strip {
    padding: 2rem 1.5rem;
  }

  .highlight-content {
    max-width: 100%;
  }
}

/* ABOUT PAGE - JOURNEY TIMELINE */
.journey-section {
  margin: 4rem 0;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #a46946, #e9dbc8);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 2.5rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 0.3rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #a46946;
  border: 3px solid #f7efe6;
  box-shadow: 0 0 0 3px rgba(164, 105, 70, 0.2);
}

.timeline-year {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #a46946;
  margin-bottom: 0.4rem;
}

.timeline-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  color: #252120;
}

.timeline-content p {
  margin: 0;
  color: rgba(37, 33, 32, 0.8);
  line-height: 1.7;
}

/* ABOUT PAGE - VALUES GRID */
.values-section {
  margin: 4rem 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.8rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: stretch;
}

.value-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(247, 239, 230, 0.6));
  border-radius: 20px;
  padding: 2rem 1.8rem;
  text-align: center;
  border: 1px solid rgba(37, 33, 32, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(92, 68, 44, 0.18);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
  flex-shrink: 0;
}

.value-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin: 0 0 0.8rem;
  color: #252120;
  text-align: center;
  width: 100%;
}

.value-card p {
  margin: 0;
  color: rgba(37, 33, 32, 0.85);
  line-height: 1.7;
  text-align: center;
  width: 100%;
}

/* ABOUT PAGE - PHILOSOPHY BANNER */
.philosophy-banner {
  background: linear-gradient(135deg, #e9dbc8 0%, #f7efe6 100%);
  border-radius: 24px;
  padding: 3rem 3.5rem;
  margin: 4rem 0;
  box-shadow: 0 20px 60px rgba(92, 68, 44, 0.15);
}

.philosophy-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin: 0 0 1.2rem;
  color: #252120;
}

.philosophy-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(37, 33, 32, 0.9);
  margin: 0 0 1rem;
}

.philosophy-content p:last-child {
  margin-bottom: 0;
}

/* CLASSES PAGE - CLASS DETAILS */
.class-details-section {
  margin: 4rem 0;
}

.class-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

.class-detail-card {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  padding: 2rem 2.2rem;
  border: 1px solid rgba(37, 33, 32, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.class-detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(92, 68, 44, 0.12);
  background: rgba(255, 255, 255, 0.9);
}

.class-tag {
  display: inline-block;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  text-align: center;
  width: auto;
}

.class-tag.gentle {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.class-tag.all-levels {
  background-color: #e3f2fd;
  color: #1565c0;
}

.class-tag.intermediate {
  background-color: #fff3e0;
  color: #e65100;
}

.class-tag.restorative {
  background-color: #f3e5f5;
  color: #6a1b9a;
}

.class-detail-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  margin: 0 0 0.4rem;
  color: #252120;
  text-align: center;
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.class-time {
  font-size: 0.9rem;
  color: #a46946;
  font-weight: 500;
  margin: 0 0 1rem;
  text-align: center;
  width: 100%;
}

.class-detail-card>p {
  color: rgba(37, 33, 32, 0.85);
  line-height: 1.7;
  margin: 0 0 1.2rem;
  text-align: center;
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.class-features {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: left;
}

.class-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: rgba(37, 33, 32, 0.8);
  font-size: 0.95rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.class-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #a46946;
  font-weight: 600;
}

/* CLASSES PAGE - BENEFITS */
.benefits-section {
  margin: 4rem 0;
  background: linear-gradient(135deg, rgba(247, 239, 230, 0.6), rgba(255, 255, 255, 0.8));
  border-radius: 24px;
  padding: 3rem;
}

.benefits-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.benefits-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin: 0 0 2rem;
  color: #252120;
  text-align: center;
}

.benefit-item {
  margin-bottom: 2rem;
}

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

.benefit-item h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin: 0 0 0.5rem;
  color: #252120;
  text-align: center;
}

.benefit-item p {
  margin: 0;
  color: rgba(37, 33, 32, 0.85);
  line-height: 1.7;
  text-align: center;
}

.benefits-image {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  background-color: #e1d4c6;
  background-image: linear-gradient(135deg,
      rgba(247, 239, 230, 0.3),
      rgba(0, 0, 0, 0.1)),
    url("https://images.pexels.com/photos/4056723/pexels-photo-4056723.jpeg?auto=compress&cs=tinysrgb&w=800");
  box-shadow: 0 16px 40px rgba(92, 68, 44, 0.15);
}

/* CLASSES PAGE - PRICING */
.pricing-section {
  margin: 6rem 0;
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(247, 239, 230, 0.4), rgba(255, 255, 255, 0.8));
  border-radius: 40px;
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(164, 105, 70, 0.08), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(164, 105, 70, 0.06), transparent 50%);
  pointer-events: none;
}

.pricing-section .section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 3rem;
}

.pricing-section .section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #252120, #a46946);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 3px solid rgba(37, 33, 32, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 8px 32px rgba(92, 68, 44, 0.1);
  backdrop-filter: blur(10px);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, transparent, rgba(164, 105, 70, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card.featured {
  border-color: #a46946;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 239, 230, 0.85));
  transform: scale(1.08);
  box-shadow: 0 20px 60px rgba(164, 105, 70, 0.25);
  border-width: 4px;
}

.pricing-card.featured::before {
  background: linear-gradient(90deg, #a46946, #8f5738);
  opacity: 1;
  height: 6px;
}

.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 24px 60px rgba(92, 68, 44, 0.25);
  border-color: #a46946;
}

.pricing-card.featured:hover {
  transform: scale(1.08) translateY(-10px);
  box-shadow: 0 28px 70px rgba(164, 105, 70, 0.3);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #a46946, #8f5738);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 16px rgba(164, 105, 70, 0.4);
  z-index: 2;
}

.pricing-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin: 1.5rem 0 1rem;
  color: #252120;
  font-weight: 700;
}

.price {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #a46946, #8f5738);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 1rem 0;
  line-height: 1;
  position: relative;
}

.price::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #a46946, transparent);
  opacity: 0.5;
}

.price-note {
  font-size: 1rem;
  color: rgba(37, 33, 32, 0.7);
  margin: 0.5rem 0 2rem;
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
}

.pricing-features li {
  padding: 0.8rem 0;
  padding-left: 2rem;
  position: relative;
  color: rgba(37, 33, 32, 0.9);
  font-size: 1rem;
  font-weight: 500;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #a46946;
  font-weight: 700;
  font-size: 1.1rem;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(164, 105, 70, 0.1);
  border-radius: 50%;
}

.pricing-note {
  text-align: center;
  color: rgba(37, 33, 32, 0.8);
  font-size: 1rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* ONLINE PAGE - EXPERIENCE */
.online-experience-section {
  margin: 4rem 0;
}

.online-experience-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.online-image {
  width: 100%;
  height: 450px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  background-color: #e1d4c6;
  background-image: linear-gradient(135deg,
      rgba(247, 239, 230, 0.3),
      rgba(0, 0, 0, 0.12)),
    url("https://images.pexels.com/photos/3823054/pexels-photo-3823054.jpeg?auto=compress&cs=tinysrgb&w=800");
  box-shadow: 0 20px 50px rgba(92, 68, 44, 0.2);
}

.online-text h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  margin: 0 0 1rem;
  color: #252120;
  text-align: center;
}

.online-text>p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(37, 33, 32, 0.9);
  margin: 0 0 2rem;
  text-align: center;
}

.experience-features {
  display: grid;
  gap: 1.5rem;
}

.experience-feature {
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  border-left: 4px solid #a46946;
}

.experience-feature h3 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: #252120;
  text-align: center;
}

.experience-feature p {
  margin: 0;
  color: rgba(37, 33, 32, 0.8);
  line-height: 1.6;
  font-size: 0.95rem;
  text-align: center;
}

/* ONLINE PAGE - TECH */
.tech-section {
  margin: 4rem 0;
}

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

.tech-card {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 18px;
  padding: 2rem 1.8rem;
  border: 1px solid rgba(37, 33, 32, 0.08);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(92, 68, 44, 0.12);
  background: rgba(255, 255, 255, 0.9);
}

.tech-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin: 0 0 1rem;
  color: #252120;
  text-align: center;
}

.tech-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.tech-card li {
  padding: 0.6rem 0;
  padding-left: 1.8rem;
  position: relative;
  color: rgba(37, 33, 32, 0.85);
  line-height: 1.6;
  text-align: left;
  display: inline-block;
  width: 100%;
}

.tech-card li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #a46946;
  font-weight: 600;
}

/* ONLINE PAGE - BENEFITS */
.online-benefits-section {
  margin: 4rem 0;
  background: linear-gradient(135deg, rgba(233, 219, 200, 0.4), rgba(247, 239, 230, 0.6));
  border-radius: 24px;
  padding: 3.5rem 3rem;
}

.online-benefits-content {
  max-width: 1000px;
  margin: 0 auto;
}

.online-benefits-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  text-align: center;
  margin: 0 0 3rem;
  color: #252120;
}

.benefits-list {
  display: grid;
  gap: 2rem;
}

.benefit-box {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  background: rgba(255, 255, 255, 0.7);
  padding: 1.8rem 2rem;
  border-radius: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-box:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 30px rgba(92, 68, 44, 0.12);
  background: rgba(255, 255, 255, 0.9);
}

.benefit-number {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  color: #a46946;
  opacity: 0.3;
  line-height: 1;
}

.benefit-text h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin: 0 0 0.5rem;
  color: #252120;
  text-align: center;
}

.benefit-text p {
  margin: 0;
  color: rgba(37, 33, 32, 0.85);
  line-height: 1.7;
  text-align: center;
}

/* ONLINE PAGE - FAQ */
.faq-section {
  margin: 4rem 0;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 16px;
  padding: 1.8rem 2rem;
  border: 1px solid rgba(37, 33, 32, 0.08);
  border-left: 4px solid #a46946;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-align: center;
}

.faq-item:hover {
  transform: translateX(5px);
  box-shadow: 0 12px 30px rgba(92, 68, 44, 0.1);
  background: rgba(255, 255, 255, 0.9);
}

.faq-item h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  margin: 0 0 0.8rem;
  color: #252120;
  text-align: center;
}

.faq-item p {
  margin: 0;
  color: rgba(37, 33, 32, 0.85);
  line-height: 1.7;
  text-align: center;
}

/* RESPONSIVE UPDATES FOR NEW SECTIONS */
@media (max-width: 1024px) {

  .values-grid,
  .class-details-grid,
  .pricing-section {
    margin: 4rem 0;
    padding: 3rem 0;
    border-radius: 24px;
  }

  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .class-details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .class-detail-card {
    padding: 1.8rem 1.5rem;
  }

  .pricing-grid,
  .tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

  .pricing-card.featured {
    transform: scale(1.02);
  }

  .benefits-content,
  .online-experience-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .benefits-image,
  .online-image {
    height: 300px;
  }

  .timeline {
    padding-left: 1.5rem;
  }

  .philosophy-banner {
    padding: 2rem 2.5rem;
  }
}

@media (max-width: 640px) {

  .values-grid,
  .class-details-grid,
  .pricing-section {
    margin: 3rem 0;
    padding: 2.5rem 0;
    border-radius: 20px;
  }

  .values-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .class-details-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .class-detail-card {
    padding: 1.5rem 1.2rem;
    width: 100%;
    box-sizing: border-box;
  }

  .class-detail-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
  }

  .class-time {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
  }

  .class-detail-card>p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .class-tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.7rem;
    margin-bottom: 0.8rem;
  }

  .class-features {
    font-size: 0.9rem;
  }

  .class-features li {
    font-size: 0.9rem;
    padding: 0.4rem 0;
    padding-left: 1.3rem;
  }

  .value-card {
    padding: 1.8rem 1.5rem;
  }

  .value-icon {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
  }

  .value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }

  .value-card p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .pricing-grid,
  .tech-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }

  .price {
    font-size: 2.8rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }

  .pricing-card:hover {
    transform: translateY(-8px) scale(1);
  }

  .benefit-box {
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
    padding: 1.5rem 1.5rem;
  }

  .benefit-number {
    font-size: 2.5rem;
  }

  .philosophy-banner {
    padding: 2rem 1.5rem;
  }

  .philosophy-content h2 {
    font-size: 1.6rem;
  }
}