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

:root {
    --gap: 12px;
    --first-background: #fff;
    --second-background: #f5f5f5;
    --third-background: #151515;
    --border: #e5e5e5;
    /*BLACK-COLOR*/
    --first-black-font: #111;
    --second-black-font: #444;
    --third-black-font: #999;
    /*WHITE-COLOR*/
    --first-white-font: #ffffff;
    --second-white-font: rgba(255, 255, 255, 0.6);
}

/* playfair-display-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Playfair Display";
    font-style: normal;
    font-weight: 400;
    src: url("../assets/fonts/playfair-display/playfair-display-v40-latin-regular.woff2")
        format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* playfair-display-500 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Playfair Display";
    font-style: normal;
    font-weight: 500;
    src: url("../assets/fonts/playfair-display/playfair-display-v40-latin-500.woff2")
        format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* playfair-display-600 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Playfair Display";
    font-style: normal;
    font-weight: 600;
    src: url("../assets/fonts/playfair-display/playfair-display-v40-latin-600.woff2")
        format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* playfair-display-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Playfair Display";
    font-style: normal;
    font-weight: 700;
    src: url("../assets/fonts/playfair-display/playfair-display-v40-latin-700.woff2")
        format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* manrope-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400;
    src: url("../assets/fonts/manrope/manrope-v20-latin-regular.woff2")
        format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-500 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Manrope";
    font-style: normal;
    font-weight: 500;
    src: url("../assets/fonts/manrope/manrope-v20-latin-500.woff2")
        format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-600 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Manrope";
    font-style: normal;
    font-weight: 600;
    src: url("../assets/fonts/manrope/manrope-v20-latin-600.woff2")
        format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* manrope-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: "Manrope";
    font-style: normal;
    font-weight: 700;
    src: url("../assets/fonts/manrope/manrope-v20-latin-700.woff2")
        format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* BODY */
body {
    font-family: "Manrope", sans-serif;
    background: var(--first-background);
}

/* BLUR TO CLEAR*/
.reveal {
    filter: blur(12px);
    opacity: 0;
    transform: translateY(20px);
    transition:
        filter 0.8s ease,
        opacity 0.8s ease,
        transform 0.8s ease;
}

/* SAAT AKTIF (CLEAR) */
.reveal.active {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: transform 0.3s ease;
}

.navbar.hidden {
    transform: translateY(-100%);
}

.navbar-inner {
    background: var(--first-background);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    border-bottom: rgba(244, 244, 244, 0.9) 1px solid;
    transition:
        background 0.2s,
        border-color 0.2s;
}

/*NAVBAR STATE: default*/
.navbar .svg-logo-bg {
    fill: var(--third-background);
}

.navbar .logo-navbar {
    fill: var(--first-background);
}

/* Hamburger default — navbar putih */
.hamburger span {
    background: #333;
}

.cta-btn {
    display: none;
}

/* NAVBAR STATE: AT-HERO (transparan) */
.navbar.at-hero:not(.menu-open) .navbar-inner {
    background: transparent;
    backdrop-filter: blur(3px);
    border-bottom: rgba(244, 244, 244, 0.3) 1px solid;
}

.navbar.at-hero:not(.menu-open) .svg-logo-bg {
    fill: whitesmoke;
}
.navbar.at-hero:not(.menu-open) .logo-navbar {
    fill: var(--third-background);
}
.navbar.at-hero:not(.menu-open) .hamburger span {
    background: #fff;
}
.navbar.at-hero:not(.menu-open) .navbar-menu a {
    color: #fff;
}

/*NAVBAR STATE: MENU-OPEN (gelap)*/
.navbar-menu {
    display: none;
}

.navbar.menu-open .svg-logo-bg {
    fill: var(--first-white-font);
}
.navbar.menu-open .logo-navbar {
    fill: var(--third-background);
}

.navbar-menu a,
.hamburger span {
    transition: 0.2;
}

/* HAMBURGER */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 12px;
    border-radius: 12px;
}

/*HAMBURGER WHEN CLICK*/
.hamburger span:nth-child(1) {
    width: 25px;
    height: 2px;
    background: #333;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
    transform-origin: center;
}

