/* =========================================================
   LUMIÈRE MOMENTS
   HOME 1 — MAIN STYLESHEET
   ========================================================= */


/* =========================================================
   01. RESET
   ========================================================= */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    min-width: 320px;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--color-background);
    color: var(--color-text);
    transition:
        background-color 0.35s ease,
        color 0.35s ease;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    line-height: 1.15;
}

p {
    margin-bottom: 1rem;
}

::selection {
    background: var(--color-primary);
    color: var(--color-primary-ink);
}


/* =========================================================
   02. ACCESSIBILITY
   ========================================================= */

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 10000;
    padding: 10px 16px;
    background: var(--color-primary);
    color: var(--color-primary-ink);
    border-radius: 4px;
    transform: translateY(-150%);
    transition: transform 0.25s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 4px;
}


/* =========================================================
   03. CONTAINER
   ========================================================= */

.container {
    width: min(1240px, calc(100% - 48px));
    margin-inline: auto;
}


/* =========================================================
   04. GLOBAL TYPOGRAPHY
   ========================================================= */

.section {
    padding: 110px 0;
}

.section-header {
    max-width: 760px;
    margin-bottom: 55px;
}

.section-kicker,
.hero-kicker {
    display: inline-block;
    margin-bottom: 15px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-transform: uppercase;
    color: var(--color-primary);
}

.section-title {
    margin-bottom: 18px;
    font-size: clamp(38px, 4vw, 62px);
    letter-spacing: -0.02em;
    color: var(--color-heading);
}

.section-description {
    max-width: 680px;
    margin-bottom: 0;
    color: var(--color-muted);
    font-size: 16px;
}

.signature {
    margin-top: 30px;
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-style: italic;
    color: var(--color-primary);
}


/* =========================================================
   05. PAGE LOADER
   ========================================================= */

.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-background);
    visibility: visible;
    opacity: 1;
    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;
}

.loader.is-hidden {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.loader-content {
    width: min(360px, calc(100% - 48px));
    text-align: center;
}

.loader-logo {
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    font-weight: 600;
    letter-spacing: 0.12em;
    line-height: 1;
    color: var(--color-heading);
}

.loader-logo span {
    display: block;
    margin-top: 7px;
    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.38em;
    color: var(--color-primary);
}

.loader-line {
    width: 100%;
    height: 1px;
    margin-top: 28px;
    overflow: hidden;
    background: var(--color-border);
}

.loader-line::after {
    content: "";
    display: block;
    width: 45%;
    height: 100%;
    background: var(--color-primary);
    animation: loaderProgress 1.5s ease-in-out infinite;
}

@keyframes loaderProgress {
    0% {
        transform: translateX(-110%);
    }

    100% {
        transform: translateX(330%);
    }
}


/* =========================================================
   06. HEADER / NAVBAR
   ========================================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    width: 100%;
    border-bottom: 1px solid transparent;
    background: transparent;
    transition:
        background-color 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.site-header.scrolled {
    background: var(--color-header-scrolled);
    border-color: var(--color-border);
    box-shadow: var(--shadow-header);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.navbar {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 84px;
    gap: 25px;
}


/* =========================================================
   07. LOGO
   ========================================================= */

.logo {
    position: relative;
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    flex-shrink: 0;
    width: max-content;
    text-align: left;
    direction: ltr;
    unicode-bidi: isolate;
    line-height: 1;
}

.logo-main {
    font-family: "Cormorant Garamond", serif;
    font-size: 27px;
    font-weight: 600;
    letter-spacing: 0.12em;
    white-space: nowrap;
}

.logo-sub {
    margin-top: 5px;
    font-family: "Manrope", sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.46em;
    text-indent: 0.46em;
    white-space: nowrap;
    color: var(--color-primary);
}

.logo:hover {
    color: var(--color-heading);
}


/* =========================================================
   08. DESKTOP NAVIGATION
   ========================================================= */

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 4px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    padding: 8px 13px;
    border-radius: 4px;
    background: transparent;
    color: var(--color-nav-text);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition:
        color 0.25s ease,
        background-color 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.dropdown-arrow {
    font-size: 9px;
    transition: transform 0.25s ease;
}

.nav-item.has-dropdown:hover .dropdown-arrow,
.nav-item.has-dropdown.is-open .dropdown-arrow {
    transform: rotate(180deg);
}


/* =========================================================
   09. DESKTOP DROPDOWN
   ========================================================= */

.dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 185px;
    padding: 8px;
    border: 1px solid var(--color-border);
    border-radius: 5px;
    background: var(--color-dropdown);
    box-shadow: var(--shadow-dropdown);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        transform 0.22s ease;
}

.nav-item.has-dropdown:hover > .dropdown,
.nav-item.has-dropdown.is-open > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 10px 12px;
    border-radius: 3px;
    color: var(--color-nav-text);
    font-size: 13px;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.dropdown a:hover,
.dropdown a.active {
    background: var(--color-surface-2);
    color: var(--color-primary);
}


/* =========================================================
   10. NAV CONTROLS
   ========================================================= */

.nav-controls {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.control-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    color: var(--color-nav-text);
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.control-btn:hover {
    background: var(--color-surface-2);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.mobile-account {
    display: none;
}

.hamburger {
    display: none;
}

/* =========================================================
   NAVBAR CONTRAST FIX
   Transparent over hero = LIGHT TEXT
   Scrolled = THEME TEXT
========================================================= */


/* =========================================================
   01. TRANSPARENT NAVBAR
   Used while page is at the top
========================================================= */

.site-header:not(.scrolled) .logo-main {
    color: #ffffff;
}

.site-header:not(.scrolled) .nav-link {
    color: #ffffff;
}

.site-header:not(.scrolled) .control-btn {
    color: #ffffff;
}


/* Keep logo "MOMENTS" accent color */

.site-header:not(.scrolled) .logo-sub {
    color: var(--color-primary);
}


/* Dropdown arrow */

.site-header:not(.scrolled) .dropdown-arrow {
    color: #ffffff;
}


/* Hover state */

.site-header:not(.scrolled) .nav-link:hover,
.site-header:not(.scrolled) .nav-link.active {
    color: var(--color-primary);
}


/* Controls hover */

.site-header:not(.scrolled) .control-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-primary);
}


/* =========================================================
   02. SCROLLED NAVBAR
   Existing theme colors take over
========================================================= */

.site-header.scrolled .logo-main {
    color: var(--color-heading);
}

.site-header.scrolled .nav-link {
    color: var(--color-nav-text);
}

.site-header.scrolled .control-btn {
    color: var(--color-nav-text);
}

.site-header.scrolled .dropdown-arrow {
    color: var(--color-nav-text);
}


/* Scrolled hover */

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
    color: var(--color-primary);
}


/* =========================================================
   03. SMOOTH COLOR TRANSITION
========================================================= */

.site-header .logo-main,
.site-header .logo-sub,
.site-header .nav-link,
.site-header .dropdown-arrow,
.site-header .control-btn {
    transition:
        color 0.35s ease,
        background-color 0.35s ease;
}
/* =========================================================
   11. MOBILE MENU
   ========================================================= */

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1900;
    width: 100%;
    min-height: 100dvh;
    overflow-y: auto;
    background: var(--color-mobile-menu);
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    transition:
        transform 0.4s cubic-bezier(0.77, 0, 0.175, 1),
        opacity 0.3s ease,
        visibility 0.4s ease;
}

.mobile-menu.open {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    padding: 25px;
}

.mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--color-border);
}

.close-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    color: var(--color-heading);
    font-size: 20px;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.close-menu:hover {
    background: var(--color-surface-2);
    color: var(--color-primary);
    transform: rotate(90deg);
}

.mobile-menu nav {
    flex: 1;
    padding: 30px 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
}

.mobile-nav > li {
    border-bottom: 1px solid var(--color-border);
}

.mobile-nav-link,
.mobile-home-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 58px;
    padding: 10px 2px;
    background: transparent;
    color: var(--color-heading);
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    font-weight: 500;
    text-align: left;
    transition: color 0.25s ease;
}

.mobile-nav-link:hover,
.mobile-home-toggle:hover {
    color: var(--color-primary);
}

.mobile-home-toggle i {
    font-size: 12px;
    transition: transform 0.25s ease;
}

.mobile-home-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: grid;
    grid-template-rows: 0fr;
    overflow: hidden;
    transition: grid-template-rows 0.3s ease;
}

.mobile-submenu::before {
    content: "";
    min-height: 0;
}

.mobile-submenu.open {
    grid-template-rows: 1fr;
}

.mobile-submenu a {
    display: block;
    min-height: 0;
    padding: 0 10px;
    color: var(--color-muted);
    font-size: 14px;
    opacity: 0;
    transition:
        padding 0.3s ease,
        opacity 0.3s ease,
        color 0.25s ease;
}

.mobile-submenu.open a {
    padding-top: 8px;
    padding-bottom: 8px;
    opacity: 1;
}

.mobile-submenu a:hover,
.mobile-submenu a.active {
    color: var(--color-primary);
}


/* =========================================================
   12. MOBILE CONTROLS
   ========================================================= */

.mobile-controls {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding-top: 22px;
    border-top: 1px solid var(--color-border);
}

.mobile-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 8px;
    border-radius: 5px;
    background: var(--color-surface);
    color: var(--color-nav-text);
    font-size: 12px;
    font-weight: 600;
    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}

.mobile-control:hover {
    background: var(--color-surface-2);
    color: var(--color-primary);
}

.mobile-control i {
    font-size: 14px;
}


/* =========================================================
   13. HERO
   ========================================================= */

.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            var(--hero-overlay-start),
            var(--hero-overlay-end)
        ),
        url("../images/Hero image!.avif") center / cover no-repeat;
}

.hero-home-2 {
    background:
        linear-gradient(
            90deg,
            var(--hero-overlay-start),
            var(--hero-overlay-end)
        ),
        url("../images/hero 2.avif") center / cover no-repeat;
}

/* =========================================================
   PAGE-SPECIFIC HERO IMAGES
========================================================= */

.hero-about {
    background:
        linear-gradient(
            90deg,
            var(--hero-overlay-start),
            var(--hero-overlay-end)
        ),
        url("../images/hero 3.avif") center / cover no-repeat;
}

.hero-services {
    background:
        linear-gradient(
            90deg,
            var(--hero-overlay-start),
            var(--hero-overlay-end)
        ),
        url("../images/hero 45.avif") center / cover no-repeat;
}

.hero-service-details {
    background:
        linear-gradient(
            90deg,
            var(--hero-overlay-start),
            var(--hero-overlay-end)
        ),
        url("../images/hero 5.avif") center / cover no-repeat;
}

.hero-portfolio {
    background:
        linear-gradient(
            90deg,
            var(--hero-overlay-start),
            var(--hero-overlay-end)
        ),
        url("../images/hero 6.avif") center / cover no-repeat;
}

.hero-portfolio-details {
    background:
        linear-gradient(
            90deg,
            var(--hero-overlay-start),
            var(--hero-overlay-end)
        ),
        url("../images/hero 7.avif") center / cover no-repeat;
}

.hero-packages {
    background:
        linear-gradient(
            90deg,
            var(--hero-overlay-start),
            var(--hero-overlay-end)
        ),
        url("../images/hero 8.avif") center / cover no-repeat;
}

.hero-addons {
    background:
        linear-gradient(
            90deg,
            var(--hero-overlay-start),
            var(--hero-overlay-end)
        ),
        url("../images/hero 9.avif") center / cover no-repeat;
}

.hero-contact {
    background:
        linear-gradient(
            90deg,
            var(--hero-overlay-start),
            var(--hero-overlay-end)
        ),
        url("../images/hero 10.avif") center / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--hero-overlay);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    width: min(720px, 100%);
    padding-top: 84px;
}

.hero-kicker {
    color: var(--hero-kicker);
}

.hero-title {
    max-width: 760px;
    margin-bottom: 25px;
    font-size: clamp(55px, 7vw, 100px);
    font-weight: 500;
    letter-spacing: -0.035em;
    color: var(--hero-title);
}

.hero-title em {
    display: block;
    font-weight: 400;
    color: var(--color-primary);
}

.hero-description {
    max-width: 610px;
    margin-bottom: 32px;
    color: var(--hero-description);
    font-size: 17px;
}

.hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-scroll {
    position: absolute;
    right: 35px;
    bottom: 35px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--hero-description);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.hero-scroll-line {
    display: block;
    width: 1px;
    height: 65px;
    background: var(--color-primary);
}


/* =========================================================
   14. BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 50px;
    padding: 12px 23px;
    border: 1px solid transparent;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.btn i {
    font-size: 11px;
    transition: transform 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:hover i {
    transform: translateX(4px);
}

.btn-primary {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-primary-ink);
    box-shadow: var(--shadow-button);
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
    background: transparent;
}

.btn-outline-light:hover {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: var(--color-primary-ink);
}


/* =========================================================
   15. FEATURED PORTFOLIO
========================================================= */

.portfolio-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.825fr 0.825fr;
    gap: 18px;
    min-height: 0;
}

.portfolio-card {
    position: relative;
    height: 520px;
    min-height: 0;
    overflow: hidden;
    border-radius: 4px;
    background: var(--color-surface);
}

.portfolio-card.small {
    height: 520px;
    min-height: 0;
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-card:hover img {
    transform: scale(1.06);
}

.portfolio-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 28px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.72),
        rgba(0, 0, 0, 0.04) 65%
    );
}

.portfolio-info span {
    display: block;
    margin-bottom: 5px;
    color: var(--color-primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.portfolio-info h3 {
    color: #fff;
    font-size: 30px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

.intro-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 460px;
    aspect-ratio: 4 / 5;
    background: var(--color-surface);
    margin: 0 auto;
}

.intro-image::after {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    pointer-events: none;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.intro-content {
    width: 100%;
    max-width: 580px;
}

.intro-content .section-header {
    margin-bottom: 25px;
}

.intro-text {
    max-width: 550px;
    color: var(--color-muted);
}
/* =========================================================
   17. SERVICES
   ========================================================= */

.services-section {
    background: var(--color-surface);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    border: 1px solid var(--color-border);
    background: var(--color-border);
}

.service-card {
    min-height: 300px;
    padding: 38px 30px;
    background: var(--color-surface);
    transition:
        background-color 0.3s ease,
        transform 0.3s ease;
}

.service-card:hover {
    position: relative;
    z-index: 1;
    background: var(--color-surface-2);
    transform: translateY(-5px);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 30px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-primary);
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 30px;
}

.service-card p {
    margin-bottom: 0;
    color: var(--color-muted);
    font-size: 14px;
}


/* =========================================================
   18. EVENTS
   ========================================================= */

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.event-card {
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
}

.event-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.05);
}

.event-content {
    padding: 28px;
}

