@charset "UTF-8";

/* =========================================================
   asuka design / responsive_final_patch.css
   Clean replacement version
   Load after base CSS files.
   ========================================================= */


/* =========================================================
   00. Touch devices: remove hover effects
   ========================================================= */

@media (hover: none) {
  .btn:hover,
  .work-card:hover,
  .category-grid a:hover,
  .banner-grid a:hover,
  .deliverable-item a:hover {
    transform: none;
    box-shadow: none;
  }

  .image-hover:hover img,
  .work-card figure:hover img,
  .category-grid a:hover img,
  .banner-grid a:hover img,
  .deliverable-item a:hover img {
    transform: none;
    opacity: 1;
  }
}


/* =========================================================
   01. Common layout
   ========================================================= */

html,
body {
  overflow-x: hidden;
}

img {
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
}

@media (max-width: 1080px) and (min-width: 769px) {
  .section,
  .lower-inner,
  .ec-page-head-inner,
  .banner-page-head-inner,
  .gallery-area,
  .banner-gallery-area,
  .detail-hero-inner,
  .design-point-inner,
  .deliverables-inner,
  .project-info-inner {
    width: calc(100% - 56px) !important;
  }

  .header-inner {
    grid-template-columns: 210px 1fr auto;
  }

  .filter-list {
    gap: 14px;
  }

  .filter-list button {
    min-width: 120px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 13px;
    letter-spacing: .04em;
  }

  .section,
  .lower-inner,
  .ec-page-head-inner,
  .banner-page-head-inner,
  .gallery-area,
  .banner-gallery-area,
  .detail-hero-inner,
  .design-point-inner,
  .deliverables-inner,
  .project-info-inner,
  .contact-cta,
  .footer-inner {
    width: calc(100% - 40px) !important;
  }

  .breadcrumb {
    overflow-x: auto;
    flex-wrap: wrap;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    font-size: 10px;
    line-height: 1.8;
  }

  .breadcrumb::-webkit-scrollbar {
    display: none;
  }

  .btn {
    width: 100%;
    max-width: 320px;
    height: 50px;
  }
}


/* =========================================================
   02. Header / hamburger
   ========================================================= */

@media (max-width: 768px) {
  .site-header {
    backdrop-filter: none !important;
    background: rgba(255,255,255,.97) !important;
  }

  .global-nav {
    padding: 28px 22px 34px;
    box-shadow: 0 16px 30px rgba(31,31,31,.06);
    transition: opacity .16s ease, visibility .16s ease, transform .16s ease !important;
    transform: translateY(-4px);
  }

  .global-nav.is-open {
    transform: translateY(0);
  }

  .global-nav a {
    display: block;
    padding: 10px 0;
    font-size: 13px;
  }

  .hamburger span {
    transition: transform .16s ease, opacity .16s ease !important;
  }

  .hamburger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(28deg);
  }

  .hamburger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .hamburger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-28deg);
  }
}


/* =========================================================
   03. TOP page / Hero
   PC image is controlled by style.css.
   Tablet/SP image file names:
   img/top/top-hero-tablet.jpg
   img/top/top-hero-sp.jpg
   ========================================================= */

@media (max-width: 1080px) and (min-width: 769px) {
  .hero {
    min-height: 760px;
  }

  .hero-bg {
    background:
      linear-gradient(
        90deg,
        rgba(247,242,239,.88) 0%,
        rgba(247,242,239,.55) 46%,
        rgba(247,242,239,.05) 100%
      ),
      url("../img/top/top-hero-tablet.jpg") center top / cover no-repeat !important;
    animation: none !important;
  }

  .hero-inner {
    grid-template-columns: 46% 54% !important;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 720px !important;
    padding-top: 104px !important;
    padding-bottom: 88px !important;
    background: #f7f2ef;
  }

  .hero-bg {
    inset: 64px 0 auto 0 !important;
    height: calc(100dvh - 64px) !important;
    min-height: 640px !important;
    max-height: 760px !important;
    background:
      linear-gradient(
        90deg,
        rgba(247,242,239,.94) 0%,
        rgba(247,242,239,.72) 52%,
        rgba(247,242,239,.18) 100%
      ),
      url("../img/top/top-hero-sp.jpg") center top / cover no-repeat !important;
    animation: none !important;
  }

  .hero-inner {
    position: relative;
    z-index: 3;
  }

  .hero-logo {
    font-size: clamp(42px, 12vw, 54px);
  }

  .hero h1 {
    font-size: clamp(23px, 6.4vw, 28px);
    line-height: 1.55;
  }

  .hero-text {
    width: 78% !important;
    font-size: 12px;
  }

  .hero-service-list {
    margin-top: 34px;
  }
}

