@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;500;600;700;800&display=swap');


:root {
  --primary: #5c3d1e;
  --secondary: #a0622a;
  --accent: #d4874a;
  --bg: #faf7f3;
  --bg-tinted: #f2ece3;
  --surface: #ffffff;
  --text: #2a1f14;
  --text-muted: #7a6655;
  --text-light: #b09880;
  --border: color-mix(in oklch, var(--primary), white 80%);
  --border-strong: color-mix(in oklch, var(--primary), white 65%);

  --primary-light: color-mix(in oklch, var(--primary), white 75%);
  --primary-xlight: color-mix(in oklch, var(--primary), white 92%);
  --accent-light: color-mix(in oklch, var(--accent), white 70%);
  --accent-xlight: color-mix(in oklch, var(--accent), white 88%);
  --secondary-light: color-mix(in oklch, var(--secondary), white 75%);

  --shadow-xs: 0 1px 3px color-mix(in oklch, var(--primary), transparent 88%);
  --shadow-sm: 0 2px 8px color-mix(in oklch, var(--primary), transparent 82%), 0 1px 2px color-mix(in oklch, var(--primary), transparent 90%);
  --shadow-md: 0 4px 16px color-mix(in oklch, var(--primary), transparent 78%), 0 2px 4px color-mix(in oklch, var(--primary), transparent 86%);
  --shadow-lg: 0 8px 32px color-mix(in oklch, var(--primary), transparent 72%), 0 4px 8px color-mix(in oklch, var(--primary), transparent 84%);
  --shadow-xl: 0 16px 48px color-mix(in oklch, var(--primary), transparent 68%), 0 6px 12px color-mix(in oklch, var(--primary), transparent 80%);

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  --nav-h: 72px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'Nunito Sans', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
main { flex: 1; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }


h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.015em; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); font-weight: 700; line-height: 1.3; }
h4 { font-size: 1rem; font-weight: 700; line-height: 1.4; }
p { line-height: 1.7; }


.ld-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}
.ld-container--narrow {
  max-width: 800px;
}
.ld-section {
  padding: var(--space-2xl) 0;
}
.ld-section--tinted {
  background: var(--bg-tinted);
}
.ld-section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.ld-section-heading {
  margin-top: var(--space-xs);
  color: var(--text);
}
.ld-section-sub {
  margin-top: var(--space-sm);
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.ld-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-xlight);
  padding: 0.3em 0.9em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-xs);
}


.ld-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  min-height: 44px;
  white-space: nowrap;
}
.ld-btn:active { transform: scale(0.97); }

.ld-btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.ld-btn--primary:hover {
  background: color-mix(in oklch, var(--primary), black 12%);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.ld-btn--ghost {
  background: color-mix(in oklch, white, transparent 15%);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.ld-btn--ghost:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-2px);
}

.ld-btn--outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.ld-btn--outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}


.ld-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
}
.ld-nav {
  position: relative;
}
.ld-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 var(--space-md);
  max-width: 1180px;
  margin: 0 auto;
}
.ld-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  transition: opacity var(--transition);
}
.ld-logo:hover { opacity: 0.8; }
.ld-logo-img { width: 36px; height: 36px; }
.ld-logo-text { color: var(--primary); }

.ld-nav-tabs {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.ld-tab {
  display: flex;
  align-items: center;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full) var(--radius-full) 0 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
  position: relative;
  min-height: 44px;
}
.ld-tab:hover {
  color: var(--primary);
  background: var(--primary-xlight);
}
.ld-tab--active {
  color: var(--primary);
  background: var(--primary-xlight);
  font-weight: 700;
}
.ld-tab--active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px 2px 0 0;
}

.ld-nav-border {
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.ld-nav-border--visible {
  transform: scaleX(1);
}

.ld-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.ld-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}