.event-content > span {
    display: block;
    margin-bottom: 8px;
    color: var(--color-primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.event-content h3 {
    margin-bottom: 12px;
    font-size: 30px;
}

.event-content p {
    margin-bottom: 0;
    color: var(--color-muted);
    font-size: 14px;
}


/* =========================================================
   19. PHILOSOPHY
   ========================================================= */

.philosophy {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 600px;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            var(--philosophy-overlay-start),
            var(--philosophy-overlay-end)
        ),
        var(--philosophy-image) center / cover no-repeat;
}



.philosophy-content {
    max-width: 820px;
    padding: 100px 0;
}

.philosophy .section-title {
    max-width: 780px;
    color: var(--philosophy-title);
    font-size: clamp(44px, 5.5vw, 78px);
}

.philosophy-content > p:last-child {
    max-width: 650px;
    margin-bottom: 0;
    color: var(--philosophy-text);
    font-size: 17px;
}


/* =========================================================
   20. PROCESS
   ========================================================= */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

.process-item {
    position: relative;
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
}

.process-number {
    margin-bottom: 25px;
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.process-item h3 {
    margin-bottom: 12px;
    font-size: 31px;
}

.process-item p {
    margin-bottom: 0;
    color: var(--color-muted);
    font-size: 14px;
}


/* =========================================================
   21. STATS
   ========================================================= */

.stats {
    padding-top: 75px;
    padding-bottom: 75px;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    background: var(--color-surface);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat {
    padding: 10px 25px;
    text-align: center;
    border-right: 1px solid var(--color-border);
}

.stat:last-child {
    border-right: 0;
}

.stat strong {
    display: block;
    margin-bottom: 5px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(45px, 5vw, 70px);
    font-weight: 500;
    line-height: 1;
    color: var(--color-primary);
}

.stat span {
    color: var(--color-muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


/* =========================================================
   22. TESTIMONIAL
   ========================================================= */

.testimonial {
    max-width: 900px;
    margin-inline: auto;
    padding: 70px 50px;
    text-align: center;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.quote-icon {
    margin-bottom: 25px;
    color: var(--color-primary);
    font-size: 28px;
}

.testimonial blockquote {
    margin-bottom: 25px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-heading);
}

.testimonial-author {
    color: var(--color-muted);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
}


/* =========================================================
   23. PACKAGES
   ========================================================= */

.packages-section {
    background: var(--color-surface);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.package-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 42px 35px;
    border: 1px solid var(--color-border);
    background: var(--color-background);
}

.package-card.featured {
    border-color: var(--color-primary);
    box-shadow: inset 0 3px 0 var(--color-primary);
}

.package-label {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--color-primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.package-card h3 {
    margin-bottom: 12px;
    font-size: 38px;
}

.package-price {
    margin-bottom: 28px;
    color: var(--color-heading);
    font-size: 14px;
    font-weight: 700;
}

.package-card ul {
    margin-bottom: 32px;
}

.package-card li {
    position: relative;
    padding: 10px 0 10px 21px;
    border-top: 1px solid var(--color-border);
    color: var(--color-muted);
    font-size: 13px;
}

.package-card li:last-child {
    border-bottom: 1px solid var(--color-border);
}

.package-card li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.package-card .btn {
    margin-top: auto;
    align-self: flex-start;
}


/* =========================================================
   24. BOOKING CTA
   ========================================================= */

.booking-cta {
    position: relative;
    padding: 125px 0;
    text-align: center;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            var(--cta-overlay-start),
            var(--cta-overlay-end)
        ),
        var(--cta-image) center / cover no-repeat;
}


.booking-cta .container {
    position: relative;
    z-index: 1;
}

.booking-cta > .container > div {
    max-width: 760px;
    margin-inline: auto;
}

.booking-cta .section-title {
    color: var(--cta-title);
}

.booking-cta p:not(.section-kicker) {
    max-width: 650px;
    margin: 0 auto 30px;
    color: var(--cta-text);
}


/* =========================================================
   25. FOOTER
   ========================================================= */

.footer {
    padding: 85px 0 25px;
    background: var(--color-footer);
    color: var(--color-footer-text);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 55px;
    padding-bottom: 60px;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-description {
    max-width: 340px;
    margin-bottom: 25px;
    color: var(--color-footer-muted);
    font-size: 13px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-footer-text);
    font-size: 13px;
    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.social-links a:hover {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: var(--color-primary-ink);
}

.footer h4 {
    margin-bottom: 22px;
    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.footer-links li {
    margin-bottom: 9px;
}

.footer-links a {
    color: var(--color-footer-muted);
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-contact {
    color: var(--color-footer-muted);
    font-size: 13px;
    line-height: 2;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid var(--color-border);
    color: var(--color-footer-muted);
    font-size: 11px;
}


/* =========================================================
   26. BACK TO TOP
   ========================================================= */

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 1500;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    background: var(--color-surface);
    color: var(--color-heading);
    box-shadow: var(--shadow-button);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        background-color 0.25s ease,
        color 0.25s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-primary);
    color: var(--color-primary-ink);
    border-color: var(--color-primary);
}


/* =========================================================
   27. IMAGE / CONTENT SAFETY
   ========================================================= */

.hero,
.philosophy,
.booking-cta {
    background-color: var(--color-surface);
}

/*
   AOS should not promote every animated element to its own
   compositor layer during the first responsive render.
   The browser can promote elements naturally while animating.
*/
[data-aos] {
    will-change: auto;
}

[data-aos].aos-animate {
    will-change: auto;
}

/*
   Keep all AOS content in its normal layout state until the
   initial responsive layout has settled. AOS is enabled by
   JavaScript only after the window load + two paint frames.
*/
/* html.aos-pending [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
} */


/* =========================================================
   28. TABLET
   768px – 1024px
   ========================================================= */




/* =========================================================
   29. MOBILE
   320px – 767px
   ========================================================= */




/* =========================================================
   30. LARGE DEVICES
   1025px – 1280px
   ========================================================= */



/* =========================================================
   11. RESPONSIVE NAVBAR
   ========================================================= */


/* =========================================================
   DESKTOP DEFAULT
   1025px+
   ========================================================= */

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 4px;
}

.desktop-controls {
    display: flex;
    align-items: center;
    gap: 5px;
}

.mobile-account,
.hamburger,
.mobile-menu {
    display: none;
}


/* =========================================================
   LARGE DESKTOP
   1025px – 1280px
   ========================================================= */




/* =========================================================
   TABLET
   768px – 1024px
   ========================================================= */




/* =========================================================
   MOBILE
   320px – 767px
   ========================================================= */




/* =========================================================
   SMALL MOBILE
   320px – 480px
   ========================================================= */




/* =========================================================
   VERY SMALL MOBILE
   BELOW 320px
   ========================================================= */




/* =========================================================
   REDUCED MOTION
   ========================================================= */


    /* -----------------------------------------------------
       MOBILE DRAWER
       ----------------------------------------------------- */

    .mobile-menu {
        display: block;

        position: fixed;
        inset: 0;

        z-index: 2000;

        width: 100%;
        height: 100dvh;

        background: var(--color-mobile-menu);

        visibility: hidden;
        opacity: 0;

        transform: translateX(100%);

        transition:
            transform 0.45s ease,
            opacity 0.3s ease,
            visibility 0.45s ease;

        overflow-y: auto;
    }

    .mobile-menu.open {
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
    }

    .mobile-menu-inner {
        min-height: 100%;

        padding: 24px;

        display: flex;
        flex-direction: column;
    }

    .mobile-menu-top {
        display: flex;
        align-items: center;
        justify-content: space-between;

        padding-bottom: 24px;

        border-bottom: 1px solid var(--color-border);
    }

    .close-menu {
        width: 44px;
        height: 44px;

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

        border: 0;
        background: transparent;

        color: var(--color-text);

        cursor: pointer;

        font-size: 24px;
    }

    .mobile-nav {
        list-style: none;

        margin: 0;
        padding: 24px 0;
    }

    .mobile-nav > li {
        border-bottom: 1px solid var(--color-border);
    }

    .mobile-nav-link,
    .mobile-home-toggle {
        width: 100%;
        min-height: 56px;

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

        padding: 0;

        border: 0;
        background: transparent;

        color: var(--color-text);

        text-decoration: none;

        font-family: inherit;
        font-size: 17px;
        font-weight: 500;

        cursor: pointer;
        text-align: left;
    }

    .mobile-home-toggle i {
        transition: transform 0.3s ease;
    }

    .mobile-home-toggle[aria-expanded="true"] i {
        transform: rotate(180deg);
    }

    .mobile-submenu {
        display: none;

        padding: 0 0 14px 16px;
    }

    .mobile-submenu.open {
        display: block;
    }

    .mobile-submenu a {
        display: block;

        padding: 10px 0;

        color: var(--color-muted);

        text-decoration: none;
    }

    .mobile-submenu a.active,
    .mobile-submenu a:hover {
        color: var(--color-primary);
    }

    /* Drawer bottom controls */
    .mobile-controls {
        margin-top: auto;

        padding-top: 20px;

        border-top: 1px solid var(--color-border);

        display: grid;

        grid-template-columns: repeat(3, 1fr);

        gap: 8px;
    }

    .mobile-control {
        min-height: 52px;

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

        gap: 8px;

        border: 1px solid var(--color-border);

        background: transparent;

        color: var(--color-text);

        text-decoration: none;

        cursor: pointer;

        font: inherit;
    }


/* =========================================================
   MOBILE
   320px – 767px
   ========================================================= */




/* =========================================================
   VERY SMALL MOBILE
   Below 320px
   ========================================================= */


/* =========================================================
   31. REDUCED MOTION
   ========================================================= */



/* =========================================================
   SERVICES CARDS
   Keep all CTA buttons aligned at the bottom
========================================================= */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card p {
    flex: 0 0 auto;
}

.service-card-btn {
    margin-top: auto;
    align-self: flex-start;
}

.services-grid .service-card {
    border-right: 1px solid var(--color-border);
}

/* Last card should not have a divider */
.services-grid .service-card:last-child {
    border-right: none;
}

/* RTL support */
html[dir="rtl"] .services-grid .service-card {
    border-right: none;
    border-left: 1px solid var(--color-border);
}

html[dir="rtl"] .services-grid .service-card:last-child {
    border-left: none;
}

/* =========================================================
   SERVICES CARDS
   Responsive
========================================================= */

/* Large Devices: 1024px – 1280px */


/* Tablet: 768px – 1023px */


/* Mobile: 320px – 767px */


/* =========================================================
   IMAGE FEATURE
   ========================================================= */

.image-feature-section {
    overflow: hidden;
}

.image-feature-header {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.image-feature-header .section-description {
    max-width: 650px;
    margin: 18px auto 0;
}


/* =========================================================
   THREE IMAGE GRID
   ========================================================= */

.image-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}


/* =========================================================
   IMAGE CARD
   ========================================================= */

.image-feature-card {
    min-width: 0;
}

.image-feature-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--color-surface);
}

.image-feature-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.image-feature-card:hover .image-feature-image img {
    transform: scale(1.05);
}


/* =========================================================
   IMAGE CAPTION
   ========================================================= */

.image-feature-caption {
    padding: 22px 4px 0;
}

.image-feature-caption span {
    display: block;
    margin-bottom: 8px;
    color: var(--color-primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.image-feature-caption h3 {
    max-width: 340px;
    color: var(--color-text-strong);
    font-size: 22px;
    line-height: 1.3;
}


/* =========================================================
   TABLET
   768px – 1023px
   ========================================================= */




/* =========================================================
   MOBILE
   320px – 767px
   ========================================================= */



/* =========================================================
   IMAGE FEATURE — NO TOP / BOTTOM GAP
========================================================= */

.image-feature-section {
    padding-top: 0;
    padding-bottom: 0;
}

.image-feature-section {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.image-feature-header {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

/* =========================================================
   PORTFOLIO SHOWCASE
========================================================= */

.portfolio-showcase-section {
    padding: 100px 0;
}

.portfolio-showcase-header {
    max-width: 700px;
    margin: 0 auto 55px;
    text-align: center;
}

.portfolio-showcase-header .section-description {
    max-width: 600px;
    margin: 0 auto;
}

.portfolio-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.portfolio-showcase-card {
    min-width: 0;
}

.portfolio-showcase-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.portfolio-showcase-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.portfolio-showcase-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-showcase-link:hover
.portfolio-showcase-image img {
    transform: scale(1.04);
}

.portfolio-showcase-info {
    padding: 18px 0 0;
}

.portfolio-showcase-info span {
    display: block;
    margin-bottom: 7px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.portfolio-showcase-info h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
}


/* =========================================================
   TABLET
   768px – 1023px
========================================================= */




/* =========================================================
   MOBILE
   320px – 767px
========================================================= */




/* =========================================================
   LUMIÈRE MOMENTS
   PORTFOLIO DETAILS
========================================================= */


/* =========================================================
   STORY INTRO
========================================================= */

.portfolio-story-intro {
    padding-top: 90px;
    padding-bottom: 90px;
}


/* =========================================================
   STORY META
========================================================= */

.portfolio-story-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;

    margin-top: 35px;
    padding-top: 25px;

    border-top: 1px solid var(--color-border);
}

.portfolio-story-meta div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.portfolio-story-meta span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: var(--color-muted);
}

.portfolio-story-meta strong {
    font-size: 14px;
    font-weight: 500;

    color: var(--color-text);
}


/* =========================================================
   STORY SECTIONS
========================================================= */

.portfolio-story-section {
    padding-top: 90px;
    padding-bottom: 90px;
}


/* =========================================================
   CENTERED TEXT BLOCK
========================================================= */

.portfolio-detail-text-block {
    width: min(760px, 100%);
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}

.portfolio-detail-text-block .section-description {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   MEDIUM IMAGE
========================================================= */

.portfolio-detail-medium-image {
    width: min(850px, 100%);

    margin: 55px auto 0;

    overflow: hidden;
}

.portfolio-detail-medium-image img {
    display: block;

    width: 100%;
    height: 500px;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.portfolio-detail-medium-image:hover img {
    transform: scale(1.025);
}


/* =========================================================
   STORY GRID
========================================================= */

.portfolio-story-section .intro-grid {
    align-items: center;
}


/* =========================================================
   PHOTO GALLERY
========================================================= */

.portfolio-detail-gallery-section {
    padding-top: 90px;
    padding-bottom: 90px;
}

.portfolio-detail-gallery {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 24px;
}

.portfolio-detail-gallery-item {
    position: relative;

    margin: 0;

    overflow: hidden;
}

.portfolio-detail-gallery-item img {
    display: block;

    width: 100%;
    height: 420px;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.portfolio-detail-gallery-item:hover img {
    transform: scale(1.035);
}


/* =========================================================
   QUOTE
========================================================= */

.portfolio-detail-quote-section {
    padding-top: 90px;
    padding-bottom: 90px;
}

.portfolio-detail-quote {
    width: min(850px, 100%);
    margin: 0 auto;

    text-align: center;
}

.portfolio-detail-quote > i {
    display: block;

    margin-bottom: 25px;

    font-size: 28px;

    color: var(--color-primary);
}

.portfolio-detail-quote blockquote {
    margin: 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: clamp(
        30px,
        4vw,
        48px
    );

    line-height: 1.2;
    font-weight: 500;

    color: var(--color-text);
}

.portfolio-detail-quote span {
    display: block;

    margin-top: 25px;

    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: var(--color-muted);
}


/* =========================================================
   NEXT STORY
========================================================= */

.portfolio-next-section {
    padding-top: 90px;
    padding-bottom: 90px;
}

.portfolio-next-section .section-header {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}


/* =========================================================
   RTL
========================================================= */

html[dir="rtl"] .portfolio-story-meta {
    direction: rtl;
}


/* =========================================================
   TABLET
========================================================= */




/* =========================================================
   LARGE DEVICES
========================================================= */




/* =========================================================
   MOBILE
========================================================= */



/* =========================================================
   PORTFOLIO DETAILS — SECTION SPACING
========================================================= */

.portfolio-details-page .section {
    padding-top: 70px;
    padding-bottom: 70px;
}

/* Consecutive sections should feel connected */
.portfolio-details-page .portfolio-story-section + .portfolio-story-section {
    padding-top: 45px;
}

/* Intro sections */
.portfolio-details-page .portfolio-story-intro {
    padding-top: 55px;
    padding-bottom: 55px;
}

/* Text-only story blocks */
.portfolio-details-page .portfolio-detail-text-block {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

/* Medium images */
.portfolio-details-page .portfolio-detail-medium-image {
    width: min(100%, 850px);
    margin: 40px auto 0;
}

.portfolio-details-page .portfolio-detail-medium-image img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
}

/* Gallery */
.portfolio-details-page .portfolio-detail-gallery-section {
    padding-top: 55px;
    padding-bottom: 55px;
}

/* Quote */
.portfolio-details-page .portfolio-detail-quote-section {
    padding-top: 55px;
    padding-bottom: 55px;
}


/* =========================================================
   SUBTLE SECTION DIVIDERS
========================================================= */

.portfolio-details-page .portfolio-story-section,
.portfolio-details-page .portfolio-detail-gallery-section,
.portfolio-details-page .portfolio-detail-quote-section {
    position: relative;
}

.portfolio-details-page .portfolio-story-section::before,
.portfolio-details-page .portfolio-detail-gallery-section::before,
.portfolio-details-page .portfolio-detail-quote-section::before {
    content: "";
    display: block;
    width: 100%;
    max-width: 1100px;
    height: 1px;
    background: var(--color-border);
    margin: 0 auto 55px;
}


/* =========================================================
   MOBILE
========================================================= */



/* =========================================================
   PORTFOLIO DETAILS — TWO IMAGE LAYOUT
========================================================= */

.portfolio-detail-two-images {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    width: min(100%, 1050px);
    margin: 45px auto 0;
}

.portfolio-detail-gallery-image {
    width: 100%;
    overflow: hidden;
}

.portfolio-detail-gallery-image img {
    display: block;
    width: 100%;
    height: 430px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-detail-gallery-image:hover img {
    transform: scale(1.03);
}


/* =========================================================
   STORY SECTION SPACING
========================================================= */

.portfolio-details-page .portfolio-story-section {
    padding-top: 65px;
    padding-bottom: 65px;
}

.portfolio-details-page .portfolio-story-section
+ .portfolio-story-section {
    padding-top: 45px;
}


/* =========================================================
   DIVIDER
========================================================= */

.portfolio-details-page .portfolio-story-section::before {
    content: "";
    display: block;
    width: min(100%, 1050px);
    height: 1px;
    background: var(--color-border);
    margin: 0 auto 55px;
}


/* First story section — no divider above */

.portfolio-details-page
.portfolio-story-section:first-of-type::before {
    display: none;
}


/* =========================================================
   TABLET
========================================================= */




/* =========================================================
   MOBILE
========================================================= */



/* =========================================================
   PORTFOLIO DETAILS — CEREMONY 50 / 50
========================================================= */

.portfolio-ceremony-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}


/* =========================================================
   CEREMONY IMAGE
========================================================= */

.portfolio-ceremony-image {
    width: 100%;
    overflow: hidden;
}

.portfolio-ceremony-image img {
    display: block;
    width: 100%;
    height: 460px;
    object-fit: cover;
}


/* =========================================================
   CEREMONY CONTENT
========================================================= */

.portfolio-ceremony-content {
    width: 100%;
    max-width: 100%;
}

.portfolio-ceremony-content .section-header {
    margin-bottom: 25px;
}

.portfolio-ceremony-content .intro-text {
    margin-bottom: 18px;
}


/* =========================================================
   TABLET
========================================================= */




/* =========================================================
   MOBILE
========================================================= */



/* =========================================================
   PORTFOLIO DETAILS — FINAL STORY 50 / 50
========================================================= */

.portfolio-final-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}


/* =========================================================
   FINAL STORY CONTENT
========================================================= */

.portfolio-final-story-content {
    width: 100%;
    max-width: 100%;
}

.portfolio-final-story-content .section-header {
    margin-bottom: 25px;
}

.portfolio-final-story-content .intro-text {
    margin-bottom: 18px;
}


/* =========================================================
   FINAL STORY IMAGE
========================================================= */

.portfolio-final-story-image {
    width: 100%;
    overflow: hidden;
}

.portfolio-final-story-image img {
    display: block;
    width: 100%;
    height: 460px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-final-story-image:hover img {
    transform: scale(1.03);
}


/* =========================================================
   TABLET
========================================================= */




/* =========================================================
   MOBILE
========================================================= */



/* =========================================================
   LUMIÈRE MOMENTS
   PACKAGES PAGE
========================================================= */


/* =========================================================
   PACKAGES INTRO
========================================================= */

.packages-intro-section {
    padding-top: 70px;
    padding-bottom: 30px;
}


.packages-intro-header {
    width: min(100%, 820px);

    margin-left: auto;
    margin-right: auto;
}



/* =========================================================
   PACKAGE CARDS SECTION
========================================================= */

.packages-section {
    padding-top: 30px;
    padding-bottom: 65px;
}


.packages-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;

    align-items: stretch;
}



/* =========================================================
   PACKAGE CARD
========================================================= */

.package-card {
    position: relative;

    display: flex;
    flex-direction: column;

    min-height: 0;

    padding: 26px 24px;

    border: 1px solid var(--color-border);
    border-radius: 2px;

    background: var(--color-surface);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.package-card:hover {
    transform: translateY(-4px);
}


.package-card-featured {
    border-color: var(--color-primary);
}



/* =========================================================
   PACKAGE BADGE
========================================================= */

.package-badge {
    position: absolute;

    top: 14px;
    right: 14px;

    padding: 4px 8px;

    border: 1px solid var(--color-primary);

    background: var(--color-surface);

    color: var(--color-primary);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}


html[dir="rtl"] .package-badge {
    right: auto;
    left: 14px;
}



/* =========================================================
   PACKAGE CARD TOP
========================================================= */

.package-card-top {
    margin-bottom: 16px;
}



/* =========================================================
   PACKAGE ICON
========================================================= */

.package-icon {
    width: 40px;
    height: 40px;

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

    margin-bottom: 14px;

    border: 1px solid var(--color-border);

    color: var(--color-primary);

    font-size: 14px;
}



/* =========================================================
   PACKAGE KICKER
========================================================= */

.package-kicker {
    margin-bottom: 5px;

    color: var(--color-primary);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}



/* =========================================================
   PACKAGE TITLE
========================================================= */

.package-card h2 {
    margin-bottom: 8px;

    color: var(--color-text-strong);

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(26px, 2.3vw, 32px);
    line-height: 1.05;

    font-weight: 600;
}



/* =========================================================
   PACKAGE DESCRIPTION
========================================================= */

.package-description {
    max-width: 320px;

    margin: 0;

    color: var(--color-muted);

    font-size: 12px;
    line-height: 1.6;
}



/* =========================================================
   PACKAGE PRICE
========================================================= */

.package-price {
    display: flex;
    flex-direction: column;

    gap: 2px;

    padding: 14px 0;

    margin-bottom: 16px;

    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}


.package-price span {
    color: var(--color-muted);

    font-size: 9px;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}


.package-price strong {
    color: var(--color-text-strong);

    font-family: "Cormorant Garamond", serif;

    font-size: 26px;
    line-height: 1;

    font-weight: 600;
}



/* =========================================================
   PACKAGE FEATURES
========================================================= */

.package-features {
    display: flex;
    flex-direction: column;

    gap: 7px;

    margin: 0;
    padding: 0;

    list-style: none;
}


.package-features li {
    display: flex;
    align-items: flex-start;

    gap: 8px;

    color: var(--color-muted);

    font-size: 11.5px;
    line-height: 1.45;
}


.package-features li i {
    flex-shrink: 0;

    margin-top: 3px;

    color: var(--color-primary);

    font-size: 9px;
}



/* =========================================================
   PACKAGE CARD ACTION
========================================================= */

.package-card-action {
    margin-top: auto;

    padding-top: 20px;
}


.package-card-action .btn {
    width: 100%;

    justify-content: center;
}



/* =========================================================
   INCLUDED LIST
========================================================= */

.included-list {
    display: flex;
    flex-direction: column;

    gap: 18px;

    margin: 24px 0 0;
    padding: 0;

    list-style: none;
}


.included-list li {
    display: flex;
    align-items: flex-start;

    gap: 12px;
}


.included-list li > i {
    flex-shrink: 0;

    margin-top: 4px;

    color: var(--color-primary);

    font-size: 0.75rem;
}


.included-list li div {
    display: flex;
    flex-direction: column;

    gap: 4px;
}


.included-list strong {
    color: var(--color-text-strong);

    font-size: 0.9rem;
}


.included-list span {
    color: var(--color-muted);

    font-size: 0.8rem;
    line-height: 1.6;
}



/* =========================================================
   ADD-ONS — SLIGHTLY LARGER
========================================================= */

.packages-addon-section {
    padding-top: 65px;
    padding-bottom: 65px;
}


.packages-addon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 50px;

    align-items: stretch;
}


/* =========================================================
   CONTENT
========================================================= */

.packages-addon-grid .intro-content {
    display: flex;
    align-items: center;
}


.packages-addon-grid .section-title {
    max-width: 600px;

    margin-bottom: 16px;
}


.packages-addon-grid .section-description {
    max-width: 560px;

    font-size: 0.95rem;
    line-height: 1.8;
}


.packages-addon-grid .btn {
    margin-top: 24px;
}


/* =========================================================
   IMAGE
========================================================= */

.packages-addon-image {
    width: 100%;

    min-height: 380px;

    height: 380px;

    overflow: hidden;
}


.packages-addon-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================================================
   TABLET
========================================================= */




/* =========================================================
   MOBILE
========================================================= */


/* =========================================================
   FAQ SECTION
========================================================= */

.packages-faq-section {
    padding-top: 65px;
    padding-bottom: 70px;
}


.packages-faq {
    width: min(100%, 900px);

    margin-left: auto;
    margin-right: auto;
}



/* =========================================================
   FAQ ITEM
========================================================= */

.package-faq-item {
    border-top: 1px solid var(--color-border);
}


.package-faq-item:last-child {
    border-bottom: 1px solid var(--color-border);
}



/* =========================================================
   FAQ QUESTION
========================================================= */

.package-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 20px 0;

    cursor: pointer;

    list-style: none;

    color: var(--color-text-strong);

    font-family: "Cormorant Garamond", serif;

    font-size: 1.25rem;
    font-weight: 600;
}


.package-faq-item summary::-webkit-details-marker {
    display: none;
}


.package-faq-item summary i {
    flex-shrink: 0;

    color: var(--color-primary);

    font-size: 0.75rem;

    transition: transform 0.3s ease;
}


.package-faq-item[open] summary i {
    transform: rotate(45deg);
}



/* =========================================================
   FAQ ANSWER
========================================================= */

.package-faq-answer {
    padding: 0 40px 20px 0;
}


.package-faq-answer p {
    margin: 0;

    color: var(--color-muted);

    font-size: 0.86rem;
    line-height: 1.7;
}



/* =========================================================
   FINAL CTA
========================================================= */

.packages-cta-section {
    padding-top: 65px;
    padding-bottom: 70px;
}



/* =========================================================
   RTL
========================================================= */

html[dir="rtl"] .package-badge {
    right: auto;
    left: 14px;
}


html[dir="rtl"] .package-faq-answer {
    padding-right: 0;
    padding-left: 40px;
}



/* =========================================================
   TABLET
   768px — 1024px
========================================================= */





/* =========================================================
   MOBILE
   320px — 767px
========================================================= */





/* =========================================================
   VERY SMALL MOBILE
   320px — 479px
========================================================= */



/* =========================================================
   SECTION DIVIDER
========================================================= */


/* =========================================================
   PREMIUM SECTION DIVIDER
========================================================= */



/* =========================================================
   ADD-ONS
========================================================= */

.addons-grid {
    row-gap: 0;
}

.addon-card {
    min-height: 100%;
}

.addon-card .service-card-btn {
    margin-top: auto;
}

.addons-process-grid .service-card {
    min-height: 100%;
}

.addons-process-grid .service-icon span {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
}


/* =========================================================
   ADD-ONS RESPONSIVE
========================================================= */










/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 70px;
    align-items: start;
}


/* =========================================================
   CONTACT CONTENT
========================================================= */

.contact-content {
    min-width: 0;
}

.contact-content .section-header {
    margin-bottom: 45px;
}


.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}


.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}


.contact-detail-icon {
    width: 46px;
    height: 46px;

    flex: 0 0 46px;

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

    border: 1px solid var(--color-border);

    color: var(--color-primary);
}


.contact-detail-icon i {
    font-size: 16px;
}


.contact-detail span {
    display: block;

    margin-bottom: 6px;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: var(--color-muted);
}


.contact-detail p {
    margin: 0;

    font-size: 15px;
    line-height: 1.8;

    color: var(--color-text);
}


.contact-detail a {
    color: inherit;
    text-decoration: none;

    transition:
        color 0.3s ease;
}


.contact-detail a:hover {
    color: var(--color-primary);
}


/* =========================================================
   CONTACT SOCIAL
========================================================= */

.contact-social {
    margin-top: 45px;

    padding-top: 28px;

    border-top: 1px solid var(--color-border);

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

    gap: 20px;
}


.contact-social > span {
    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: var(--color-muted);
}


/* =========================================================
   CONTACT FORM — COMPACT SIZE
========================================================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}


/* =========================================================
   CONTACT FORM WRAPPER
========================================================= */

.contact-form-wrapper {
    width: 100%;
    max-width: 560px;
    margin-inline: auto;
}


/* =========================================================
   FORM CARD
========================================================= */

.contact-form {
    width: 100%;
    padding: 32px;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
}


/* =========================================================
   FORM HEADER
========================================================= */

.form-header {
    margin-bottom: 24px;
}

.form-header .section-kicker {
    margin-bottom: 6px;
}

.form-header h2 {
    margin-bottom: 8px;
    font-size: 30px;
    line-height: 1.15;
}

.form-header p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-muted);
}


/* =========================================================
   FORM GROUP
========================================================= */

.form-group {
    margin-bottom: 16px;
}


/* =========================================================
   LABEL
========================================================= */

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
}