@media (max-width: 430px) {
  .hero-service-list {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .hero-service-list li {
    min-height: 72px;
  }
}

@media (max-width: 390px) {
  .hero {
    min-height: 690px !important;
  }

  .hero-bg {
    min-height: 600px !important;
  }
}


/* =========================================================
   04. TOP page / MY WORKS
   ========================================================= */

@media (max-width: 1080px) and (min-width: 769px) {
  .works-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 22px !important;
    border-left: none !important;
  }

  .work-card {
    border: 1px solid var(--color-line) !important;
    padding: 22px !important;
    background: #fff;
  }

  .work-card figure {
    margin-bottom: 18px !important;
  }
}

@media (max-width: 768px) {
  .works-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    border-left: none !important;
  }

  .work-card {
    position: relative;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 12px 16px;
    padding: 22px !important;
    border: 1px solid var(--color-line) !important;
    background: #fff;
  }

  .work-card a {
    display: contents !important;
  }

  .work-number {
    grid-column: 1;
    grid-row: 1;
    margin: 0 !important;
    font-size: 42px !important;
    line-height: 1;
  }

  .work-card h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    min-height: 0 !important;
    margin: 0 0 4px !important;
    font-size: 17px !important;
    line-height: 1.45 !important;
    white-space: normal !important;
  }

  .work-sub {
    grid-column: 2;
    grid-row: 2;
    margin: -8px 0 0 !important;
    font-size: 10px;
  }

  .work-card figure {
    grid-column: 1 / -1;
    grid-row: 3;
    margin: 6px 0 2px !important;
  }

  .work-card ul {
    grid-column: 1 / -1;
    grid-row: 4;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 14px;
    margin: 8px 0 0 !important;
  }

  .work-card li {
    font-size: 11px !important;
    line-height: 1.7 !important;
  }

  .view-more {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
    width: fit-content;
    margin-top: 12px !important;
    padding: 8px 13px;
    background: transparent;
    color: #9b918a;
    border: 1px solid #ddd5cf;
    font-size: 10px !important;
    line-height: 1;
    letter-spacing: .12em;
    pointer-events: none;
  }

  .work-card a .view-more {
    background: #1f1f1f;
    color: #fff;
    border-color: #1f1f1f;
    pointer-events: auto;
  }

  .view-more::after,
  .work-card::after {
    content: none !important;
    display: none !important;
  }

  .work-card > .view-more {
    opacity: .82;
  }

  .work-card > figure img {
    opacity: .72;
  }
}


/* =========================================================
   05. TOP page / Reason
   ========================================================= */

@media (max-width: 768px) {
  .reason-box {
    padding: 34px 22px 38px !important;
  }

  .reason-head {
    display: block !important;
    padding-bottom: 26px !important;
  }

  .reason-head p:last-child {
    margin-top: 16px !important;
    text-align: left !important;
    line-height: 2;
  }

  .reason-list {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    padding-top: 26px !important;
  }

  .reason-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0 16px;
    align-items: start;
    padding: 18px 0;
    text-align: left !important;
    border-bottom: 1px solid #ddd3cc;
  }

  .reason-item:last-child {
    border-bottom: none;
  }

  .reason-item img {
    grid-row: 1 / 3;
    width: 38px !important;
    height: 38px !important;
    margin: 2px 0 0 !important;
  }

  .reason-item h3 {
    margin: 0 0 6px !important;
    font-size: 15px !important;
  }

  .reason-item p {
    width: 100%;
    font-size: 12px !important;
    line-height: 1.9 !important;
    text-align: left !important;
  }
}