.ld-mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 31, 20, 0.5);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-slow);
  backdrop-filter: blur(2px);
}
.ld-mobile-overlay--visible {
  opacity: 1;
  pointer-events: auto;
}
.ld-mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100vh;
  background: var(--surface);
  z-index: 201;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
  padding: var(--space-lg) var(--space-md);
  box-shadow: var(--shadow-xl);
}
.ld-mobile-panel--open {
  transform: translateX(0);
}
.ld-mobile-close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: 1.3rem;
  transition: background var(--transition), color var(--transition);
  margin-bottom: var(--space-lg);
}
.ld-mobile-close:hover {
  background: var(--bg-tinted);
  color: var(--primary);
}
.ld-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
.ld-mobile-link {
  display: block;
  padding: 1rem 1.25rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius-md);
  transition: background var(--transition), color var(--transition);
  min-height: 52px;
  display: flex;
  align-items: center;
}
.ld-mobile-link:hover,
.ld-mobile-link--active {
  background: var(--primary-xlight);
  color: var(--primary);
}
.ld-mobile-footer {
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.ld-mobile-footer a { color: var(--primary); }
.ld-mobile-footer i { margin-right: 0.5rem; }


.ld-hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.ld-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ld-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ld-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    color-mix(in oklch, var(--primary), transparent 20%) 0%,
    color-mix(in oklch, var(--primary), transparent 45%) 50%,
    color-mix(in oklch, var(--secondary), transparent 30%) 100%
  );
}
.ld-hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-2xl) var(--space-md) 0;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}
.ld-hero-text {
  max-width: 680px;
  padding-bottom: var(--space-xl);
}
.ld-hero-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: var(--space-sm);
}
.ld-hero-heading {
  color: #fff;
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.ld-hero-desc {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  max-width: 540px;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}
.ld-hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.ld-hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.12);
  border-top: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}
.ld-hero-card {
  padding: var(--space-md) var(--space-lg);
  background: color-mix(in oklch, var(--primary), transparent 25%);
  transition: background var(--transition);
}
.ld-hero-card:hover {
  background: color-mix(in oklch, var(--primary), transparent 15%);
}
.ld-hero-card-icon {
  font-size: 1.5rem;
  color: var(--accent-light);
  margin-bottom: var(--space-xs);
}
.ld-hero-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
}
.ld-hero-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}


.ld-bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}
.ld-bento-cell {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}
.ld-bento-cell:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.ld-bento-cell-inner {
  padding: var(--space-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.ld-bento-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25em 0.75em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-xs);
}
.ld-bento-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.ld-bento-cell--wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
}
.ld-bento-cell--wide .ld-bento-cell-inner {
  justify-content: flex-end;
}
.ld-bento-cell-img {
  overflow: hidden;
}
.ld-bento-cell-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.ld-bento-cell:hover .ld-bento-cell-img img {
  transform: scale(1.04);
}

.ld-bento-cell--tall {
  grid-row: span 2;
  min-height: 360px;
}

.ld-bento-cell--dark {
  background: var(--primary);
  color: #fff;
}
.ld-bento-cell--dark .ld-bento-tag {
  background: rgba(255,255,255,0.15);
  color: var(--accent-light);
}
.ld-bento-cell--dark h3 { color: #fff; }
.ld-bento-cell--dark p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }

.ld-bento-cell--accent {
  background: var(--accent);
  color: #fff;
}
.ld-bento-cell--accent .ld-bento-icon { color: rgba(255,255,255,0.85); }
.ld-bento-cell--accent h3 { color: #fff; }
.ld-bento-cell--accent p { color: rgba(255,255,255,0.85); font-size: 0.92rem; }

.ld-bento-cell--light {
  background: var(--primary-xlight);
}
.ld-bento-cell--light .ld-bento-icon { color: var(--primary); }
.ld-bento-cell--light h3 { color: var(--primary); }
.ld-bento-cell--light p { color: var(--text-muted); font-size: 0.92rem; }

.ld-bento-cell--neutral {
  background: var(--surface);
  border: 1px solid var(--border);
}
.ld-bento-cell--neutral .ld-bento-icon { color: var(--accent); }
.ld-bento-cell--neutral h3 { color: var(--text); }
.ld-bento-cell--neutral p { color: var(--text-muted); font-size: 0.92rem; }

.ld-bento-cell--primary {
  background: color-mix(in oklch, var(--secondary), white 15%);
  color: #fff;
}
.ld-bento-cell--primary .ld-bento-icon { color: rgba(255,255,255,0.85); }
.ld-bento-cell--primary h3 { color: #fff; }
.ld-bento-cell--primary p { color: rgba(255,255,255,0.85); font-size: 0.92rem; }

.ld-bento-cell--image {
  background: var(--primary);
  min-height: 280px;
}
.ld-bento-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.ld-bento-image-overlay {
  position: relative;
  z-index: 1;
  padding: var(--space-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(42,31,20,0.8) 0%, transparent 60%);
}
.ld-bento-image-overlay .ld-bento-tag {
  background: rgba(255,255,255,0.2);
  color: #fff;
  width: fit-content;
}
.ld-bento-image-overlay h3 { color: #fff; }


.ld-animated-border {
  position: relative;
}
.ld-animated-border::before,
.ld-animated-border::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: 2;
}
.ld-animated-border::before {
  border: 2px solid transparent;
  background: linear-gradient(var(--primary), var(--primary)) padding-box,
              linear-gradient(90deg, var(--accent), var(--accent-light), transparent, transparent) border-box;
  background-size: 0% 100%, 100% 100%;
  background-repeat: no-repeat;
  transition: background-size 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.ld-animated-border::after {
  border: 2px solid transparent;
  background: linear-gradient(var(--primary), var(--primary)) padding-box,
              linear-gradient(270deg, var(--accent), var(--accent-light), transparent, transparent) border-box;
  background-size: 0% 100%, 100% 100%;
  background-repeat: no-repeat;
  transition: background-size 0.55s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}
.ld-animated-border:hover::before,
.ld-animated-border:hover::after {
  background-size: 100% 100%, 100% 100%;
}


.ld-how-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: start;
}
.ld-how-intro {
  color: var(--text-muted);
  margin-top: var(--space-md);
  font-size: 1.05rem;
}
.ld-how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ld-step {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.ld-step:last-child { border-bottom: none; }
.ld-step:hover { padding-left: 0.5rem; }
.ld-step-num {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.05em;
  min-width: 32px;
  padding-top: 0.1rem;
}
.ld-step-body h4 {
  color: var(--text);
  margin-bottom: 0.3rem;
}
.ld-step-body p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.6;
}


.ld-courses-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
.ld-course-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}
.ld-course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.ld-course-img {
  height: 200px;
  overflow: hidden;
}
.ld-course-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.ld-course-card:hover .ld-course-img img {
  transform: scale(1.06);
}
.ld-course-body {
  padding: var(--space-md);
}
.ld-course-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent-xlight);
  color: var(--accent);
  padding: 0.25em 0.75em;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
}
.ld-course-tag--advanced {
  background: var(--primary-xlight);
  color: var(--primary);
}
.ld-course-body h3 {
  margin-bottom: 0.5rem;
  color: var(--text);
}
.ld-course-body p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}
.ld-course-meta {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.ld-course-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.ld-course-meta i { color: var(--accent); }
.ld-courses-cta {
  text-align: center;
  margin-top: var(--space-xl);
}


.ld-gallery-bento {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 12px;
}
.ld-gallery-cell {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.ld-gallery-cell:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}
.ld-gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.ld-gallery-cell:hover img {
  transform: scale(1.06);
}
.ld-gallery-cell--tall {
  grid-row: span 2;
}
.ld-gallery-cell--wide {
  grid-column: span 2;
}


.ld-location-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: start;
}
.ld-location-info h2 {
  margin: var(--space-xs) 0 var(--space-md);
}
.ld-location-info p {
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}
.ld-contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.ld-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}
.ld-contact-list i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 0.15rem;
  min-width: 20px;
}
.ld-contact-list div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.ld-contact-list strong {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}
.ld-contact-list span,
.ld-contact-list a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.97rem;
}
.ld-contact-list a:hover { color: var(--accent); }

.ld-location-map {
  height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ld-location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.ld-map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}


.ld-page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: var(--space-2xl) var(--space-md);
  text-align: center;
}
.ld-page-hero--story {
  background: linear-gradient(135deg, var(--primary) 0%, color-mix(in oklch, var(--primary), var(--accent) 40%) 100%);
}
.ld-page-hero--legal {
  background: var(--bg-tinted);
  padding: var(--space-xl) var(--space-md);
}
.ld-page-hero--legal .ld-page-heading { color: var(--text); }
.ld-page-hero--legal p { color: var(--text-muted); }
.ld-page-hero-content { max-width: 700px; margin: 0 auto; }
.ld-page-heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: var(--space-xs) 0 var(--space-sm);
  letter-spacing: -0.02em;
}
.ld-page-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.7;
}


.ld-story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.ld-story-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.ld-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ld-story-text h2 { margin: var(--space-xs) 0 var(--space-md); }
.ld-story-text p {
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  font-size: 1rem;
}


