* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'DM Sans', sans-serif; background: #FDF8F3; color: #2C2218; min-height: 100vh; }

nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 2.5rem;
  background: rgba(253,248,243,0.92); backdrop-filter: blur(8px);
  z-index: 100; border-bottom: 1px solid rgba(160,114,90,0.12);
}
.nav-logo { font-family: 'Lora', serif; font-size: 1.1rem; color: #2C2218; font-style: italic; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.875rem; color: #6B5240; text-decoration: none; font-weight: 400; transition: color 0.2s; cursor: pointer; }
.nav-links a:hover { color: #A0725A; }

.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  padding: 6rem 2rem 4rem; position: relative; overflow: hidden;
}
.hero::before { content: ''; position: absolute; top: -80px; left: -80px; width: 320px; height: 320px; border-radius: 50%; background: rgba(210,150,100,0.10); animation: float1 8s ease-in-out infinite; }
.hero::after { content: ''; position: absolute; bottom: -60px; right: -40px; width: 240px; height: 240px; border-radius: 50%; background: rgba(180,120,160,0.08); animation: float2 10s ease-in-out infinite; }
@keyframes float1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(20px,30px)} }
@keyframes float2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-20px,-20px)} }

.tag { display: inline-block; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #A0725A; margin-bottom: 1.5rem; font-weight: 500; opacity: 0; animation: fadeUp 0.8s ease forwards 0.2s; }
.hero-name { font-family: 'Lora', serif; font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 400; color: #2C2218; line-height: 1.15; margin-bottom: 1rem; opacity: 0; animation: fadeUp 0.8s ease forwards 0.4s; }
.hero-name em { font-style: italic; color: #A0725A; }
.hero-sub { font-size: 1.05rem; font-weight: 300; color: #6B5240; max-width: 460px; line-height: 1.75; margin-bottom: 2.5rem; opacity: 0; animation: fadeUp 0.8s ease forwards 0.6s; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; opacity: 0; animation: fadeUp 0.8s ease forwards 0.8s; }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

.btn-primary { background: #A0725A; color: #FDF8F3; padding: 0.75rem 2rem; border-radius: 100px; font-size: 0.875rem; font-weight: 500; cursor: pointer; border: none; transition: background 0.2s; font-family: 'DM Sans', sans-serif; letter-spacing: 0.3px; text-decoration: none; display: inline-block; }
.btn-primary:hover { background: #8A5E48; }
.btn-outline { background: transparent; color: #A0725A; padding: 0.75rem 2rem; border-radius: 100px; font-size: 0.875rem; font-weight: 500; cursor: pointer; border: 1.5px solid #A0725A; transition: all 0.2s; font-family: 'DM Sans', sans-serif; text-decoration: none; display: inline-block; }
.btn-outline:hover { background: rgba(160,114,90,0.08); }

section { padding: 5rem 2rem; max-width: 880px; margin: 0 auto; }
.section-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: #A0725A; font-weight: 500; margin-bottom: 0.75rem; }
.section-title { font-family: 'Lora', serif; font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 400; color: #2C2218; line-height: 1.3; margin-bottom: 1.25rem; }
.section-title em { font-style: italic; color: #A0725A; }
.divider { width: 48px; height: 1.5px; background: rgba(160,114,90,0.3); margin: 0 auto; }

.video-card { background: white; border: 1px solid rgba(160,114,90,0.18); border-radius: 20px; overflow: hidden; margin-bottom: 2rem; transition: box-shadow 0.25s ease; }
.video-card:hover { box-shadow: 0 12px 40px rgba(160,114,90,0.12); }

.video-card video {
  width: 100%;
  display: block;
  background: #1a1a2e;
  max-height: 480px;
  object-fit: contain;
}

.video-info { padding: 1.5rem 1.75rem; display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.video-info-left h3 { font-family: 'Lora', serif; font-size: 1.2rem; font-weight: 400; color: #2C2218; margin-bottom: 0.4rem; }
.video-info-left p { font-size: 0.875rem; color: #6B5240; line-height: 1.6; max-width: 480px; }
.video-tag { font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase; color: #A0725A; font-weight: 500; margin-bottom: 0.4rem; }

.channel-bar { background: white; border: 1px solid rgba(160,114,90,0.18); border-radius: 16px; padding: 1.25rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 0.5rem; flex-wrap: wrap; }
.channel-bar-left { display: flex; align-items: center; gap: 1rem; }
.channel-icon { width: 42px; height: 42px; border-radius: 50%; background: rgba(160,114,90,0.15); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.channel-bar-left h4 { font-size: 0.9rem; font-weight: 500; color: #2C2218; margin-bottom: 0.15rem; }
.channel-bar-left p { font-size: 0.78rem; color: #6B5240; }
.watch-btn { display: inline-flex; align-items: center; gap: 0.5rem; background: #A0725A; color: #FDF8F3; padding: 0.6rem 1.4rem; border-radius: 100px; font-size: 0.8rem; font-weight: 500; text-decoration: none; white-space: nowrap; flex-shrink: 0; transition: background 0.2s; font-family: 'DM Sans', sans-serif; }
.watch-btn:hover { background: #8A5E48; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.about-text p { font-size: 0.95rem; color: #4A3728; line-height: 1.85; margin-bottom: 1rem; }
.pill-group { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.pill { background: rgba(160,114,90,0.1); color: #7A4F38; padding: 0.3rem 0.85rem; border-radius: 100px; font-size: 0.78rem; font-weight: 500; }

.approach-block { padding: 1.5rem 1.4rem; border-radius: 16px; border: 1px solid rgba(160,114,90,0.15); background: white; margin-bottom: 1rem; }
.approach-num { font-family: 'Lora', serif; font-size: 1.6rem; font-style: italic; color: rgba(160,114,90,0.3); margin-bottom: 0.5rem; line-height: 1; }
.approach-block h4 { font-size: 0.875rem; font-weight: 500; color: #2C2218; margin-bottom: 0.35rem; }
.approach-block p { font-size: 0.78rem; color: #6B5240; line-height: 1.6; }

.contact-box { background: #2C2218; border-radius: 24px; padding: 3.5rem; text-align: center; margin-top: 1.5rem; }
.contact-box .section-label { color: rgba(160,114,90,0.6); }
.contact-box .section-title { color: #FDF8F3; }
.contact-box p { color: rgba(253,248,243,0.6); font-size: 0.95rem; line-height: 1.75; margin-bottom: 2rem; max-width: 400px; margin-left: auto; margin-right: auto; }

footer { text-align: center; padding: 2rem; font-size: 0.78rem; color: rgba(107,82,64,0.45); border-top: 1px solid rgba(160,114,90,0.1); }

@media (max-width: 600px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-box { padding: 2.5rem 1.5rem; }
  nav { padding: 1rem 1.5rem; }
  .nav-links { gap: 1.2rem; }
  .video-info { flex-direction: column; }
}