.hamburger span:nth-child(2) {
    width: 25px;
    height: 2px;
    background: #333;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
    transform-origin: center;
}

/* MOBILE FULLSCREEN MENU */
.mobile-menu {
    position: fixed;
    z-index: 99;
    opacity: 0;
    height: 100vh;
    width: 100%;
    background: var(--third-background);
    margin: 0 auto;
    padding-top: 5rem;
    padding-bottom: 1.5rem;
    pointer-events: none;
    transition: 0.2s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-menu ul {
    padding: 1rem;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.mobile-menu ul li {
    display: flex;
    justify-content: space-between;
    padding: var(--gap) 1rem;
    border-top: rgba(255, 255, 255, 0.2) 1px solid;
    border-left: rgba(255, 255, 255, 0.2) 1px solid;
}

/* MENU ITEMS */
.mobile-menu a {
    font-size: 18px;
    font-weight: 500;
    color: var(--first-white-font);
    text-decoration: none;
}

.mobile-menu ul li span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--second-white-font);
}

/*NAVBAR STYLE WHEN HAMBURGER CLICK*/
.hamburger.active span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
    background: var(--first-white-font);
}

.hamburger.active span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
    background: var(--first-white-font);
}

.mobile-menu.active {
    transform: translateY(0);
    pointer-events: auto;
    opacity: 1;
}

.navbar.menu-open .navbar-inner {
    background: var(--third-background);
    border-bottom: rgba(255, 255, 255, 0.2) 1px solid;
}

body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/*───AKHIR-NAVBAR─────────────────────────────────*/

/*───HERO-SECTION─────────────────────────────────*/
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 24px;
    padding-right: 24px;
    background: black;
}

.hero-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    border-radius: 12px;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.vignatte-container {
    width: 100%;
    height: 48px;
    position: absolute;
    z-index: 3;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 1),
        rgba(0, 0, 0, 0.6),
        rgba(0, 0, 0, 0)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.hero-content > h1 {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    max-width: 600px;
}

.hero-content > h1 > span {
    font-family: "Playfair Display", serif;
    text-decoration: underline;
}

.hero-content p {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-content .hero-cta-iphone {
    background: whitesmoke;
    color: var(--first-black-font);
    padding: 12px 1.5rem;
    border-radius: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 500;
}
/*───AKHIR-HERO-SECTION─────────────────────────────────*/

.quote-container {
    padding: 5rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--gap);
    text-align: center;
}

.quote-container > h2 {
    font-weight: 400;
    font-size: 2rem;
    line-height: 1.2;
    color: var(--third-black-font);
}

.quote-container > h2 > span {
    font-family: "Playfair Display", serif;
    color: var(--first-black-font);
}

.quote-container p {
    color: var(--third-black-font);
    font-weight: 400;
    font-optical-sizing: auto;
    line-height: 1.3;
    letter-spacing: 0.01em;
    max-width: 350px;
}
/*───SERVICE-SECTION─────────────────────────────────*/
.service-section {
    padding: 6rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: var(--third-background);
}

.service-header h2 {
    font-size: 2rem;
    font-weight: 400;
    font-optical-sizing: auto;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: var(--second-white-font);
    text-align: center;
}

.service-header > h2 > span {
    font-family: "Playfair Display", serif;
    color: var(--first-white-font);
}

.service-wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: var(--gap);
}

.service-card {
    max-width: 700px;
    width: 100%;
    min-height: 430px;
    background: #212121;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*DEFAULT STATE*/
.service-card-default {
    padding: 22px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.service-card-illustration {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-illustration svg {
    fill: var(--first-background);
}

.service-card-title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card-title h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--first-white-font);
    line-height: 1.2;
    text-align: center;
}

.service-toggle-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--first-background);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 99;
}

.service-toggle-btn svg {
    transition: transform 0.5s ease;
    stroke: #fff;
}

.service-toggle-btn {
    transition: transform 0.9s;
}

.service-card-title p,
.service-card-illustration {
    transition: transform 0.5s;
}

.service-card.is-open .service-toggle-btn svg line {
    stroke: #fff;
}

.service-card.is-open .service-toggle-btn svg line:nth-child(1) {
    display: none;
}

.service-card.is-open .service-card-title p,
.service-card.is-open .service-card-illustration {
    transform: translateY(10px);
}