.ld-values-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
.ld-value-cell {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition), box-shadow var(--transition);
}
.ld-value-cell:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.ld-value-cell i {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: var(--space-sm);
  display: block;
}
.ld-value-cell h3 { margin-bottom: 0.5rem; color: var(--text); }
.ld-value-cell p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.65; }
.ld-value-cell--primary {
  background: var(--primary);
  border-color: transparent;
}
.ld-value-cell--primary i { color: var(--accent-light); }
.ld-value-cell--primary h3 { color: #fff; }
.ld-value-cell--primary p { color: rgba(255,255,255,0.82); }
.ld-value-cell--accent {
  background: var(--accent-xlight);
  border-color: var(--accent-light);
}
.ld-value-cell--accent i { color: var(--accent); }


.ld-team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
.ld-team-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.ld-team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.ld-team-info h4 { color: var(--primary); margin-bottom: 0.5rem; font-size: 1.05rem; }
.ld-team-info p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.65; }


.ld-cta-section { background: var(--bg); }
.ld-cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow-xl);
}
.ld-cta-box h2 { color: #fff; margin-bottom: var(--space-sm); }
.ld-cta-box p { color: rgba(255,255,255,0.85); margin-bottom: var(--space-lg); font-size: 1.05rem; }
.ld-cta-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}


.ld-services-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}
.ld-service-item {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: start;
}
.ld-service-item--reverse {
  grid-template-columns: 1.4fr 1fr;
}
.ld-service-item--reverse .ld-service-img { order: 2; }
.ld-service-item--reverse .ld-service-body { order: 1; }
.ld-service-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.ld-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.ld-service-item:hover .ld-service-img img {
  transform: scale(1.04);
}
.ld-service-header { margin-bottom: var(--space-sm); }
.ld-service-header h3 { font-size: 1.5rem; color: var(--text); margin-top: 0.35rem; }
.ld-service-body p {
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  font-size: 0.97rem;
  line-height: 1.7;
}
.ld-service-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: var(--space-md) 0;
  padding: var(--space-md);
  background: var(--bg-tinted);
  border-radius: var(--radius-md);
}
.ld-service-detail {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.ld-service-detail i { color: var(--accent); min-width: 16px; }

.ld-includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.ld-include-item {
  text-align: center;
  padding: var(--space-lg);
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.ld-include-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.ld-include-item i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: var(--space-sm);
  display: block;
}
.ld-include-item h4 { margin-bottom: 0.4rem; color: var(--text); }
.ld-include-item p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }


.ld-contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}
.ld-contact-form-area h2 { margin-bottom: 0.4rem; }
.ld-contact-form-note {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: var(--space-md);
}
.ld-contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.ld-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}
.ld-form-row--bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-sm);
}
.ld-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.ld-form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}
.ld-form-group input,
.ld-form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--text);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 44px;
}
.ld-form-group input:focus,
.ld-form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-xlight);
}
.ld-form-group textarea { resize: vertical; min-height: 100px; }
.ld-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
  flex: 1;
}
.ld-checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--accent);
  margin-top: 1px;
  cursor: pointer;
}
.ld-checkbox-label a { color: var(--accent); text-decoration: underline; }
.ld-contact-info-area h2 { margin-bottom: var(--space-md); }


.ld-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.ld-timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--primary-light));
}
.ld-timeline-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0 var(--space-md) 0;
  position: relative;
}
.ld-timeline-marker {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.ld-timeline-item:hover .ld-timeline-marker {
  transform: scale(1.1);
  box-shadow: var(--shadow-md);
}
.ld-timeline-body {
  padding-top: 0.6rem;
}
.ld-timeline-body h4 { margin-bottom: 0.3rem; color: var(--text); }
.ld-timeline-body p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.65; }


