/* Fonts loaded via <link> in HTML for non-blocking render */

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

    :root {
      --bg: #fbf7f4;
      --surface: #ffffff;
      --text: #2a2420;
      --text-light: #6f6761;
      --muted: #a29993;
      --accent: #b88c74;
      --accent-strong: #9c6c56;
      --accent-soft: #f1e8e2;
      --dark: #231d1a;
      --border: #eee5df;
      --heading: 'Playfair Display', serif;
      --body: 'Manrope', sans-serif;
      --max-w: 1120px;
      --radius: 16px;
      --shadow: 0 24px 60px rgba(26,19,16,0.12);
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: var(--body);
      color: var(--text);
      background: radial-gradient(circle at 12% 12%, #f9efe9 0%, var(--bg) 55%, #fdfbf9 100%);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    img { display: block; max-width: 100%; height: auto; }
    a { color: inherit; text-decoration: none; }

    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

    /* === NAV === */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: rgba(251,247,244,0.9);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0,0,0,0.05);
      transition: box-shadow 0.3s;
    }
    .nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.08); }
    .nav-inner {
      max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
      display: flex; align-items: center; justify-content: space-between; height: 76px;
    }
    .nav-logo {
      display: inline-flex; align-items: center; gap: 16px; padding: 6px 0;
      background: transparent; border: none; border-radius: 0; box-shadow: none;
    }
    .nav-logo img { height: 88px; width: auto; }
    .nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
    .nav-logo-text strong { font-size: 1.02rem; letter-spacing: 0.08em; text-transform: uppercase; }
    .nav-logo-text span { font-size: 0.78rem; color: var(--text-light); letter-spacing: 0.1em; text-transform: uppercase; }
    .nav-links { display: flex; gap: 26px; list-style: none; align-items: center; }
    .nav-links a { font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); }
    .nav-links a:hover { color: var(--text); }
    .nav-cta {
      padding: 12px 22px; background: var(--accent); color: #fff !important;
      border-radius: 999px; font-size: 0.8rem !important; letter-spacing: 0.1em;
      text-transform: uppercase; transition: all 0.3s;
    }
    .nav-cta:hover { background: var(--accent-strong); transform: translateY(-1px); }
    .hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; background: none; border: none; }
    .hamburger span { width: 24px; height: 2px; background: var(--text); transition: all 0.3s; }

    /* === HERO === */
    .hero {
      margin-top: 68px; padding: 90px 0 70px; position: relative; overflow: hidden;
    }
    .hero::before {
      content: ''; position: absolute; right: -120px; top: -80px;
      width: 340px; height: 340px; background: radial-gradient(circle, #f3e1d7 0%, rgba(243,225,215,0) 70%);
      opacity: 0.8; z-index: 0;
    }
    .hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 10px; padding: 12px 26px;
      background: #c9a18c;
      color: #fff; border-radius: 999px;
      font-size: 0.86rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 18px;
      box-shadow: 0 10px 24px rgba(184,140,116,0.28);
    }
    .hero h1 {
      font-family: var(--heading); font-size: 3.1rem; font-weight: 500; line-height: 1.12; margin-bottom: 16px;
    }
    .hero h1 span { color: var(--accent-strong); }
    .hero-sub { font-size: 1.05rem; color: var(--text-light); margin-bottom: 24px; }
    .hero-list { list-style: none; margin: 0 0 28px; display: grid; gap: 10px; }
    .hero-list li {
      padding-left: 26px; position: relative; color: var(--text-light); font-size: 0.95rem;
    }
    .hero-list li::before {
      content: '✓'; position: absolute; left: 0; color: var(--accent-strong); font-weight: 700;
    }
    .hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 8px;
      padding: 15px 32px; font-size: 0.86rem; letter-spacing: 0.1em; text-transform: uppercase;
      border: none; cursor: pointer; font-family: var(--body); transition: all 0.3s;
      border-radius: 999px; text-align: center;
    }
    .btn-primary { background: var(--accent); color: #fff; box-shadow: 0 12px 30px rgba(184,140,116,0.35); }
    .btn-primary:hover { background: var(--accent-strong); transform: translateY(-2px); }
    .btn-outline { background: transparent; color: var(--accent-strong); border: 2px solid var(--accent); }
    .btn-outline:hover { background: var(--accent); color: #fff; }

    .hero-card {
      background: var(--surface); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow);
      position: relative;
    }
    .hero-card img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
    .hero-card-badge {
      position: absolute; left: 24px; right: 24px; bottom: 22px;
      background: rgba(255,255,255,0.88); color: var(--text);
      padding: 14px 18px; border-radius: 16px; font-size: 0.9rem;
      box-shadow: 0 12px 30px rgba(35,29,26,0.18);
      backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.9);
    }

    /* === TRUST STRIP === */
    .trust-strip {
      background: var(--surface); border: 1px solid var(--border); border-radius: 20px;
      margin-top: 24px; box-shadow: 0 12px 40px rgba(35,29,26,0.08);
    }
    .trust-strip-inner {
      display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; padding: 22px 28px;
      text-align: center;
    }
    .trust-item strong { display: block; font-family: var(--heading); font-size: 1.4rem; color: var(--accent-strong); }
    .trust-item span { font-size: 0.78rem; color: var(--text-light); letter-spacing: 0.08em; text-transform: uppercase; }

    /* === SECTIONS === */
    .section { padding: 90px 0; }
    .section-label {
      text-align: center; font-size: 0.78rem; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--accent-strong); margin-bottom: 10px;
    }
    .section-title {
      font-family: var(--heading); font-size: 2.35rem; font-weight: 500;
      text-align: center; margin-bottom: 14px; line-height: 1.25;
    }
    .section-sub {
      text-align: center; color: var(--text-light); max-width: 620px;
      margin: 0 auto 48px; font-size: 1.02rem;
    }

    /* === VALUE === */
    .value-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
    .value-card {
      padding: 28px; border-radius: var(--radius); background: var(--surface);
      border: 1px solid var(--border); box-shadow: 0 14px 32px rgba(35,29,26,0.06);
    }
    .value-card h3 { font-family: var(--heading); font-size: 1.2rem; margin-bottom: 10px; }
    .value-card p { color: var(--text-light); font-size: 0.94rem; }

    /* === SERVICES === */
    .services-section { background: #fff; }
    .services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
    .service-card {
      padding: 34px 26px; border: 1px solid var(--border); border-radius: 20px;
      background: var(--surface); position: relative; transition: transform 0.3s, box-shadow 0.3s;
    }
    .service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(35,29,26,0.12); }
    .service-tag {
      position: absolute; top: -12px; left: 24px; background: var(--accent);
      color: #fff; padding: 4px 12px; border-radius: 999px; font-size: 0.7rem;
      text-transform: uppercase; letter-spacing: 0.1em;
    }
    .service-card h3 { font-family: var(--heading); font-size: 1.3rem; margin-bottom: 8px; }
    .service-price { font-size: 1.1rem; color: var(--accent-strong); margin-bottom: 12px; font-weight: 600; }
    .service-card ul { list-style: none; margin-bottom: 18px; }
    .service-card ul li { padding-left: 22px; position: relative; font-size: 0.92rem; color: var(--text-light); }
    .service-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--accent-strong); }

    /* === PACKAGES === */
    .packages-section { background: var(--accent-soft); }
    .packages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
    .package-card {
      background: var(--surface); border-radius: 22px; padding: 30px; border: 1px solid var(--border);
      box-shadow: 0 16px 36px rgba(35,29,26,0.08); position: relative;
    }
    .package-card h3 { font-family: var(--heading); font-size: 1.3rem; margin-bottom: 10px; }
    .package-price { font-size: 1.05rem; color: var(--accent-strong); font-weight: 600; margin-bottom: 12px; }
    .package-card ul { list-style: none; margin-bottom: 18px; }
    .package-card ul li { padding-left: 22px; position: relative; font-size: 0.92rem; color: var(--text-light); }
    .package-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--accent-strong); }

    /* === PROCESS === */
    .process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
    .process-step {
      background: var(--accent-soft); border-radius: 20px; padding: 28px;
    }
    .process-step h3 { font-family: var(--heading); margin-bottom: 8px; }
    .process-step p { color: var(--text-light); font-size: 0.94rem; }

    /* === PORTFOLIO === */
    .gallery-filters {
      display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 24px;
    }
    .filter-btn {
      padding: 10px 18px; border-radius: 999px; border: 1px solid var(--border);
      background: #fff; color: var(--text-light); font-size: 0.8rem; letter-spacing: 0.08em;
      text-transform: uppercase; cursor: pointer; transition: all 0.2s;
    }
    .filter-btn.active, .filter-btn:hover {
      background: var(--accent); color: #fff; border-color: var(--accent);
    }
    .gallery-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
    .gallery-cell { position: relative; overflow: hidden; border-radius: 16px; cursor: pointer; aspect-ratio: 1; }
    .gallery-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
    .gallery-cell:hover img { transform: scale(1.06); }

    /* === TESTIMONIALS === */
    .testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
    .testimonial {
      background: var(--surface); padding: 28px; border-radius: 20px; border: 1px solid var(--border);
    }
    .testimonial-stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 12px; }
    .testimonial p { font-style: italic; color: var(--text-light); margin-bottom: 16px; }
    .testimonial-author { font-weight: 600; font-size: 0.9rem; }
    .testimonial-meta { color: var(--muted); font-size: 0.78rem; }

    /* === CTA BAND === */
    .cta-band {
      background: var(--dark); color: #fff; padding: 70px 0; position: relative; overflow: hidden;
    }
    .cta-band::after {
      content: ''; position: absolute; right: -80px; bottom: -80px; width: 240px; height: 240px;
      background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    }
    .cta-band-inner { text-align: center; position: relative; z-index: 1; }
    .cta-band h2 { font-family: var(--heading); font-size: 2rem; margin-bottom: 10px; }
    .cta-band p { opacity: 0.8; margin-bottom: 24px; }

    /* === FAQ === */
    .faq-list { max-width: 760px; margin: 0 auto; }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-q {
      display: flex; justify-content: space-between; align-items: center;
      padding: 20px 0; cursor: pointer; font-size: 1rem; font-weight: 600;
      background: none; border: none; width: 100%; text-align: left; font-family: var(--body);
    }
    .faq-q::after { content: '+'; font-size: 1.4rem; color: var(--accent); transition: transform 0.3s; font-weight: 300; }
    .faq-q.open::after { transform: rotate(45deg); }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
    .faq-a-inner { padding: 0 0 20px; color: var(--text-light); font-size: 0.94rem; }

    /* === CONTACT === */
    .contact-section { background: #fff; }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
    .contact-info h3 { font-family: var(--heading); font-size: 1.5rem; margin-bottom: 8px; }
    .contact-info > p { color: var(--text-light); margin-bottom: 26px; }
    .contact-row { display: flex; gap: 14px; margin-bottom: 18px; align-items: flex-start; }
    .contact-row-icon { font-size: 1.1rem; width: 22px; text-align: center; flex-shrink: 0; margin-top: 2px; }
    .contact-row-text strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.07em; }
    .contact-row-text span, .contact-row-text a { color: var(--text-light); font-size: 0.94rem; }
    .contact-row-text a { color: var(--accent-strong); }
    .contact-form input, .contact-form textarea, .contact-form select {
      width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: 12px;
      background: var(--bg); font-family: var(--body); font-size: 0.92rem;
      margin-bottom: 14px; outline: none; transition: border-color 0.3s;
    }
    .contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--accent); }
    .contact-form textarea { height: 120px; resize: vertical; }
    .contact-form .btn { width: 100%; }
    .form-note { text-align: center; font-size: 0.78rem; color: var(--muted); margin-top: 10px; }

    /* === FOOTER === */
    .footer { background: var(--dark); color: rgba(255,255,255,0.6); padding: 40px 0; text-align: center; font-size: 0.82rem; }
    .footer-logo { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 12px; }
    .footer-logo img { height: 80px; }
    .footer-links { display: flex; justify-content: center; gap: 24px; margin-bottom: 12px; }
    .footer-links a { color: rgba(255,255,255,0.6); }
    .footer-links a:hover { color: var(--accent); }

    /* === FLOATING CTA === */
    .float-cta {
      position: fixed; bottom: 24px; right: 24px; z-index: 90;
      background: var(--accent); color: #fff; padding: 14px 24px; border-radius: 999px;
      font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase;
      box-shadow: 0 12px 30px rgba(184,140,116,0.4); opacity: 0; transform: translateY(20px);
      pointer-events: none; transition: all 0.3s;
    }
    .float-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

    /* === LIGHTBOX === */
    .lightbox {
      display: none; position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,0.92);
      flex-direction: column; align-items: center; justify-content: center; cursor: pointer;
    }
    .lightbox.active { display: flex; }
    .lightbox-media { position: relative; display: inline-block; flex-shrink: 1; min-height: 0; }
    .lightbox img#lbImg { max-width: 90vw; max-height: calc(90vh - 80px); object-fit: contain; }

    .lightbox-logo {
      position: absolute; right: 18px; bottom: 18px; width: var(--lightbox-logo-size, 120px); opacity: 0.85;
      filter: drop-shadow(0 8px 18px rgba(0,0,0,0.25));
      pointer-events: none;
    }
    @media (max-width: 720px) {
      .lightbox-logo { width: 90px; right: 12px; bottom: 12px; }
    }
    .lightbox img#lbImg { transition: transform 0.3s ease, opacity 0.2s ease; }
    .lightbox img#lbImg.fading { opacity: 0; transform: scale(0.97); }

    .lightbox { opacity: 0; visibility: hidden; transition: opacity 0.35s ease, visibility 0.35s ease; }
    .lightbox.active { opacity: 1; visibility: visible; }
    .lightbox-close, .lightbox-nav { transition: transform 0.25s ease, opacity 0.25s ease; }
    .lightbox.active .lightbox-close, .lightbox.active .lightbox-nav { opacity: 1; }
    .lightbox .lightbox-close, .lightbox .lightbox-nav { opacity: 0.85; }

    .lightbox-close { position: absolute; top: 18px; right: 22px; color: #fff; font-size: 2rem; cursor: pointer; }
    .lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); color: #fff; font-size: 2.5rem; cursor: pointer; padding: 16px; }
    .lightbox-prev { left: 12px; }
    .lightbox-next { right: 12px; }

    /* === LIGHTBOX THUMBNAILS === */
    .lightbox-thumbs {
      display: flex;
      gap: 6px;
      padding: 12px 16px;
      overflow-x: auto;
      max-width: 90vw;
      flex-shrink: 0;
      scrollbar-width: thin;
      scrollbar-color: rgba(255,255,255,0.3) transparent;
      cursor: default;
    }
    .lightbox-thumbs::-webkit-scrollbar { height: 4px; }
    .lightbox-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.3); border-radius: 2px; }
    .lightbox-thumb {
      width: 56px;
      height: 56px;
      border-radius: 6px;
      object-fit: cover;
      cursor: pointer;
      opacity: 0.45;
      transition: opacity 0.2s, outline-color 0.2s;
      flex-shrink: 0;
      outline: 2px solid transparent;
    }
    .lightbox-thumb:hover { opacity: 0.75; }
    .lightbox-thumb.active {
      opacity: 1;
      outline-color: #b88c74;
    }
    @media (max-width: 600px) {
      .lightbox-thumb { width: 44px; height: 44px; }
      .lightbox-thumbs { gap: 4px; padding: 8px 12px; }
    }

    /* === REVEAL === */
    .reveal { animation: fadeUp 0.8s ease both; }
    @keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
    @media (prefers-reduced-motion: reduce) { .reveal { animation: none; } }

    /* === MOBILE === */
    @media (max-width: 980px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .nav-links.open {
        display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0;
        background: rgba(251,247,244,0.98); padding: 24px; gap: 18px; border-bottom: 1px solid var(--border);
      }
      .hero-grid { grid-template-columns: 1fr; }
      .trust-strip-inner { grid-template-columns: 1fr 1fr; }
      .value-grid, .services-grid, .packages-grid, .process-grid, .testimonials-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: repeat(2,1fr); }
      .contact-grid { grid-template-columns: 1fr; }
      .section { padding: 70px 0; }
      .hero h1 { font-size: 2.4rem; }
      .hero-card img { min-height: 320px; }
    }
  
    .insta-section { background: #fff; }
    .insta-grid {
      display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; margin-bottom: 18px;
    }
    .insta-card { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 1 / 1; background: #f2eae5; }
    .insta-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .insta-card span {
      position: absolute; inset: auto 0 0 0; padding: 8px 10px; font-size: 0.75rem; color: #fff;
      background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.6));
    }
    @media (max-width: 900px) { .insta-grid { grid-template-columns: repeat(3,1fr); } }
    @media (max-width: 600px) { .insta-grid { grid-template-columns: repeat(2,1fr); } }

    .footer {
      background: #f5efe9; border-top: 1px solid var(--border); padding: 40px 0 0;
    }
    .footer, .footer p, .footer span, .footer a { color: #5d534f; }
    .footer strong { color: #2a2420; }
    .footer-brand span { color: #6f6761; }
    .footer-inner { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 24px; align-items: center; }
    .footer-brand { display: flex; align-items: center; gap: 16px; }
    .footer-brand img { height: 72px; width: auto; }
    .footer-brand strong { display: block; letter-spacing: 0.08em; text-transform: uppercase; color: #2a2420 !important; }
    .footer-brand p { color: #5d534f !important; }
    .footer-brand span { color: var(--text-light); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; }
    .footer-links { display: grid; gap: 8px; }
    .footer-links a { color: var(--text-light); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; }
    .footer-note { margin-top: 24px; padding: 16px 0; text-align: center; color: var(--text-light); font-size: 0.82rem; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
    .footer-credit a { color: #8f6049; font-weight: 600; }
    @media (max-width: 900px) { .footer-inner { grid-template-columns: 1fr; text-align: center; } .footer-brand { justify-content: center; } }

  
    .featured-dates {
      margin-top: 16px; display: flex; flex-wrap: wrap; gap: 10px;
    }
    .featured-dates.empty { display: none; }
    .featured-dates span {
      padding: 8px 14px; border-radius: 999px; background: var(--accent-soft);
      font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-strong);
    }

/* Utilities */
.mt-10 { margin-top: 10px; }
.mt-12 { margin-top: 12px; }
.mt-20 { margin-top: 20px; }
.mb-16 { margin-bottom: 16px; }

/* Admin base */
.page-admin {
  background: radial-gradient(circle at 14% 12%, #f8eee7 0%, #fbf7f4 55%, #fdfbf9 100%);
  color: #2a2420;
}

.page-admin .nav {
  background: rgba(251, 247, 244, 0.96);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}

.page-admin .nav-inner {
  max-width: 1160px;
}

.page-admin .nav-logo img { height: 60px; width: auto; }

.admin-tabs {
  position: sticky;
  top: 76px;
  background: #fff;
  border-bottom: 1px solid #eee5df;
  z-index: 40;
}

.admin-tabs-inner {
  display: flex;
  gap: 10px;
  padding: 12px 0;
  overflow-x: auto;
}

.tab-btn {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #eee5df;
  background: transparent;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 600;
}

.tab-btn.active {
  background: #b88c74;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 22px rgba(184, 140, 116, 0.3);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.page-admin .section {
  padding: 44px 0;
}

.page-admin .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 500;
}

.admin-actions {
  display: grid;
  gap: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  border: 1px solid #eee5df;
  box-shadow: 0 14px 30px rgba(35, 29, 26, 0.08);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.calendar-note {
  font-size: 0.78rem;
  color: #6f6761;
}

.action-row input,
.action-row select {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #eee5df;
  background: #fff;
  font-family: 'Manrope', sans-serif;
  min-width: 220px;
}

.page-admin .btn {
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.page-admin .btn-primary {
  background: #b88c74;
  color: #fff;
  border: none;
  box-shadow: 0 12px 26px rgba(184, 140, 116, 0.35);
}

.page-admin .btn-outline {
  border: 2px solid #b88c74;
  color: #8f6049;
  background: transparent;
}

.toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6f6761;
}

.toggle input { accent-color: #b88c74; }

.editor-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.editor-card {
  background: #fff;
  border: 1px solid #eee5df;
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 10px;
  box-shadow: 0 10px 22px rgba(35, 29, 26, 0.08);
}

.editor-card input,
.editor-card textarea,
.editor-card select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #eee5df;
  font-family: 'Manrope', sans-serif;
}

.editor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.role-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f1e8e2;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.progress-bar {
  height: 8px;
  background: #f1e8e2;
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: #b88c74;
}

.calendar-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(320px, 1.2fr);
  gap: 20px;
}

.calendar-panel {
  background: #fff;
  border: 1px solid #eee5df;
  border-radius: 18px;
  padding: 20px;
  display: grid;
  gap: 14px;
  box-shadow: 0 14px 30px rgba(35, 29, 26, 0.08);
}

.panel-head {
  display: grid;
  gap: 6px;
}

.panel-sub {
  font-size: 0.82rem;
  color: #6f6761;
}

.calendar-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-top: 8px;
}

/* Saturday year grid */
.sat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 12px;
}
@media (max-width: 700px) {
  .sat-grid { grid-template-columns: repeat(3, 1fr); }
}
.sat-month { display: flex; flex-direction: column; gap: 3px; }
.sat-month-label {
  font-weight: 700;
  font-size: 0.75rem;
  color: #4a3f37;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 4px;
  border-bottom: 1px solid #eee5df;
  margin-bottom: 2px;
}
.sat-cell {
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.8rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s;
}
.sat-cell:hover { background: #faf6f3; }
.sat-cell.reserved { background: #f7e7df; border-color: #b88c74; font-weight: 600; }
.sat-cell.available { background: #e9f3ec; border-color: #6fa57d; }
.sat-cell.has-requests { background: #fef5eb; border-color: #e0c49a; }
.sat-cell.selected { outline: 2px solid #b88c74; }

/* Special dates list */
.dates-list {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dates-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 12px;
  border: 1px solid #eee5df;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 0.85rem;
  transition: background 0.15s;
}
.dates-list-item:hover { background: #faf6f3; }
.dates-list-item.reserved { background: #f7e7df; border-color: #b88c74; }
.dates-list-item.available { background: #e9f3ec; border-color: #6fa57d; }
.dates-list-item.has-requests { background: #fef5eb; border-color: #e0c49a; }
.dates-list-item.selected { outline: 2px solid #b88c74; }
.dates-list-item.special { border-left: 3px solid #b88c74; }
.dates-list-date { font-weight: 600; min-width: 50px; }
.dates-list-detail { flex: 1; color: #6f6761; }
.dates-list-item .btn-sm { padding: 2px 8px; font-size: 0.8rem; min-width: auto; }

.calendar-day-header {
  font-weight: 600;
  text-align: center;
  font-size: 0.8rem;
  color: #6f6761;
  padding: 4px 0;
}

.calendar-day {
  border: 1px solid #eee5df;
  border-radius: 12px;
  padding: 10px;
  min-height: 70px;
  background: #fff;
  display: grid;
  gap: 6px;
  font-size: 0.85rem;
}

.calendar-day.reserved { background: #f7e7df; border-color: #b88c74; }
.calendar-day.available { background: #e9f3ec; border-color: #6fa57d; }
.calendar-day.selected { outline: 2px solid #b88c74; }

.calendar-detail {
  font-size: 0.75rem;
  color: #6f6761;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.metric-card {
  background: #fff;
  border: 1px solid #eee5df;
  border-radius: 14px;
  padding: 14px 16px;
  display: grid;
  gap: 6px;
  box-shadow: 0 10px 22px rgba(35, 29, 26, 0.08);
}

.metric-card strong {
  font-size: 1.4rem;
  font-weight: 700;
}

.metric-card span {
  color: #6f6761;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 22px;
}

.admin-card {
  background: #fff;
  border: 1px solid #eee5df;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  gap: 14px;
  box-shadow: 0 12px 24px rgba(35, 29, 26, 0.08);
  position: relative;
}

.admin-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.admin-body {
  padding: 14px 16px 18px;
  display: grid;
  gap: 12px;
}

.admin-card.selectable {
  border-color: #d9c6ba;
}

.select-checkbox {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 18px;
  height: 18px;
  accent-color: #b88c74;
}

.order-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 30px;
  border-radius: 999px;
  background: #f1e8e2;
  color: #8f6049;
  font-size: 0.78rem;
  font-weight: 700;
  position: absolute;
  top: 12px;
  right: 12px;
  box-shadow: 0 8px 18px rgba(143, 96, 73, 0.2);
}

.admin-meta {
  display: grid;
  gap: 6px;
}

.admin-field span {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8b817b;
  margin-bottom: 4px;
}

.admin-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.request-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.request-status {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #f1e8e2;
  color: #7b5a4a;
}

.request-status.status-reserved {
  background: #e5f2ea;
  color: #2f6b45;
}

.request-status.status-rejected {
  background: #fde8e8;
  color: #8a2a2a;
}

.page-admin .btn.btn-save {
  background: #b88c74;
  border-color: #b88c74;
  color: #fff;
}

.page-admin .btn.btn-save:hover {
  background: #a47761;
  border-color: #a47761;
}

.page-admin .btn.btn-hide {
  background: #f3ece7;
  border-color: #e7d9d0;
  color: #7b5a4a;
}

.page-admin .btn.btn-hide:hover {
  background: #eaded6;
}

.page-admin .btn.btn-danger {
  background: #fde8e8;
  border-color: #f4c9c9;
  color: #8a2a2a;
}

.page-admin .btn.btn-danger:hover {
  background: #f8dcdc;
}

.albums-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0;
}

.album-row {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid #eee5df;
  border-radius: 20px;
  background: #fff;
  font-size: 0.8rem;
}

.btn-sm {
  padding: 4px 10px;
  font-size: 0.78rem;
}

.category-folders {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}

.category-folder {
  padding: 14px;
  border: 1px solid #eee5df;
  border-radius: 14px;
  background: #fff;
  display: grid;
  gap: 6px;
  cursor: pointer;
}

.category-folder.active {
  border-color: #b88c74;
  box-shadow: 0 10px 20px rgba(184, 140, 116, 0.2);
}

@media (max-width: 980px) {
  .calendar-layout {
    grid-template-columns: 1fr;
  }
}

/* Login */
.page-login {
  background: radial-gradient(circle at 12% 12%, #f9efe9 0%, #fbf7f4 55%, #fdfbf9 100%);
  color: #2a2420;
}

.page-login .wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.page-login .card {
  max-width: 520px;
  width: 100%;
  background: #fff;
  border: 1px solid #eee5df;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(35, 29, 26, 0.08);
  display: grid;
  gap: 16px;
}

.page-login h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  margin: 0;
}

.page-login p { color: #6f6761; }

.page-login input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #eee5df;
  font-family: 'Manrope', sans-serif;
  width: 100%;
}

.page-login .btn-primary { background: #b88c74; color: #fff; }
.page-login .btn-outline { border: 2px solid #b88c74; color: #7a5537; background: transparent; }

/* === Tab badge === */
.tab-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #e74c3c;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1;
  margin-left: 4px;
  vertical-align: middle;
}
.tab-badge:empty { display: none; }

/* === Calendar nav arrows === */
.btn-icon {
  width: 36px;
  height: 36px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  line-height: 1;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Calendar day with pending requests */
.range-dates {
  display: flex;
  gap: 12px;
}
.range-dates > div {
  flex: 1;
  display: grid;
  gap: 4px;
}
.range-dates label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6f6761;
}

.calendar-day.in-range {
  background: #eee5f8;
  border-color: #a17dc7;
}
.calendar-day.range-start,
.calendar-day.range-end {
  background: #d8c4ec;
  border-color: #8b5fbf;
  font-weight: 700;
}

.calendar-day.has-requests {
  background: #fef5eb;
  border-color: #e8a94f;
}
.calendar-day.has-requests.reserved {
  background: #f7e7df;
  border-color: #b88c74;
}

/* === Bookings table === */
.bookings-table-wrap {
  overflow-x: auto;
}
.bookings-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1px solid #eee5df;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(35, 29, 26, 0.08);
}
.bookings-table th,
.bookings-table td {
  padding: 12px 14px;
  text-align: left;
  font-size: 0.85rem;
  border-bottom: 1px solid #f3ece7;
}
.bookings-table th {
  background: #faf6f3;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6f6761;
  font-weight: 600;
  position: sticky;
  top: 0;
}
.bookings-table tr:last-child td { border-bottom: none; }
.bookings-table tr:hover td { background: #fef9f6; }
.bookings-table .booking-new td { font-weight: 600; }

.booking-actions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.booking-actions .btn {
  padding: 6px 12px;
  font-size: 0.68rem;
}

/* === Drag handle === */
.drag-handle {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  color: #a29993;
  font-size: 1rem;
  background: rgba(255,255,255,0.85);
  border-radius: 6px;
  z-index: 2;
}
.drag-handle:active { cursor: grabbing; }
.admin-card.dragging {
  opacity: 0.4;
  outline: 2px dashed #b88c74;
}
.admin-card.drag-over {
  outline: 2px solid #b88c74;
  outline-offset: 2px;
}

/* === Gallery preview modal === */
.gallery-preview-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-preview-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.gallery-preview-content {
  position: relative;
  width: 92vw;
  max-width: 1200px;
  max-height: 88vh;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.gallery-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.gallery-preview-header h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 1.3rem;
}
.gallery-preview-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.gallery-preview-filters button {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #eee5df;
  background: transparent;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 600;
}
.gallery-preview-filters button.active {
  background: #b88c74;
  color: #fff;
  border-color: transparent;
}
.gallery-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
}
.gallery-preview-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
}

/* === Scroll padding for lightbox nav arrows on mobile === */

/* === Scroll padding for fixed nav === */
html { scroll-padding-top: 90px; }

/* === Gallery responsive breakpoints === */
@media (min-width: 768px) and (max-width: 980px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* === Touch target improvements === */
@media (max-width: 768px) {
  .filter-btn {
    min-height: 44px;
    min-width: 44px;
    padding: 10px 16px;
  }
  .lightbox-close {
    width: 44px;
    height: 44px;
    font-size: 1.6rem;
  }
  .lightbox-arrow {
    width: 44px;
    height: 44px;
    font-size: 1.4rem;
  }
}

/* === Form validation states === */
.form-field.invalid input,
.form-field.invalid select {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231,76,60,0.1);
}
.form-field .field-error {
  color: #e74c3c;
  font-size: 0.75rem;
  margin-top: 4px;
  display: none;
}
.form-field.invalid .field-error { display: block; }

/* === Success animation === */
.form-success {
  text-align: center;
  padding: 40px;
  animation: fadeInUp 0.5s ease;
}
.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  margin-bottom: 8px;
}
.form-success p { color: #6f6761; }
.form-success .checkmark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #e9f3ec;
  color: #2f6b45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
}

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

/* === Star rating === */
.star-rating {
  color: #e8a94f;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

/* === Log === */
.log-day-header {
  font-weight: 700;
  font-size: 0.85rem;
  color: #4a3f37;
  padding: 8px 0 4px;
  border-bottom: 1px solid #eee5df;
  margin-top: 8px;
}
.log-entry {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  font-size: 0.85rem;
}
.log-action { flex: 1; }
.log-time { color: #6f6761; font-size: 0.8rem; min-width: 42px; }

/* === Gallery toolbar === */
.gallery-toolbar {
  background: #fff;
  border: 1px solid #eee5df;
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 10px 22px rgba(35, 29, 26, 0.08);
}
.toolbar-sep {
  display: inline-block;
  width: 1px;
  height: 24px;
  background: #eee5df;
  margin: 0 8px;
  vertical-align: middle;
}
.mt-8 { margin-top: 8px; }