.service-card.is-open .service-toggle-btn {
    transform: translateY(110px);
    background: black;
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background: var(--first-background);
    z-index: 2;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateY(100%);
    transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.3;
}

.service-card-overlay {
    transition: 0.5s;
}

.service-card.is-open .service-card-overlay {
    transform: translateY(0%);
    opacity: 1;
}

.overlay-tag {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

.service-overlay-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    color: #fff;
}

.service-overlay-body h3 {
    font-size: 16px;
    color: var(--first-black-font);
    line-height: 1.3;
    font-weight: 500;
}

.service-overlay-body p {
    font-size: 14px;
    color: var(--second-black-font);
    line-height: 1.7;
    font-weight: 400;
}

.overlay-footer {
    display: flex;
    justify-content: center;
}

.close-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}
/*───AKHIR-SERVICE-SECTION─────────────────────────────────*/

/*── PRODUCT-SECTION ───────────────────────────────*/
body.no-scroll {
    overflow: hidden;
}

.product-section {
    padding: 8px;
    background: var(--third-background);
}

.product-container {
    padding: 6rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: var(--first-background);
    border-radius: 4px;
}

.product-container h2 {
    font-size: 2rem;
    font-weight: 400;
    font-optical-sizing: auto;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: var(--third-black-font);
}

.product-container > h2 > span {
    color: var(--first-black-font);
    font-family: "Playfair Display", serif;
}

.product-container p {
    color: var(--third-black-font);
    font-weight: 400;
    font-optical-sizing: auto;
    line-height: 1.3;
    letter-spacing: 0.01em;
    max-width: 600px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap);
}

/*KOTAK*/
.cell {
    background: transparent;
    min-height: 280px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: flex-start;
    gap: 12px;
}

.cell-product {
    max-width: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--second-background);
}

.cell-product img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.cell-content {
    max-width: 350px;
}

.cell-content p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--first-black-font);
}

.cell-content span {
    font-size: 16px;
    font-weight: 400;
    color: var(--second-black-font);
    line-height: 1.6;
}

/* MODAL */
.product-modal {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(6px);
    justify-content: center;
    align-items: center;
    z-index: 999;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.product-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.product-modal-content {
    background: var(--first-background);
    padding: 1.5rem;
    width: 100%;
    max-width: 380px;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    transform: translateY(24px) scale(0.97);
    opacity: 0;
    transition:
        transform 0.3s cubic-bezier(0.32, 0.72, 0, 1),
        opacity 0.25s ease;
}

.product-modal.active .product-modal-content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.product-modal-header {
    margin-bottom: 22px;
    padding-bottom: 1.5rem;
    border-bottom: 1px var(--border) solid;
}

.product-modal-header > .product-modal-label-top {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--first-black-font);
}

.product-modal-header > .product-modal-title {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--third-black-font);
}

/* MODAL BUTTONS */
.product-modal-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-btn-confirm {
    background: #111;
    color: var(--first-white-font);
    border: none;
    border-radius: 14px;
    padding: 14px 0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
    flex: 1;
}

.product-btn-confirm:disabled {
    background: rgba(0, 0, 0, 0.3);
    cursor: not-allowed;
}

/* MOBILE DEFAULT */
.product-modal-body {
    display: block;
}

/* SECTION */
.product-example-section {
    margin-bottom: 1.5rem;
}

.product-example-section-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--first-black-font);
    margin-bottom: 12px;
}

/* CHIPS */
.product-example-chips {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap);
}

.product-example-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 9px 16px;
    border-radius: 99px;
    border: 1px solid var(--border);
    background: var(--first-background);
    font-size: 13px;
    font-weight: 500;
    color: var(--second-black-font);
    cursor: pointer;
    transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
}

.product-example-chip--active {
    border: 1.5px solid #000;
    font-weight: 600;
    color: var(--first-black-font);
}

/* SUMMARY */
.product-example-summary {
    border: 1px solid var(--border);
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 1rem;
}

.product-example-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-example-summary-row:nth-child(2) {
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
}

.product-example-summary-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--third-black-font);
}
.product-example-summary-value {
    font-size: 14px;
    font-weight: 500;
    color: var(--first-black-font);
}

