.main{
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0;
    justify-content: center;
    gap: 30px;
    
}

.card:hover{
transform: translateY(-3px);
box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}

 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
    body {
      font-family: 'DM Sans', sans-serif;
      background: #f0ede8;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
    }
 
    /* ── FOOTER ─────────────────────────────────── */
    footer {
      background: #141414;
      color: #c8c2b8;
      padding: 64px 6vw 32px;
      position: relative;
      overflow: hidden;
    }
 
    footer::before {
      content: '';
      position: absolute;
      top: -120px; left: -80px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(212,175,120,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
 
    .footer-top {
      display: grid;
      grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
 
    /* Brand column */
    .footer-brand .logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      color: #f5f0e8;
      letter-spacing: -0.02em;
      margin-bottom: 14px;
      display: block;
    }
 
    .footer-brand p {
      font-size: 0.875rem;
      line-height: 1.7;
      color: #8a8278;
      max-width: 240px;
    }
 
    .social-links {
      display: flex;
      gap: 12px;
      margin-top: 28px;
    }
 
    .social-links a {
      width: 36px; height: 36px;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #8a8278;
      text-decoration: none;
      font-size: 0.8rem;
      transition: all 0.25s ease;
    }
 
    .social-links a:hover {
      border-color: #d4af78;
      color: #d4af78;
      background: rgba(212,175,120,0.08);
    }
 
    /* Nav columns */
    .footer-nav h4 {
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #d4af78;
      margin-bottom: 20px;
    }
 
    .footer-nav ul {
      list-style: none;
    }
 
    .footer-nav ul li {
      margin-bottom: 10px;
    }
 
    .footer-nav ul li a {
      color: #8a8278;
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s ease;
      display: inline-block;
      position: relative;
    }
 
    .footer-nav ul li a::after {
      content: '';
      position: absolute;
      bottom: -2px; left: 0;
      width: 0; height: 1px;
      background: #d4af78;
      transition: width 0.25s ease;
    }
 
    .footer-nav ul li a:hover { color: #f5f0e8; }
    .footer-nav ul li a:hover::after { width: 100%; }
 
    /* Newsletter column */
    .footer-newsletter h4 {
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      font-size: 0.7rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #d4af78;
      margin-bottom: 12px;
    }
 
    .footer-newsletter p {
      font-size: 0.85rem;
      color: #8a8278;
      line-height: 1.6;
      margin-bottom: 18px;
    }
 
    .newsletter-form {
      display: flex;
      gap: 0;
    }
 
    .newsletter-form input {
      flex: 1;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-right: none;
      border-radius: 4px 0 0 4px;
      padding: 10px 14px;
      color: #f5f0e8;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem;
      outline: none;
      transition: border-color 0.2s;
    }
 
    .newsletter-form input::placeholder { color: #55504a; }
    .newsletter-form input:focus { border-color: rgba(212,175,120,0.4); }
 
    .newsletter-form button {
      background: #d4af78;
      border: none;
      border-radius: 0 4px 4px 0;
      padding: 10px 16px;
      color: #141414;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.8rem;
      font-weight: 500;
      cursor: pointer;
      transition: background0.2s ease;
      white-space: nowrap;
    }
 
    .newsletter-form button:hover { background: #e8c98e; }
 
    /* Bottom bar */
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 28px;
      gap: 16px;
      flex-wrap: wrap;
    }
 
    .footer-bottom p {
      font-size: 0.8rem;
      color: #55504a;
    }
 
    .footer-bottom-links {
      display: flex;
      gap: 24px;
    }
 
    .footer-bottom-links a {
      font-size: 0.8rem;
      color: #55504a;
      text-decoration: none;
      transition: color 0.2s;
    }
 
    .footer-bottom-links a:hover { color: #c8c2b8; }
 
    /* Responsive */
    @media (max-width: 900px) {
      .footer-top {
        grid-template-columns: 1fr 1fr;
      }
      .footer-brand { grid-column: 1 / -1; }
    }
 
    @media (max-width: 560px) {
      .footer-top { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
    }
  
    :root {
      --bg: #1a1d23;
      --surface: #22262f;
      --border: rgba(255,255,255,0.07);
      --accent: #e8c97a;
      --text: #e2ddd6;
      --muted: #6b6760;
      --radius: 10px;
    }
 
    body {
      background: var(--bg);
      font-family: 'DM Sans', sans-serif;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px 20px;
    }
 
    .carousel-wrapper {
      width: 100%;
      max-width: 820px;
    }
 
    .carousel {
      position: relative;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      aspect-ratio: 16/9;
      user-select: none;
    }
 
    .slides {
      display: flex;
      height: 100%;
      transition: transform 0.55s cubic-bezier(0.77, 0, 0.18, 1);
      will-change: transform;
    }
 
    .slide {
      min-width: 100%;
      height: 100%;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 12px;
      overflow: hidden;
    }
 
    .slide:nth-child(1) { background: linear-gradient(135deg, #1e2433 0%, #2a3448 100%); }
    .slide:nth-child(2) { background: linear-gradient(135deg, #1f2a28 0%, #243830 100%); }
    .slide:nth-child(3) { background: linear-gradient(135deg, #2a1e28 0%, #3a2535 100%); }
    .slide:nth-child(4) { background: linear-gradient(135deg, #2a2618 0%, #3a3420 100%); }
 
    .slide::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.03) 0%, transparent 60%);
      pointer-events: none;
    }
 
    .slide-shape {
      position: absolute;
      width: 300px; height: 300px;
      border-radius: 50%;
      opacity: 0.06;
      background: var(--accent);
      top: -80px; right: -80px;
      filter: blur(60px);
    }
 
    .slide-number {
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent);
      font-weight: 500;
    }
 
    .slide-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 300;
      color: var(--text);
      letter-spacing: -0.01em;
      text-align: center;
    }
 
    .slide-sub {
      font-size: 0.85rem;
      color: var(--muted);
      font-weight: 300;
      text-align: center;
      max-width: 320px;
      line-height: 1.6;
      padding: 0 20px;
    }
 
    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px; height: 44px;
      background: rgba(255,255,255,0.04);
      border: 1px solid var(--border);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      color: var(--muted);
      transition: all 0.2s ease;
      z-index: 10;
      backdrop-filter: blur(4px);
    }
 
    .arrow:hover {
      background: rgba(232,201,122,0.1);
      border-color: rgba(232,201,122,0.35);
      color: var(--accent);
    }
 
    .arrow-prev { left: 18px; }
    .arrow-next { right: 18px; }
 
    .arrow svg {
      width: 16px; height: 16px;
      stroke: currentColor;
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
 
    .dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 20px;
    }
 
    .dot {
      width: 6px; height: 6px;
      border-radius: 3px;
      background: var(--muted);
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      padding: 0;
    }
 
    .dot.active {
      width: 24px;
      background: var(--accent);
    }
 
    .progress-bar {
      position: absolute;
      bottom: 0; left: 0;
      height: 2px;
      background: var(--accent);
      width: 0%;
      opacity: 0.7;
    }
 
    .counter {
      position: absolute;
      top: 18px; right: 22px;
      font-size: 0.72rem;
      color: var(--muted);
      font-variant-numeric: tabular-nums;
      letter-spacing: 0.05em;
      z-index: 10;
    }
 