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

:root {
  --brown:    #6B3F2A;
  --brown-lt: #C4956A;
  --caramel:  #D4A853;
  --cream:    #F5E6D3;
  --beige:    #EDD5B3;
  --warm-lt:  #FFF8F0;
  --white:    #fff;
  --dark:     #2C1A0E;
  --gray:     #7C6555;
  --bg:       #FDF6EE;
  --radius:   20px;
  --shadow:   0 8px 32px rgba(107,63,42,.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--dark);
  overflow-x: hidden;
}

/* ===========================
   NAV
=========================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: rgba(255,248,240,.88);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(107,63,42,.12);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(107,63,42,.15); }

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-img { width: 40px; height: 40px; object-fit: contain; border-radius: 50%; background: var(--cream); padding: 4px; }
.nav-logo-text { font-family: 'Pacifico', cursive; font-size: 1.3rem; color: var(--brown); }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  color: var(--dark);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brown), var(--caramel));
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .25s;
}
.nav-links a:hover { color: var(--brown); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  width: 26px; height: 3px;
  background: var(--brown);
  border-radius: 2px;
  transition: all .3s;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: linear-gradient(135deg, var(--brown), var(--caramel));
  color: #fff;
  box-shadow: 0 6px 20px rgba(107,63,42,.35);
}
.btn-primary:hover { box-shadow: 0 10px 30px rgba(107,63,42,.45); }
.btn-outline {
  background: transparent;
  border: 2.5px solid var(--brown);
  color: var(--brown);
}
.btn-outline:hover { background: var(--brown); color: #fff; }
.btn-full { width: 100%; }

/* ===========================
   SECTION COMMON
=========================== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--caramel);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 12px;
}
.section-title span { color: var(--brown); }
.section-sub { color: var(--gray); font-size: 1.05rem; font-weight: 600; }

.gradient-text {
  background: linear-gradient(135deg, var(--brown), var(--caramel));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================
   HERO
=========================== */
.hero {
  min-height: 100vh;
  padding: 120px 48px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #FFF8F0 0%, #F5E6D3 50%, #EDD5B3 100%);
}

/* bubbles */
.hero-bubbles { position: absolute; inset: 0; pointer-events: none; }
.bubble {
  position: absolute;
  border-radius: 50%;
  opacity: .18;
  animation: floatBubble linear infinite;
}
.b1 { width:320px;height:320px; background:var(--cream);    top:-80px;   left:-100px; animation-duration:18s; }
.b2 { width:200px;height:200px; background:var(--caramel);  top:20%;     right:-60px; animation-duration:14s; animation-delay:-5s; }
.b3 { width:160px;height:160px; background:var(--beige);    bottom:10%;  left:5%;     animation-duration:20s; animation-delay:-8s; }
.b4 { width:120px;height:120px; background:var(--brown-lt); bottom:30%;  right:10%;   animation-duration:16s; animation-delay:-3s; }
.b5 { width:250px;height:250px; background:var(--brown);    bottom:-60px;right:-80px; animation-duration:22s; animation-delay:-10s; }

@keyframes floatBubble {
  0%   { transform: translateY(0) rotate(0deg); }
  50%  { transform: translateY(-30px) rotate(180deg); }
  100% { transform: translateY(0) rotate(360deg); }
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  max-width: 1100px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-text { flex: 1; max-width: 520px; }

.hero-eyebrow {
  font-size: .95rem;
  font-weight: 800;
  color: var(--brown);
  margin-bottom: 16px;
  letter-spacing: .05em;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--dark);
}

.hero-desc {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-social { display: flex; gap: 14px; }
.social-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  box-shadow: 0 4px 14px rgba(107,63,42,.2);
  transition: transform .2s, box-shadow .2s, background .2s;
  text-decoration: none;
}
.social-icon svg { width: 20px; height: 20px; }
.social-icon:hover {
  background: linear-gradient(135deg, var(--brown), var(--caramel));
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(107,63,42,.35);
}

/* hero image */
.hero-image {
  flex: 0 0 auto;
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-ring {
  position: absolute;
  border-radius: 50%;
  border: 3px dashed;
  animation: spinRing linear infinite;
}
.ring1 { width:100%;height:100%; border-color:rgba(107,63,42,.25);  animation-duration:20s; }
.ring2 { width:80%;height:80%;   border-color:rgba(212,168,83,.35); animation-duration:15s; animation-direction:reverse; }
.ring3 { width:60%;height:60%;   border-color:rgba(196,149,106,.4); animation-duration:10s; }

@keyframes spinRing { to { transform: rotate(360deg); } }

.hero-character-wrap {
  width: 260px; height: 260px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream), var(--beige));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(107,63,42,.25);
  animation: floatChar 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
.hero-character { width: 200px; height: 200px; object-fit: contain; }

@keyframes floatChar {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-16px); }
}