.product-example-note {
    font-size: 11px;
    font-weight: 400;
    color: var(--third-black-font);
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.6;
}
.product-example-note span {
    color: var(--first-black-font);
    font-weight: 600;
}
/*── PRODUCT-SECTION ───────────────────────────────*/

/*── GALLERY-SECTION ───────────────────────────────*/
.gallery-section {
    padding: 6rem 0 6rem;
}

.gallery-header {
    padding: 0 1rem 2rem 1rem;
}

.gallery-header > h2 {
    font-size: 2rem;
    font-weight: 400;
    font-optical-sizing: auto;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: var(--third-black-font);
}

.gallery-header > h2 > span {
    color: var(--first-black-font);
    font-family: "Playfair Display", serif;
}

.gallery-track {
    display: flex;
    gap: var(--gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline-start: var(--gap);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-inline: 1rem;
}

.gallery-track::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex-shrink: 0;
    /* mobile: 2 items visible — each ~half viewport minus gap/2 and padding */
    width: calc(100vw - (1rem * 2));
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 90%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #ccc;
    position: relative;
    border-radius: 4px;
    background-color: var(--second-background);
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    filter: blur(12px);
    transform: scale(1.03);
    transition:
        transform 0.45s ease,
        opacity 0.6s ease,
        filter 0.6s ease;
}

.gallery-img img.loaded {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}

.gallery-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-inline: 2px;
    margin-top: 8px;
}

.gallery-meta p {
    font-size: 1rem;
    font-weight: 500;
    color: var(--first-black-font);
    line-height: 1.3;
}

.gallery-meta span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--third-black-font);
    line-height: 1.3;
    max-width: 300px;
}
/*── GALLERY-SECTION ───────────────────────────────*/

/* ── TESTIMONIALS ───────────────────────────────── */
.testimonials-container {
    padding-block: 6rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonials-header {
    padding-inline: 1rem;
}

.testimonials-header > h2 {
    font-size: 2rem;
    font-weight: 400;
    font-optical-sizing: auto;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: var(--third-black-font);
}

.testimonials-header > h2 > span {
    color: var(--first-black-font);
    font-family: "Playfair Display", serif;
}

.testimonials-nav {
    display: none;
}

.testimonials-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline-start: var(--gap);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-inline: 1rem;
    padding-bottom: 4px;
}
.testimonials-track::-webkit-scrollbar {
    display: none;
}

.testimonials-card {
    /* Lebar = viewport - padding kiri - padding kanan */
    flex: 0 0 calc(100vw - (var(--gap) * 2));
    max-width: calc(100vw - (var(--gap) * 2));
    min-height: 400px;
    display: flex;
    flex-direction: column;
    background: var(--second-background);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    gap: 4rem;
    scroll-snap-align: start;
    border-radius: 4px;
}

.testimonials-card p {
    font-size: 20px;
    color: var(--second-black-font);
    font-weight: 500;
    line-height: 1.5;
    flex: 1;
}

.testimonials-card-footer {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 12px;
}

.testimonials-card-footer span:nth-child(1) {
    font-size: 1rem;
    color: var(--second-black-font);
    font-weight: 500;
}

.testimonials-card-footer span:nth-child(2) {
    font-size: 1rem;
    color: var(--second-black-font);
    font-weight: 400;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding-inline: var(--gap);
}
.testimonials-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d0d0d0;
    transition:
        background 0.25s,
        width 0.25s;
    cursor: pointer;
    border: none;
    padding: 0;
    flex-shrink: 0;
}
.testimonials-dot.active {
    background: var(--second-black-font);
    width: 18px;
    border-radius: 4px;
}
/* ── TESTIMONIALS ───────────────────────────────── */

/*─── FOOTER ─────────────────────────────────*/
.footer {
    background: var(--first-background);
    padding: 8px 8px 0 8px;
}

.footer-container {
    background: var(--third-background);
    padding: 3rem 1rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--second-white-font);
    line-height: 1.65;
    font-weight: 400;
    max-width: 220px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact h4 {
    font-size: 12px;
    font-weight: 400;
    color: var(--second-white-font);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--gap);
    list-style: none;
}

