/* ═══════════════════════════════════════════════════════
   PRIME MOMENTS — mobile.css
   Enkel mobile-specifieke verbeteringen (≤ 1024px)
   Desktop styles in style.css blijven volledig ongewijzigd.
═══════════════════════════════════════════════════════ */

/* ────────────────────────────────
   GLOBALE MOBILE BASIS
   Voorkomt iOS-zoom bij form-inputs,
   verbetert leesbaarheid en touch targets
──────────────────────────────── */
@media (max-width: 1024px) {

  /* Alle form inputs: min 16px = geen auto-zoom op iOS */
  input,
  select,
  textarea {
    font-size: 16px !important;
  }

  /* Touch-doelen: minimaal 44×44 px */
  .btn-green,
  .btn-ghost,
  .pkg-cta,
  .pkg-tab,
  .mob-link,
  .mob-btn,
  .nav-link,
  .hamburger,
  .menu-close,
  .contact-link {
    min-height: 44px;
  }

  /* Soepelere scroll op iOS */
  html {
    -webkit-overflow-scrolling: touch;
  }
}

/* ────────────────────────────────
   NAVIGATIE — hamburger & overlay
──────────────────────────────── */
@media (max-width: 1024px) {

  /* Nav altijd een vaste achtergrond op mobile — beter leesbaar */
  #navbar {
    background: rgba(23, 19, 17, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  /* Hamburger — groter touch-doel */
  .hamburger {
    width: 44px;
    height: 44px;
    gap: 6px;
    padding: 10px 8px;
  }

  /* mob-link touch target */
  .mob-link {
    min-height: 56px;
  }
}

/* ────────────────────────────────
   HERO — tablet (768–1024px)
──────────────────────────────── */
@media (max-width: 1024px) and (min-width: 769px) {

  .hero-title {
    font-size: clamp(60px, 9vw, 100px);
  }

  .hero-subtitle {
    font-size: 15px;
    max-width: 480px;
  }

  .hero-content {
    padding: 120px 48px 60px;
  }
}

/* ────────────────────────────────
   HERO — mobile (≤ 768px)
──────────────────────────────── */
@media (max-width: 768px) {

  .hero-section {
    /* Volledige viewport hoogte op mobile, geen afkapping */
    height: 100svh;
    min-height: 580px;
    align-items: center;
  }

  .hero-content {
    padding: 100px 20px 40px;
    width: 100%;
  }

  .hero-title {
    font-size: clamp(52px, 16vw, 80px);
    line-height: 0.88;
    margin-bottom: 22px;
    letter-spacing: -0.03em;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.7;
    max-width: 100%;
    padding: 0 4px;
    margin-bottom: 32px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
  }

  .hero-btns .btn-green {
    width: 100%;
    max-width: 300px;
    padding: 17px 28px;
    font-size: 13px;
    justify-content: center;
  }

  .hero-btns .btn-ghost {
    padding: 12px 0;
    font-size: 12px;
  }
}

/* ────────────────────────────────
   HERO — klein scherm (≤ 480px)
──────────────────────────────── */
@media (max-width: 480px) {

  .hero-title {
    font-size: clamp(42px, 14vw, 62px);
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-btns .btn-green {
    max-width: 100%;
  }
}

/* ────────────────────────────────
   SERVICES — tablet
──────────────────────────────── */
@media (max-width: 1024px) and (min-width: 641px) {

  .about-services-container {
    gap: 52px;
  }

  .section-about-services .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  /* Derde kaart breed */
  .section-about-services .service-card:last-child {
    grid-column: span 2;
  }

  .section-about-services .service-img-wrap {
    height: 200px;
  }
}

/* ────────────────────────────────
   SERVICES — mobile (≤ 640px)
──────────────────────────────── */
@media (max-width: 640px) {

  .section-about-services {
    padding: 56px 0 64px;
  }

  .about-services-container {
    padding-left: 20px;
    padding-right: 20px;
    gap: 40px;
  }

  .about-side .section-title,
  .services-side .section-title {
    font-size: clamp(30px, 9vw, 44px);
    line-height: 1.0;
    max-width: 100%;
  }

  .about-lead {
    font-size: 18px;
    line-height: 1.3;
    max-width: 100%;
  }

  /* Service-kaarten — horizontale scroll op kleine schermen */
  .section-about-services .services-grid {
    display: flex;
    flex-direction: row;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    /* Uitbreiden tot viewport breedte zodat volgende kaart zichtbaar piekt */
    /* Verberg scrollbar visueel maar houd functionaliteit */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .section-about-services .services-grid::-webkit-scrollbar {
    display: none;
  }

  .section-about-services .service-card {
    flex: 0 0 74vw;
    max-width: 290px;
    scroll-snap-align: start;
  }

  /* Eerste kaart: scroll-snap vanuit links */
  .section-about-services .service-card:first-child {
    scroll-snap-align: start;
  }

  .section-about-services .service-img-wrap {
    height: 155px;
  }

  .section-about-services .service-content {
    padding: 18px 18px 20px;
  }

  .section-about-services .service-title {
    font-size: 21px;
    margin-bottom: 12px;
  }

  .section-about-services .service-desc {
    font-size: 13.5px;
  }

  /* Scroll-indicator (kleine puntjes) */
  .services-scroll-hint {
    text-align: center;
    margin-top: 10px;
    font-size: 11px;
    color: rgba(250, 247, 243, 0.45);
    letter-spacing: 0.12em;
  }
}

/* ────────────────────────────────
   PAKKETTEN — tablet
──────────────────────────────── */
@media (max-width: 1024px) and (min-width: 641px) {

  .pkg-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .pkg-card.featured {
    transform: none;
  }

  .section-packages {
    padding: 52px 0 62px;
  }
}

/* ────────────────────────────────
   PAKKETTEN — mobile
──────────────────────────────── */
@media (max-width: 640px) {

  .section-packages {
    padding: 56px 0 64px;
  }

  .section-packages .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-packages .section-head {
    margin-bottom: 16px;
  }

  .section-packages .section-title {
    font-size: clamp(36px, 10vw, 52px);
  }

  .pkg-tabs {
    flex-direction: row;
    gap: 10px;
    margin-top: 16px;
    margin-bottom: 32px;
  }

  .pkg-tab {
    flex: 1;
    min-width: 0;
    padding: 14px 12px;
    font-size: 11px;
    letter-spacing: 0.1em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .pkg-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pkg-card {
    min-height: auto;
    padding: 26px 22px 24px;
  }

  .pkg-card.featured {
    transform: none;
    border-width: 2px;
  }

  .pkg-price {
    font-size: 48px;
  }

  .pkg-name {
    font-size: 16px;
  }

  .pkg-items li {
    font-size: 14.5px;
  }

  .pkg-ideal {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin-bottom: 18px;
    margin-top: 4px;
  }

  .pkg-cta {
    padding: 15px 18px;
    font-size: 12px;
  }

  .pkg-cta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 22px 20px;
    text-align: center;
    margin-top: 20px;
  }

  .pkg-cta-row .btn-green {
    width: 100%;
    justify-content: center;
    padding: 17px 24px;
  }

  .pkg-cta-text {
    font-size: 14px;
  }

  .launch-price-note {
    font-size: 13px;
    padding: 12px 16px;
    line-height: 1.5;
  }
}

/* ────────────────────────────────
   ADD-ONS — tablet
──────────────────────────────── */
@media (max-width: 1024px) and (min-width: 641px) {

  .addon-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

/* ────────────────────────────────
   ADD-ONS — mobile
──────────────────────────────── */
@media (max-width: 640px) {

  .section-addons {
    padding: 56px 0 64px;
  }

  .section-addons .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-addons .pkg-tabs {
    margin-bottom: 28px;
  }

  .section-addons .pkg-tab {
    flex: 1;
    min-width: 0;
    padding: 14px 12px;
    font-size: 11px;
  }

  /* 2 kolommen op mobile voor add-ons — compacter dan 1 kolom */
  .addon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .addon-card {
    min-height: auto;
    padding: 18px 14px;
    gap: 10px;
    border-radius: 14px;
  }

  .addon-icon {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .addon-name {
    font-size: 15px;
    line-height: 1.2;
    margin-bottom: 4px;
  }

  .addon-desc {
    font-size: 12px;
    line-height: 1.5;
  }

  .addon-price {
    font-size: 26px;
    padding-top: 10px;
  }

  .addon-unit {
    font-size: 12px;
  }
}

/* Extra smal scherm: add-ons 1 kolom */
@media (max-width: 380px) {

  .addon-grid {
    grid-template-columns: 1fr;
  }
}

/* ────────────────────────────────
   WERKWIJZE — tablet
──────────────────────────────── */
@media (max-width: 1024px) and (min-width: 641px) {

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .process-highlights {
    grid-template-columns: 1fr 1fr;
  }

  .process-highlight-wide {
    grid-column: span 2;
  }
}

/* ────────────────────────────────
   WERKWIJZE — mobile
──────────────────────────────── */
@media (max-width: 640px) {

  .section-process {
    padding: 56px 0 60px;
  }

  .section-process .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-process .section-title {
    font-size: clamp(34px, 10vw, 48px);
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 16px;
  }

  /* Kaarten: nummer links, titel + desc gestapeld rechts */
  .process-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    min-height: auto;
    padding: 18px 16px;
    border-radius: 16px;
  }

  .process-number {
    flex-shrink: 0;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--rose);
    opacity: 0.55;
  }

  .process-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .process-title {
    font-size: 15px;
    margin-bottom: 0;
  }

  .process-desc {
    font-size: 12.5px;
    line-height: 1.55;
  }

  .process-highlights {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .process-highlight {
    padding: 14px 14px;
  }

  .process-highlight strong {
    font-size: 26px;
  }

  .process-highlight-wide {
    grid-column: span 2;
    padding: 14px 16px;
  }

  .process-highlight-wide strong {
    font-size: 11.5px;
  }
}

/* ────────────────────────────────
   WAAROM — tablet
──────────────────────────────── */
@media (max-width: 1024px) and (min-width: 641px) {

  .why-feature-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
  }

  .why-feature-card {
    min-height: auto;
    padding: 28px 28px 30px;
  }

  .why-bottom {
    max-width: 700px;
  }
}

/* ────────────────────────────────
   WAAROM — mobile
──────────────────────────────── */
@media (max-width: 640px) {

  .section-why {
    padding: 56px 0 64px;
  }

  .section-why .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-why .section-title {
    font-size: clamp(36px, 10vw, 52px);
    line-height: 0.94;
    margin-bottom: 18px;
  }

  .why-lead {
    font-size: 15.5px;
    line-height: 1.7;
  }

  .why-proof-row {
    margin: 20px auto 28px;
    padding: 12px 0;
    gap: 0 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .why-proof-row span {
    font-size: 13px;
    font-weight: 500;
  }

  .why-feature-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 100%;
  }

  .why-feature-card {
    min-height: auto;
    padding: 24px 20px 26px;
    border-radius: 16px;
  }

  .why-feature-top {
    margin-bottom: 20px;
  }

  .why-feature-icon {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .why-feature-num {
    font-size: 40px;
  }

  .why-feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  .why-feature-card p {
    font-size: 14.5px;
    line-height: 1.7;
  }

  .why-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 22px 18px;
    border-radius: 16px;
    margin-top: 24px;
    text-align: center;
    max-width: 100%;
  }

  .why-bottom p {
    font-size: 14.5px;
    line-height: 1.7;
    max-width: 100%;
  }

  .why-bottom .btn-green {
    width: 100%;
    justify-content: center;
    padding: 17px 24px;
  }
}

/* ────────────────────────────────
   CONTACT — tablet
──────────────────────────────── */
@media (max-width: 1024px) and (min-width: 641px) {

  .section-contact .contact-layout {
    grid-template-columns: 1fr;
    gap: 44px;
    padding: 48px 48px;
    max-width: 860px;
  }

  .contact-copy {
    max-width: 600px;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ────────────────────────────────
   CONTACT — mobile
──────────────────────────────── */
@media (max-width: 640px) {

  .section-contact {
    padding: 48px 0 64px;
    overflow-x: hidden;
  }

  .section-contact {
    overflow-x: hidden;
  }

  .section-contact .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }

  .contact-layout,
  .section-contact .contact-layout {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px !important;
    padding: 24px 20px 28px !important;
    border-radius: 20px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .section-contact .contact-copy,
  .section-contact .contact-form {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .contact-form {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .form-input,
  .form-textarea,
  .form-row,
  .form-submit {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .contact-copy {
    max-width: 100%;
  }

  .section-contact .section-title {
    font-size: clamp(34px, 10vw, 48px);
    margin-bottom: 16px;
  }

  .contact-sub {
    font-size: 14.5px;
    line-height: 1.75;
    margin-bottom: 32px;
  }

  .contact-link {
    padding: 16px 0;
    gap: 10px;
  }

  .contact-link-label {
    min-width: 66px;
    font-size: 10px;
  }

  .contact-link-value {
    font-size: 15px;
  }

  /* Formulier */
  .contact-form {
    gap: 14px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .form-label {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .form-input {
    padding: 15px 14px;
    border-radius: 12px;
    font-size: 16px; /* iOS-zoom voorkomen */
  }

  .form-textarea {
    min-height: 110px;
  }

  .form-submit {
    width: 100%;
    justify-content: center;
    padding: 17px 24px;
    font-size: 13px;
    margin-top: 6px;
  }

  .form-note {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.4);
    padding-right: 60px;
  }
}

/* ────────────────────────────────
   FOOTER — mobile
──────────────────────────────── */
@media (max-width: 640px) {

  .site-footer {
    /* Extra ruimte voor de floating CTA-balk */
    padding: 28px 0 96px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .footer-copy {
    order: 2;
    font-size: 11px;
    max-width: 280px;
    line-height: 1.6;
  }

  .footer-logo {
    order: 1;
  }

  .footer-nav {
    order: 3;
    justify-content: center;
    gap: 20px;
  }

  .footer-nav a {
    font-size: 12px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

/* ────────────────────────────────
   FLOATING MOBILE CTA BALK
   Sticky "Boek een datum" onderaan op mobile —
   verdwijnt op desktop.
──────────────────────────────── */
@media (max-width: 768px) {

  .mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800;
    padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
    background: rgba(23, 19, 17, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(196, 137, 122, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .mobile-cta-bar.visible {
    transform: translateY(0);
  }

  .mobile-cta-bar .btn-green {
    flex: 1;
    max-width: 320px;
    padding: 15px 24px;
    font-size: 12px;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(196, 137, 122, 0.28);
  }

  .mobile-cta-bar-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    flex-shrink: 0;
    transition: border-color 0.2s, color 0.2s;
  }

  .mobile-cta-bar-phone:hover,
  .mobile-cta-bar-phone:active {
    border-color: var(--rose);
    color: var(--rose);
  }

  /* Verberg floating bar als user in #contact-sectie zit */
  .mobile-cta-bar.in-contact {
    transform: translateY(100%);
  }

  /* Body padding zodat content niet achter de balk valt */
  body {
    padding-bottom: env(safe-area-inset-bottom);
  }
}

/* Desktop: nooit tonen */
@media (min-width: 769px) {
  .mobile-cta-bar {
    display: none !important;
  }
}

/* ────────────────────────────────
   ALGEMENE CONTAINER PADDING OP MOBILE
──────────────────────────────── */
@media (max-width: 640px) {

  .container,
  .nav-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-title {
    font-size: clamp(32px, 10vw, 48px);
  }

  .section-intro {
    font-size: 14.5px;
    line-height: 1.65;
    max-width: 100%;
  }

  .section-label {
    font-size: 10.5px;
    letter-spacing: 0.14em;
    padding: 8px 14px;
    margin-bottom: 16px;
  }
}

/* ────────────────────────────────
   VERFIJNDE MOBILE UI — compacter & eleganter
──────────────────────────────── */
@media (max-width: 640px) {

  /* Sectie-titels kleiner en strakker */
  .section-title {
    font-size: clamp(22px, 6.5vw, 30px) !important;
    line-height: 1.05;
  }

  /* Sectie-intro compacter */
  .section-intro {
    font-size: 12.5px;
    line-height: 1.6;
  }

  /* Sectie-padding tighter */
  .section-about-services,
  .section-packages,
  .section-addons,
  .section-process,
  .section-why {
    padding: 36px 0 42px;
  }

  /* Hero kleiner */
  .hero-title {
    font-size: clamp(32px, 10vw, 52px) !important;
  }

  .hero-subtitle {
    font-size: 12.5px;
  }

  /* About lead-tekst */
  .about-lead {
    font-size: 13.5px;
  }

  /* Pakketten — prijs & tekst compacter */
  .pkg-price {
    font-size: 32px;
  }

  .pkg-name {
    font-size: 13px;
    letter-spacing: 0.1em;
  }

  .pkg-items li {
    font-size: 12.5px;
  }

  .pkg-card {
    padding: 18px 16px 16px;
  }

  .pkg-ideal {
    font-size: 11.5px;
  }

  /* Service-kaart content */
  .section-about-services .service-title {
    font-size: 16px;
  }

  .section-about-services .service-desc {
    font-size: 12px;
  }

  .section-about-services .service-img-wrap {
    height: 115px;
  }

  /* Werkwijze */
  .process-title {
    font-size: 14px;
  }

  .process-desc {
    font-size: 12px;
  }

  /* Waarom */
  .why-feature-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .why-feature-card p {
    font-size: 12.5px;
  }

  .why-feature-num {
    font-size: 28px;
  }

  .why-lead {
    font-size: 13px;
  }

  /* Add-on kaarten */
  .addon-name {
    font-size: 12px;
  }

  .addon-price {
    font-size: 20px;
  }

  .addon-card {
    padding: 12px 10px;
    gap: 6px;
  }
}

/* ────────────────────────────────
   SAFE AREA — notch & home indicator
──────────────────────────────── */
@supports (padding: max(0px)) {
  @media (max-width: 768px) {
    #navbar .nav-inner {
      padding-left: max(20px, env(safe-area-inset-left));
      padding-right: max(20px, env(safe-area-inset-right));
    }
  }
}

/* Documentary Collection & drie pakket-tabs */
@media (max-width: 640px) {
  #packages > .container > .pkg-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  #packages > .container > .pkg-tabs::-webkit-scrollbar {
    display: none;
  }

  #packages > .container > .pkg-tabs .pkg-tab {
    flex: 0 0 auto;
    min-width: max-content;
    padding-inline: 18px;
    scroll-snap-align: start;
    overflow: visible;
    text-overflow: clip;
  }

  .pkg-grid-documentary {
    max-width: none;
  }

  .pkg-panel-documentary .pkg-card {
    min-height: auto;
  }
}

/* Mobiele carrouselbediening — verborgen buiten mobile */
.mobile-carousel-controls,
.pkg-carousel-hint {
  display: none;
}

@media (max-width: 640px) {
  .section-about-services .service-card,
  .pkg-grid .pkg-card {
    flex-basis: 85%;
    max-width: none;
  }

  .section-about-services .service-card:last-child,
  .pkg-grid .pkg-card:last-child {
    margin-right: 15%;
  }

  .mobile-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .services-carousel-controls {
    gap: 14px;
    margin-top: 10px;
  }

  .services-scroll-hint {
    margin: 0;
    min-width: 158px;
  }

  .pkg-carousel-controls {
    gap: 18px;
    margin-top: 14px;
  }

  .pkg-carousel-controls .pkg-dots {
    min-width: 66px;
    margin-top: 0;
  }

  .mobile-carousel-arrow {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(196, 137, 122, 0.42);
    border-radius: 50%;
    background: rgba(196, 137, 122, 0.12);
    color: var(--rose);
    font-size: 19px;
    line-height: 1;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .section-about-services .mobile-carousel-arrow {
    border-color: rgba(250, 247, 243, 0.32);
    background: rgba(250, 247, 243, 0.08);
    color: var(--ivory);
  }

  .mobile-carousel-arrow:disabled {
    opacity: 0.28;
    cursor: default;
  }

  .pkg-carousel-hint {
    display: block;
    margin-top: 9px;
    text-align: center;
    color: rgba(61, 46, 40, 0.52);
    font-size: 11px;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 640px) {

  .section-packages .pkg-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    margin-top: 18px;
    margin-bottom: 32px;
  }

  .section-packages .pkg-tab {
    width: 100%;
    min-width: 0;
    min-height: 52px;
    padding: 12px 8px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;
    font-size: 10px;
    line-height: 1.25;
    letter-spacing: 0.08em;
    text-align: center;

    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .section-packages #tab-documentary {
    grid-column: 1 / -1;
  }

  .section-packages .pkg-tab:not(.active) {
    background: var(--linen);
    color: rgba(61, 46, 40, 0.72);
    border: 1px solid rgba(168, 129, 110, 0.3);
    box-shadow: none;
  }

  .section-packages .pkg-tab.active {
    background: linear-gradient(
      135deg,
      var(--rose),
      var(--bronze)
    );
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 10px 24px rgba(196, 137, 122, 0.22);
  }
}