.float-tag {
  position: absolute;
  background: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 800;
  font-size: .85rem;
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
  animation: floatTag 3s ease-in-out infinite;
  z-index: 3;
}
.tag1 { top: 10%;  left: -10%; color: var(--brown);   animation-delay: 0s; }
.tag2 { top: 60%;  right: -8%; color: var(--caramel); animation-delay: .8s; }
.tag3 { bottom: 8%; left: 5%;  color: #8B5E3C;        animation-delay: 1.6s; }
.tag4 { top: 30%;  left: -12%; color: #6B8E6B;        animation-delay: 2.4s; }

@keyframes floatTag {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 24px; height: 24px;
  border-right: 3px solid var(--brown);
  border-bottom: 3px solid var(--brown);
  transform: rotate(45deg);
  animation: arrowBounce 1.5s ease-in-out infinite;
}
@keyframes arrowBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%       { transform: rotate(45deg) translateY(6px); }
}

/* ===========================
   GALLERY
=========================== */
.gallery {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-filter {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2.5px solid transparent;
  background: #fff;
  font-weight: 800;
  font-size: .9rem;
  cursor: pointer;
  color: var(--gray);
  transition: all .2s;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.filter-btn:hover,
.filter-btn.active {
  background: linear-gradient(135deg, var(--brown), var(--caramel));
  color: #fff;
  box-shadow: 0 6px 20px rgba(107,63,42,.3);
  border-color: transparent;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 28px;
}

.gallery-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  transition: transform .3s, box-shadow .3s;
  position: relative;
}
.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(107,63,42,.18);
}
.gallery-card.featured::before {
  content: '⭐ Featured';
  position: absolute;
  top: 16px; right: 16px;
  background: linear-gradient(135deg, var(--caramel), #8B5E3C);
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  z-index: 2;
}

.card-image {
  aspect-ratio: 9 / 16;
  position: relative;
  overflow: hidden;
  background: #e8d5bf;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .4s ease;
}
.gallery-card:hover .card-image img {
  transform: scale(1.04);
}

.card-info {
  padding: 20px 20px 8px;
}
.card-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--cream), var(--beige));
  color: var(--brown);
  font-size: .78rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.card-info h3 { font-weight: 900; font-size: 1.05rem; margin-bottom: 6px; }
.card-info p  { color: var(--gray); font-size: .9rem; line-height: 1.5; }

.card-link {
  display: block;
  padding: 12px 20px;
  text-align: right;
  font-weight: 800;
  font-size: .88rem;
  color: var(--caramel);
  text-decoration: none;
  transition: color .2s;
}
.card-link:hover { color: var(--brown); }

/* hidden cards for filter */
.gallery-card.hidden { display: none; }

/* ===========================
   ABOUT
=========================== */
.about {
  padding: 100px 48px;
  background: linear-gradient(160deg, var(--cream) 0%, var(--beige) 100%);
  position: relative;
  overflow: hidden;
}
.about-bg-deco {
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107,63,42,.12), transparent 70%);
  pointer-events: none;
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.about-image-col { flex: 0 0 auto; }

.about-image-wrap {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto 32px;
}
.about-img-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brown), var(--caramel));
  z-index: 0;
}
.about-img {
  position: relative;
  width: 100%; height: 100%;
  object-fit: contain;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream), var(--beige));
  z-index: 1;
  padding: 16px;
}
.about-sticker {
  position: absolute;
  font-size: 1.8rem;
  background: #fff;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.1);
  z-index: 2;
  animation: floatSticker 3s ease-in-out infinite;
}
.s1 { top: 0;   left: -10px; animation-delay: 0s; }
.s2 { bottom: 0; right: -10px; animation-delay: 1s; }
.s3 { top: 50%; right: -20px; transform: translateY(-50%); animation-delay: .5s; }

@keyframes floatSticker {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
.s3 { animation: floatStickerMid 3s ease-in-out infinite .5s; }
@keyframes floatStickerMid {
  0%, 100% { transform: translateY(-50%); }
  50%       { transform: translateY(calc(-50% - 8px)); }
}

.about-stats {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.stat {
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(107,63,42,.12);
  min-width: 80px;
}
.stat strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brown), var(--caramel));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat span { font-size: .78rem; font-weight: 700; color: var(--gray); }

.about-text-col { flex: 1; }

.about-desc {
  color: var(--gray);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 36px;
}
.about-desc strong { color: var(--brown); }

.skills { margin-bottom: 28px; }
.skill-item { margin-bottom: 18px; }
.skill-label {
  display: block;
  font-weight: 800;
  font-size: .9rem;
  margin-bottom: 8px;
  color: var(--dark);
}
.skill-bar {
  height: 10px;
  background: rgba(107,63,42,.15);
  border-radius: 10px;
  overflow: hidden;
}
.skill-fill {
  height: 100%;
  width: var(--w);
  background: linear-gradient(90deg, var(--brown), var(--caramel));
  border-radius: 10px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(.22,1,.36,1);
}
.skill-fill.animated { transform: scaleX(1); }