.footer-contact-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--first-white-font);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.15s;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--third-black-font);
    line-height: 1.5;
    font-weight: 300;
}

/*─── AKHIR-FOOTER ─────────────────────────────────*/

/* DEKSTOP */
@media (min-width: 768px) {
    /*───NAVBAR─────────────────────────────────*/
    .navbar-inner {
        padding: 1rem 40px;
    }

    .navbar-menu {
        display: flex;
        align-items: center;
        list-style: none;
        gap: var(--gap);
    }

    .navbar-menu a {
        text-decoration: none;
        color: var(--second-black-font);
        font-size: 16px;
        font-weight: 500;
        padding: 8px var(--gap);
        border-radius: 32px;
    }

    .mobile-menu {
        display: none;
    }

    .hamburger {
        display: none;
    }

    .navbar-wrapper {
        display: flex;
        flex-direction: row;
        gap: 2rem;
    }

    .cta-btn {
        background: whitesmoke;
        color: var(--first-black-font);
        padding: 5px 5px 5px 15px;
        text-decoration: none;
        border-radius: 29px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .cta-btn span {
        text-align: center;
        font-weight: 500;
        font-style: normal;
        font-size: 16px;
    }

    .cta-btn .cta-btn-background {
        background: #25d366;
        border-radius: 50%;
        padding: 6px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    /*───AKHIR-NAVBAR─────────────────────────────────*/

    /*───HERO-SECTION─────────────────────────────────*/

    .hero-img {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        transform: translate(-50%, -50%);
        z-index: 0;
        pointer-events: none;
    }

    .vignatte-container {
        display: none;
    }

    .hero-content {
        padding: 0 2rem;
    }

    .hero-content h1 {
        font-size: calc(2.2rem * 1.2);
        line-height: 1.2;
        font-weight: 500;
        margin-bottom: 1rem;
        padding: 0 1rem;
    }

    .hero-content p {
        font-size: calc(13px * 1.2);
        max-width: 650px;
    }

    .hero-content .hero-cta-whatsapp {
        display: none;
    }

    /*───AKHIR-HERO-SECTION─────────────────────────────────*/

    .quote-container h2 {
        font-size: 3rem;
    }

    .quote-container p {
        max-width: none;
    }

    /*───SERVICE-SECTION─────────────────────────────────*/
    .service-section {
        padding: 8rem 2rem;
        gap: calc(2rem * 1.2);
    }

    .service-header {
    }

    .service-header h2 {
        font-size: calc(2rem * 1.2);
    }

    .service-wrapper {
        flex-direction: row;
        gap: 1rem;
    }

    .service-card {
        height: 364px;
    }

    .service-card.is-open .service-toggle-btn {
        display: none;
    }

    .service-toggle-btn {
        position: absolute;
        top: 16px;
        right: 16px;
    }

    .service-overlay-body {
        gap: 10rem;
        justify-content: flex-start;
    }

    .service-card-title h3 {
        font-size: calc(16px * 1.2);
    }

    .service-overlay-body h3 {
        font-size: calc(16px * 1.2);
    }

    .service-overlay-body p {
        font-size: calc(14px * 1.2);
    }
    /*───AKHIR-SERVICE-SECTION─────────────────────────────────*/

    /*── PRODUCT-SECTION ───────────────────────────────*/
    .grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    .cell {
        min-height: 200px;
    }

    .product-container {
        padding: 8rem 2rem;
        gap: calc(2rem * 1.2);
    }

    .cell-product {
        max-width: 450px;
        aspect-ratio: 1 / 1;
    }

    .cell-product img {
        width: 70%;
    }

    .product-container h2 {
        font-size: calc(2rem * 1.2);
        max-width: none;
    }

    .cell-content p {
        font-size: calc(14px * 1.2);
    }

    .cell-content span {
        font-size: calc(14px * 1.2);
    }

    .booking-btn {
        padding: 10px 0;
    }

    .booking-btn span {
        font-size: calc(14px * 1.2);
    }

    /*FONT--SIZE*/
    .modal-label-top {
        font-size: calc(11px * 1.1);
    }

    .modal-title {
        font-size: calc(22px * 1.1);
    }

    .modal-subtitle {
        font-size: calc(13px * 1.1);
    }
    /*── PRODUCT-SECTION ───────────────────────────────*/

    /*── GALLERY-SECTION ───────────────────────────────*/
    .gallery-section {
        padding: 8rem 0 8rem;
    }

    .gallery-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 2rem calc(2rem * 1.2) 2rem;
    }

    .gallery-header h2 {
        font-size: calc(2rem * 1.2);
        max-width: none;
    }

    .gallery-nav {
        display: flex;
        gap: 8px;
    }

    .gallery-track {
        gap: 1rem;
        scroll-padding-inline-start: 2rem;
        padding-inline: 2rem;
    }

    .gallery-nav-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: transparent;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition:
            background 0.15s,
            border-color 0.15s;
        color: var(--first-black-font);
    }

    .gallery-nav-btn:disabled {
        opacity: 0.2;
        cursor: default;
        pointer-events: none;
    }

    .gallery-item {
        width: calc((100vw - (2rem * 2) - (1rem * 2)) / 3);
        gap: 1rem;
    }

    .gallery-img {
        height: 80%;
    }

    .gallery-meta p {
        font-size: calc(1rem * 1.2);
    }

    .gallery-meta span {
        font-size: calc(1rem * 1.2);
        max-width: 400px;
    }
    /*── GALLERY-SECTION ───────────────────────────────*/

    /* ── TESTIMONIALS ───────────────────────────────── */
    .testimonials-container {
        padding: 6rem 2rem 0 2rem;
        gap: calc(2rem * 1.2);
    }

    .testimonials-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-inline: 0;
    }

    .testimonials-header h2 {
        font-size: calc(2rem * 1.2);
        max-width: none;
    }

    .testimonials-nav {
        display: flex;
        gap: 8px;
    }

    .testimonials-nav-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: none;
        background: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        transition:
            background 0.15s,
            border-color 0.15s;
    }

    .testimonials-nav-btn svg {
        fill: var(--first-black-font);
        transition: fill 0.15s;
    }

    .testimonials-nav-btn:disabled {
        opacity: 0.2;
        cursor: default;
        pointer-events: none;
    }

    .testimonials-track {
        overflow: hidden;
        padding-inline: 0;
        scroll-padding-inline-start: 0;
    }

    .testimonials-card {
        flex: 0 0 calc((100% - (var(--gap) * 2)) / 3);
        max-width: none;
        opacity: 0;
        transform: translateY(16px);
        pointer-events: none;
        transition:
            opacity 0.35s ease,
            transform 0.35s ease;
        display: none;
        gap: calc(4rem * 1.2);
    }

    .testimonials-card p {
        font-size: calc(20px * 1.2);
    }

    .testimonials-card.visible {
        display: flex;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .testimonials-card.animating {
        display: flex;
        opacity: 0;
        transform: translateY(16px);
    }

    .testimonials-dots {
        display: none;
    }

    .testimonials-card-footer span:nth-child(1),
    .testimonials-card-footer span:nth-child(2) {
        font-size: calc(1rem * 1.2);
    }
    /* ── TESTIMONIALS ───────────────────────────────── */

    /*─── FOOTER ─────────────────────────────────*/
    .footer-container {
        padding: 4rem 2rem 3rem;
    }

    .footer-brand {
        max-width: 240px;
    }

    .footer-brand p {
        max-width: 100%;
    }
}

@media (hover: hover) and (pointer: fine) {
    /*NAVBAR*/
    .navbar-menu a:hover {
        color: var(--third-black-font);
    }

    /*NAVBAR TRANSPARENT STATE*/
    .navbar.at-hero:not(.menu-open) .cta-btn:hover {
        background: rgba(255, 255, 255, 0.8);
        border: none;
    }
    /*NAVBAR DEFAULT STATE*/
    .cta-btn:hover {
        border: 1px #c0c0c0 solid;
    }

    /*HERO-SECTION*/
    .hero-cta:hover {
        background: rgba(255, 255, 255, 0.8);
    }

    /*GALLERY-SECTION*/
    .gallery-item:hover .gallery-img img {
        transform: scale(1.04);
    }

    /*FOOTER*/
    .footer-contact-list li a:hover {
        color: rgba(255, 255, 255, 0.7);
    }
}
