:root {
  --ink: #10131c;
  --muted: #5c6472;
  --accent: #f25f4c;
  --accent-dark: #d94a38;
  --secondary: #1b9aaa;
  --bg: #f4f1ee;
  --card: #ffffff;
  --shadow: 0 24px 60px rgba(16, 19, 28, 0.12);
  --radius: 24px;
}

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

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 15% 15%, #fff4e8 0%, #f7f0ea 45%, #f1ece9 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

.bg-orbit {
  position: fixed;
  inset: -30vh 0 0 -10vw;
  background: radial-gradient(circle at 20% 20%, rgba(27, 154, 170, 0.25), transparent 55%),
    radial-gradient(circle at 70% 10%, rgba(242, 95, 76, 0.2), transparent 50%);
  z-index: 0;
  pointer-events: none;
}

img {
  max-width: 100%;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(244, 241, 238, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(16, 19, 28, 0.06);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--ink);
  color: #fff;
  border-radius: 14px;
  font-family: "Literata", serif;
  font-size: 20px;
}

.logo-text {
  font-size: 1.05rem;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.button.small {
  padding: 10px 18px;
  font-size: 0.9rem;
}

.button.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(16, 19, 28, 0.2);
}

.hero {
  position: relative;
  padding: 110px 0 80px;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 20px;
}

.hero h1 {
  font-family: "Literata", serif;
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 22px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 24px;
}

.meta-value {
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
}

.meta-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(16, 19, 28, 0.08);
}

.hero-card-inner {
  background: var(--card);
  border-radius: 20px;
  padding: 28px;
}

.hero-card h2 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.hero-card-foot {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.section {
  padding: 90px 0;
  position: relative;
  z-index: 1;
}

.section.alt {
  background: #fffdfb;
}

.section-heading {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-heading h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 14px;
}

.section-heading p {
  color: var(--muted);
}

.feature-grid,
.course-grid,
.price-grid,
.testimonial-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.feature,
.course,
.price,
.testimonial,
.card,
.contact-card,
.map-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.feature h3,
.course h3,
.price h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(27, 154, 170, 0.15);
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.8rem;
  margin-top: 14px;
}

.instructor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.card .muted {
  margin-bottom: 16px;
}

.price {
  border: 1px solid transparent;
}

.price.highlight {
  border-color: var(--accent);
  transform: translateY(-6px);
}

.price-value {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.price-notes {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}

.price-notes p {
  font-weight: 600;
  margin-bottom: 12px;
}

.price-table-wrap {
  margin-bottom: 32px;
  overflow-x: auto;
}

.price-table-wrap h3 {
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.price-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  background: var(--card);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(16, 19, 28, 0.12);
  border: 1px solid rgba(16, 19, 28, 0.08);
}

.price-table thead {
  background: linear-gradient(90deg, rgba(27, 154, 170, 0.18), rgba(242, 95, 76, 0.12));
}

.price-table th,
.price-table td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(16, 19, 28, 0.08);
  font-size: 0.95rem;
}

.price-table tbody tr:nth-child(even) {
  background: rgba(16, 19, 28, 0.02);
}

.price-table tbody tr:hover {
  background: rgba(27, 154, 170, 0.08);
}

.price-table th {
  font-size: 0.85rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(16, 19, 28, 0.7);
}

.price-table td:nth-child(2) {
  font-weight: 600;
  color: var(--ink);
}

.price-table td:last-child {
  color: var(--muted);
}
}

.testimonial {
  background: linear-gradient(135deg, rgba(27, 154, 170, 0.1), rgba(242, 95, 76, 0.1));
}

.reservation {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(16, 19, 28, 0.15);
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

input:focus,
select:focus {
  outline: 2px solid rgba(242, 95, 76, 0.3);
  border-color: var(--accent);
}

.contact-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.materials-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.materials-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.materials-steps {
  margin-top: 24px;
  background: rgba(242, 95, 76, 0.08);
  border-radius: 20px;
  padding: 20px 22px;
}

.materials-steps h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.materials-steps ol {
  padding-left: 20px;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.materials-list {
  list-style: none;
  display: grid;
  gap: 16px;
}

.materials-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 18px;
  align-items: center;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(16, 19, 28, 0.03);
}

.material-name {
  font-weight: 600;
}

.material-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.materials-list a {
  grid-row: span 2;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--secondary);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
}

.materials-list a:hover {
  background: #168593;
}

.map-card {
  display: grid;
  place-items: center;
  gap: 16px;
  min-height: 300px;
}

.contact-person {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(16, 19, 28, 0.04);
}

.contact-person img {
  width: 88px;
  height: 88px;
  border-radius: 18px;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 12px 24px rgba(16, 19, 28, 0.15);
}

.map-placeholder {
  width: 100%;
  height: 200px;
  border-radius: 18px;
  background: repeating-linear-gradient(
    45deg,
    rgba(16, 19, 28, 0.08),
    rgba(16, 19, 28, 0.08) 10px,
    rgba(16, 19, 28, 0.02) 10px,
    rgba(16, 19, 28, 0.02) 20px
  );
}

.map-embed {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-embed iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}

.site-footer {
  background: var(--ink);
  color: #f8f5f2;
  padding: 70px 0 40px;
}

.footer-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.site-footer h3,
.site-footer h4 {
  margin-bottom: 12px;
}

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: rgba(248, 245, 242, 0.7);
}

.site-footer a {
  color: inherit;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(248, 245, 242, 0.2);
  font-size: 0.85rem;
  color: rgba(248, 245, 242, 0.6);
}

.list {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.muted {
  color: var(--muted);
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section,
.hero {
  animation: floatIn 0.8s ease both;
}

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

  .hero-card-foot {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 700px) {
  .nav-row {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 90px;
  }

  .button.small {
    width: 100%;
  }
}
