:root {
  --primary: #3D2B1F;
  --secondary: #E8A090;
  --accent: #1A3A3A;
  --bg-main: #FFF8F5;
  --bg-neutral: #FDF0EB;
  --text-dark: #4A1520;
  --white: #FFFFFF;
  --max-w: 1000px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: var(--primary);
  background: var(--bg-main);
  overflow-x: hidden;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: var(--secondary); border-radius: 3px; }

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 64px;
  box-shadow: 0 2px 20px rgba(61,43,31,0.3);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  color: var(--bg-main);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Great Vibes', cursive;
  font-size: 20px;
  color: var(--secondary);
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: var(--bg-main);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}

.nav-links a:hover { opacity: 1; color: var(--secondary); }

.nav-social {
  display: flex;
  gap: 14px;
  align-items: center;
}

.nav-social a {
  color: var(--bg-main);
  opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
  font-size: 14px;
  text-decoration: none;
}
.nav-social a:hover { opacity: 1; color: var(--secondary); }

/* SECTIONS */
section { padding: 80px 0; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

/* TYPOGRAPHY */
h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.2;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.3;
}

h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
}

.script {
  font-family: 'Great Vibes', cursive;
  font-size: 28px;
  color: var(--secondary);
  display: block;
  margin-bottom: 8px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 25px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--secondary);
  color: var(--primary);
}
.btn-primary:hover {
  background: #d4806e;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,160,144,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--bg-main);
  border: 1.5px solid var(--bg-main);
}
.btn-outline:hover {
  background: rgba(255,248,245,0.1);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--primary);
  color: var(--bg-main);
}
.btn-dark:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* ========== HERO ========== */
#home {
  min-height: 100vh;
  background: var(--primary);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 70% 50%, rgba(26,58,58,0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(232,160,144,0.08) 0%, transparent 50%);
  z-index: 1;
}

.hero-accent-line {
  position: absolute;
  width: 2px;
  height: 280px;
  background: linear-gradient(to bottom, transparent, var(--secondary), transparent);
  left: 48%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.3;
  z-index: 2;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  width: 100%;
  position: relative;
  z-index: 3;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 60px 80px 80px;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--secondary);
}

.hero-left h1 { color: var(--bg-main); margin-bottom: 20px; }

.hero-left h1 em {
  font-style: italic;
  color: var(--secondary);
}

.hero-subtext {
  color: rgba(255,248,245,0.7);
  font-size: 13px;
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 36px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-props {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,248,245,0.1);
}

.hero-prop {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-prop-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 4px;
}

.hero-prop strong {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  color: var(--bg-main);
  font-weight: 600;
}

.hero-prop span {
  font-size: 11px;
  color: rgba(255,248,245,0.55);
  line-height: 1.5;
  max-width: 140px;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--primary) 0%, transparent 25%);
  z-index: 2;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-float-badge {
  position: absolute;
  bottom: 60px;
  left: 20px;
  z-index: 3;
  background: rgba(61,43,31,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(232,160,144,0.3);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-float-badge strong {
  font-family: 'Playfair Display', serif;
  font-size: 13px;
  color: var(--bg-main);
}
.hero-float-badge span { font-size: 10px; color: var(--secondary); letter-spacing: 0.1em; text-transform: uppercase; }

/* ========== ABOUT ========== */
#about { background: var(--bg-neutral); }

.about-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-img-ring {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  padding: 8px;
  position: relative;
}

.about-img-ring::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  top: -24px;
  left: 0;
  transform: rotate(-12deg);
}

.about-img-ring::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, var(--accent), transparent);
  right: -24px;
  top: 20%;
}

.about-img-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

.about-content { }

.about-content h2 { color: var(--text-dark); margin-bottom: 20px; }

.about-content p {
  color: var(--primary);
  line-height: 1.9;
  margin-bottom: 16px;
  font-size: 13px;
}

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(61,43,31,0.12);
}

.about-stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--text-dark);
  display: block;
}

.about-stat span {
  font-size: 11px;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ========== SERVICES ========== */
#services { background: var(--bg-main); }

.services-header { text-align: center; margin-bottom: 60px; }
.services-header h2 { color: var(--text-dark); margin-top: 8px; }

.service-category { margin-bottom: 56px; }

.service-category-title {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.service-category-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--accent);
  opacity: 0.2;
}

.service-row {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-neutral);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(61,43,31,0.06);
}