.form-group label span {
    color: #c94f4f;
    margin-left: 2px;
}


/* =========================================================
   INPUT / SELECT / TEXTAREA
========================================================= */

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--color-border);
    background: var(--color-background);
    color: var(--color-text);
    font-family: inherit;
    font-size: 14px;
    padding: 11px 13px;
    outline: none;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


/* INPUT HEIGHT */

.contact-form input,
.contact-form select {
    min-height: 44px;
}


/* TEXTAREA */

.contact-form textarea {
    min-height: 105px;
    height: 105px;
    resize: vertical;
}


/* FOCUS */

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px
        color-mix(
            in srgb,
            var(--color-primary) 12%,
            transparent
        );
}


/* =========================================================
   ERROR MESSAGE
========================================================= */

.form-error {
    display: block;
    min-height: 16px;
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.3;
    color: #c94f4f;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.form-submit {
    margin-top: 4px;
    width: auto;
}


/* =========================================================
   SUCCESS MESSAGE
========================================================= */

.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding: 12px 14px;
    border: 1px solid var(--color-border);
    font-size: 13px;
    line-height: 1.5;
}

.form-success.is-visible {
    display: flex;
}


/* =========================================================
   MAP
========================================================= */

.contact-map-section {
    padding-top: 20px;
    padding-bottom: 100px;
}


.contact-map-header {
    max-width: 700px;

    margin: 0 auto 45px;

    text-align: center;
}


.contact-map {
    width: 100%;

    overflow: hidden;

    border: 1px solid var(--color-border);

    background: var(--color-surface);
}


.contact-map iframe {
    display: block;

    width: 100%;

    min-height: 450px;
}


/* =========================================================
   CONTACT RESPONSIVE
========================================================= */








/* =========================================================
   CONTACT — FOLLOW OUR WORK
========================================================= */

.contact-social {
    margin-top: 28px;
}

.contact-social > span {
    display: block;
    margin-bottom: 12px;

    color: var(--color-text);
    font-size: 13px;
    font-weight: 600;
}


/* Social icons ONLY inside contact section */

.contact-social .social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-social .social-links a {
    width: 40px;
    height: 40px;

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

    color: var(--color-text);
    background: var(--color-surface);

    border: 1px solid var(--color-border);
    border-radius: 50%;

    text-decoration: none;
    opacity: 1;
    visibility: visible;

    transition:
        color 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.contact-social .social-links a i {
    display: block;
    color: inherit;
    font-size: 15px;
}


/* LIGHT + DARK — hover */

.contact-social .social-links a:hover {
    color: var(--color-primary-ink);
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-3px);
}

/* =========================================================
   CONTACT MAP — MEDIUM SIZE
========================================================= */

.contact-map {
    width: 100%;
    max-width: 900px;
    height: 320px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}





/* =========================================================
   AUTHENTICATION PAGES
   LOGIN / REGISTER
========================================================= */

.auth-page {
    min-height: 100vh;
    background: var(--color-background);
    color: var(--color-text);
    overflow-x: hidden;
}


/* =========================================================
   WRAPPER
========================================================= */

.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}


/* =========================================================
   MAIN CARD
========================================================= */

.auth-card {
    width: min(1120px, 100%);
    min-height: 650px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    background: var(--color-surface);

    border: 1px solid var(--color-border);

    overflow: hidden;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.15);
}


/* =========================================================
   IMAGE SIDE
========================================================= */

.auth-visual {
    position: relative;
    min-height: 650px;
    overflow: hidden;
}


.auth-visual-image {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.auth-visual-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.15) 45%,
            rgba(0, 0, 0, 0.78)
        );
}


/* =========================================================
   LOGO
========================================================= */

.auth-logo {
    position: absolute;
    top: 34px;
    left: 36px;

    z-index: 3;

    display: flex;
    flex-direction: column;

    text-decoration: none;

    color: #ffffff;
}


.auth-logo .logo-main {
    font-family: "Cormorant Garamond", serif;

    font-size: 25px;
    font-weight: 700;

    letter-spacing: 0.18em;

    line-height: 1;
}


.auth-logo .logo-sub {
    margin-top: 5px;

     font-family: "Manrope", sans-serif;

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.38em;

    opacity: 0.85;
}


/* =========================================================
   BACK TO WEBSITE
========================================================= */

.auth-back-link {
    position: absolute;
    top: 34px;
    right: 34px;

    z-index: 3;

    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 10px 15px;

    color: #ffffff;
    text-decoration: none;

    font-size: 12px;
    font-weight: 500;

    background: rgba(255, 255, 255, 0.12);

    border: 1px solid rgba(255, 255, 255, 0.25);

    backdrop-filter: blur(10px);

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.auth-back-link:hover {
    background: rgba(255, 255, 255, 0.2);

    transform: translateY(-2px);
}


.auth-back-link i {
    font-size: 11px;
}


/* =========================================================
   VISUAL CONTENT
========================================================= */

.auth-visual-content {
    position: absolute;

    left: 48px;
    right: 48px;
    bottom: 82px;

    z-index: 2;

    color: #ffffff;
}


.auth-visual-content p {
    margin-bottom: 12px;

    font-size: 11px;
    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.2em;

    opacity: 0.8;
}


.auth-visual-content h2 {
    max-width: 390px;

    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(34px, 4vw, 48px);

    font-weight: 500;

    line-height: 1.05;

    color: #ffffff;
}


.auth-visual-content h2 em {
    font-style: italic;
    font-weight: 400;
}


/* =========================================================
   VISUAL INDICATOR
========================================================= */

.auth-visual-indicator {
    position: absolute;

    left: 50%;
    bottom: 30px;

    transform: translateX(-50%);

    z-index: 3;

    display: flex;
    align-items: center;

    gap: 8px;
}


.auth-visual-indicator span {
    width: 25px;
    height: 3px;

    background: rgba(255, 255, 255, 0.35);
}


.auth-visual-indicator span.active {
    width: 38px;

    background: #ffffff;
}


/* =========================================================
   FORM PANEL
========================================================= */

.auth-form-panel {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 55px 65px;

    background: var(--color-surface);
}


.auth-form-container {
    width: 100%;
    max-width: 440px;
}


/* =========================================================
   HEADING
========================================================= */

.auth-heading {
    margin-bottom: 32px;
}


.auth-kicker {
    margin-bottom: 10px;

    color: var(--color-primary);

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.18em;
}


.auth-heading h1 {
    margin-bottom: 12px;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(38px, 4vw, 52px);

    font-weight: 500;

    line-height: 0.98;

    color: var(--color-text-strong);
}


.auth-heading h1 em {
    font-style: italic;
}


.auth-heading > p:last-child {
    max-width: 390px;

    color: var(--color-muted);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================================
   FORM
========================================================= */

.auth-form {
    width: 100%;
}


.form-group {
    margin-bottom: 19px;
}


.form-group label {
    display: block;

    margin-bottom: 8px;

    color: var(--color-text);

    font-size: 12px;
    font-weight: 600;
}


/* =========================================================
   LABEL ROW
========================================================= */

.form-label-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 8px;
}


.form-label-row label {
    margin-bottom: 0;
}


.forgot-link {
    color: var(--color-muted);

    font-size: 11px;

    text-decoration: none;

    transition: color 0.3s ease;
}


.forgot-link:hover {
    color: var(--color-primary);
}


/* =========================================================
   INPUT
========================================================= */

.input-wrapper {
    position: relative;

    display: flex;
    align-items: center;
}


.input-wrapper > i:first-child {
    position: absolute;
    left: 15px;

    color: var(--color-muted);

    font-size: 13px;

    pointer-events: none;
}


.input-wrapper input {
    width: 100%;

    min-height: 46px;

    padding: 0 44px 0 42px;

    border: 1px solid var(--color-border);

    background: var(--color-background);

    color: var(--color-text);

    outline: none;

    font-family: "Manrope", sans-serif;

    font-size: 12px;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}


.input-wrapper input::placeholder {
    color: var(--color-muted);
    opacity: 0.75;
}


.input-wrapper input:focus {
    border-color: var(--color-primary);

    box-shadow:
        0 0 0 3px
        color-mix(
            in srgb,
            var(--color-primary) 12%,
            transparent
        );
}


/* =========================================================
   PASSWORD TOGGLE
========================================================= */

.password-toggle {
    position: absolute;

    right: 12px;

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

    width: 28px;
    height: 28px;

    padding: 0;

    border: 0;

    background: transparent;

    color: var(--color-muted);

    cursor: pointer;
}


.password-toggle:hover {
    color: var(--color-primary);
}


/* =========================================================
   ERROR
========================================================= */

.form-error {
    display: block;

    min-height: 0;

    margin-top: 5px;

    color: #d96b6b;

    font-size: 10px;

    line-height: 1.4;
}


.input-error {
    border-color: #d96b6b !important;
}


/* =========================================================
   REMEMBER
========================================================= */

.auth-options {
    margin: 4px 0 20px;
}


.remember-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: var(--color-muted);

    font-size: 11px;

    cursor: pointer;
}


.remember-option input,
.terms-option input {
    width: 14px;
    height: 14px;

    accent-color: var(--color-primary);

    cursor: pointer;
}


/* =========================================================
   FORM ROW
========================================================= */

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;
}


/* =========================================================
   TERMS
========================================================= */

.terms-option {
    margin: 2px 0 20px;
}


.terms-option label {
    display: flex;
    align-items: flex-start;

    gap: 8px;

    color: var(--color-muted);

    font-size: 10px;

    line-height: 1.5;

    cursor: pointer;
}


.terms-option a {
    color: var(--color-text);

    text-decoration: underline;
}


.terms-option a:hover {
    color: var(--color-primary);
}


/* =========================================================
   SUBMIT
========================================================= */

.auth-submit {
    width: 100%;

    min-height: 48px;

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

    gap: 10px;

    border: 0;

    cursor: pointer;

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.08em;
}


.auth-submit i {
    font-size: 10px;
}


/* =========================================================
   SUCCESS
========================================================= */

.form-success {
    min-height: 0;

    margin-top: 10px;

    color: var(--color-secondary);

    font-size: 11px;
}


/* =========================================================
   DIVIDER
========================================================= */

.auth-divider {
    display: flex;
    align-items: center;

    gap: 14px;

    margin: 25px 0 18px;

    color: var(--color-muted);

    font-size: 10px;
}


.auth-divider::before,
.auth-divider::after {
    content: "";

    flex: 1;

    height: 1px;

    background: var(--color-border);
}


.auth-divider span {
    white-space: nowrap;
}


/* =========================================================
   SOCIAL BUTTONS
========================================================= */

.auth-socials {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px;
}


.auth-social-btn {
    min-height: 43px;

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

    gap: 9px;

    border: 1px solid var(--color-border);

    background: transparent;

    color: var(--color-text);

    font-family: "Manrope", sans-serif;

    font-size: 11px;
    font-weight: 600;

    cursor: pointer;

    transition:
        border-color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}


.auth-social-btn:hover {
    border-color: var(--color-primary);

    background: var(--color-background);

    transform: translateY(-2px);
}


.auth-social-btn i {
    font-size: 14px;
}


/* =========================================================
   ACCOUNT SWITCH
========================================================= */

.auth-switch {
    margin-top: 24px;

    text-align: center;

    color: var(--color-muted);

    font-size: 11px;
}


.auth-switch a {
    margin-left: 4px;

    color: var(--color-text);

    font-weight: 600;

    text-decoration: underline;
}


.auth-switch a:hover {
    color: var(--color-primary);
}


/* =========================================================
   RTL
========================================================= */

html[dir="rtl"] .auth-logo {
    left: auto;
    right: 36px;
}


html[dir="rtl"] .auth-back-link {
    right: auto;
    left: 34px;
}


html[dir="rtl"] .input-wrapper > i:first-child {
    left: auto;
    right: 15px;
}


html[dir="rtl"] .input-wrapper input {
    padding-left: 44px;
    padding-right: 42px;
}


html[dir="rtl"] .password-toggle {
    right: auto;
    left: 12px;
}


html[dir="rtl"] .auth-submit i {
    transform: rotate(180deg);
}


/* =========================================================
   TABLET
========================================================= */




/* =========================================================
   MOBILE
========================================================= */




/* =========================================================
   SMALL MOBILE
========================================================= */






 /* =====================================================
           PORTFOLIO DETAILS
        ===================================================== */

        .portfolio-story-intro {
            padding-top: 90px;
            padding-bottom: 90px;
        }


        /* =====================================================
           STORY META
        ===================================================== */

        .portfolio-story-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 35px;

            margin-top: 35px;
            padding-top: 25px;

            border-top: 1px solid var(--color-border);
        }

        .portfolio-story-meta div {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .portfolio-story-meta span {
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.12em;
            text-transform: uppercase;

            color: var(--color-muted);
        }

        .portfolio-story-meta strong {
            font-size: 14px;
            font-weight: 500;

            color: var(--color-text);
        }


        /* =====================================================
           STORY SECTIONS
        ===================================================== */

        .portfolio-story-section {
            padding-top: 90px;
            padding-bottom: 90px;
        }


        /* =====================================================
           TEXT BLOCK
        ===================================================== */

        .portfolio-detail-text-block {
            width: min(760px, 100%);
            margin-left: auto;
            margin-right: auto;

            text-align: center;
        }

        .portfolio-detail-text-block .section-description {
            max-width: 680px;
            margin-left: auto;
            margin-right: auto;
        }


        /* =====================================================
           MEDIUM FEATURE IMAGE
        ===================================================== */

        .portfolio-detail-medium-image {
            width: min(850px, 100%);

            margin: 55px auto 0;

            overflow: hidden;
        }

        .portfolio-detail-medium-image img {
            display: block;

            width: 100%;
            height: 500px;

            object-fit: cover;

            transition:
                transform 0.7s ease;
        }

        .portfolio-detail-medium-image:hover img {
            transform: scale(1.025);
        }


        /* =====================================================
           IMAGE + TEXT STORY
        ===================================================== */

        .portfolio-story-section .intro-grid {
            align-items: center;
        }


        /* =====================================================
           GALLERY
        ===================================================== */

        .portfolio-detail-gallery-section {
            padding-top: 90px;
            padding-bottom: 90px;
        }

        .portfolio-detail-gallery {
            display: grid;

            grid-template-columns:
                repeat(2, minmax(0, 1fr));

            gap: 24px;
        }

        .portfolio-detail-gallery-item {
            position: relative;

            margin: 0;

            overflow: hidden;
        }

        .portfolio-detail-gallery-item img {
            display: block;

            width: 100%;
            height: 420px;

            object-fit: cover;

            transition:
                transform 0.7s ease;
        }

        .portfolio-detail-gallery-item:hover img {
            transform: scale(1.035);
        }


        /* =====================================================
           QUOTE
        ===================================================== */

        .portfolio-detail-quote-section {
            padding-top: 90px;
            padding-bottom: 90px;
        }

        .portfolio-detail-quote {
            width: min(850px, 100%);
            margin: 0 auto;

            text-align: center;
        }

        .portfolio-detail-quote > i {
            display: block;

            margin-bottom: 25px;

            font-size: 28px;

            color: var(--color-primary);
        }

        .portfolio-detail-quote blockquote {
            margin: 0;

            font-family:
                "Cormorant Garamond",
                serif;

            font-size: clamp(
                30px,
                4vw,
                48px
            );

            line-height: 1.2;
            font-weight: 500;

            color: var(--color-text);
        }

        .portfolio-detail-quote span {
            display: block;

            margin-top: 25px;

            font-size: 12px;
            letter-spacing: 0.14em;
            text-transform: uppercase;

            color: var(--color-muted);
        }


        /* =====================================================
           NEXT STORY
        ===================================================== */

        .portfolio-next-section {
            padding-top: 90px;
            padding-bottom: 90px;
        }

        .portfolio-next-section .section-header {
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;

            text-align: center;
        }


        /* =====================================================
           RTL
        ===================================================== */

        html[dir="rtl"] .portfolio-story-meta {
            direction: rtl;
        }


        /* =====================================================
           TABLET
        ===================================================== */

        


        /* =====================================================
           LARGE DEVICES
        ===================================================== */

        


        /* =====================================================
           MOBILE
        ===================================================== */

        


        /* =========================================================
   PORTFOLIO — NEXT STORY
   ========================================================= */

.portfolio-next-section {
    padding-top: 90px;
    padding-bottom: 90px;
}


.portfolio-next-header {
    max-width: 760px;
    margin: 0 auto;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
}


.portfolio-next-header .section-kicker {
    margin-bottom: 14px;
}


.portfolio-next-header .section-title {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}


.portfolio-next-header .section-description {
    max-width: 560px;
    margin: 20px auto 0;
}


.portfolio-next-header .btn {
    margin-top: 30px;
}


/* =========================================================
   MOBILE
   ========================================================= */



/* =========================================================
   05A. PAGE LOADER — TABLET
   ========================================================= */




/* =========================================================
   05B. PAGE LOADER — MOBILE
   ========================================================= */




/* =========================================================
   05C. PAGE LOADER — SMALL MOBILE
   ========================================================= */




/* =========================================================
   05D. VERY SMALL DEVICES
   ========================================================= */



/* =========================================================
   404 + COMING SOON
========================================================= */

.error-section,
.coming-soon-section {
    min-height: calc(100vh - 84px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
}

.error-content,
.coming-soon-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.error-number {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(100px, 18vw, 220px);
    line-height: 0.8;
    color: var(--color-primary);
    opacity: 0.9;
    margin-bottom: 40px;
}

.error-content h1,
.coming-soon-content h1 {
    margin-bottom: 20px;
}

.error-content > p:not(.section-kicker),
.coming-soon-content > p:not(.section-kicker) {
    max-width: 600px;
    margin: 0 auto 35px;
}

.error-actions,
.coming-soon-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.coming-soon-icon {
    width: 80px;
    height: 80px;
    margin: 35px auto;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 24px;
}

.coming-soon-social {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 45px;
}

.coming-soon-social a {
    width: 42px;
    height: 42px;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text);
    transition: 0.3s ease;
}

.coming-soon-social a:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}


/* =========================================================
   MOBILE
   320px – 767px
========================================================= */

/* =========================================================
   RESPONSIVE — MOBILE 320px – 767px
   ========================================================= */

@media (min-width: 320px) and (max-width: 767px) {


    .container {
        width: calc(100% - 32px);
    }

    .section {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 35px;
    }

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

    .section-description {
        font-size: 14px;
    }

    .site-header {
        background: var(--color-header-mobile);
    }

    .navbar {
        min-height: 72px;
        gap: 5px;
    }

    .navbar > .logo {
        margin-right: auto;
    }

    .logo-main {
        font-size: 24px;
    }

    .logo-sub {
        font-size: 7px;
    }

    .nav-menu,
    .desktop-controls {
        display: none;
    }

    .mobile-account {
        display: inline-flex;
        margin-left: 2px;
    }

 .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin-left: auto;
    margin-right: -18px;

    padding: 0;

    border: 0;
    background: transparent;

    color: var(--color-text);

    cursor: pointer;
    font-size: 19px;

    flex-shrink: 0;
}