.ld-legal-section { padding-bottom: var(--space-2xl); }
.ld-legal-intro {
  background: var(--bg-tinted);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-xl);
}
.ld-legal-intro p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.ld-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ld-accordion-item {
  border-bottom: 1px solid var(--border);
}
.ld-accordion-item:last-child { border-bottom: none; }
.ld-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  background: var(--surface);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  gap: var(--space-sm);
  transition: background var(--transition), color var(--transition);
  text-align: left;
  min-height: 56px;
}
.ld-accordion-trigger:hover {
  background: var(--bg-tinted);
  color: var(--primary);
}
.ld-accordion-trigger i {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.ld-accordion-item--open .ld-accordion-trigger {
  background: var(--primary-xlight);
  color: var(--primary);
}
.ld-accordion-item--open .ld-accordion-trigger i {
  transform: rotate(180deg);
  color: var(--primary);
}
.ld-accordion-content {
  padding: 0 var(--space-lg) var(--space-lg);
  background: var(--surface);
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--text-muted);
}
.ld-accordion-content p { margin-bottom: var(--space-sm); }
.ld-accordion-content p:last-child { margin-bottom: 0; }
.ld-accordion-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: var(--space-sm) 0;
}
.ld-accordion-content a { color: var(--accent); text-decoration: underline; }


.ld-thanks-main { display: flex; flex-direction: column; }
.ld-thanks-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 60%, var(--accent) 100%);
  padding: var(--space-2xl) var(--space-md);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40vh;
}
.ld-thanks-hero-inner { max-width: 600px; }
.ld-thanks-icon {
  font-size: 4rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: var(--space-md);
}
.ld-thanks-heading {
  color: #fff;
  margin-bottom: var(--space-sm);
}
.ld-thanks-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
}
.ld-thanks-body { padding: var(--space-2xl) 0; }
.ld-thanks-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.ld-thanks-content h2 { margin-bottom: var(--space-sm); }
.ld-thanks-content p {
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  font-size: 1rem;
}
.ld-thanks-contacts {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}
.ld-thanks-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--bg-tinted);
  border-radius: var(--radius-full);
  font-weight: 600;
  color: var(--primary);
  transition: background var(--transition), transform var(--transition);
  min-height: 44px;
}
.ld-thanks-contact-item:hover {
  background: var(--primary-xlight);
  transform: translateY(-2px);
}
.ld-thanks-contact-item i { color: var(--accent); }
.ld-thanks-home-btn { margin-top: var(--space-sm); }


.ld-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.85);
  padding-top: var(--space-2xl);
}
.ld-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--space-md) var(--space-xl);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-xl);
}
.ld-footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: var(--space-md);
  transition: opacity var(--transition);
}
.ld-footer-logo:hover { opacity: 0.85; }
.ld-footer-logo img { width: 32px; height: 32px; filter: brightness(0) invert(1); }
.ld-footer-story {
  font-size: 0.93rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  margin-bottom: var(--space-lg);
  max-width: 400px;
}
.ld-footer-cta {
  background: var(--accent);
  color: #fff;
}
.ld-footer-cta:hover {
  background: color-mix(in oklch, var(--accent), black 10%);
}

.ld-footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.ld-footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--space-sm);
}
.ld-footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ld-footer-col li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
}
.ld-footer-col a {
  color: rgba(255,255,255,0.72);
  transition: color var(--transition);
}
.ld-footer-col a:hover { color: #fff; }

.ld-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: var(--space-md);
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}


.ld-cookie-card {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 999;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 1.25rem 1.4rem;
  max-width: 300px;
  width: calc(100vw - 48px);
  transform: translateX(-120%);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid var(--border);
}
.ld-cookie-card--visible {
  transform: translateX(0);
}
.ld-cookie-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}
.ld-cookie-header i {
  color: var(--accent);
  font-size: 1.1rem;
}
.ld-cookie-header strong {
  font-size: 0.92rem;
  color: var(--text);
}
.ld-cookie-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}
.ld-cookie-text a { color: var(--accent); text-decoration: underline; }
.ld-cookie-actions {
  display: flex;
  gap: 0.5rem;
}
.ld-cookie-btn {
  flex: 1;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  min-height: 36px;
  text-align: center;
}
.ld-cookie-btn:active { transform: scale(0.97); }
.ld-cookie-btn--accept {
  background: var(--primary);
  color: #fff;
}
.ld-cookie-btn--accept:hover {
  background: color-mix(in oklch, var(--primary), black 10%);
}
.ld-cookie-btn--settings {
  background: var(--bg-tinted);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.ld-cookie-btn--settings:hover {
  background: var(--border);
  color: var(--text);
}

.ld-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.ld-cookie-modal--visible {
  opacity: 1;
  pointer-events: auto;
}
.ld-cookie-modal-bg {
  position: absolute;
  inset: 0;
  background: rgba(42,31,20,0.5);
  backdrop-filter: blur(4px);
}
.ld-cookie-modal-box {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: var(--space-xl);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}
.ld-cookie-modal-box h3 {
  margin-bottom: var(--space-sm);
  color: var(--text);
}
.ld-cookie-modal-box p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
}
.ld-cookie-category {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border);
}
.ld-cookie-category:last-of-type { border-bottom: none; }
.ld-cookie-category-info h4 { font-size: 0.92rem; color: var(--text); margin-bottom: 0.2rem; }
.ld-cookie-category-info p { font-size: 0.82rem; color: var(--text-muted); margin: 0; }
.ld-cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.ld-cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.ld-cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border-strong);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition);
}
.ld-cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: var(--shadow-xs);
}
.ld-cookie-toggle input:checked + .ld-cookie-toggle-slider {
  background: var(--accent);
}
.ld-cookie-toggle input:checked + .ld-cookie-toggle-slider::before {
  transform: translateX(20px);
}
.ld-cookie-toggle input:disabled + .ld-cookie-toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}
.ld-cookie-modal-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}
.ld-cookie-modal-actions .ld-cookie-btn {
  flex: 1;
  min-width: 120px;
}