.service-row.reverse { grid-template-columns: 1fr 340px; }
.service-row.reverse .service-img { order: 2; }
.service-row.reverse .service-info { order: 1; padding: 40px 24px 40px 40px; }

.service-img {
  position: relative;
  overflow: hidden;
  height: 260px;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-row:hover .service-img img { transform: scale(1.04); }

.service-info { padding: 40px 40px 40px 24px; }
.service-row .service-info { padding: 40px 40px 40px 24px; }

.service-info h3 {
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 600;
}

.service-info p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--primary);
  opacity: 0.85;
}

.service-tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--secondary);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* dual image service */
.service-img-dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 260px;
  overflow: hidden;
}

.service-img-dual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-row:hover .service-img-dual img { transform: scale(1.04); }

/* text-only service card */
.service-card-text {
  background: var(--bg-neutral);
  border-radius: 12px;
  padding: 28px 32px;
  margin-bottom: 16px;
  border-left: 3px solid var(--secondary);
}

.service-card-text h3 { color: var(--text-dark); font-size: 17px; margin-bottom: 8px; }
.service-card-text p { font-size: 12px; line-height: 1.8; color: var(--primary); opacity: 0.85; }

/* ========== GALLERY ========== */
#gallery { background: var(--bg-neutral); }

.gallery-header { text-align: center; margin-bottom: 48px; }
.gallery-header h2 { color: var(--text-dark); margin-top: 8px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(61,43,31,0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  gap: 8px;
}

.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--bg-main);
  font-weight: 600;
}

.gallery-overlay small {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 85vw; max-height: 80vh; object-fit: contain; border-radius: 8px; }
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-label {
  font-family: 'Playfair Display', serif;
  color: var(--secondary);
  font-size: 16px;
}

/* ========== TESTIMONIALS ========== */
#testimonials { background: var(--primary); }

.testimonials-header { text-align: center; margin-bottom: 52px; }
.testimonials-header h2 { color: var(--bg-main); margin-top: 8px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 52px;
}

.testimonial-card {
  background: rgba(255,248,245,0.05);
  border: 1px solid rgba(232,160,144,0.15);
  border-radius: 12px;
  padding: 32px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  color: var(--secondary);
  opacity: 0.15;
  position: absolute;
  top: 12px;
  left: 24px;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: var(--secondary);
}

.testimonial-card blockquote {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,248,245,0.8);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}
.testimonial-author strong { color: var(--bg-main); font-size: 12px; }
.testimonial-author span { color: var(--secondary); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }

/* Review Form */
.review-form-wrap {
  background: rgba(255,248,245,0.04);
  border: 1px solid rgba(232,160,144,0.15);
  border-radius: 12px;
  padding: 40px;
  max-width: 640px;
  margin: 0 auto;
}

.review-form-wrap h3 { color: var(--bg-main); margin-bottom: 24px; font-size: 18px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }

.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-field label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--secondary); font-weight: 600; }

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,248,245,0.06);
  border: 1px solid rgba(232,160,144,0.2);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--bg-main);
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  outline: none;
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--secondary); }

.form-field select option { background: var(--primary); }
.form-field textarea { resize: vertical; min-height: 100px; }

.star-rating { display: flex; gap: 8px; }
.star-rating span {
  font-size: 22px;
  cursor: pointer;
  color: rgba(255,248,245,0.2);
  transition: color 0.2s;
}
.star-rating span.active, .star-rating span:hover { color: var(--secondary); }

/* ========== FAQ ========== */
#faq { background: var(--bg-main); }

.faq-header { text-align: center; margin-bottom: 48px; }
.faq-header h2 { color: var(--text-dark); margin-top: 8px; }

.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid rgba(61,43,31,0.1);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--primary);
  gap: 16px;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--text-dark); }

.faq-chevron {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
  color: var(--secondary);
  font-size: 12px;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--secondary);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
  padding: 0;
}

.faq-answer.open {
  max-height: 300px;
  padding-bottom: 22px;
}

.faq-answer p { font-size: 13px; line-height: 1.8; color: var(--primary); opacity: 0.75; }

/* ========== BOOKING ========== */
#booking { background: var(--bg-neutral); }

.booking-header { text-align: center; margin-bottom: 52px; }
.booking-header h2 { color: var(--text-dark); margin-top: 8px; }

.booking-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
}

.booking-info h3 {
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(61,43,31,0.08);
}

.contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.contact-item strong { display: block; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 3px; }
.contact-item span, .contact-item a { font-size: 12px; color: var(--primary); text-decoration: none; }
.contact-item a:hover { color: var(--secondary); }

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--primary);
  font-size: 12px;
  transition: color 0.2s;
}
.social-link:hover { color: var(--secondary); }

.social-link-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--bg-main);
}

/* Booking Form */
.booking-form {
  background: var(--bg-main);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(61,43,31,0.08);
}

.booking-form h3 { color: var(--text-dark); margin-bottom: 28px; font-size: 18px; }

.bf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.bf-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.bf-field label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); font-weight: 600; }

.bf-field input,
.bf-field select,
.bf-field textarea {
  background: var(--bg-neutral);
  border: 1px solid rgba(61,43,31,0.12);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--primary);
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  outline: none;
  transition: border-color 0.2s;
}

.bf-field input:focus,
.bf-field select:focus,
.bf-field textarea:focus { border-color: var(--secondary); }

.bf-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%233D2B1F'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; cursor: pointer; }

.bf-field textarea { resize: vertical; min-height: 110px; }

/* ========== TRAININGS & AWARDS ========== */
#trainings { background: var(--bg-neutral); }

.trainings-header { text-align: center; margin-bottom: 60px; }
.trainings-header h2 { color: var(--text-dark); margin-top: 8px; }

.trainings-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.trainings-col-title {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.trainings-col-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--accent);
  opacity: 0.2;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--secondary), rgba(232,160,144,0.1));
}

.timeline-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  margin-bottom: 28px;
  position: relative;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--secondary);
  border: 3px solid var(--bg-neutral);
  box-shadow: 0 0 0 1.5px var(--secondary);
  margin-top: 3px;
  flex-shrink: 0;
  align-self: start;
  position: relative;
  z-index: 1;
}

.timeline-content { }

.timeline-date {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.timeline-date .tl-location {
  color: rgba(61,43,31,0.45);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.timeline-title {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 3px;
  line-height: 1.4;
}

.timeline-school {
  font-size: 11px;
  color: var(--primary);
  opacity: 0.65;
  line-height: 1.5;
}

/* Awards */
.awards-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.award-card {
  background: var(--primary);
  border-radius: 12px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  box-shadow: 0 4px 20px rgba(61,43,31,0.12);
  position: relative;
  overflow: hidden;
}

.award-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--secondary);
}

.award-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(232,160,144,0.15);
  border: 1.5px solid rgba(232,160,144,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.award-info { }

.award-title {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--bg-main);
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.4;
}

.award-meta {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary);
}

.credential-strip {
  margin-top: 36px;
  background: linear-gradient(135deg, rgba(232,160,144,0.08) 0%, rgba(26,58,58,0.08) 100%);
  border: 1px solid rgba(61,43,31,0.1);
  border-radius: 12px;
  padding: 24px 28px;
  text-align: center;
}

.credential-strip p {
  font-size: 12px;
  line-height: 1.8;
  color: var(--primary);
  opacity: 0.75;
}

.credential-strip strong {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--text-dark);
  display: block;
  margin-bottom: 8px;
}

/* FOOTER */
footer {
  background: var(--primary);
  padding: 48px 0 28px;
  text-align: center;
}

.footer-logo {
  font-family: 'Great Vibes', cursive;
  font-size: 36px;
  color: var(--secondary);
  margin-bottom: 8px;
}

.footer-tagline { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,248,245,0.4); margin-bottom: 28px; }

.footer-nav { display: flex; gap: 24px; justify-content: center; margin-bottom: 28px; list-style: none; flex-wrap: wrap; }
.footer-nav a { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,248,245,0.5); text-decoration: none; transition: color 0.2s; }
.footer-nav a:hover { color: var(--secondary); }

.footer-divider { width: 60px; height: 1px; background: rgba(255,248,245,0.1); margin: 0 auto 20px; }

.footer-copy { font-size: 11px; color: rgba(255,248,245,0.3); }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }
.delay-5 { animation-delay: 0.7s; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  nav { padding: 0 16px; }
  .nav-links { display: none; }
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-left { padding: 100px 24px 40px; }
  .hero-right { height: 300px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-img-ring { width: 220px; height: 220px; }
  .service-row, .service-row.reverse { grid-template-columns: 1fr; }
  .service-row .service-info, .service-row.reverse .service-info { order: unset; padding: 24px; }
  .service-row.reverse .service-img { order: unset; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .booking-inner { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row, .bf-row { grid-template-columns: 1fr; }
  .trainings-layout { grid-template-columns: 1fr; gap: 40px; }