/* Top of hero — transparent header */
.site-header:not(.scrolled) .hamburger {
    color: #ffffff;
}
    .hamburger:hover {
        background: var(--color-surface-2);
        color: var(--color-primary);
    }

    .hero {
        min-height: 100svh;
        background-position: 60% center;
    }

    .hero-content {
        padding-top: 72px;
    }

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

    .hero-description {
        font-size: 15px;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
        width: min(100%, 330px);
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-scroll {
        display: none;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .portfolio-card,
    .portfolio-card.small {
        min-height: 440px;
    }

    .portfolio-card-overlay {
        padding: 22px;
    }

    .portfolio-info h3 {
        font-size: 27px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .intro-image {
        aspect-ratio: 4 / 4.5;
    }

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

    .service-card {
        min-height: auto;
        padding: 32px 25px;
    }

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

    .event-content {
        padding: 24px;
    }

    .philosophy {
        min-height: 500px;
    }

    .philosophy-content {
        padding: 75px 0;
    }

    .philosophy .section-title {
        font-size: clamp(40px, 11vw, 58px);
    }

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

    .stats {
        padding: 55px 0;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 35px;
    }

    .stat {
        padding: 0 12px;
    }

    .stat:nth-child(2) {
        border-right: 0;
    }

    .stat strong {
        font-size: 48px;
    }

    .stat span {
        font-size: 9px;
    }

    .testimonial {
        padding: 50px 20px;
    }

    .testimonial blockquote {
        font-size: 34px;
    }

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

    .package-card {
        padding: 35px 25px;
    }

    .booking-cta {
        padding: 90px 0;
    }

    .footer {
        padding-top: 65px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-bottom: 45px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 43px;
        height: 43px;
    }

    .mobile-menu-inner {
        padding: 20px 16px;
    }

    .mobile-nav-link,
    .mobile-home-toggle {
        font-size: 23px;
    }

    .mobile-controls {
        grid-template-columns: 1fr;
    }


    /* -----------------------------------------
       HEADER
       ----------------------------------------- */

    .site-header {
        height: auto;
        background: transparent;
        border-bottom-color: transparent;
        box-shadow: none;
    }

    .site-header.scrolled {
        background: var(--color-header-scrolled);
        border-bottom-color: var(--color-border);
        box-shadow: var(--shadow-header);
    }


    /* -----------------------------------------
       NAVBAR
       ----------------------------------------- */

    .navbar {
        min-height: 72px;

        padding-left: 16px;
        padding-right: 16px;

        gap: 0;
    }


    /* -----------------------------------------
       LOGO
       ----------------------------------------- */

    .logo-main {
        font-size: 23px;
        letter-spacing: 0.10em;
    }

    .logo-sub {
        margin-top: 4px;
        font-size: 7px;
        letter-spacing: 0.38em;
        text-indent: 0.38em;
    }


    /* -----------------------------------------
       HIDE DESKTOP NAVIGATION
       ----------------------------------------- */

    .nav-menu,
    .desktop-controls {
        display: none;
    }


    /* -----------------------------------------
       ACCOUNT HIDDEN
       ----------------------------------------- */

    .mobile-account {
        display: none !important;
    }


    /* -----------------------------------------
       HAMBURGER
       ----------------------------------------- */

    .hamburger {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        width: 42px;
        height: 42px;

        margin-left: auto;
        margin-right: 0;

        padding: 0;

        border: 0;
        background: transparent;

        color: #ffffff;

        cursor: pointer;

        flex-shrink: 0;
    }


    /* Scrolled hamburger */

    .site-header.scrolled .hamburger {
        color: var(--color-nav-text);
    }


    /* Hover */

    .hamburger:hover {
        color: var(--color-primary);
    }


    /* Focus */

    .hamburger:focus-visible {
        outline: 2px solid var(--color-primary);
        outline-offset: 4px;
    }


    .site-header {
        height: 72px;
    }

    .navbar {
        height: 72px;

        padding: 0 16px;
    }

    /* Hide desktop navigation */
    .nav-menu,
    .desktop-controls {
        display: none;
    }

    /* IMPORTANT:
       No account icon beside hamburger */
    .mobile-account {
        display: none !important;
    }

    .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    margin-left: auto;
    margin-right: -8px;

    padding: 0;

    border: 0;
    background: transparent;

    color: var(--color-text);
    cursor: pointer;
    font-size: 19px;

    flex-shrink: 0;
}

    .hamburger:focus-visible {
        outline: 2px solid var(--color-primary);
        outline-offset: 4px;
    }

    /* -----------------------------------------------------
       MOBILE DRAWER
       ----------------------------------------------------- */

    .mobile-menu {
        display: block;

        position: fixed;
        inset: 0;

        z-index: 2000;

        width: 100%;
        height: 100dvh;

        background: var(--color-mobile-menu);

        visibility: hidden;
        opacity: 0;

        transform: translateX(100%);

        transition:
            transform 0.45s ease,
            opacity 0.3s ease,
            visibility 0.45s ease;

        overflow-y: auto;

        -webkit-overflow-scrolling: touch;
    }

    .mobile-menu.open {
        visibility: visible;
        opacity: 1;

        transform: translateX(0);
    }

    .mobile-menu-inner {
        min-height: 100%;

        padding: 18px 16px;

        display: flex;
        flex-direction: column;
    }

    /* Drawer header */
    .mobile-menu-top {
        display: flex;

        align-items: center;
        justify-content: space-between;

        padding-bottom: 20px;

        border-bottom: 1px solid var(--color-border);
    }

    .close-menu {
        width: 42px;
        height: 42px;

        display: inline-flex;

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

        border: 0;
        background: transparent;

        color: var(--color-text);

        cursor: pointer;

        font-size: 23px;
    }

    /* -----------------------------------------------------
       MOBILE NAVIGATION
       ----------------------------------------------------- */

    .mobile-nav {
        list-style: none;

        padding: 18px 0;
        margin: 0;
    }

    .mobile-nav > li {
        border-bottom: 1px solid var(--color-border);
    }

    .mobile-nav-link,
    .mobile-home-toggle {
        width: 100%;
        min-height: 52px;

        display: flex;

        align-items: center;
        justify-content: space-between;

        padding: 0;

        border: 0;
        background: transparent;

        color: var(--color-text);

        font-family: inherit;

        font-size: 16px;
        font-weight: 500;

        text-decoration: none;

        text-align: left;

        cursor: pointer;
    }

    .mobile-home-toggle i {
        transition: transform 0.3s ease;
    }

    .mobile-home-toggle[aria-expanded="true"] i {
        transform: rotate(180deg);
    }

    /* -----------------------------------------------------
       MOBILE SUBMENU
       ----------------------------------------------------- */

    .mobile-submenu {
        display: none;

        padding: 0 0 12px 14px;
    }

    .mobile-submenu.open {
        display: block;
    }

    .mobile-submenu a {
        display: block;

        padding: 9px 0;

        color: var(--color-muted);

        text-decoration: none;

        font-size: 14px;
    }

    .mobile-submenu a.active,
    .mobile-submenu a:hover {
        color: var(--color-primary);
    }

    /* -----------------------------------------------------
       MOBILE DRAWER CONTROLS
       ----------------------------------------------------- */

    .mobile-controls {
        margin-top: auto;

        padding-top: 16px;

        border-top: 1px solid var(--color-border);

        display: grid;

        grid-template-columns: repeat(3, 1fr);

        gap: 6px;
    }

    .mobile-control {
        min-height: 48px;

        display: flex;

        flex-direction: column;

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

        gap: 4px;

        border: 1px solid var(--color-border);

        background: transparent;

        color: var(--color-text);

        text-decoration: none;

        cursor: pointer;

        font: inherit;
        font-size: 12px;
    }

    .mobile-control i {
        font-size: 15px;
    }


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

    .services-grid .service-card,
    .services-grid .service-card:nth-child(2n) {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
    }

    .services-grid .service-card:last-child {
        border-bottom: none;
    }

    html[dir="rtl"] .services-grid .service-card,
    html[dir="rtl"] .services-grid .service-card:nth-child(2n) {
        border-right: none;
        border-left: none;
        border-bottom: 1px solid var(--color-border);
    }

    html[dir="rtl"] .services-grid .service-card:last-child {
        border-bottom: none;
    }


    .image-feature-header {
        margin-bottom: 35px;
    }

    .image-feature-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .image-feature-image {
        aspect-ratio: 4 / 5;
    }

    .image-feature-caption {
        padding-top: 16px;
    }

    .image-feature-caption h3 {
        font-size: 20px;
    }


    .portfolio-showcase-section {
        padding: 65px 0;
    }

    .portfolio-showcase-header {
        margin-bottom: 38px;
    }

    .portfolio-showcase-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .portfolio-showcase-image {
        aspect-ratio: 4 / 3;
    }

    .portfolio-showcase-info {
        padding-top: 14px;
    }

    .portfolio-showcase-info h3 {
        font-size: 19px;
    }


    .portfolio-story-intro,
    .portfolio-story-section,
    .portfolio-detail-gallery-section,
    .portfolio-detail-quote-section,
    .portfolio-next-section {
        padding-top: 55px;
        padding-bottom: 55px;
    }


    /* STORY META */

    .portfolio-story-meta {
        gap: 20px;

        margin-top: 28px;
        padding-top: 20px;
    }

    .portfolio-story-meta div {
        min-width: 90px;
    }


    /* MEDIUM IMAGE */

    .portfolio-detail-medium-image {
        margin-top: 35px;
    }

    .portfolio-detail-medium-image img {
        height: 300px;
    }


    /* GALLERY */

    .portfolio-detail-gallery {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .portfolio-detail-gallery-item img {
        height: 330px;
    }


    /* QUOTE */

    .portfolio-detail-quote blockquote {
        font-size: 32px;
    }

    .portfolio-detail-quote > i {
        font-size: 22px;
        margin-bottom: 18px;
    }


    .portfolio-details-page .section {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .portfolio-details-page .portfolio-story-section + .portfolio-story-section {
        padding-top: 30px;
    }

    .portfolio-details-page .portfolio-story-intro {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .portfolio-details-page .portfolio-detail-medium-image {
        margin-top: 30px;
    }

    .portfolio-details-page .portfolio-detail-medium-image img {
        height: 360px;
    }

    .portfolio-details-page .portfolio-story-section::before,
    .portfolio-details-page .portfolio-detail-gallery-section::before,
    .portfolio-details-page .portfolio-detail-quote-section::before {
        margin-bottom: 35px;
    }


    .portfolio-detail-two-images {
        width: 100%;
        gap: 20px;
    }

    .portfolio-detail-gallery-image img {
        height: 380px;
    }


    .portfolio-details-page .portfolio-story-section {
        padding-top: 45px;
        padding-bottom: 45px;
    }

    .portfolio-detail-two-images {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 30px;
    }

    .portfolio-detail-gallery-image img {
        height: 320px;
    }

    .portfolio-details-page .portfolio-story-section::before {
        margin-bottom: 35px;
    }


    .portfolio-ceremony-grid {
        gap: 35px;
    }

    .portfolio-ceremony-image img {
        height: 400px;
    }


    .portfolio-ceremony-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .portfolio-ceremony-image img {
        height: 350px;
    }


    .portfolio-final-story-grid {
        gap: 35px;
    }

    .portfolio-final-story-image img {
        height: 400px;
    }


    .portfolio-final-story-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .portfolio-final-story-image {
        order: 2;
    }

    .portfolio-final-story-content {
        order: 1;
    }

    .portfolio-final-story-image img {
        height: 350px;
    }


    .packages-addon-section {
        padding-top: 45px;
        padding-bottom: 45px;
    }


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

        gap: 30px;
    }


    .packages-addon-image {
        height: 300px;
        min-height: 300px;
    }


    .packages-addon-grid .section-description {
        font-size: 0.9rem;
    }


    /* -----------------------------------------------------
       INTRO
    ----------------------------------------------------- */

    .packages-intro-section {
        padding-top: 45px;
        padding-bottom: 20px;
    }


    .packages-intro-header {
        width: 100%;
    }


    /* -----------------------------------------------------
       CARDS
    ----------------------------------------------------- */

    .packages-section {
        padding-top: 20px;
        padding-bottom: 45px;
    }


    .packages-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }


    .package-card:last-child {
        grid-column: auto;

        width: 100%;
    }


    .package-card {
        padding: 24px 20px;
    }


    /* -----------------------------------------------------
       ICON
    ----------------------------------------------------- */

    .package-icon {
        width: 38px;
        height: 38px;

        margin-bottom: 12px;

        font-size: 13px;
    }


    /* -----------------------------------------------------
       TITLE
    ----------------------------------------------------- */

    .package-card h2 {
        font-size: 28px;
    }


    /* -----------------------------------------------------
       DESCRIPTION
    ----------------------------------------------------- */

    .package-description {
        font-size: 12px;
        line-height: 1.6;
    }


    /* -----------------------------------------------------
       PRICE
    ----------------------------------------------------- */

    .package-price {
        padding: 13px 0;

        margin-bottom: 15px;
    }


    .package-price strong {
        font-size: 25px;
    }


    /* -----------------------------------------------------
       FEATURES
    ----------------------------------------------------- */

    .package-features {
        gap: 7px;
    }


    .package-features li {
        font-size: 11.5px;
    }


    /* -----------------------------------------------------
       ACTION
    ----------------------------------------------------- */

    .package-card-action {
        padding-top: 18px;
    }


    /* -----------------------------------------------------
       ADD-ON
    ----------------------------------------------------- */

    .packages-addon-section {
        padding-top: 45px;
        padding-bottom: 45px;
    }


    /* -----------------------------------------------------
       FAQ
    ----------------------------------------------------- */

    .packages-faq-section {
        padding-top: 45px;
        padding-bottom: 50px;
    }


    .package-faq-item summary {
        padding: 17px 0;

        font-size: 1.1rem;
    }


    .package-faq-answer {
        padding-right: 0;
        padding-bottom: 17px;
    }


    /* -----------------------------------------------------
       CTA
    ----------------------------------------------------- */

    .packages-cta-section {
        padding-top: 45px;
        padding-bottom: 50px;
    }


    .addons-grid,
    .addons-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }


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

    .addon-card {
        min-height: auto;
    }

 .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 26px;
    }

    .form-header h2 {
        font-size: 27px;
    }


    .contact-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .contact-map-section {
        padding-top: 0;
        padding-bottom: 70px;
    }


    .contact-map iframe {
        min-height: 350px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .contact-form-wrapper {
        max-width: 100%;
    }

    .contact-form {
        padding: 24px 20px;
    }

    .form-header h2 {
        font-size: 26px;
    }


    .contact-map {
        height: 280px;
    }


    .auth-wrapper {
        padding: 24px;
    }

    .auth-card {
        min-height: 600px;
    }

    .auth-visual {
        min-height: 600px;
    }

    .auth-form-panel {
        padding: 45px 40px;
    }

    .auth-visual-content {
        left: 35px;
        right: 35px;
    }


    .auth-wrapper {
        min-height: auto;

        padding: 18px;
    }


    .auth-card {
        display: block;

        min-height: auto;
    }


    .auth-visual {
        min-height: 360px;

        height: 360px;
    }


    .auth-logo {
        top: 24px;
        left: 24px;
    }


    .auth-logo .logo-main {
        font-size: 21px;
    }


    .auth-back-link {
        top: 22px;
        right: 22px;

        padding: 8px 11px;

        font-size: 10px;
    }


    .auth-visual-content {
        left: 25px;
        right: 25px;
        bottom: 58px;
    }


    .auth-visual-content h2 {
        font-size: 34px;
    }


    .auth-form-panel {
        padding: 40px 25px 35px;
    }


    .auth-heading {
        margin-bottom: 28px;
    }


    .auth-heading h1 {
        font-size: 40px;
    }


            .portfolio-story-intro,
            .portfolio-story-section,
            .portfolio-detail-gallery-section,
            .portfolio-detail-quote-section,
            .portfolio-next-section {
                padding-top: 55px;
                padding-bottom: 55px;
            }


            /* STORY META */

            .portfolio-story-meta {
                gap: 20px;

                margin-top: 28px;
                padding-top: 20px;
            }

            .portfolio-story-meta div {
                min-width: 90px;
            }


            /* MEDIUM IMAGE */

            .portfolio-detail-medium-image {
                margin-top: 35px;
            }

            .portfolio-detail-medium-image img {
                height: 300px;
            }


            /* GALLERY */

            .portfolio-detail-gallery {
                grid-template-columns: 1fr;
                gap: 18px;
            }

            .portfolio-detail-gallery-item img {
                height: 330px;
            }


            /* QUOTE */

            .portfolio-detail-quote blockquote {
                font-size: 32px;
            }

            .portfolio-detail-quote > i {
                font-size: 22px;
                margin-bottom: 18px;
            }


    .portfolio-next-section {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .portfolio-next-header {
        max-width: 100%;
    }

    .portfolio-next-header .section-title {
        max-width: 100%;
    }

    .portfolio-next-header .section-description {
        max-width: 100%;
        margin-top: 16px;
    }

    .portfolio-next-header .btn {
        margin-top: 24px;
    }


    .loader {
        padding: 20px;
    }

    .loader-content {
        width: min(300px, calc(100% - 20px));
    }

    .loader-logo {
        font-size: 34px;
        letter-spacing: 0.08em;
    }

    .loader-logo span {
        margin-top: 6px;
        font-size: 8px;
        letter-spacing: 0.28em;
    }

    .loader-line {
        margin-top: 23px;
    }

    .loader-line::after {
        width: 45%;
    }


    .error-section,
    .coming-soon-section {
        min-height: calc(100vh - 70px);
        padding: 80px 20px;
    }

    .error-number {
        font-size: 120px;
        margin-bottom: 30px;
    }

    .error-actions,
    .coming-soon-actions {
        flex-direction: column;
        width: 100%;
    }

    .error-actions .btn,
    .coming-soon-actions .btn {
        width: 100%;
        justify-content: center;
    }
}


/* =========================================================
   RESPONSIVE — TABLET 768px – 1024px
   ========================================================= */

@media (min-width: 768px) and (max-width: 1024px) {


    .container {
        width: min(100% - 40px, 940px);
    }

    .section {
        padding: 85px 0;
    }

    .nav-menu {
        gap: 0;
    }

    .nav-link {
        padding-inline: 8px;
        font-size: 12px;
    }

    .desktop-controls {
        gap: 0;
    }

    .control-btn {
        width: 36px;
        height: 36px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
        min-height: auto;
    }

    .portfolio-card,
    .portfolio-card.small {
        min-height: 430px;
    }

    .portfolio-card:first-child {
        grid-column: 1 / -1;
    }

    .intro-grid {
        gap: 45px;
    }

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

    .events-grid {
        gap: 18px;
    }

    .event-content {
        padding: 22px;
    }

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

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

    .package-card {
        padding: 30px 22px;
    }

    .package-card h3 {
        font-size: 31px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 45px;
    }


    /* -----------------------------------------
       HEADER
       ----------------------------------------- */

    .site-header {
        height: auto;
        background: transparent;
        border-bottom-color: transparent;
        box-shadow: none;
    }

    .site-header.scrolled {
        background: var(--color-header-scrolled);
        border-bottom-color: var(--color-border);
        box-shadow: var(--shadow-header);
    }


    /* -----------------------------------------
       NAVBAR
       ----------------------------------------- */

    .navbar {
        min-height: 76px;
        padding-left: 24px;
        padding-right: 24px;
        gap: 0;
    }


    /* -----------------------------------------
       HIDE DESKTOP NAVIGATION
       ----------------------------------------- */

    .nav-menu,
    .desktop-controls {
        display: none;
    }


    /* -----------------------------------------
       ACCOUNT HIDDEN
       ----------------------------------------- */

    .mobile-account {
        display: none !important;
    }


    /* -----------------------------------------
       HAMBURGER
       ----------------------------------------- */

    .hamburger {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        width: 42px;
        height: 42px;

        margin-left: auto;
        margin-right: 0;

        padding: 0;

        border: 0;
        background: transparent;

        color: #ffffff;

        cursor: pointer;

        flex-shrink: 0;
    }


    /* Scrolled hamburger */

    .site-header.scrolled .hamburger {
        color: var(--color-nav-text);
    }


    /* Hover */

    .hamburger:hover {
        color: var(--color-primary);
    }


    /* Focus */

    .hamburger:focus-visible {
        outline: 2px solid var(--color-primary);
        outline-offset: 4px;
    }


    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-grid .service-card {
        border-right: 1px solid var(--color-border);
    }

    .services-grid .service-card:nth-child(2n) {
        border-right: none;
    }

    html[dir="rtl"] .services-grid .service-card {
        border-right: none;
        border-left: 1px solid var(--color-border);
    }

    html[dir="rtl"] .services-grid .service-card:nth-child(2n) {
        border-left: none;
    }


    .image-feature-header {
        margin-bottom: 40px;
    }

    .image-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .image-feature-card:last-child {
        grid-column: 1 / -1;
        max-width: calc(50% - 10px);
        width: 100%;
        margin: 0 auto;
    }

    .image-feature-caption h3 {
        font-size: 20px;
    }


    .portfolio-showcase-section {
        padding: 80px 0;
    }

    .portfolio-showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }

    .portfolio-showcase-info h3 {
        font-size: 20px;
    }


    .portfolio-story-intro,
    .portfolio-story-section,
    .portfolio-detail-gallery-section,
    .portfolio-detail-quote-section,
    .portfolio-next-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }


    .portfolio-detail-medium-image {
        width: 90%;
    }

    .portfolio-detail-medium-image img {
        height: 420px;
    }


    .portfolio-detail-gallery-item img {
        height: 360px;
    }


    .portfolio-detail-two-images {
        width: 100%;
        gap: 20px;
    }

    .portfolio-detail-gallery-image img {
        height: 380px;
    }


    .portfolio-ceremony-grid {
        gap: 35px;
    }

    .portfolio-ceremony-image img {
        height: 400px;
    }


    .portfolio-final-story-grid {
        gap: 35px;
    }

    .portfolio-final-story-image img {
        height: 400px;
    }


    .packages-addon-section {
        padding-top: 55px;
        padding-bottom: 55px;
    }


    .packages-addon-grid {
        gap: 35px;
    }


    .packages-addon-image {
        min-height: 320px;
        height: 320px;
    }


    /* -----------------------------------------------------
       INTRO
    ----------------------------------------------------- */

    .packages-intro-section {
        padding-top: 60px;
        padding-bottom: 25px;
    }


    /* -----------------------------------------------------
       CARDS
    ----------------------------------------------------- */

    .packages-section {
        padding-top: 25px;
        padding-bottom: 55px;
    }


    .packages-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 18px;
    }


    .package-card:last-child {
        grid-column: 1 / -1;

        width: min(100%, 480px);

        margin-left: auto;
        margin-right: auto;
    }


    /* -----------------------------------------------------
       ADD-ON
    ----------------------------------------------------- */

    .packages-addon-section {
        padding-top: 55px;
        padding-bottom: 55px;
    }


    /* -----------------------------------------------------
       FAQ
    ----------------------------------------------------- */

    .packages-faq-section {
        padding-top: 55px;
        padding-bottom: 60px;
    }


    /* -----------------------------------------------------
       CTA
    ----------------------------------------------------- */

    .packages-cta-section {
        padding-top: 55px;
        padding-bottom: 60px;
    }


    .addons-grid,
    .addons-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

 .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 26px;
    }

    .form-header h2 {
        font-size: 27px;
    }


    .auth-wrapper {
        padding: 24px;
    }

    .auth-card {
        min-height: 600px;
    }

    .auth-visual {
        min-height: 600px;
    }

    .auth-form-panel {
        padding: 45px 40px;
    }

    .auth-visual-content {
        left: 35px;
        right: 35px;
    }


            .portfolio-story-intro,
            .portfolio-story-section,
            .portfolio-detail-gallery-section,
            .portfolio-detail-quote-section,
            .portfolio-next-section {
                padding-top: 70px;
                padding-bottom: 70px;
            }

            .portfolio-detail-medium-image {
                width: 90%;
            }

            .portfolio-detail-medium-image img {
                height: 420px;
            }

            .portfolio-detail-gallery-item img {
                height: 360px;
            }


    .loader-content {
        width: min(340px, calc(100% - 60px));
    }

    .loader-logo {
        font-size: 38px;
        letter-spacing: 0.10em;
    }

    .loader-logo span {
        margin-top: 6px;
        font-size: 9px;
        letter-spacing: 0.32em;
    }

    .loader-line {
        margin-top: 25px;
    }
}


/* =========================================================
   RESPONSIVE — LARGE DEVICES 1025px – 1280px
   ========================================================= */