/* =========================================================
   06. TOP page / Profile section
   ========================================================= */

@media (max-width: 768px) {
  .profile-inner {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .profile-copy {
    order: 1;
  }

  .profile-image {
    order: 2;
  }

  .profile-skill {
    order: 3;
  }

  .profile-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}


/* =========================================================
   07. Footer
   ========================================================= */

.footer-brand .instagram {
  display: none !important;
}

@media (max-width: 768px) {
  .site-footer {
    overflow: hidden;
    padding-top: 48px;
  }

  .footer-inner {
    width: calc(100% - 40px) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 36px !important;
    padding: 52px 0 46px !important;
    text-align: center !important;
  }

  .footer-brand,
  .footer-nav,
  .footer-contact {
    align-items: center !important;
    justify-items: center !important;
    text-align: center !important;
  }

  .footer-nav ul {
    display: grid;
    gap: 6px;
  }

  .footer-contact .btn,
  .footer-contact .btn-outline {
    width: min(280px, 100%) !important;
    margin: 0 auto !important;
  }

  .footer-bottom {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    min-height: 76px !important;
    padding: 18px 20px 22px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px;
    place-items: center;
    text-align: center;
  }

  .footer-bottom small {
    width: 100% !important;
    font-size: 10px !important;
  }

  .page-top {
    position: static !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px !important;
  }

  .page-top span {
    width: 24px;
    height: 24px;
  }
}


/* =========================================================
   08. Gallery pages common
   ========================================================= */

@media (max-width: 768px) {
  .ec-page-head,
  .banner-page-head {
    padding-top: 96px;
    padding-bottom: 20px;
  }

  .ec-page-head h1,
  .banner-page-head h1 {
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.12;
  }

  .page-lead {
    font-size: 13px;
    line-height: 1.9;
  }

  .gallery-area,
  .banner-gallery-area {
    padding-top: 36px;
    padding-bottom: 84px;
  }

  .filter-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .filter-list button {
    width: 100%;
    height: 42px;
    padding: 0 12px;
    font-size: 11px;
    letter-spacing: .06em;
  }

  .gallery-category,
  .banner-category {
    grid-template-columns: 1fr !important;
    gap: 22px;
    padding: 34px 0 42px;
  }

  .category-text h2 {
    margin-bottom: 12px;
    font-size: 25px;
  }

  .category-text p,
  .category-text p:last-child,
  .category-text p:last-of-type {
    font-size: 12px;
    line-height: 1.9;
  }

  .category-link {
    margin-top: 18px;
  }

  .category-grid,
  .banner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .category-grid a,
  .banner-grid a {
    position: relative;
    padding: 7px;
  }
}

@media (max-width: 390px) {
  .category-grid,
  .banner-grid {
    gap: 10px;
  }
}


/* =========================================================
   09. EC product gallery
   ========================================================= */

@media (max-width: 768px) {
  .gallery-category:not(.is-expanded) .category-grid a:nth-child(n+3) {
    display: none !important;
  }

  .gallery-category.is-expanded .category-grid a {
    display: flex !important;
  }

  .category-grid a::after {
    content: "TAP TO VIEW" !important;
    position: absolute;
    right: 8px;
    bottom: 8px;
    padding: 5px 8px;
    background: rgba(255,255,255,.86) !important;
    color: #4a403a !important;
    border: 1px solid rgba(216,209,202,.9);
    box-shadow: 0 4px 12px rgba(31,31,31,.08);
    backdrop-filter: blur(8px);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .08em;
  }
}

@media (max-width: 1080px) and (min-width: 769px) {
  .gallery-category {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

.gallery-category.is-expanded .category-link {
  display: none !important;
}


/* =========================================================
   10. Banner gallery
   ========================================================= */

@media (max-width: 1080px) and (min-width: 769px) {
  .banner-category {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .banner-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 768px) {
  .banner-grid a.modal-trigger::after {
    content: none !important;
    display: none !important;
  }

  .banner-category .category-text::after {
    content: "画像をタップして詳細を見る";
    display: inline-block;
    margin-top: 16px;
    padding: 6px 10px;
    background: #f7f2ef;
    border: 1px solid #e6ddd6;
    color: #6d655f;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
  }
}


/* =========================================================
   11. Banner modal
   ========================================================= */

@media (max-width: 768px) {
  .work-modal-bg {
    background: rgba(31,31,31,.82);
  }

  .work-modal-content {
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    max-height: none;
    transform: none;
    padding: 64px 16px 32px;
    grid-template-columns: 1fr;
    gap: 26px;
    border-radius: 0;
  }

  .work-modal-close {
    position: fixed;
    top: 14px;
    right: 14px;
    z-index: 10002;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(31,31,31,.75);
    color: #fff;
    font-size: 28px;
    line-height: 1;
  }

  .work-modal-main img {
    max-height: 52dvh;
  }

  .modal-thumb-area {
    grid-template-columns: 1fr;
  }

  .thumb-arrow {
    display: none;
  }

  .modal-thumbs {
    display: flex !important;
    gap: 10px;
    padding-bottom: 6px;
    overflow-x: auto !important;
  }

  .modal-thumb {
    flex: 0 0 96px;
  }

  .modal-thumb span {
    font-size: 10px;
  }

  .modal-title {
    font-size: 22px;
    line-height: 1.45;
  }

  .modal-info {
    grid-template-columns: 1fr;
  }

  .modal-info div {
    grid-template-columns: 82px 1fr;
  }
}

.modal-thumb.is-active img {
  outline: 2px solid #d2aa9a !important;
  outline-offset: 2px;
}

.modal-thumb img {
  border: 1px solid #eee5df;
}


/* =========================================================
   12. EC detail page
   ========================================================= */

@media (max-width: 1080px) and (min-width: 769px) {
  .detail-hero {
    --hero-current-image: var(--hero-image-tablet, var(--hero-image));
    min-height: 680px !important;
    background-image:
      linear-gradient(
        90deg,
        rgba(247,242,239,.82) 0%,
        rgba(247,242,239,.46) 48%,
        rgba(247,242,239,.05) 100%
      ),
      var(--hero-current-image) !important;
    background-position: center right !important;
  }

  .detail-hero-layout {
    grid-template-columns: 320px 1fr;
    gap: 40px;
  }

  .design-point-inner,
  .project-info-inner {
    grid-template-columns: 240px 1fr;
    gap: 46px;
  }

  .deliverable-grid {
    gap: 26px;
  }
}

@media (max-width: 768px) {
  .detail-hero {
    --hero-current-image: var(--hero-image-sp, var(--hero-image));
    min-height: auto !important;
    padding: 92px 0 64px !important;
    background-image:
      linear-gradient(
        180deg,
        rgba(247,242,239,.92) 0%,
        rgba(247,242,239,.82) 44%,
        rgba(247,242,239,.35) 100%
      ),
      var(--hero-current-image) !important;
    background-position: center top !important;
    background-size: cover !important;
  }

  .detail-hero-layout {
    display: block;
    grid-template-columns: 1fr !important;
  }

  .detail-hero-copy {
    max-width: 100%;
    padding: 24px 20px 26px;
    background: rgba(255,255,255,.76);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(216,209,202,.55);
  }

  .detail-hero .breadcrumb {
    margin-bottom: 28px;
  }

  .detail-hero-copy h1 {
    font-size: 27px !important;
  }

  .detail-tag {
    margin-bottom: 22px;
  }

  .detail-lead {
    margin-bottom: 24px;
    font-size: 13px !important;
    line-height: 2 !important;
  }

  .detail-meta-list div {
    grid-template-columns: 86px 1fr !important;
    gap: 12px;
  }

  .design-point,
  .deliverables,
  .project-info {
    padding-top: 52px;
    padding-bottom: 56px;
  }

  .point-heading h2,
  .project-title h2,
  .center-heading h2 {
    font-size: 26px;
  }

  .point-list {
    gap: 18px;
  }

  .point-item {
    padding: 24px 20px;
    background: rgba(255,255,255,.62);
    border: 1px solid #e8ded7;
  }

  .deliverable-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .project-info {
    margin-bottom: 64px;
  }

  .project-info-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .project-info-list > div {
    padding-bottom: 18px;
    border-bottom: 1px solid #e3ddd8;
  }

  .product-page-window {
    height: 520px !important;
  }

  .deliverable-item a.modal-trigger {
    position: relative;
  }

  .deliverable-item a.modal-trigger::after {
    content: "TAP TO VIEW" !important;
    position: absolute;
    right: 8px;
    bottom: 8px;
    padding: 5px 8px;
    background: rgba(255,255,255,.86) !important;
    color: #4a403a !important;
    border: 1px solid rgba(216,209,202,.9);
    box-shadow: 0 4px 12px rgba(31,31,31,.08);
    backdrop-filter: blur(8px);
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .08em;
  }
}

@media (max-width: 430px) {
  .product-page-window {
    height: 480px !important;
  }
}


/* =========================================================
   13. EC detail modal
   ========================================================= */

@media (max-width: 768px) {
  .image-modal-bg {
    background: rgba(31,31,31,.82);
  }

  .image-modal-content {
    width: calc(100% - 24px) !important;
    max-height: calc(100dvh - 86px) !important;
    padding: 10px !important;
  }

  .image-modal-content img {
    max-height: calc(100dvh - 116px) !important;
  }

  .image-modal-content.is-long {
    position: fixed !important;
    top: 58px !important;
    right: 12px !important;
    bottom: 16px !important;
    left: 12px !important;
    width: auto !important;
    max-height: none !important;
    padding: 10px !important;
    transform: none !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
  }

  .image-modal-content.is-long img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain !important;
  }

  .image-modal-close {
    position: fixed !important;
    top: 12px !important;
    right: 12px !important;
    z-index: 10050 !important;
    width: 42px;
    height: 42px;
    background: rgba(31,31,31,.65);
  }
}


/* =========================================================
   14. Profile page
   ========================================================= */

@media (max-width: 1080px) and (min-width: 769px) {
  .profile-hero {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
    padding: 110px 40px 76px !important;
  }

  .profile-hero-visual > img {
    height: 520px !important;
    object-position: center center !important;
  }

  .profile-card {
    right: 32px !important;
    bottom: -36px !important;
  }
}

@media (max-width: 768px) {
  .profile-hero {
    padding: 92px 20px 56px !important;
    gap: 24px !important;
  }

  .profile-hero-copy h1 {
    font-size: 34px;
  }

  .profile-hero-copy p:last-child {
    font-size: 13px;
    line-height: 2;
  }

  .profile-hero-visual > img {
    height: 340px !important;
    object-position: center center !important;
  }

  .profile-card {
    display: none !important;
  }

  .profile-section-title {
    margin-bottom: 32px;
  }

  .profile-info-list {
    grid-template-columns: 1fr 1fr;
  }

  .platform-icons {
    gap: 10px;
  }

  .flow-list {
    grid-template-columns: 1fr 1fr;
  }

  .message-image img {
    height: 280px;
  }
}

@media (max-width: 390px) {
  .profile-info-list,
  .flow-list {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   15. Profile page / Career timeline
   ========================================================= */

@media (max-width: 768px) {
  .career-bg {
    padding: 44px 0 !important;
  }

  .career-inner {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .career-timeline {
    display: grid;
    gap: 14px;
  }

  .career-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 22px !important;
    background: rgba(255,255,255,.72);
    border: 1px solid #e3ddd8;
  }

  .career-row::after,
  .career-row.is-line::after,
  .career-dot,
  .career-row > .career-icon {
    display: none !important;
  }

  .career-row time {
    grid-column: auto !important;
    font-family: var(--font-serif);
    font-size: 18px !important;
    color: var(--color-pink);
    line-height: 1.2;
  }

  .career-row > div:last-child {
    grid-column: auto !important;
  }

  .career-row h3 {
    margin-bottom: 8px !important;
    font-size: 15px !important;
    line-height: 1.6;
  }

  .career-row p {
    font-size: 12px !important;
    line-height: 1.9 !important;
  }

  .career-note {
    grid-template-columns: 1fr !important;
    padding: 22px !important;
  }

  .career-side {
    padding-left: 0 !important;
    border-left: none !important;
  }
}



/* =========================================================
   18. EC detail hero action buttons
   HTML:
   <div class="detail-action-buttons">
     <a class="btn detail-action-btn detail-action-back">...</a>
     <a class="btn detail-action-btn detail-action-work">...</a>
   </div>
   ========================================================= */

.detail-action-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.detail-action-btn {
  width: 100%;
  min-width: 0;
  height: 48px;
  padding: 0 18px;
  font-size: 11px;
  letter-spacing: .1em;
}

.detail-action-back {
  background: rgba(255,255,255,.82);
  color: #1f1f1f;
  border: 1px solid #d8d1ca;
}

.detail-action-work {
  background: #1f1f1f;
  color: #fff;
  border: 1px solid #1f1f1f;
}

@media (hover: hover) {
  .detail-action-back,
  .detail-action-work {
    transition:
      background .25s ease,
      color .25s ease,
      border-color .25s ease,
      transform .25s ease;
  }

  .detail-action-back:hover {
    background: #1f1f1f;
    color: #fff;
    border-color: #1f1f1f;
    transform: translateY(-2px);
  }

  .detail-action-work:hover {
    background: #fff;
    color: #1f1f1f;
    border-color: #1f1f1f;
    transform: translateY(-2px);
  }
}

@media (max-width: 768px) {
  .detail-action-buttons {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .detail-action-btn {
    max-width: none;
    height: 50px;
  }

  .detail-action-btn span {
    transform: none !important;
  }
}


/* =========================================================
   19. TOP hero service cards
   Use ul/li structure. Active items use <a class="hero-service-link">.
   Inactive items use <span class="hero-service-link is-disabled">.
   No COMING SOON labels.
   ========================================================= */

.hero-service-list {
  width: min(520px, 100%) !important;
  max-width: 100% !important;
  margin: 0 0 32px !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
  background: transparent !important;
  border: none !important;
  backdrop-filter: none !important;
}

.hero-service-list li {
  position: relative;
  min-height: 92px !important;
  padding: 0 !important;
  display: block !important;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(216,209,202,.85);
  box-shadow: 0 8px 22px rgba(31,31,31,.035);
}

.hero-service-link {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  height: 100%;
  padding: 20px 22px;
  color: inherit;
  text-decoration: none;
}

.hero-service-link img,
.hero-service-list li > img {
  width: 28px !important;
  height: 28px !important;
  flex: 0 0 auto;
  object-fit: contain;
}

.hero-service-link .service-main,
.hero-service-list .service-main {
  display: block;
  color: #1f1f1f;
  font-size: 13px !important;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .04em;
  white-space: normal;
}

.hero-service-link .service-text > span:not(.service-main),
.hero-service-list .service-text > span:not(.service-main) {
  display: block;
  margin-top: 3px;
  color: #6d655f;
  font-size: 10px !important;
  font-weight: 700;
  line-height: 1.5;
  white-space: normal;
}

.hero-service-link.is-disabled {
  cursor: default;
}

@media (hover: hover) {
  a.hero-service-link {
    transition:
      background .25s ease,
      transform .25s ease,
      box-shadow .25s ease,
      border-color .25s ease;
  }

  a.hero-service-link:hover {
    background: rgba(255,255,255,.96);
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(31,31,31,.08);
  }
}

@media (max-width: 768px) {
  .hero-service-list {
    width: 100% !important;
    margin-top: 34px !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .hero-service-list li {
    min-height: 82px !important;
  }

  .hero-service-link {
    padding: 16px 14px;
    gap: 12px;
  }

  .hero-service-link img,
  .hero-service-list li > img {
    width: 28px !important;
    height: 28px !important;
  }

  .hero-service-link .service-main,
  .hero-service-list .service-main {
    font-size: 12px !important;
    line-height: 1.45;
  }

  .hero-service-link .service-text > span:not(.service-main),
  .hero-service-list .service-text > span:not(.service-main) {
    font-size: 10px !important;
  }
}