@media (max-width: 1024px) {
  .ld-bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ld-bento-cell--wide { grid-column: span 2; }
  .ld-bento-cell--tall { grid-row: span 1; min-height: 240px; }
  .ld-gallery-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px;
  }
  .ld-gallery-cell--wide { grid-column: span 2; }
  .ld-gallery-cell--tall { grid-row: span 1; }
  .ld-includes-grid { grid-template-columns: repeat(2, 1fr); }
  .ld-footer-inner { grid-template-columns: 1fr; gap: var(--space-xl); }
  .ld-footer-links { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --space-2xl: 4rem; --space-xl: 2.5rem; }
  .ld-nav-tabs { display: none; }
  .ld-hamburger { display: flex; }

  .ld-hero-cards {
    grid-template-columns: 1fr;
  }
  .ld-hero-card {
    border-top: 1px solid rgba(255,255,255,0.1);
  }

  .ld-bento-grid {
    grid-template-columns: 1fr;
  }
  .ld-bento-cell--wide {
    grid-column: span 1;
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .ld-bento-cell-img { height: 200px; }
  .ld-bento-cell--tall { grid-row: span 1; }

  .ld-how-layout { grid-template-columns: 1fr; }
  .ld-courses-grid { grid-template-columns: 1fr; }
  .ld-gallery-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .ld-gallery-cell { height: 200px; }
  .ld-gallery-cell--tall, .ld-gallery-cell--wide {
    grid-row: span 1;
    grid-column: span 1;
  }
  .ld-location-grid { grid-template-columns: 1fr; }
  .ld-location-map { height: 280px; }
  .ld-story-layout { grid-template-columns: 1fr; }
  .ld-values-bento { grid-template-columns: 1fr; }
  .ld-team-grid { grid-template-columns: 1fr; }
  .ld-service-item,
  .ld-service-item--reverse {
    grid-template-columns: 1fr;
  }
  .ld-service-item--reverse .ld-service-img { order: 0; }
  .ld-service-item--reverse .ld-service-body { order: 0; }
  .ld-service-details { grid-template-columns: 1fr; }
  .ld-includes-grid { grid-template-columns: 1fr; }
  .ld-contact-layout { grid-template-columns: 1fr; }
  .ld-form-row { grid-template-columns: 1fr; }
  .ld-form-row--bottom { flex-direction: column; align-items: flex-start; }
  .ld-cta-box { padding: var(--space-xl) var(--space-md); }
  .ld-footer-links { grid-template-columns: 1fr 1fr; }
  .ld-hero-text { padding-bottom: var(--space-lg); }
}

@media (max-width: 480px) {
  .ld-hero-actions { flex-direction: column; }
  .ld-hero-actions .ld-btn { width: 100%; justify-content: center; }
  .ld-cta-actions { flex-direction: column; }
  .ld-cta-actions .ld-btn { width: 100%; justify-content: center; }
  .ld-footer-links { grid-template-columns: 1fr; }
  .ld-cookie-modal-actions { flex-direction: column; }
  .ld-thanks-contacts { flex-direction: column; align-items: center; }
}