@media (min-width: 1025px) and (max-width: 1280px) {


    .container {
        width: min(100% - 48px, 1140px);
    }

    .nav-link {
        padding-inline: 9px;
        font-size: 12px;
    }

    .portfolio-grid {
        min-height: 560px;
    }

    .portfolio-card {
        min-height: 560px;
    }

    .intro-grid {
        gap: 55px;
    }

    .footer-grid {
        gap: 35px;
    }


    .navbar {
        padding-left: 24px;
        padding-right: 24px;
        gap: 20px;
    }

    .nav-menu {
        gap: 0;
    }

    .nav-link {
        padding-left: 10px;
        padding-right: 10px;
        font-size: 13px;
    }

    .desktop-controls {
        gap: 3px;
    }

    .control-btn {
        width: 40px;
        height: 40px;
    }

    .mobile-account,
    .hamburger,
    .mobile-menu {
        display: none;
    }


    .services-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }


    .portfolio-detail-medium-image {
        width: min(800px, 100%);
    }

    .portfolio-detail-gallery-item img {
        height: 400px;
    }


            .portfolio-detail-medium-image {
                width: min(800px, 100%);
            }

            .portfolio-detail-gallery-item img {
                height: 400px;
            }
}


@media (prefers-reduced-motion: reduce) {

    .site-header,
    .logo-main,
    .logo-sub,
    .nav-link,
    .dropdown-arrow,
    .control-btn,
    .hamburger {
        transition: none;
    }
}


@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* =========================================================
   PAGE-SPECIFIC PHILOSOPHY IMAGES
   ========================================================= */

.home-1-page {
    --philosophy-image: url("../images/hero 6.avif");
}

.home-2-page {
    --philosophy-image: url("../images/hero 7.avif");
}

.about-page {
    --philosophy-image: url("../images/hero\ 45.avif");
}


.service-details-page {
    --philosophy-image: url("../images/philosophy-service-details.avif");
}

.portfolio-page {
    --philosophy-image: url("../images/philosophy-portfolio.avif");
}

.portfolio-details-page {
    --philosophy-image: url("../images/philosophy-portfolio-details.avif");
}

.packages-page {
    --philosophy-image: url("../images/philosophy-packages.avif");
}

.addons-page {
    --philosophy-image: url("../images/philosophy-addons.avif");
}

.contact-page {
    --philosophy-image: url("../images/philosophy-contact.avif");
}

/* =========================================================
   PAGE-SPECIFIC CTA IMAGES
   ========================================================= */

.home-1-page {
    --cta-image: url("../images/hero\ 9.avif");
}

.home-2-page {
    --cta-image: url("../images/hero\ 2.avif");
}

.about-page {
    --cta-image: url("../images/hero\ 5.avif");
}

.services-page {
    --cta-image: url("../images/hero\ 6.avif");
}

.service-details-page {
    --cta-image: url("../images/hero\ 8.avif");
}

.portfolio-page {
    --cta-image: url("../images/Hero\ image!.avif");
}

.portfolio-details-page {
    --cta-image: url("../images/hero\ 3.avif");
}

.packages-page {
    --cta-image: url("../images/hero\ 10.avif");
}

.addons-page {
    --cta-image: url("../images/hero\ 45.avif");
}

.contact-page {
    --cta-image: url("../images/hero\ 7.avif");
}

/* =========================================================
   SECTION DIVIDER
========================================================= */

.section-divider {
    width: 100%;
    height: 1px;
    margin: 0;
    padding: 0;
    border: 0;
    background: var(--color-border);
}

/* =========================================================
   NAV MENU — PREMIUM HOVER
========================================================= */

.nav-link {
    position: relative;
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

/* Small underline */
.nav-link::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 4px;

    height: 1px;

    background: var(--color-primary);

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.3s ease;
}

/* Hover */
.nav-link:hover {
    color: var(--color-primary);
    transform: translateY(-1px);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

/* Active page */
.nav-link.active {
    color: var(--color-primary);
}

.nav-link.active::after {
    transform: scaleX(1);
}

/* =========================================================
   NAVBAR HOVER — RESPONSIVE
========================================================= */

/* Desktop / mouse devices only */
@media (hover: hover) and (pointer: fine) {

    .nav-link {
        position: relative;
        transition:
            color 0.3s ease,
            transform 0.3s ease;
    }

    .nav-link::after {
        content: "";
        position: absolute;

        left: 13px;
        right: 13px;
        bottom: 4px;

        height: 1px;

        background: var(--color-primary);

        transform: scaleX(0);
        transform-origin: center;

        transition: transform 0.3s ease;
    }

    .nav-link:hover {
        color: var(--color-primary);
        transform: translateY(-1px);
    }

    .nav-link:hover::after {
        transform: scaleX(1);
    }

    /* Active page */
    .nav-link.active {
        color: var(--color-primary);
    }

    .nav-link.active::after {
        transform: scaleX(1);
    }

    /* Home dropdown arrow */
    .nav-item.has-dropdown:hover .dropdown-arrow {
        color: var(--color-primary);
        transform: rotate(180deg);
    }

}


/* =========================================================
   TABLET — NO HOVER EFFECT
========================================================= */

@media (hover: none) and (pointer: coarse) {

    .nav-link:hover {
        color: inherit;
        transform: none;
    }

    .nav-link:hover::after {
        transform: scaleX(0);
    }

    .dropdown a:hover {
        color: inherit;
        background-color: transparent;
    }

}

 

/* =========================================================
   HOME 2 — CINEMATIC CENTERED HERO
   ========================================================= */

.hero-home-2 {
    position: relative;
    min-height: 100svh;

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

    overflow: hidden;

    background: #1d1c1a;
}


/* =========================================================
   BACKGROUND IMAGE
   ========================================================= */

.hero-home-2-bg {
    position: absolute;
    inset: -4%;

    background:
        url("../images/hero 2.avif")
        center center /
        cover
        no-repeat;

    transform: scale(1.04);

    animation:
        heroImageReveal 1.8s cubic-bezier(.22,.61,.36,1) forwards,
        heroImageZoom 14s ease-in-out 1.8s infinite alternate;

    will-change: transform;
}


/* =========================================================
   OVERLAY
   ========================================================= */

.hero-home-2 .hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.38) 0%,
            rgba(0, 0, 0, 0.18) 35%,
            rgba(0, 0, 0, 0.42) 100%
        );

    z-index: 1;
}


/* =========================================================
   CENTER CONTAINER
   ========================================================= */

.hero-home-2 .container {
    position: relative;
    z-index: 3;

    width: 100%;
}


/* =========================================================
   CENTER CONTENT
   ========================================================= */