.about-profile {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.profile-row {
  display: flex;
  gap: 12px;
  font-size: .92rem;
  line-height: 1.5;
}
.profile-row dt {
  flex-shrink: 0;
  width: 52px;
  font-weight: 800;
  color: var(--brown);
}
.profile-row dd {
  color: var(--dark);
  margin: 0;
}

@media (max-width: 600px) {
  .profile-row {
    flex-direction: column;
    gap: 2px;
  }
  .profile-row dt {
    width: auto;
    font-size: .8rem;
  }
  .profile-row dd {
    font-size: .9rem;
  }
}

.service-links { display: flex; flex-direction: column; gap: 6px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--dark);
  text-decoration: none;
  font-size: .92rem;
  transition: color .2s;
}
.service-link span {
  background: var(--caramel);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
}
.service-link:hover { color: var(--brown); }

.tools-list { display: flex; gap: 10px; flex-wrap: wrap; }
.tool-chip {
  padding: 8px 18px;
  background: #fff;
  border-radius: 50px;
  font-weight: 800;
  font-size: .85rem;
  color: var(--brown);
  box-shadow: 0 3px 12px rgba(107,63,42,.15);
  transition: transform .2s, box-shadow .2s;
  cursor: default;
}
.tool-chip:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(107,63,42,.25);
}

/* ===========================
   CONTACT
=========================== */
.contact {
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.contact-bubbles { position: absolute; inset: 0; pointer-events: none; }
.cbubble { position: absolute; border-radius: 50%; opacity: .1; }
.cb1 { width:300px;height:300px; background:var(--brown);   top:-80px;    right:-80px; }
.cb2 { width:200px;height:200px; background:var(--caramel); bottom:-60px; left:-60px; }
.cb3 { width:150px;height:150px; background:var(--beige);   bottom:30%;   right:5%; }

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-info { display: flex; flex-direction: column; gap: 16px; }

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 4px 16px rgba(107,63,42,.1);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.contact-card:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 28px rgba(107,63,42,.18);
}
.contact-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cream), var(--beige));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brown);
}
.contact-icon.ig   { background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7); color: #fff; }
.contact-icon.yt   { background: #ff0000; color: #fff; }
.contact-icon.blog { background: linear-gradient(135deg, #00c73c, #00a32a); color: #fff; }
.contact-icon svg { width: 22px; height: 22px; }
.contact-card strong { display: block; font-weight: 800; font-size: .9rem; margin-bottom: 2px; color: var(--dark); }
.contact-card p { color: var(--gray); font-size: .85rem; font-weight: 600; }

/* form */
.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-weight: 800;
  font-size: .9rem;
  margin-bottom: 8px;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--beige);
  border-radius: 14px;
  font-family: 'Nunito', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--dark);
  background: var(--bg);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brown);
  box-shadow: 0 0 0 4px rgba(107,63,42,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--brown-lt); }

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--dark);
  padding: 40px 48px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Pacifico', cursive;
  font-size: 1.2rem;
  color: var(--cream);
}
.footer-logo-img { width: 36px; height: 36px; object-fit: contain; border-radius: 50%; background: rgba(107,63,42,.3); padding: 4px; }
.footer-copy { color: rgba(255,255,255,.5); font-size: .88rem; font-weight: 600; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: background .2s, color .2s, transform .2s;
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover { background: var(--brown); color: #fff; transform: translateY(-3px); }

/* ===========================
   ANIMATIONS (scroll-reveal)
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .nav { padding: 14px 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(255,248,240,.97);
    backdrop-filter: blur(12px);
    padding: 24px;
    gap: 20px;
    border-bottom: 2px solid rgba(107,63,42,.1);
    box-shadow: 0 8px 30px rgba(0,0,0,.1);
    z-index: 99;
  }
  .hero { padding: 100px 24px 60px; }
  .hero-content { flex-direction: column-reverse; gap: 40px; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-social { justify-content: center; }
  .hero-image { width: 260px; height: 260px; }
  .hero-character-wrap { width: 180px; height: 180px; }
  .hero-character { width: 140px; height: 140px; }
  .gallery { padding: 80px 24px; }
  .about { padding: 80px 24px; }
  .about-inner { flex-direction: column; gap: 48px; align-items: center; text-align: center; }
  .about-image-wrap { width: 220px; height: 220px; }
  .about-stats { justify-content: center; }
  .contact { padding: 80px 24px; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
}

@media (max-width: 500px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
  .contact-form { padding: 24px; }
  .float-tag { font-size: .72rem; padding: 6px 12px; }
  .tag1 { top: 5%;    left: 0%; }
  .tag2 { top: 55%;   right: 0%; }
  .tag3 { bottom: 5%; left: 5%; }
  .tag4 { top: 30%;   left: 0%; }
}

/* 영상 링크 카드 */
.video-link-card {
  display: block;
  text-decoration: none;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}
.video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #111;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.video-link-card:hover .play-overlay {
  background: rgba(0,0,0,0.15);
}
.video-link-label {
  text-align: center;
  padding: 12px;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 0.9rem;
  color: #b89c6e;
  background: #faf8f4;
  margin: 0;
}