.hero-home-2 .hero-content {
    width: min(900px, 100%);

    margin-inline: auto;

    padding-top: 70px;
    padding-bottom: 70px;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   KICKER
   ========================================================= */

.hero-home-2 .hero-kicker {
    position: relative;

    margin-bottom: 24px;

    color: #ffffff;

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.28em;
    text-transform: uppercase;
}


/* Small line before kicker */

.hero-home-2 .hero-kicker::before {
    content: "";

    display: inline-block;

    width: 42px;
    height: 1px;

    margin-right: 14px;

    vertical-align: middle;

    background: var(--color-primary);

    transform-origin: right center;

    animation:
        heroLineReveal 1s ease 0.7s both;
}


/* Small line after kicker */

.hero-home-2 .hero-kicker::after {
    content: "";

    display: inline-block;

    width: 42px;
    height: 1px;

    margin-left: 14px;

    vertical-align: middle;

    background: var(--color-primary);

    transform-origin: left center;

    animation:
        heroLineReveal 1s ease 0.7s both;
}


/* =========================================================
   MAIN TITLE
   ========================================================= */

.hero-home-2 .hero-title {
    max-width: 900px;

    margin: 0 auto 26px;

    color: #ffffff;

    font-size: clamp(58px, 8vw, 108px);
    font-weight: 500;

    line-height: 0.94;

    letter-spacing: -0.045em;

    text-align: center;
}


/* Elegant second line */

.hero-home-2 .hero-title em {
    display: block;

    margin-top: 8px;

    color: #d6bd95;

    font-family: "Cormorant Garamond", serif;

    font-size: 1.08em;
    font-weight: 400;

    font-style: italic;

    letter-spacing: -0.025em;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.hero-home-2 .hero-description {
    width: min(620px, 100%);

    margin: 0 auto 34px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 15px;
    line-height: 1.8;

    text-align: center;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.hero-home-2 .hero-actions {
    display: flex;

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

    gap: 14px;

    width: auto;
}


/* Keep buttons compact */

.hero-home-2 .hero-actions .btn {
    min-width: 158px;

    justify-content: center;
}




/* =========================================================
   HERO 2 — DISCOVER
========================================================= */

.hero-home-2 .hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 28px;

    z-index: 4;

    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;

    color: rgba(255, 255, 255, 0.82);

    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.28em;
    text-transform: uppercase;

    writing-mode: horizontal-tb;

    cursor: pointer;

    animation: discoverFloat 2.2s ease-in-out infinite;
}

.hero-home-2 .hero-scroll-label {
    display: block;
}

.hero-home-2 .hero-scroll-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;

    font-size: 9px;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.hero-home-2 .hero-scroll-arrow i {
    animation: discoverArrow 1.6s ease-in-out infinite;
}

.hero-home-2 .hero-scroll:hover .hero-scroll-arrow {
    border-color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(3px);
}


/* =========================================================
   DISCOVER ANIMATION
========================================================= */

@keyframes discoverFloat {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes discoverArrow {

    0%,
    100% {
        transform: translateY(-2px);
        opacity: 0.55;
    }

    50% {
        transform: translateY(3px);
        opacity: 1;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hero-home-2 .hero-scroll,
    .hero-home-2 .hero-scroll-arrow i {
        animation: none;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .hero-home-2 .hero-scroll {
        bottom: 18px;
        font-size: 8px;
        letter-spacing: 0.22em;
        gap: 7px;
    }

    .hero-home-2 .hero-scroll-arrow {
        width: 25px;
        height: 25px;
        font-size: 8px;
    }
}
/* =========================================================
   HERO ANIMATIONS
   ========================================================= */

@keyframes heroImageReveal {

    0% {
        opacity: 0;
        transform: scale(1.12);
    }

    100% {
        opacity: 1;
        transform: scale(1.04);
    }
}


@keyframes heroImageZoom {

    0% {
        transform: scale(1.04);
    }

    100% {
        transform: scale(1.10);
    }
}


@keyframes heroLineReveal {

    0% {
        opacity: 0;
        transform: scaleX(0);
    }

    100% {
        opacity: 1;
        transform: scaleX(1);
    }
}


@keyframes heroFrameReveal {

    0% {
        opacity: 0;
        inset: 55px;
    }

    100% {
        opacity: 1;
        inset: 34px;
    }
}


@keyframes heroScrollLine {

    0%,
    100% {
        opacity: 0.35;
        transform: scaleY(0.65);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hero-home-2-bg,
    .hero-frame,
    .hero-home-2 .hero-kicker::before,
    .hero-home-2 .hero-kicker::after,
    .hero-home-2 .hero-scroll-line {
        animation: none;
    }

}

/* =========================================================
   HOME 2 HERO — MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .hero-home-2 {
        min-height: 100svh;
    }

    .hero-home-2-bg {
        background-position: center center;
    }

    .hero-home-2 .hero-content {
        padding-top: 90px;
        padding-bottom: 90px;
        padding-inline: 18px;
    }

    .hero-home-2 .hero-kicker {
        margin-bottom: 20px;

        font-size: 9px;
        letter-spacing: 0.2em;
    }

    .hero-home-2 .hero-kicker::before,
    .hero-home-2 .hero-kicker::after {
        width: 22px;
    }

    .hero-home-2 .hero-kicker::before {
        margin-right: 8px;
    }

    .hero-home-2 .hero-kicker::after {
        margin-left: 8px;
    }

    .hero-home-2 .hero-title {
        font-size: clamp(48px, 15vw, 68px);

        line-height: 0.96;

        margin-bottom: 22px;
    }

    .hero-home-2 .hero-title em {
        margin-top: 5px;
    }

    .hero-home-2 .hero-description {
        max-width: 340px;

        margin-bottom: 28px;

        font-size: 13px;
        line-height: 1.7;
    }

    .hero-home-2 .hero-actions {
        width: 100%;

        flex-direction: column;

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

        gap: 10px;
    }

    .hero-home-2 .hero-actions .btn {
        width: min(250px, 100%);

        min-width: 0;
    }

    .hero-frame {
        inset: 18px;
    }

    .hero-home-2 .hero-scroll {
        bottom: 20px;
    }

    .hero-home-2 .hero-scroll-line {
        height: 32px;
    }
}


/* =========================================================
   SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .hero-home-2 .hero-content {
        padding-inline: 14px;
    }

    .hero-home-2 .hero-title {
        font-size: 46px;
    }

    .hero-home-2 .hero-description {
        font-size: 12.5px;
    }

    .hero-frame {
        inset: 14px;
    }

}


/* =========================================================
   HOME 2 — INTRODUCTION
   EDITORIAL STUDIO INTRO
========================================================= */

.home2-intro {
    padding-top: 110px;
    padding-bottom: 110px;
}


/* =========================================================
   INTRO HEADER
========================================================= */

.home2-intro-header {
    max-width: 850px;
    margin: 0 auto 55px;

    text-align: center;
}

.home2-intro-header .section-kicker {
    margin-bottom: 18px;
}

.home2-intro-header .section-title {
    margin: 0;
    line-height: 1.02;
}

.home2-intro-header .section-title em {
    display: block;

    margin-top: 5px;

    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
    font-style: italic;

    color: var(--color-primary);
}


/* =========================================================
   FEATURE IMAGE
========================================================= */

.home2-intro-image {
    position: relative;

    width: 100%;
    max-width: 1080px;

    height: 520px;

    margin: 0 auto;

    overflow: hidden;
}

.home2-intro-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 1.2s cubic-bezier(.22,.61,.36,1);
}

.home2-intro-image:hover img {
    transform: scale(1.035);
}


/* =========================================================
   IMAGE CAPTION
========================================================= */

.home2-intro-image-caption {
    position: absolute;

    left: 24px;
    right: 24px;
    bottom: 22px;

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

    color: #ffffff;

    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.2em;
    text-transform: uppercase;

    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}


/* =========================================================
   INTRO BOTTOM
========================================================= */

.home2-intro-bottom {
    display: grid;

    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    gap: 80px;

    max-width: 1080px;

    margin: 65px auto 0;
}


/* =========================================================
   STATEMENT
========================================================= */

.home2-intro-statement {
    padding-right: 30px;
}

.home2-intro-statement p {
    max-width: 500px;

    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(34px, 4vw, 52px);
    font-weight: 400;

    line-height: 1.05;
    letter-spacing: -0.025em;

    color: var(--color-text);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.home2-intro-description {
    max-width: 500px;
}

.home2-intro-description p {
    margin: 0 0 20px;

    color: var(--color-text-secondary);

    font-size: 14px;
    line-height: 1.85;
}


/* =========================================================
   TEXT LINK
========================================================= */

.home2-intro .text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    margin-top: 12px;

    color: var(--color-text);

    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.18em;
    text-transform: uppercase;

    text-decoration: none;

    transition: gap 0.3s ease;
}

.home2-intro .text-link i {
    font-size: 11px;

    transition: transform 0.3s ease;
}

.home2-intro .text-link:hover {
    gap: 16px;
}

.home2-intro .text-link:hover i {
    transform: translateX(3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .home2-intro {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .home2-intro-image {
        height: 460px;
    }

    .home2-intro-bottom {
        gap: 50px;
        margin-top: 50px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .home2-intro {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .home2-intro-header {
        margin-bottom: 35px;
        padding-inline: 8px;
    }

    .home2-intro-header .section-title {
        font-size: clamp(38px, 11vw, 52px);
        line-height: 1;
    }

    .home2-intro-image {
        height: 300px;
    }

    .home2-intro-image-caption {
        left: 16px;
        right: 16px;
        bottom: 16px;

        font-size: 8px;
    }

    .home2-intro-bottom {
        grid-template-columns: 1fr;

        gap: 30px;

        margin-top: 38px;
    }

    .home2-intro-statement {
        padding-right: 0;
    }

    .home2-intro-statement p {
        max-width: 100%;
        font-size: 38px;
    }

    .home2-intro-description {
        max-width: 100%;
    }

    .home2-intro-description p {
        font-size: 13px;
        line-height: 1.75;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .home2-intro-image {
        height: 270px;
    }

    .home2-intro-header .section-title {
        font-size: 36px;
    }

    .home2-intro-statement p {
        font-size: 34px;
    }

}

/* =========================================================
   HOME 2 — FEATURED PORTFOLIO
========================================================= */

.home2-portfolio {
    padding-top: 110px;
    padding-bottom: 110px;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.home2-portfolio-header {
    max-width: 760px;
    margin: 0 auto 60px;

    text-align: center;
}

.home2-portfolio-header .section-description {
    max-width: 620px;
    margin-inline: auto;
}


/* =========================================================
   PHOTO GRID
========================================================= */

.home2-photo-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 24px;

    max-width: 1180px;

    margin-inline: auto;
}


/* =========================================================
   PHOTO ITEM
========================================================= */

.home2-photo-item {
    display: block;

    min-width: 0;

    color: inherit;

    text-decoration: none;
}


/* =========================================================
   IMAGE
========================================================= */

.home2-photo-image {
    position: relative;

    width: 100%;
    height: 420px;

    overflow: hidden;

    background: var(--color-bg-soft);
}

.home2-photo-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.9s cubic-bezier(.22,.61,.36,1);
}

.home2-photo-item:hover .home2-photo-image img {
    transform: scale(1.045);
}


/* =========================================================
   PHOTO META
========================================================= */

.home2-photo-meta {
    display: grid;

    grid-template-columns: 36px 1fr;

    gap: 15px;

    padding-top: 18px;
}

.home2-photo-meta > span {
    padding-top: 3px;

    color: var(--color-muted);

    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.12em;
}

.home2-photo-meta small {
    display: block;

    margin-bottom: 4px;

    color: var(--color-primary);

    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.home2-photo-meta h3 {
    margin: 0;

    color: var(--color-text);

    font-family: "Cormorant Garamond", serif;

    font-size: 29px;
    font-weight: 500;

    line-height: 1;
}


/* =========================================================
   VIEW FULL PORTFOLIO
========================================================= */

.home2-portfolio-link {
    display: flex;

    justify-content: center;

    margin-top: 55px;
}

.home2-portfolio .text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: var(--color-text);

    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.18em;
    text-transform: uppercase;

    text-decoration: none;

    transition: gap 0.3s ease;
}

.home2-portfolio .text-link i {
    font-size: 11px;

    transition: transform 0.3s ease;
}

.home2-portfolio .text-link:hover {
    gap: 17px;
}

.home2-portfolio .text-link:hover i {
    transform: translateX(3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .home2-portfolio {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .home2-photo-grid {
        gap: 18px;
    }

    .home2-photo-image {
        height: 350px;
    }

    .home2-photo-meta h3 {
        font-size: 25px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .home2-portfolio {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .home2-portfolio-header {
        margin-bottom: 38px;
    }

    .home2-photo-grid {
        grid-template-columns: 1fr;

        gap: 42px;
    }

    .home2-photo-image {
        height: 330px;
    }

    .home2-photo-meta {
        grid-template-columns: 30px 1fr;

        gap: 12px;

        padding-top: 14px;
    }

    .home2-photo-meta h3 {
        font-size: 27px;
    }

    .home2-portfolio-link {
        margin-top: 45px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .home2-photo-image {
        height: 290px;
    }

    .home2-photo-meta h3 {
        font-size: 25px;
    }

}

/* =========================================================
   HOME 2 — FEATURED PORTFOLIO
   EDITORIAL ASYMMETRIC PHOTO GRID
========================================================= */

.home2-portfolio {
    padding-top: 110px;
    padding-bottom: 120px;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.home2-portfolio-header {
    max-width: 760px;
    margin: 0 auto 65px;
    text-align: center;
}

.home2-portfolio-header .section-kicker {
    margin-bottom: 18px;
}

.home2-portfolio-header .section-title {
    margin-bottom: 20px;
}

.home2-portfolio-header .section-description {
    max-width: 620px;
    margin: 0 auto;
}


/* =========================================================
   PHOTO GRID
========================================================= */

.home2-photo-grid {
    display: grid;

    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);

    column-gap: 28px;
    row-gap: 48px;

    max-width: 1080px;

    margin: 0 auto;
}


/* =========================================================
   PHOTO ITEMS
========================================================= */

.home2-photo-item {
    display: block;

    min-width: 0;

    color: inherit;
    text-decoration: none;
}


/* =========================================================
   BIG LEFT IMAGE
========================================================= */

.home2-photo-item:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / span 2;
}


/* =========================================================
   RIGHT TOP
========================================================= */

.home2-photo-item:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}


/* =========================================================
   RIGHT BOTTOM
========================================================= */

.home2-photo-item:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}


/* =========================================================
   IMAGE WRAPPER
========================================================= */

.home2-photo-image {
    position: relative;

    width: 100%;

    overflow: hidden;

    background: var(--color-bg-soft);
}


/* BIG IMAGE */

.home2-photo-item:nth-child(1) .home2-photo-image {
    height: 700px;
}


/* SMALL IMAGES */

.home2-photo-item:nth-child(2) .home2-photo-image,
.home2-photo-item:nth-child(3) .home2-photo-image {
    height: 320px;
}


/* =========================================================
   IMAGE
========================================================= */

.home2-photo-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 1s cubic-bezier(.22, .61, .36, 1);
}

.home2-photo-item:hover .home2-photo-image img {
    transform: scale(1.045);
}


/* =========================================================
   PHOTO META
========================================================= */

.home2-photo-meta {
    display: grid;

    grid-template-columns: 34px minmax(0, 1fr);

    gap: 15px;

    padding-top: 17px;

    border-top: 1px solid var(--color-border);

    margin-top: 15px;
}


/* NUMBER */

.home2-photo-meta > span {
    display: block;

    padding-top: 3px;

    color: var(--color-muted);

    font-family: "Manrope", sans-serif;

    font-size: 9px;
    font-weight: 700;

    line-height: 1;

    letter-spacing: 0.14em;
}


/* CATEGORY */

.home2-photo-meta small {
    display: block;

    margin-bottom: 5px;

    color: var(--color-primary);

    font-family: "Manrope", sans-serif;

    font-size: 9px;
    font-weight: 700;

    line-height: 1.2;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}


/* TITLE */

.home2-photo-meta h3 {
    margin: 0;

    color: var(--color-text);

    font-family: "Cormorant Garamond", serif;

    font-size: 30px;
    font-weight: 500;

    line-height: 1;

    letter-spacing: -0.015em;
}


/* =========================================================
   RIGHT COLUMN — SMALLER TYPOGRAPHY
========================================================= */

.home2-photo-item:nth-child(2) .home2-photo-meta h3,
.home2-photo-item:nth-child(3) .home2-photo-meta h3 {
    font-size: 25px;
}


/* =========================================================
   HOVER TEXT
========================================================= */

.home2-photo-meta h3 {
    transition: color 0.3s ease;
}

.home2-photo-item:hover .home2-photo-meta h3 {
    color: var(--color-primary);
}


/* =========================================================
   VIEW FULL PORTFOLIO
========================================================= */

.home2-portfolio-link {
    display: flex;

    justify-content: center;

    margin-top: 70px;
}

.home2-portfolio .text-link {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: var(--color-text);

    font-family: "Manrope", sans-serif;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.18em;

    text-transform: uppercase;

    text-decoration: none;

    transition:
        gap 0.3s ease,
        color 0.3s ease;
}

.home2-portfolio .text-link i {
    font-size: 11px;

    transition: transform 0.3s ease;
}

.home2-portfolio .text-link:hover {
    gap: 17px;

    color: var(--color-primary);
}

.home2-portfolio .text-link:hover i {
    transform: translateX(3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .home2-portfolio {
        padding-top: 90px;
        padding-bottom: 95px;
    }

    .home2-portfolio-header {
        margin-bottom: 50px;
    }

    .home2-photo-grid {
        grid-template-columns:
            minmax(0, 1.15fr)
            minmax(240px, 0.85fr);

        column-gap: 20px;
        row-gap: 35px;
    }

    .home2-photo-item:nth-child(1) .home2-photo-image {
        height: 580px;
    }

    .home2-photo-item:nth-child(2) .home2-photo-image,
    .home2-photo-item:nth-child(3) .home2-photo-image {
        height: 260px;
    }

    .home2-photo-meta h3 {
        font-size: 27px;
    }

    .home2-photo-item:nth-child(2) .home2-photo-meta h3,
    .home2-photo-item:nth-child(3) .home2-photo-meta h3 {
        font-size: 23px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .home2-portfolio {
        padding-top: 70px;
        padding-bottom: 75px;
    }

    .home2-portfolio-header {
        margin-bottom: 38px;
    }

    .home2-photo-grid {
        display: grid;

        grid-template-columns: 1fr;

        gap: 45px;
    }

    .home2-photo-item:nth-child(1),
    .home2-photo-item:nth-child(2),
    .home2-photo-item:nth-child(3) {
        grid-column: auto;
        grid-row: auto;
    }


    /* MOBILE IMAGE SIZE */

    .home2-photo-item:nth-child(1) .home2-photo-image {
        height: 390px;
    }

    .home2-photo-item:nth-child(2) .home2-photo-image,
    .home2-photo-item:nth-child(3) .home2-photo-image {
        height: 300px;
    }


    /* MOBILE META */

    .home2-photo-meta {
        grid-template-columns: 28px minmax(0, 1fr);

        gap: 12px;

        padding-top: 14px;

        margin-top: 13px;
    }

    .home2-photo-meta h3,
    .home2-photo-item:nth-child(2) .home2-photo-meta h3,
    .home2-photo-item:nth-child(3) .home2-photo-meta h3 {
        font-size: 27px;
    }

    .home2-photo-meta small {
        font-size: 8px;
    }

    .home2-portfolio-link {
        margin-top: 50px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .home2-photo-item:nth-child(1) .home2-photo-image {
        height: 340px;
    }

    .home2-photo-item:nth-child(2) .home2-photo-image,
    .home2-photo-item:nth-child(3) .home2-photo-image {
        height: 270px;
    }

    .home2-photo-meta h3,
    .home2-photo-item:nth-child(2) .home2-photo-meta h3,
    .home2-photo-item:nth-child(3) .home2-photo-meta h3 {
        font-size: 25px;
    }

}

/* =========================================================
   HOME 2 — SERVICES
   EDITORIAL SERVICE LIST
========================================================= */

.home2-services {
    padding-top: 110px;
    padding-bottom: 120px;
}


/* =========================================================
   SERVICES HEADER
========================================================= */

.home2-services-header {
    display: grid;

    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);

    align-items: end;

    gap: 80px;

    max-width: 1080px;

    margin: 0 auto 65px;
}

.home2-services-header .section-kicker {
    margin-bottom: 16px;
}

.home2-services-header .section-title {
    margin: 0;

    max-width: 650px;
}

.home2-services-header .section-title em {
    display: inline-block;

    font-family: "Cormorant Garamond", serif;

    font-weight: 400;
    font-style: italic;

    color: var(--color-primary);
}

.home2-services-intro {
    max-width: 390px;

    margin: 0 0 4px;

    color: var(--color-text-secondary);

    font-size: 14px;
    line-height: 1.85;
}


/* =========================================================
   SERVICES LIST
========================================================= */

.home2-services-list {
    max-width: 1080px;

    margin: 0 auto;

    border-top: 1px solid var(--color-border);
}


/* =========================================================
   SERVICE ITEM
========================================================= */

.home2-service-item {
    display: grid;

    grid-template-columns: 60px minmax(0, 1fr) 50px;

    align-items: center;

    gap: 25px;

    min-height: 145px;

    padding: 25px 0;

    border-bottom: 1px solid var(--color-border);

    color: var(--color-text);

    text-decoration: none;

    transition:
        padding 0.4s ease,
        background 0.4s ease;
}


/* =========================================================
   NUMBER
========================================================= */

.home2-service-number {
    align-self: flex-start;

    padding-top: 7px;

    color: var(--color-muted);

    font-family: "Manrope", sans-serif;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.14em;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.home2-service-main {
    display: grid;

    grid-template-columns: 55px minmax(0, 1fr);

    align-items: center;

    gap: 28px;
}


/* =========================================================
   ICON
========================================================= */

.home2-service-icon {
    display: flex;

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

    width: 48px;
    height: 48px;

    border: 1px solid var(--color-border);

    border-radius: 50%;

    color: var(--color-primary);

    font-size: 15px;

    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}


/* =========================================================
   SERVICE CONTENT
========================================================= */

.home2-service-content {
    display: grid;

    grid-template-columns: minmax(180px, 0.8fr) minmax(260px, 1fr);

    align-items: center;

    gap: 50px;
}

.home2-service-content h3 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: 38px;
    font-weight: 500;

    line-height: 1;

    letter-spacing: -0.015em;

    transition: color 0.3s ease;
}

.home2-service-content p {
    max-width: 390px;

    margin: 0;

    color: var(--color-text-secondary);

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   ARROW
========================================================= */

.home2-service-arrow {
    display: flex;

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

    color: var(--color-text);

    font-size: 13px;

    transition:
        color 0.3s ease,
        transform 0.35s ease;
}


/* =========================================================
   HOVER
========================================================= */

.home2-service-item:hover {
    padding-inline: 12px;
}

.home2-service-item:hover .home2-service-icon {
    background: var(--color-primary);
    border-color: var(--color-primary);

    color: #ffffff;

    transform: rotate(-8deg);
}

.home2-service-item:hover .home2-service-content h3 {
    color: var(--color-primary);
}

.home2-service-item:hover .home2-service-arrow {
    color: var(--color-primary);

    transform: translateX(5px);
}


/* =========================================================
   FOOTER LINK
========================================================= */

.home2-services-footer {
    display: flex;

    justify-content: center;

    margin-top: 55px;
}

.home2-services .text-link {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    color: var(--color-text);

    font-family: "Manrope", sans-serif;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.18em;

    text-transform: uppercase;

    text-decoration: none;

    transition:
        gap 0.3s ease,
        color 0.3s ease;
}

.home2-services .text-link i {
    font-size: 11px;

    transition: transform 0.3s ease;
}

.home2-services .text-link:hover {
    gap: 17px;

    color: var(--color-primary);
}

.home2-services .text-link:hover i {
    transform: translateX(3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .home2-services {
        padding-top: 90px;
        padding-bottom: 95px;
    }

    .home2-services-header {
        gap: 45px;

        margin-bottom: 50px;
    }

    .home2-service-item {
        grid-template-columns: 45px minmax(0, 1fr) 35px;

        gap: 18px;

        min-height: 135px;
    }

    .home2-service-main {
        grid-template-columns: 48px minmax(0, 1fr);

        gap: 22px;
    }

    .home2-service-content {
        grid-template-columns: 0.7fr 1fr;

        gap: 30px;
    }

    .home2-service-content h3 {
        font-size: 33px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .home2-services {
        padding-top: 70px;
        padding-bottom: 75px;
    }

    .home2-services-header {
        display: block;

        margin-bottom: 42px;
    }

    .home2-services-header .section-title {
        margin-bottom: 22px;
    }

    .home2-services-intro {
        max-width: 100%;

        font-size: 13px;
    }


    /* SERVICE ITEM */

    .home2-service-item {
        grid-template-columns: 30px minmax(0, 1fr) 25px;

        gap: 10px;

        min-height: 0;

        padding: 25px 0;
    }

    .home2-service-item:hover {
        padding-inline: 0;
    }


    /* MAIN */

    .home2-service-main {
        grid-template-columns: 40px minmax(0, 1fr);

        gap: 15px;
    }


    /* ICON */

    .home2-service-icon {
        width: 38px;
        height: 38px;

        font-size: 12px;
    }


    /* CONTENT */

    .home2-service-content {
        display: block;
    }

    .home2-service-content h3 {
        margin-bottom: 8px;

        font-size: 29px;
    }

    .home2-service-content p {
        max-width: 100%;

        font-size: 12px;

        line-height: 1.7;
    }


    /* NUMBER */

    .home2-service-number {
        padding-top: 5px;

        font-size: 8px;
    }


    /* ARROW */

    .home2-service-arrow {
        font-size: 10px;
    }


    /* FOOTER */

    .home2-services-footer {
        margin-top: 45px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .home2-service-item {
        grid-template-columns: 25px minmax(0, 1fr) 20px;
    }

    .home2-service-main {
        grid-template-columns: 36px minmax(0, 1fr);

        gap: 12px;
    }

    .home2-service-icon {
        width: 34px;
        height: 34px;
    }

    .home2-service-content h3 {
        font-size: 27px;
    }

}

/* =========================================================
   HOME 2 — REDUCE SECTION SPACING
========================================================= */

/* INTRODUCTION */
.home2-intro {
    padding-top: 70px;
    padding-bottom: 65px;
}


/* FEATURED PORTFOLIO */
.home2-portfolio {
    padding-top: 65px;
    padding-bottom: 65px;
}


/* SERVICES */
.home2-services {
    padding-top: 65px;
    padding-bottom: 70px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .home2-intro {
        padding-top: 60px;
        padding-bottom: 55px;
    }

    .home2-portfolio {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .home2-services {
        padding-top: 55px;
        padding-bottom: 60px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .home2-intro {
        padding-top: 50px;
        padding-bottom: 45px;
    }

    .home2-portfolio {
        padding-top: 45px;
        padding-bottom: 50px;
    }

    .home2-services {
        padding-top: 50px;
        padding-bottom: 55px;
    }

}

/* =========================================================
   PHILOSOPHY — CENTERED CONTENT
========================================================= */

.philosophy {
    text-align: center;
}

.philosophy-content {
    max-width: 760px;
    margin-inline: auto;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}

.philosophy-content .section-kicker {
    margin-bottom: 18px;
}

.philosophy-content .section-title {
    margin-inline: auto;
    text-align: center;
}

.philosophy-content > p:last-child {
    max-width: 620px;
    margin: 22px auto 0;

    text-align: center;

    line-height: 1.8;
}

/* =========================================================
   PHILOSOPHY — RESPONSIVE
========================================================= */

@media (max-width: 1024px) {

    .philosophy-content {
        max-width: 680px;
        padding-inline: 25px;
    }

    .philosophy-content .section-title {
        font-size: clamp(42px, 6vw, 62px);
        line-height: 1.05;
    }

    .philosophy-content > p:last-child {
        max-width: 560px;
        margin-top: 20px;

        font-size: 14px;
        line-height: 1.75;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .philosophy-content {
        width: 100%;
        max-width: 100%;

        padding-inline: 18px;
    }

    .philosophy-content .section-kicker {
        margin-bottom: 14px;

        font-size: 9px;
        letter-spacing: 0.2em;
    }

    .philosophy-content .section-title {
        width: 100%;
        max-width: 500px;

        margin-inline: auto;

        font-size: clamp(38px, 11vw, 52px);
        line-height: 1.02;

        text-align: center;
    }

    .philosophy-content > p:last-child {
        width: 100%;
        max-width: 390px;

        margin: 18px auto 0;

        font-size: 13px;
        line-height: 1.75;

        text-align: center;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .philosophy-content {
        padding-inline: 14px;
    }

    .philosophy-content .section-title {
        font-size: 36px;
        line-height: 1.04;
    }

    .philosophy-content > p:last-child {
        max-width: 320px;

        font-size: 12.5px;
        line-height: 1.7;
    }

}

/* =========================================================
   HOME 2 — PROCESS
========================================================= */

.home2-process {
    padding-top: 80px;
    padding-bottom: 85px;
}


/* ---------------------------------------------------------
   HEADER
--------------------------------------------------------- */

.home2-process-header {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
    align-items: end;
    gap: 70px;

    max-width: 1080px;
    margin: 0 auto 60px;
}

.home2-process-heading {
    max-width: 680px;
}

.home2-process-heading .section-kicker {
    margin-bottom: 18px;
}

.home2-process-heading .section-title {
    margin: 0;
}

.home2-process-heading .section-title em {
    display: block;
    font-style: italic;
    font-weight: 400;
}

.home2-process-intro {
    max-width: 390px;
    margin: 0 0 5px auto;

    color: var(--color-secondary);

    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.85;
}


/* ---------------------------------------------------------
   PROCESS LIST
--------------------------------------------------------- */

.home2-process-list {
    max-width: 1080px;
    margin: 0 auto;

    border-top: 1px solid var(--color-border);
}


.home2-process-item {
    position: relative;

    display: grid;
    grid-template-columns: 80px minmax(0, 1fr) 45px;
    align-items: center;
    gap: 30px;

    min-height: 155px;

    border-bottom: 1px solid var(--color-border);

    text-decoration: none;

    transition:
        padding .4s ease,
        background-color .4s ease;
}


.home2-process-number {
    align-self: start;
    padding-top: 25px;

    color: var(--color-muted);

    font-family: "Manrope", sans-serif;
    font-size: 10px;
    font-weight: 700;

    letter-spacing: .16em;
}


.home2-process-content {
    padding: 25px 0;
}


.home2-process-label {
    margin: 0 0 8px;

    color: var(--color-primary);

    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 700;

    letter-spacing: .2em;
    text-transform: uppercase;
}


.home2-process-content h3 {
    margin: 0 0 8px;

    color: var(--color-text);

    font-family: "Cormorant Garamond", serif;
    font-size: 38px;
    font-weight: 500;
    line-height: 1;

    transition: color .3s ease;
}


.home2-process-content > p:last-child {
    max-width: 560px;
    margin: 0;

    color: var(--color-secondary);

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.75;
}


.home2-process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    border: 1px solid var(--color-border);
    border-radius: 50%;

    color: var(--color-secondary);

    font-size: 10px;

    transition:
        color .3s ease,
        border-color .3s ease,
        background-color .3s ease,
        transform .3s ease;
}


/* ---------------------------------------------------------
   HOVER
--------------------------------------------------------- */

.home2-process-item:hover {
    padding-inline: 15px;
}

.home2-process-item:hover .home2-process-content h3 {
    color: var(--color-primary);
}

.home2-process-item:hover .home2-process-arrow {
    color: var(--color-bg);
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    transform: translateX(4px);
}


/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */

.home2-process-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    max-width: 1080px;
    margin: 30px auto 0;
}

.home2-process-footer > span {
    color: var(--color-muted);

    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    font-style: italic;
}


/* ---------------------------------------------------------
   TABLET
--------------------------------------------------------- */

@media (max-width: 1024px) {

    .home2-process {
        padding-top: 65px;
        padding-bottom: 70px;
    }

    .home2-process-header {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 45px;
    }

    .home2-process-intro {
        max-width: 600px;
        margin: 0;
    }

    .home2-process-item {
        grid-template-columns: 65px minmax(0, 1fr) 40px;
        gap: 20px;
        min-height: 145px;
    }

    .home2-process-content h3 {
        font-size: 34px;
    }

}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 767px) {

    .home2-process {
        padding-top: 50px;
        padding-bottom: 55px;
    }

    .home2-process-header {
        gap: 18px;
        margin-bottom: 35px;
    }

    .home2-process-heading .section-kicker {
        margin-bottom: 14px;
    }

    .home2-process-heading .section-title {
        font-size: clamp(38px, 10vw, 52px);
        line-height: 1.04;
    }

    .home2-process-intro {
        max-width: 100%;
        font-size: 12.5px;
        line-height: 1.75;
    }


    .home2-process-item {
        grid-template-columns: 38px minmax(0, 1fr) 32px;
        gap: 12px;

        min-height: auto;

        padding: 5px 0;
    }

    .home2-process-item:hover {
        padding-inline: 0;
    }


    .home2-process-number {
        padding-top: 25px;
        font-size: 9px;
    }


    .home2-process-content {
        padding: 23px 0;
    }

    .home2-process-label {
        margin-bottom: 7px;
        font-size: 8px;
        letter-spacing: .16em;
    }

    .home2-process-content h3 {
        margin-bottom: 8px;
        font-size: 30px;
        line-height: 1;
    }

    .home2-process-content > p:last-child {
        font-size: 11.5px;
        line-height: 1.7;
    }


    .home2-process-arrow {
        width: 29px;
        height: 29px;
        font-size: 8px;
    }


    .home2-process-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;

        margin-top: 25px;
    }

    .home2-process-footer > span {
        font-size: 16px;
    }

}


/* ---------------------------------------------------------
   SMALL MOBILE
--------------------------------------------------------- */

@media (max-width: 380px) {

    .home2-process {
        padding-top: 45px;
        padding-bottom: 50px;
    }

    .home2-process-item {
        grid-template-columns: 30px minmax(0, 1fr) 28px;
        gap: 9px;
    }

    .home2-process-content h3 {
        font-size: 28px;
    }

    .home2-process-content > p:last-child {
        font-size: 11px;
    }

    .home2-process-arrow {
        width: 27px;
        height: 27px;
    }

}

/* =========================================================
   HOME 2 — THE LUMIÈRE DIFFERENCE
========================================================= */

.home2-difference {
    padding-top: 80px;
    padding-bottom: 85px;
}


/* ---------------------------------------------------------
   HEADER
--------------------------------------------------------- */

.home2-difference-header {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.home2-difference-header .section-kicker {
    margin-bottom: 18px;
}

.home2-difference-header .section-title {
    margin-bottom: 20px;
}

.home2-difference-header .section-title em {
    display: block;
    font-style: italic;
    font-weight: 400;
}

.home2-difference-header .section-description {
    max-width: 590px;
    margin-inline: auto;
}


/* ---------------------------------------------------------
   GRID
--------------------------------------------------------- */

.home2-difference-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    max-width: 1080px;
    margin: 0 auto;

    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
}


/* ---------------------------------------------------------
   ITEM
--------------------------------------------------------- */

.home2-difference-item {
    position: relative;

    min-height: 280px;
    padding: 35px 38px;

    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);

    transition:
        background-color .4s ease,
        padding .4s ease;
}


.home2-difference-number {
    display: block;

    margin-bottom: 48px;

    color: var(--color-muted);

    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 700;

    letter-spacing: .16em;
}


.home2-difference-content {
    max-width: 410px;
}


.home2-difference-label {
    display: block;

    margin-bottom: 10px;

    color: var(--color-primary);

    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 700;

    letter-spacing: .18em;
    text-transform: uppercase;
}


.home2-difference-content h3 {
    margin: 0 0 12px;

    color: var(--color-text);

    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    font-weight: 500;
    line-height: .95;

    transition: color .3s ease;
}


.home2-difference-content h3 em {
    font-style: italic;
    font-weight: 400;
}


.home2-difference-content p {
    max-width: 390px;
    margin: 0;

    color: var(--color-secondary);

    font-family: "Manrope", sans-serif;
    font-size: 12px;
    line-height: 1.75;
}


/* ---------------------------------------------------------
   HOVER
--------------------------------------------------------- */

.home2-difference-item:hover {
    padding-left: 45px;
    background: var(--color-bg-soft);
}

.home2-difference-item:hover
.home2-difference-content h3 {
    color: var(--color-primary);
}


/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */

.home2-difference-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    max-width: 1080px;
    margin: 30px auto 0;

    gap: 25px;
}


.home2-difference-footer > span {
    color: var(--color-muted);

    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    font-style: italic;
}


/* ---------------------------------------------------------
   TABLET
--------------------------------------------------------- */

@media (max-width: 1024px) {

    .home2-difference {
        padding-top: 65px;
        padding-bottom: 70px;
    }

    .home2-difference-header {
        margin-bottom: 45px;
    }

    .home2-difference-item {
        min-height: 260px;
        padding: 30px;
    }

    .home2-difference-item:hover {
        padding-left: 36px;
    }

    .home2-difference-number {
        margin-bottom: 40px;
    }

    .home2-difference-content h3 {
        font-size: 36px;
    }

}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 767px) {

    .home2-difference {
        padding-top: 50px;
        padding-bottom: 55px;
    }

    .home2-difference-header {
        margin-bottom: 35px;
    }

    .home2-difference-header .section-title {
        font-size: clamp(38px, 10vw, 52px);
        line-height: 1.04;
    }

    .home2-difference-header .section-description {
        font-size: 12px;
        line-height: 1.75;
    }


    .home2-difference-grid {
        grid-template-columns: 1fr;

        border-left: 0;
    }


    .home2-difference-item {
        min-height: auto;

        padding: 28px 0;

        border-right: 0;
    }

    .home2-difference-item:hover {
        padding-left: 0;
    }


    .home2-difference-number {
        margin-bottom: 25px;
        font-size: 8px;
    }


    .home2-difference-content {
        max-width: 100%;
    }

    .home2-difference-content h3 {
        font-size: 34px;
        line-height: 1;
    }

    .home2-difference-content p {
        max-width: 360px;
        font-size: 11.5px;
        line-height: 1.7;
    }


    .home2-difference-footer {
        align-items: flex-start;
        flex-direction: column;

        margin-top: 25px;
        gap: 15px;
    }

    .home2-difference-footer > span {
        font-size: 16px;
    }

}


/* ---------------------------------------------------------
   SMALL MOBILE
--------------------------------------------------------- */

@media (max-width: 380px) {

    .home2-difference {
        padding-top: 45px;
        padding-bottom: 50px;
    }

    .home2-difference-item {
        padding: 25px 0;
    }

    .home2-difference-content h3 {
        font-size: 30px;
    }

    .home2-difference-content p {
        font-size: 11px;
    }

}

/* =========================================================
   HOME 2 — COLLECTIONS
========================================================= */

.home2-collections {
    padding-top: 80px;
    padding-bottom: 85px;
}


/* ---------------------------------------------------------
   HEADER
--------------------------------------------------------- */

.home2-collections-header {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
    align-items: end;
    gap: 70px;

    max-width: 1080px;
    margin: 0 auto 60px;
}

.home2-collections-header .section-kicker {
    margin-bottom: 18px;
}

.home2-collections-header .section-title {
    margin: 0;
}

.home2-collections-header .section-title em {
    display: block;
    font-style: italic;
    font-weight: 400;
}

.home2-collections-intro {
    max-width: 390px;
    margin: 0 0 5px auto;

    color: var(--color-secondary);

    font-family: "Manrope", sans-serif;
    font-size: 13px;
    line-height: 1.85;
}


/* ---------------------------------------------------------
   COLLECTION LIST
--------------------------------------------------------- */

.home2-collections-list {
    max-width: 1080px;
    margin: 0 auto;

    border-top: 1px solid var(--color-border);
}


.home2-collection-item {
    display: grid;
    grid-template-columns: 65px minmax(180px, 1fr) minmax(220px, 1fr) 150px 40px;
    align-items: center;
    gap: 25px;

    min-height: 155px;
    padding: 20px 0;

    color: inherit;
    text-decoration: none;

    border-bottom: 1px solid var(--color-border);

    transition:
        padding .4s ease,
        background-color .4s ease;
}


/* ---------------------------------------------------------
   NUMBER
--------------------------------------------------------- */

.home2-collection-number {
    align-self: start;
    padding-top: 5px;

    color: var(--color-muted);

    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .16em;
}


/* ---------------------------------------------------------
   NAME
--------------------------------------------------------- */

.home2-collection-name span {
    display: block;

    margin-bottom: 9px;

    color: var(--color-primary);

    font-family: "Manrope", sans-serif;
    font-size: 9px;
    font-weight: 700;

    letter-spacing: .18em;
    text-transform: uppercase;
}


.home2-collection-name h3 {
    margin: 0;

    color: var(--color-text);

    font-family: "Cormorant Garamond", serif;
    font-size: 38px;
    font-weight: 500;
    line-height: 1;

    transition: color .3s ease;
}


/* ---------------------------------------------------------
   DETAILS
--------------------------------------------------------- */

.home2-collection-details {
    padding-left: 25px;

    border-left: 1px solid var(--color-border);
}


.home2-collection-details p {
    margin: 0;

    color: var(--color-secondary);

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    line-height: 1.8;
}


.home2-collection-details p + p {
    color: var(--color-muted);
}


/* ---------------------------------------------------------
   PRICE
--------------------------------------------------------- */

.home2-collection-price {
    color: var(--color-text);

    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}


.home2-collection-price small {
    display: block;

    margin-bottom: 3px;

    color: var(--color-muted);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: .14em;
    text-transform: uppercase;
}


/* ---------------------------------------------------------
   ARROW
--------------------------------------------------------- */

.home2-collection-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    border: 1px solid var(--color-border);
    border-radius: 50%;

    color: var(--color-secondary);

    font-size: 9px;

    transition:
        color .3s ease,
        background-color .3s ease,
        border-color .3s ease,
        transform .3s ease;
}


/* ---------------------------------------------------------
   HOVER
--------------------------------------------------------- */

.home2-collection-item:hover {
    padding-inline: 15px;

    background: var(--color-bg-soft);
}

.home2-collection-item:hover .home2-collection-name h3 {
    color: var(--color-primary);
}

.home2-collection-item:hover .home2-collection-arrow {
    color: var(--color-bg);
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateX(4px);
}


/* ---------------------------------------------------------
   FEATURED
--------------------------------------------------------- */

.home2-collection-item.featured .home2-collection-name h3 {
    font-style: italic;
}


/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */

.home2-collections-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;

    max-width: 1080px;
    margin: 30px auto 0;

    gap: 25px;
}


.home2-collections-footer > span {
    color: var(--color-muted);

    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    font-style: italic;
}


/* ---------------------------------------------------------
   TABLET
--------------------------------------------------------- */

@media (max-width: 1024px) {

    .home2-collections {
        padding-top: 65px;
        padding-bottom: 70px;
    }

    .home2-collections-header {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 45px;
    }

    .home2-collections-intro {
        max-width: 600px;
        margin: 0;
    }

    .home2-collection-item {
        grid-template-columns: 50px minmax(150px, 1fr) minmax(180px, 1fr) 125px 36px;
        gap: 18px;
        min-height: 140px;
    }

    .home2-collection-name h3 {
        font-size: 34px;
    }

    .home2-collection-details {
        padding-left: 18px;
    }

}


/* ---------------------------------------------------------
   MOBILE
--------------------------------------------------------- */

@media (max-width: 767px) {

    .home2-collections {
        padding-top: 50px;
        padding-bottom: 55px;
    }

    .home2-collections-header {
        gap: 18px;
        margin-bottom: 35px;
    }

    .home2-collections-header .section-title {
        font-size: clamp(38px, 10vw, 52px);
        line-height: 1.04;
    }

    .home2-collections-intro {
        max-width: 100%;
        font-size: 12px;
        line-height: 1.75;
    }


    .home2-collection-item {
        grid-template-columns: 35px minmax(0, 1fr) 30px;
        gap: 12px;

        min-height: auto;
        padding: 25px 0;
    }

    .home2-collection-item:hover {
        padding-inline: 0;
    }


    .home2-collection-number {
        padding-top: 4px;
        font-size: 8px;
    }


    .home2-collection-name span {
        margin-bottom: 7px;
        font-size: 8px;
    }

    .home2-collection-name h3 {
        font-size: 31px;
    }


    .home2-collection-details {
        grid-column: 2 / 3;

        padding: 12px 0 0;

        border-left: 0;
        border-top: 1px solid var(--color-border);
    }

    .home2-collection-details p {
        font-size: 10.5px;
        line-height: 1.7;
    }


    .home2-collection-price {
        grid-column: 2 / 3;

        font-size: 12px;
    }


    .home2-collection-arrow {
        grid-column: 3;
        grid-row: 1;

        width: 29px;
        height: 29px;

        font-size: 8px;
    }


    .home2-collections-footer {
        align-items: flex-start;
        flex-direction: column;

        margin-top: 25px;
        gap: 15px;
    }

    .home2-collections-footer > span {
        font-size: 16px;
    }

}


/* ---------------------------------------------------------
   SMALL MOBILE
--------------------------------------------------------- */

@media (max-width: 380px) {

    .home2-collections {
        padding-top: 45px;
        padding-bottom: 50px;
    }

    .home2-collection-item {
        grid-template-columns: 30px minmax(0, 1fr) 28px;
        gap: 9px;
    }

    .home2-collection-name h3 {
        font-size: 28px;
    }

    .home2-collection-details p {
        font-size: 10px;
    }

    .home2-collection-arrow {
        width: 27px;
        height: 27px;
    }

}

/* =========================================================
   HOME 2 — SECTION SPACING FIX
========================================================= */

.home2-intro {
    padding-top: 45px;
    padding-bottom: 45px;
}

.home2-portfolio {
    padding-top: 45px;
    padding-bottom: 45px;
}

.home2-services {
    padding-top: 45px;
    padding-bottom: 45px;
}

.home2-process {
    padding-top: 45px;
    padding-bottom: 45px;
}

.home2-difference {
    padding-top: 45px;
    padding-bottom: 45px;
}

.home2-collections {
    padding-top: 45px;
    padding-bottom: 45px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .home2-intro,
    .home2-portfolio,
    .home2-services,
    .home2-process,
    .home2-difference,
    .home2-collections {
        padding-top: 38px;
        padding-bottom: 38px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .home2-intro,
    .home2-portfolio,
    .home2-services,
    .home2-process,
    .home2-difference,
    .home2-collections {
        padding-top: 32px;
        padding-bottom: 32px;
    }

}

.portfolio-page hr {
    width: 100%;
    height: 1px;
    margin: 0;
    padding: 0;
    border: 0;
    background: var(--color-border);
}

hr {
    width: 100%;
    height: 1px;
    margin: 0;
    padding: 0;
    border: 0;
    background: var(--color-border);
}

/* =========================================================
   HOME 2 — THE LUMIÈRE EXPERIENCE
========================================================= */

.home2-experience {
    padding: 110px 0;
}

.home2-experience-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 90px;
    align-items: start;
}

/* LEFT */
.home2-experience-heading {
    max-width: 620px;
}

.home2-experience-heading .section-kicker {
    margin-bottom: 20px;
}

.home2-experience-heading .section-title {
    max-width: 600px;
    margin-bottom: 0;
}

/* RIGHT */
.home2-experience-content {
    max-width: 560px;
}

.home2-experience-lead {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(24px, 2.3vw, 34px);
    line-height: 1.35;
    color: var(--color-text);
    margin-bottom: 28px;
}

.home2-experience-content > p:not(.home2-experience-lead) {
    max-width: 520px;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
}


/* =========================================================
   TEXT LINK
========================================================= */

.home2-experience .text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: var(--color-text);
    text-decoration: none;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    transition:
        color 0.3s ease,
        gap 0.3s ease;
}

.home2-experience .text-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {

    .home2-experience .text-link:hover {
        color: var(--color-primary);
        gap: 16px;
    }

    .home2-experience .text-link:hover i {
        transform: translateX(3px);
    }

}


/* =========================================================
   BOTTOM STATEMENT
========================================================= */

.home2-experience-statement {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-top: 90px;
    padding-top: 28px;

    border-top: 1px solid var(--color-border);
}

.home2-experience-statement span {
    position: relative;

    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    line-height: 1.4;

    color: var(--color-text);
}

.home2-experience-statement span:not(:last-child) {
    border-right: 1px solid var(--color-border);
}

.home2-experience-statement span:nth-child(2) {
    padding-left: 32px;
}

.home2-experience-statement span:nth-child(3) {
    padding-left: 32px;
}


/* =========================================================
   TABLET — 768px to 1024px
========================================================= */

@media (max-width: 1024px) {

    .home2-experience {
        padding: 90px 0;
    }

    .home2-experience-grid {
        gap: 55px;
    }

    .home2-experience-content {
        max-width: none;
    }

    .home2-experience-statement {
        margin-top: 70px;
    }

}


/* =========================================================
   MOBILE — 320px to 767px
========================================================= */

@media (max-width: 767px) {

    .home2-experience {
        padding: 70px 0;
    }

    .home2-experience-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .home2-experience-heading,
    .home2-experience-content {
        max-width: none;
    }

    .home2-experience-heading .section-kicker {
        margin-bottom: 14px;
    }

    .home2-experience-lead {
        font-size: 25px;
        line-height: 1.35;
        margin-bottom: 22px;
    }

    .home2-experience-content > p:not(.home2-experience-lead) {
        line-height: 1.7;
        margin-bottom: 28px;
    }

    .home2-experience-statement {
        grid-template-columns: 1fr;
        gap: 0;

        margin-top: 55px;
        padding-top: 0;

        border-top: 1px solid var(--color-border);
    }

    .home2-experience-statement span {
        padding: 18px 0 !important;
        font-size: 20px;

        border-right: none !important;
        border-bottom: 1px solid var(--color-border);
    }

    .home2-experience-statement span:last-child {
        border-bottom: none;
    }

}


/* =========================================================
   SMALL MOBILE — 320px to 480px
========================================================= */

@media (max-width: 480px) {

    .home2-experience {
        padding: 60px 0;
    }

    .home2-experience-grid {
        gap: 36px;
    }

    .home2-experience-lead {
        font-size: 23px;
    }

    .home2-experience-statement {
        margin-top: 45px;
    }

    .home2-experience-statement span {
        font-size: 19px;
    }

}

/* =========================================================
   ABOUT HERO — CENTER CONTENT
========================================================= */

.hero-about {
    position: relative;
}

.hero-about .container {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-about .hero-content {
    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
}


/* KICKER */
.hero-about .hero-kicker {
    text-align: center;
}


/* TITLE */
.hero-about .hero-title {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;

    text-align: center;
}


/* DESCRIPTION */
.hero-about .hero-description {
    max-width: 650px;

    margin-left: auto;
    margin-right: auto;

    text-align: center;
}


/* BUTTONS */
.hero-about .hero-actions {
    justify-content: center;
    align-items: center;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .hero-about .hero-content {
        max-width: 100%;
    }

    .hero-about .hero-title {
        max-width: 100%;
    }

    .hero-about .hero-description {
        max-width: 100%;
    }

    .hero-about .hero-actions {
        justify-content: center;
    }

}
.hero-about .container {
    display: flex;
    align-items: center;
    justify-content: center;
}


/* =========================================================
   CONTENT
========================================================= */

.intro-content {
    position: relative;

    max-width: 650px;

    padding: 35px 0;
}


/* Small vertical number */

.intro-content::before {
    content: "01";

    display: block;

    margin-bottom: 28px;

    font-family: "Manrope", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;

    color: var(--color-primary);
}


/* =========================================================
   SECTION HEADER
========================================================= */

.intro-content .section-header {
    margin-bottom: 35px;
}

.intro-content .section-kicker {
    margin-bottom: 18px;
}

.intro-content .section-title {
    max-width: 620px;

    margin-bottom: 0;

    font-size: clamp(42px, 4.8vw, 70px);
    line-height: 1.04;
}


/* =========================================================
   TEXT
========================================================= */

.intro-text {
    max-width: 570px;

    margin-bottom: 20px;

    color: var(--color-text-secondary);

    font-size: 15px;
    line-height: 1.85;
}

.intro-text + .intro-text {
    margin-top: 0;
}


/* =========================================================
   DIVIDER
========================================================= */

.intro-content .btn {
    position: relative;

    margin-top: 22px;
    padding-top: 30px;

    border-top: 1px solid var(--color-border);

    border-radius: 0;

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

    width: 100%;

    background: transparent;

    color: var(--color-text);

    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;

    text-decoration: none;
}

.intro-content .btn i {
    transition: transform 0.3s ease;
}


/* =========================================================
   BUTTON HOVER
========================================================= */

@media (hover: hover) and (pointer: fine) {

    .intro-content .btn:hover {
        color: var(--color-primary);
    }

    .intro-content .btn:hover i {
        transform: translateX(5px);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .intro-grid {
        grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
        gap: 50px;
    }

    .intro-image {
        height: 520px;
    }

    .intro-content {
        padding: 20px 0;
    }

    .intro-content .section-title {
        font-size: clamp(38px, 5vw, 56px);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .intro-grid {
        grid-template-columns: 1fr;

        gap: 38px;
    }

    .intro-image {
        height: 430px;

        order: 1;
    }

    .intro-content {
        order: 2;

        max-width: none;

        padding: 0;
    }

    .intro-content::before {
        margin-bottom: 20px;
    }

    .intro-content .section-header {
        margin-bottom: 28px;
    }

    .intro-content .section-title {
        font-size: clamp(38px, 11vw, 52px);
        line-height: 1.05;
    }

    .intro-text {
        font-size: 14px;
        line-height: 1.75;
    }

    .intro-content .btn {
        margin-top: 25px;
        padding-top: 24px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .intro-grid {
        gap: 32px;
    }

    .intro-image {
        height: 360px;
    }

    .intro-image::before {
        top: 18px;
        left: 18px;
    }

    .intro-image::after {
        left: 18px;
        bottom: 18px;
    }

    .intro-content .section-title {
        font-size: 38px;
    }

}

/* =========================================================
   THE LUMIÈRE METHOD
========================================================= */

.lumiere-method {
    padding-top: 100px;
    padding-bottom: 100px;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.lumiere-method-header {
    max-width: 850px;
    margin: 0 auto 75px;
    text-align: center;
}

.lumiere-method-header .section-kicker {
    margin-bottom: 18px;
}

.lumiere-method-header .section-title {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.lumiere-method-header .section-description {
    max-width: 650px;
    margin: 24px auto 0;
}


/* =========================================================
   METHOD LIST
========================================================= */

.lumiere-method-list {
    width: 100%;
    border-top: 1px solid var(--color-border);
}


/* =========================================================
   METHOD ITEM
========================================================= */

.method-item {
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr) 70px;
    align-items: center;

    gap: 45px;

    padding: 42px 0;

    border-bottom: 1px solid var(--color-border);

    transition:
        padding 0.3s ease,
        background-color 0.3s ease;
}


/* =========================================================
   NUMBER
========================================================= */

.method-number {
    font-family: "Manrope", sans-serif;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.12em;

    color: var(--color-primary);
}


/* =========================================================
   CONTENT
========================================================= */

.method-content {
    max-width: 720px;
}

.method-kicker {
    margin-bottom: 10px;

    font-family: "Manrope", sans-serif;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: var(--color-muted);
}

.method-content h3 {
    margin-bottom: 14px;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(30px, 3vw, 42px);
    font-weight: 500;

    line-height: 1.15;

    color: var(--color-text);
}

.method-content > p:last-child {
    max-width: 650px;

    margin-bottom: 0;

    font-size: 15px;
    line-height: 1.8;

    color: var(--color-text-secondary);
}


/* =========================================================
   ICON
========================================================= */

.method-icon {
    width: 58px;
    height: 58px;

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

    border: 1px solid var(--color-border);

    color: var(--color-primary);

    font-size: 18px;

    transition:
        border-color 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


/* =========================================================
   HOVER — DESKTOP ONLY
========================================================= */

@media (hover: hover) and (pointer: fine) {

    .method-item:hover {
        padding-left: 12px;
        padding-right: 12px;
    }

    .method-item:hover .method-icon {
        border-color: var(--color-primary);
        color: var(--color-primary);
        transform: rotate(4deg);
    }

}


/* =========================================================
   CLOSING STATEMENT
========================================================= */

.lumiere-method-closing {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 28px;

    margin-top: 65px;

    text-align: center;
}

.lumiere-method-closing p {
    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(22px, 2.3vw, 32px);
    font-style: italic;

    line-height: 1.3;

    color: var(--color-text);
}

.closing-line {
    width: 70px;
    height: 1px;

    flex: 0 0 auto;

    background: var(--color-border);
}


/* =========================================================
   TABLET — 768px TO 1024px
========================================================= */

@media (max-width: 1024px) {

    .lumiere-method {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .lumiere-method-header {
        margin-bottom: 60px;
    }

    .method-item {
        grid-template-columns: 65px minmax(0, 1fr) 58px;

        gap: 30px;

        padding: 35px 0;
    }

    .method-content h3 {
        font-size: 34px;
    }

    .method-icon {
        width: 50px;
        height: 50px;

        font-size: 16px;
    }

}


/* =========================================================
   MOBILE — 320px TO 767px
========================================================= */

@media (max-width: 767px) {

    .lumiere-method {
        padding-top: 65px;
        padding-bottom: 65px;
    }


    /* Header */

    .lumiere-method-header {
        margin-bottom: 45px;
    }

    .lumiere-method-header .section-description {
        margin-top: 18px;
    }


    /* Method rows */

    .method-item {
        grid-template-columns: 42px minmax(0, 1fr);

        gap: 20px;

        padding: 30px 0;
    }


    /* Number */

    .method-number {
        align-self: start;

        padding-top: 5px;

        font-size: 11px;
    }


    /* Content */

    .method-content {
        max-width: none;
    }

    .method-kicker {
        margin-bottom: 8px;

        font-size: 10px;
    }

    .method-content h3 {
        margin-bottom: 12px;

        font-size: 30px;
        line-height: 1.15;
    }

    .method-content > p:last-child {
        font-size: 14px;
        line-height: 1.75;
    }


    /* Icon */

    .method-icon {
        display: none;
    }


    /* Closing */

    .lumiere-method-closing {
        flex-direction: column;

        gap: 18px;

        margin-top: 45px;
    }

    .closing-line {
        width: 55px;
    }

    .lumiere-method-closing p {
        max-width: 300px;

        font-size: 24px;
    }

}


/* =========================================================
   SMALL MOBILE — 320px TO 480px
========================================================= */

@media (max-width: 480px) {

    .lumiere-method {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .method-item {
        grid-template-columns: 34px minmax(0, 1fr);

        gap: 15px;

        padding: 26px 0;
    }

    .method-content h3 {
        font-size: 27px;
    }

    .method-content > p:last-child {
        font-size: 13.5px;
        line-height: 1.7;
    }

    .lumiere-method-closing {
        margin-top: 38px;
    }

}

/* =========================================================
   FOOTER CONTACT ITEMS
========================================================= */

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-item i {
    flex: 0 0 18px;
    width: 18px;
    margin-top: 4px;
    font-size: 13px;
}

.footer-contact-item span,
.footer-contact-item a {
    line-height: 1.7;
}

.footer-contact-item a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-contact-item a:hover {
    opacity: 0.65;
}

/* =========================================================
   WHAT WE NOTICE
========================================================= */

.what-we-notice {
    padding-top: 100px;
    padding-bottom: 100px;
}


/* =========================================================
   MAIN GRID
========================================================= */

.what-we-notice-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 90px;

    align-items: start;
}


/* =========================================================
   LEFT — HEADING
========================================================= */

.what-we-notice-heading {
    max-width: 600px;
}

.what-we-notice-heading .section-kicker {
    margin-bottom: 20px;
}

.what-we-notice-heading .section-title {
    max-width: 560px;
    margin-bottom: 0;
}


/* =========================================================
   RIGHT — CONTENT
========================================================= */

.what-we-notice-content {
    max-width: 600px;
}

.what-we-notice-intro {
    max-width: 540px;

    margin-bottom: 42px;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(25px, 2.4vw, 36px);
    font-weight: 500;

    line-height: 1.35;

    color: var(--color-text);
}


/* =========================================================
   NOTICE LIST
========================================================= */

.notice-list {
    width: 100%;

    border-top: 1px solid var(--color-border);
}


/* =========================================================
   NOTICE ITEM
========================================================= */

.notice-item {
    display: grid;

    grid-template-columns: 55px minmax(0, 1fr);

    gap: 25px;

    padding: 28px 0;

    border-bottom: 1px solid var(--color-border);

    transition:
        padding 0.3s ease,
        background-color 0.3s ease;
}


/* =========================================================
   NUMBER
========================================================= */

.notice-number {
    padding-top: 4px;

    font-family: "Manrope", sans-serif;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.12em;

    color: var(--color-primary);
}


/* =========================================================
   ITEM CONTENT
========================================================= */

.notice-item h3 {
    margin-bottom: 7px;

    font-family: "Cormorant Garamond", serif;

    font-size: 27px;
    font-weight: 500;

    line-height: 1.2;

    color: var(--color-text);
}

.notice-item p {
    max-width: 470px;

    margin-bottom: 0;

    font-size: 14px;
    line-height: 1.75;

    color: var(--color-text-secondary);
}


/* =========================================================
   DESKTOP HOVER
========================================================= */

@media (hover: hover) and (pointer: fine) {

    .notice-item:hover {
        padding-left: 10px;
        padding-right: 10px;
    }

}


/* =========================================================
   CLOSING STATEMENT
========================================================= */

.what-we-notice-closing {
    display: flex;

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

    margin-top: 75px;

    padding-top: 30px;

    border-top: 1px solid var(--color-border);

    text-align: center;
}

.what-we-notice-closing span {
    max-width: 700px;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(22px, 2.2vw, 31px);
    font-style: italic;

    line-height: 1.4;

    color: var(--color-text);
}


/* =========================================================
   TABLET — 768px TO 1024px
========================================================= */

@media (max-width: 1024px) {

    .what-we-notice {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .what-we-notice-grid {
        gap: 55px;
    }

    .what-we-notice-intro {
        margin-bottom: 35px;

        font-size: 28px;
    }

    .notice-item {
        grid-template-columns: 45px minmax(0, 1fr);

        gap: 20px;

        padding: 25px 0;
    }

    .notice-item h3 {
        font-size: 25px;
    }

    .what-we-notice-closing {
        margin-top: 60px;
    }

}


/* =========================================================
   MOBILE — 320px TO 767px
========================================================= */

@media (max-width: 767px) {

    .what-we-notice {
        padding-top: 65px;
        padding-bottom: 65px;
    }


    /* Main grid */

    .what-we-notice-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    /* Heading */

    .what-we-notice-heading {
        max-width: none;
    }

    .what-we-notice-heading .section-kicker {
        margin-bottom: 14px;
    }

    .what-we-notice-heading .section-title {
        max-width: none;
    }


    /* Content */

    .what-we-notice-content {
        max-width: none;
    }

    .what-we-notice-intro {
        max-width: none;

        margin-bottom: 32px;

        font-size: 26px;
    }


    /* Notice items */

    .notice-item {
        grid-template-columns: 38px minmax(0, 1fr);

        gap: 16px;

        padding: 24px 0;
    }

    .notice-number {
        font-size: 10px;
    }

    .notice-item h3 {
        font-size: 25px;
    }

    .notice-item p {
        font-size: 13.5px;
        line-height: 1.7;
    }


    /* Closing */

    .what-we-notice-closing {
        margin-top: 50px;

        padding-top: 25px;
    }

    .what-we-notice-closing span {
        max-width: 320px;

        font-size: 23px;
    }

}


/* =========================================================
   SMALL MOBILE — 320px TO 480px
========================================================= */

@media (max-width: 480px) {

    .what-we-notice {
        padding-top: 55px;
        padding-bottom: 55px;
    }

    .what-we-notice-grid {
        gap: 38px;
    }

    .what-we-notice-intro {
        font-size: 23px;
    }

    .notice-item {
        grid-template-columns: 32px minmax(0, 1fr);

        gap: 13px;

        padding: 21px 0;
    }

    .notice-item h3 {
        font-size: 23px;
    }

    .notice-item p {
        font-size: 13px;
    }

    .what-we-notice-closing {
        margin-top: 42px;
    }

    .what-we-notice-closing span {
        font-size: 21px;
    }

}
/* =========================================================
   NAVBAR ANIMATION / LAYOUT STABILITY FIX
   ========================================================= */

/*
   Keep the viewport width stable when the page loader
   locks/unlocks body scrolling.
*/
/*
   NOTE: scrollbar-gutter: stable was previously used here to try to
   prevent layout shift when a scrollbar appears/disappears. It was
   removed: it reserves scrollbar space unconditionally, even when no
   scrollbar is shown yet (e.g. before hero/portfolio images finish
   loading, or on touch devices with overlay scrollbars), producing a
   permanent, unexplained gap on the right edge of the viewport. The
   fixed .site-header (width: 100%) and normal document flow already
   track document.documentElement.clientWidth correctly on their own.
*/

/*
   Navbar must never participate in AOS / GSAP transforms.
   It stays fixed from the first frame to the last frame.
*/
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    width: 100%;
    z-index: 2000;

    transform: none !important;
    animation: none !important;

    will-change: background-color, border-color, box-shadow;
}

/*
   Navbar itself must remain a normal fixed-header child.
*/
.site-header .navbar {
    position: relative;

    transform: none !important;
    animation: none !important;

    will-change: auto;
}

/*
   Prevent animation attributes accidentally applied
   to the header/navbar from changing its position.
*/
.site-header[data-aos],
.site-header .navbar[data-aos] {
    opacity: 1 !important;
    transform: none !important;
}

/*
   Loading state:
   scrollbar space remains reserved, so locking body scrolling
   does not change the responsive navbar width. No temporary
   padding is required in JavaScript.
*/
/*
   (scrollbar-gutter removed here too, for the same reason above —
   see the NAVBAR ANIMATION / LAYOUT STABILITY FIX note.)
*/

/*
   MOBILE HEADER
*/
@media (max-width: 767px) {

    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;

        width: 100%;
        height: 72px;

        transform: none !important;
        animation: none !important;
    }

    .site-header .navbar {
        height: 72px;
        min-height: 72px;

        transform: none !important;
        animation: none !important;
    }
}

/* =========================================================
   MOBILE MENU — CENTERED NAVIGATION + INLINE HOME DROPDOWN
   Keeps the existing menu design; only alignment/hover behavior
========================================================= */
@media (max-width: 1024px) {
    .mobile-nav-link,
    .mobile-home-toggle {
        justify-content: center;
        text-align: center;
        gap: 10px;
    }

    .mobile-home-toggle span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-home-toggle i {
        flex: 0 0 auto;
    }

    .mobile-nav-link:hover,
    .mobile-nav-link:focus-visible,
    .mobile-home-toggle:hover,
    .mobile-home-toggle:focus-visible {
        color: var(--color-primary);
        background: var(--color-surface-2);
    }

    .mobile-submenu {
        text-align: center;
        padding-inline: 0;
    }

    .mobile-submenu a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        padding: 8px 14px;
        border-radius: 3px;
        text-align: center;
        transition: color 0.2s ease, background-color 0.2s ease;
    }

    .mobile-submenu a:hover,
    .mobile-submenu a:focus-visible,
    .mobile-submenu a.active {
        color: var(--color-primary);
        background: var(--color-surface-2);
    }
}

/* =========================================================
   LUMIÈRE MOMENTS
   CSS-ONLY INITIAL ANIMATIONS
   IMPORTANT:
   - Navbar is completely excluded
   - No JavaScript required for these animations
   - Responsive layout is not delayed by animation
   ========================================================= */


/* =========================================================
   01. ANIMATION BASE
   ========================================================= */

@keyframes lmFadeUp {
    from {
        opacity: 0;
        transform: translate3d(0, 28px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}


@keyframes lmFadeDown {
    from {
        opacity: 0;
        transform: translate3d(0, -22px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}


@keyframes lmFadeLeft {
    from {
        opacity: 0;
        transform: translate3d(28px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}


@keyframes lmFadeRight {
    from {
        opacity: 0;
        transform: translate3d(-28px, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}


@keyframes lmHeroImage {
    from {
        opacity: 0;
        transform: scale(1.08);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


/* =========================================================
   02. HERO IMAGE
   ========================================================= */

.hero {
    animation:
        lmHeroImage 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}


/* =========================================================
   03. HERO CONTENT
   ========================================================= */

/*
   We animate only the hero content.
   Navbar is intentionally NOT included.
*/

.hero .hero-kicker {
    animation:
        lmFadeDown 0.8s ease-out 0.15s both;
}


.hero .hero-title {
    animation:
        lmFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}


.hero .hero-description {
    animation:
        lmFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
}


.hero .hero-actions {
    animation:
        lmFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
}


/* =========================================================
   04. HOME 2 HERO
   ========================================================= */

.hero-home-2 {
    animation:
        lmHeroImage 1.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}


.hero-home-2 .hero-kicker {
    animation:
        lmFadeDown 0.8s ease-out 0.15s both;
}


.hero-home-2 .hero-title {
    animation:
        lmFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}


.hero-home-2 .hero-description {
    animation:
        lmFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}


.hero-home-2 .hero-actions {
    animation:
        lmFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}


/* =========================================================
   05. IMAGE REVEALS
   ========================================================= */

.intro-image,
.image-feature-image,
.portfolio-showcase-image,
.event-image,
.portfolio-card {
    animation:
        lmFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}


/* =========================================================
   06. SECTION HEADINGS
   ========================================================= */

.section-header {
    animation:
        lmFadeUp 0.8s ease-out both;
}


/* =========================================================
   07. CARDS
   ========================================================= */

.service-card {
    animation:
        lmFadeUp 0.8s ease-out both;
}


.event-card {
    animation:
        lmFadeUp 0.8s ease-out both;
}


.package-card {
    animation:
        lmFadeUp 0.8s ease-out both;
}


.process-item {
    animation:
        lmFadeUp 0.8s ease-out both;
}


/* =========================================================
   08. STAGGER
   ========================================================= */

.services-grid .service-card:nth-child(1),
.events-grid .event-card:nth-child(1),
.packages-grid .package-card:nth-child(1),
.process-grid .process-item:nth-child(1) {
    animation-delay: 0.15s;
}


.services-grid .service-card:nth-child(2),
.events-grid .event-card:nth-child(2),
.packages-grid .package-card:nth-child(2),
.process-grid .process-item:nth-child(2) {
    animation-delay: 0.25s;
}


.services-grid .service-card:nth-child(3),
.events-grid .event-card:nth-child(3),
.packages-grid .package-card:nth-child(3),
.process-grid .process-item:nth-child(3) {
    animation-delay: 0.35s;
}


.services-grid .service-card:nth-child(4),
.events-grid .event-card:nth-child(4),
.packages-grid .package-card:nth-child(4),
.process-grid .process-item:nth-child(4) {
    animation-delay: 0.45s;
}


/* =========================================================
   09. PORTFOLIO STAGGER
   ========================================================= */

.portfolio-showcase-card:nth-child(1),
.portfolio-card:nth-child(1) {
    animation-delay: 0.15s;
}


.portfolio-showcase-card:nth-child(2),
.portfolio-card:nth-child(2) {
    animation-delay: 0.25s;
}


.portfolio-showcase-card:nth-child(3),
.portfolio-card:nth-child(3) {
    animation-delay: 0.35s;
}


/* =========================================================
   10. INTRO SECTION
   ========================================================= */

.intro-image {
    animation:
        lmFadeRight 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}


.intro-content {
    animation:
        lmFadeLeft 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}


/* =========================================================
   11. PHILOSOPHY
   ========================================================= */

.philosophy-content {
    animation:
        lmFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}


/* =========================================================
   12. STATS
   ========================================================= */

.stat {
    animation:
        lmFadeUp 0.8s ease-out both;
}


.stat:nth-child(1) {
    animation-delay: 0.1s;
}


.stat:nth-child(2) {
    animation-delay: 0.2s;
}


.stat:nth-child(3) {
    animation-delay: 0.3s;
}


.stat:nth-child(4) {
    animation-delay: 0.4s;
}


/* =========================================================
   13. TESTIMONIAL
   ========================================================= */

.testimonial {
    animation:
        lmFadeUp 0.9s ease-out 0.15s both;
}


/* =========================================================
   14. BOOKING CTA
   ========================================================= */

.booking-cta .container {
    animation:
        lmFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}


/* =========================================================
   15. FOOTER
   ========================================================= */

.footer-grid {
    animation:
        lmFadeUp 0.8s ease-out 0.1s both;
}


/* =========================================================
   16. IMPORTANT — NAVBAR NEVER ANIMATES
   ========================================================= */

.site-header,
.site-header *,
.navbar,
.navbar * {
    animation-name: none;
}


/*
   Keep the existing navbar position completely stable.
*/

.site-header,
.site-header .navbar {
    transform: none !important;
}


/* =========================================================
   17. MOBILE / TABLET SAFETY
   ========================================================= */

@media (max-width: 1024px) {

    .site-header,
    .site-header .navbar,
    .hamburger,
    .mobile-account {
        animation: none !important;
        transform: none !important;
    }

}


/* =========================================================
   18. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hero,
    .hero-home-2,
    .hero .hero-kicker,
    .hero .hero-title,
    .hero .hero-description,
    .hero .hero-actions,
    .hero-home-2 .hero-kicker,
    .hero-home-2 .hero-title,
    .hero-home-2 .hero-description,
    .hero-home-2 .hero-actions,
    .intro-image,
    .intro-content,
    .section-header,
    .service-card,
    .event-card,
    .package-card,
    .process-item,
    .portfolio-showcase-card,
    .portfolio-card,
    .philosophy-content,
    .stat,
    .testimonial,
    .booking-cta .container,
    .footer-grid {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

}

/* =========================================================
   LUMIÈRE MOMENTS
   HOME 1 + HOME 2
   LOADER-SAFE HERO ANIMATIONS
   CSS ONLY — NO JAVASCRIPT CHANGES
   ========================================================= */


/* =========================================================
   01. HERO ANIMATION KEYFRAMES
   ========================================================= */

@keyframes lmHeroFadeUp {
    from {
        opacity: 0;
        transform: translate3d(0, 34px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}


@keyframes lmHeroFadeDown {
    from {
        opacity: 0;
        transform: translate3d(0, -26px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}


/* =========================================================
   02. IMPORTANT
   DO NOT ANIMATE NAVBAR
   ========================================================= */

.site-header,
.site-header *,
.navbar,
.navbar * {
    animation: none !important;
    animation-play-state: running !important;
}


/* =========================================================
   03. PAUSE HERO ANIMATIONS WHILE LOADER IS ACTIVE
   ========================================================= */

/*
   Existing CSS animations inside both home-page heroes
   are paused while body.page-loading exists.

   The loader JS already adds/removes .page-loading.
   No JS modification is required.
*/

body.page-loading .hero,
body.page-loading .hero * {
    animation-play-state: paused !important;
}


/* =========================================================
   04. HOME 1 HERO
   ========================================================= */

/* Kicker */

.home-1-page .hero .hero-kicker[data-aos] {
    animation-name: lmHeroFadeUp !important;
    animation-duration: 900ms !important;
    animation-delay: 0ms !important;
    animation-timing-function: cubic-bezier(.22, 1, .36, 1) !important;
    animation-fill-mode: both !important;

    transition: none !important;
}


/* Title */

.home-1-page .hero .hero-title[data-aos] {
    animation-name: lmHeroFadeUp !important;
    animation-duration: 1000ms !important;
    animation-delay: 100ms !important;
    animation-timing-function: cubic-bezier(.22, 1, .36, 1) !important;
    animation-fill-mode: both !important;

    transition: none !important;
}


/* Description */

.home-1-page .hero .hero-description[data-aos] {
    animation-name: lmHeroFadeUp !important;
    animation-duration: 1000ms !important;
    animation-delay: 200ms !important;
    animation-timing-function: cubic-bezier(.22, 1, .36, 1) !important;
    animation-fill-mode: both !important;

    transition: none !important;
}


/* Buttons */

.home-1-page .hero .hero-actions[data-aos] {
    animation-name: lmHeroFadeUp !important;
    animation-duration: 1000ms !important;
    animation-delay: 300ms !important;
    animation-timing-function: cubic-bezier(.22, 1, .36, 1) !important;
    animation-fill-mode: both !important;

    transition: none !important;
}


/* =========================================================
   05. HOME 2 HERO
   ========================================================= */

/* Kicker */

.home-2-page .hero-home-2 .hero-kicker[data-aos] {
    animation-name: lmHeroFadeDown !important;
    animation-duration: 1000ms !important;
    animation-delay: 0ms !important;
    animation-timing-function: cubic-bezier(.22, 1, .36, 1) !important;
    animation-fill-mode: both !important;

    transition: none !important;
}


/* Title */

.home-2-page .hero-home-2 .hero-title[data-aos] {
    animation-name: lmHeroFadeUp !important;
    animation-duration: 1200ms !important;
    animation-delay: 150ms !important;
    animation-timing-function: cubic-bezier(.22, 1, .36, 1) !important;
    animation-fill-mode: both !important;

    transition: none !important;
}


/* Description */

.home-2-page .hero-home-2 .hero-description[data-aos] {
    animation-name: lmHeroFadeUp !important;
    animation-duration: 1000ms !important;
    animation-delay: 300ms !important;
    animation-timing-function: cubic-bezier(.22, 1, .36, 1) !important;
    animation-fill-mode: both !important;

    transition: none !important;
}


/* Buttons */

.home-2-page .hero-home-2 .hero-actions[data-aos] {
    animation-name: lmHeroFadeUp !important;
    animation-duration: 1000ms !important;
    animation-delay: 450ms !important;
    animation-timing-function: cubic-bezier(.22, 1, .36, 1) !important;
    animation-fill-mode: both !important;

    transition: none !important;
}


/* =========================================================
   06. HOME 2 DISCOVER
   ========================================================= */

.home-2-page .hero-home-2 .hero-scroll[data-aos] {
    animation-name: lmHeroFadeUp !important;
    animation-duration: 1000ms !important;
    animation-delay: 700ms !important;
    animation-timing-function: cubic-bezier(.22, 1, .36, 1) !important;
    animation-fill-mode: both !important;

    transition: none !important;
}


/* =========================================================
   07. MAKE SURE HERO ANIMATION STARTS AFTER LOADER
   ========================================================= */

/*
   Before loader finishes:
   animation is paused at its beginning.

   After loader finishes:
   this rule disappears and the animation runs normally
   from 0% to 100%.
*/

body:not(.page-loading) .hero .hero-kicker[data-aos],
body:not(.page-loading) .hero .hero-title[data-aos],
body:not(.page-loading) .hero .hero-description[data-aos],
body:not(.page-loading) .hero .hero-actions[data-aos],
body:not(.page-loading) .hero .hero-scroll[data-aos] {
    animation-play-state: running !important;
}


/* =========================================================
   08. TABLET
   ========================================================= */

@media (min-width: 768px) and (max-width: 1024px) {

    /*
       Navbar remains completely static.
       Only hero content is animated.
    */

    .site-header,
    .site-header *,
    .navbar,
    .navbar * {
        animation: none !important;
        transform-origin: center !important;
    }

    body.page-loading .hero,
    body.page-loading .hero * {
        animation-play-state: paused !important;
    }

}


/* =========================================================
   09. MOBILE
   ========================================================= */

@media (max-width: 767px) {

    /*
       Navbar is never part of the hero animation.
    */

    .site-header,
    .site-header *,
    .navbar,
    .navbar * {
        animation: none !important;
    }

    body.page-loading .hero,
    body.page-loading .hero * {
        animation-play-state: paused !important;
    }

}


/* =========================================================
   10. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .home-1-page .hero .hero-kicker[data-aos],
    .home-1-page .hero .hero-title[data-aos],
    .home-1-page .hero .hero-description[data-aos],
    .home-1-page .hero .hero-actions[data-aos],

    .home-2-page .hero-home-2 .hero-kicker[data-aos],
    .home-2-page .hero-home-2 .hero-title[data-aos],
    .home-2-page .hero-home-2 .hero-description[data-aos],
    .home-2-page .hero-home-2 .hero-actions[data-aos],
    .home-2-page .hero-home-2 .hero-scroll[data-aos] {

        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

}

/* =========================================================
   MOBILE MENU — HOVER + TOUCH FALLBACK
   ========================================================= */

@media (max-width: 1024px) {

    .mobile-menu.open .mobile-nav-link,
    .mobile-menu.open .mobile-home-toggle {
        transition:
            color 0.25s ease,
            background-color 0.25s ease;
    }

    /* Mouse hover */
    .mobile-menu.open .mobile-nav-link:hover,
    .mobile-menu.open .mobile-home-toggle:hover {
        color: var(--color-primary) !important;
        background: var(--color-surface-2) !important;
    }

    /* Keyboard / focus */
    .mobile-menu.open .mobile-nav-link:focus-visible,
    .mobile-menu.open .mobile-home-toggle:focus-visible {
        color: var(--color-primary) !important;
        background: var(--color-surface-2) !important;
        outline: none;
    }

    /* Touch / press fallback */
    .mobile-menu.open .mobile-nav-link:active,
    .mobile-menu.open .mobile-home-toggle:active {
        color: var(--color-primary) !important;
        background: var(--color-surface-2) !important;
    }

    /* Submenu */
    .mobile-menu.open .mobile-submenu a:hover,
    .mobile-menu.open .mobile-submenu a:focus-visible,
    .mobile-menu.open .mobile-submenu a:active {
        color: var(--color-primary) !important;
        background: var(--color-surface-2) !important;
    }
}