/* ============================================
   POMME PAGE — Custom Styles
   ============================================ */

/* --- Custom Fonts --- */
/* Public Sans (body) + IBM Plex Mono (headings) loaded via Google Fonts in functions.php */

/* --- Reset & Base --- */
body {
  position: relative;
}
body::before {
  content: "";
  position: fixed; /* IMPORTANTISSIMO */
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: url('/wp-content/themes/hello-elementor-child/assets/images/otis-redding.png');
  opacity: 1; /* molto più basso rispetto al box */
  pointer-events: none;
  z-index: 9999;
  animation: grain 8s steps(10) infinite;
}

.pomme-page {
    margin: 0;
    padding: 0;
    background-color: #f5f3e6;
    font-family: 'Public Sans', sans-serif;
    color: #492622;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.pomme-page *,
.pomme-page *::before,
.pomme-page *::after {
    box-sizing: border-box;
}

/* --- Header / Navigation --- */
.pomme-header {
    position: relative;
    z-index: 100;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
}

.pomme-logo {
    flex-shrink: 0;
}

.pomme-logo img {
    width: 88px;
    height: auto;
    display: block;
}

.pomme-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

.pomme-nav a {
    font-family: 'Public Sans', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 17px;
    letter-spacing: 0.6px;
    color: #492622;
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.pomme-nav a:hover {
    color: #c3292f;
}

.pomme-nav--active {
    color: #c3292f !important;
}

/* --- Main Content Area --- */
.pomme-main {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-top: 0;
    position: relative;
    min-height: 100vh;
}

.pomme-canvas {
    position: relative;
    width: 100%;
    /* Aspect ratio matching original 1024x982 */
}

/* --- Two Column Layout --- */
.pomme-grid {
    display: flex;
    flex-direction: column;
}

/* --- Row wrapper --- */
.pomme-row {
    display: grid;
    grid-template-columns: 58% 42%;
}

/* --- Row 1: Hero (full viewport height) --- */
.pomme-row--hero {
    height: 100vh;
    position: relative;
}

/* --- Row 2: Secondary (auto height) --- */
.pomme-row--secondary {
    height: auto;
}

.pomme-secondary-left,
.pomme-secondary-right {
    position: relative;
    overflow: hidden;
}

/* --- Image in secondary left --- */
.pomme-secondary-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Video in secondary right --- */
.pomme-secondary-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Menu button overlay --- */
.pomme-menu-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    font-family: 'IBM Plex Mono', monospace;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #f5f3e6;
    background-color: rgba(73, 38, 34, 0.75);
    border: 1px solid rgba(245, 243, 230, 0.4);
    padding: 14px 40px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.pomme-menu-btn:hover {
    background-color: #c3292f;
    transform: translate(-50%, -50%) scale(1.05);
}

/* --- Left Column --- */
.pomme-left {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    overflow: hidden;
}

/* --- Heading (top of left column) --- */
.pomme-heading {
font-family: 'IBM Plex Mono', monospace;
    font-weight: normal;
    font-size: 50px;
    line-height: 50px;
    color: #492622;
    margin: 0;
    padding: 150px 0 0 32px;
    max-width: 700px;
}

.pomme-heading .indent {
    padding-left: 196px;
    display: inline;
}

/* --- Center row: address + badge --- */
.pomme-left-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    width: 100%;
    flex: 1;
    position: relative;
}

/* --- Address / Location icon --- */
.pomme-icon-link {
    display: inline-block;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.pomme-icon-link:hover {
    transform: scale(1.01);
}

.pomme-icon-location img {
    width: 163px;
    height: auto;
}

/* --- Address Text --- */
.pomme-address {
    font-family: 'Public Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #c3292f;
    position: absolute;
    left: 32px;
}

/* --- Badge POMME EATERY (center bottom) --- */
.pomme-badge {
    flex-shrink: 0;
}

.pomme-badge img {
    width: 350px;
    height: auto;
}


/* --- Below the Fold Section --- */
.pomme-below-fold {
    padding: 0 16px;
}

/* --- Description Text --- */
.pomme-description {
    font-family: 'Public Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 18px;
    color: #492622;
    max-width: 543px;
    margin: 60px 0 0 1px;
}

/* --- Bottom Photo --- */
.pomme-photo-bottom {
    margin-top: 32px;
    width: 100%;
    overflow: hidden;
}

.pomme-photo-bottom img {
    width: 100%;
    height: 256px;
    object-fit: cover;
    display: block;
}

/* --- Right Column --- */
.pomme-right {
    position: relative;
}

/* --- Hero Image Crossfade --- */
.pomme-hero-crossfade {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.pomme-hero-crossfade .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.pomme-hero-crossfade .hero-slide.active {
    opacity: 1;
}

/* --- Angel (floating between columns) --- */
.pomme-angel {
    position: absolute;
    left: calc(58% - 72px);
    top: 50%;
    z-index: 10;
    display: inline-block;
    transition: transform 0.3s ease;
}

.pomme-angel:hover {
    transform: scale(1.01);
}

.pomme-angel img {
    width: 143px;
    height: auto;
    animation: pomme-bounce 1s ease-in-out infinite alternate;
}

@keyframes pomme-bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-7px); }
}

/* --- Spotify (below fold) --- */
.pomme-spotify-below img {
    width: 143px;
    height: auto;
}

/* --- Slideshow --- */
.pomme-slideshow {
    position: relative;
    width: 154px;
    height: 232px;
    margin-top: 24px;
    margin-left: 40px;
    overflow: hidden;
}

.pomme-slideshow-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.pomme-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.pomme-slide.active {
    opacity: 1;
}

.pomme-slideshow-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 4px;
    z-index: 5;
    pointer-events: none;
}

.pomme-arrow {
    width: 28px;
    height: 28px;
    cursor: pointer;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0;
}

.pomme-arrow svg {
    fill: none;
    stroke: #c3292f;
    stroke-width: 2.5px;
    stroke-linejoin: round;
    stroke-linecap: round;
}

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

/* --- Sezione 1: Info Bar --- */
.amar-info-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background-color: #f5f3e6;
    border-top: 1px solid rgba(73, 38, 34, 0.15);
    border-bottom: 1px solid rgba(73, 38, 34, 0.15);
    margin-bottom: 60px;
}

.amar-info-bar__item {
    font-family: 'Public Sans', sans-serif;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #492622;
}

/* --- Sezione 2: Statement + Cards --- */
.amar-statement {
    background-color: #f5f3e6;
    padding: 80px 40px;
}

.amar-statement__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.amar-statement__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
}

.amar-statement__text {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: normal;
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.2;
    color: #492622;
    max-width: 60%;
    margin: 0;
}

.amar-statement__link {
    font-family: 'Public Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #c3292f;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity 0.3s ease;
}

.amar-statement__link:hover {
    opacity: 0.7;
}

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

.amar-card {
    text-decoration: none;
    display: block;
}

.amar-card__img-wrap {
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 16px;
}

.amar-card__img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.amar-card:hover .amar-card__img-wrap img {
    transform: scale(1.03);
}

.amar-card__title {
    font-family: 'Public Sans', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #492622;
    margin: 0 0 6px 0;
}

.amar-card__tags {
    font-family: 'Public Sans', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: rgba(73, 38, 34, 0.6);
    margin: 0;
}

/* --- Sezione 3: Big Statement --- */
.amar-big-statement {
   
  position: relative;
  overflow: hidden;
    padding: 120px 40px;
    text-align: center;
}


@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-5%, 5%); }
  40% { transform: translate(5%, -5%); }
  60% { transform: translate(-3%, 3%); }
  80% { transform: translate(3%, -3%); }
}
.amar-big-statement p {
    font-family: 'IBM Plex Mono', monospace;
    font-weight: normal;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 1.05;
    letter-spacing: 0.02em;
    color: #c3292f;
    margin: 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Sezione 4: Lista Pagine --- */
.amar-page-list {
    background-color: #f5f3e6;
    padding: 80px 40px;
}

.amar-page-list__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.amar-page-list__label {
    font-family: 'Public Sans', sans-serif;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(73, 38, 34, 0.5);
    display: block;
    margin-bottom: 32px;
}

.amar-page-list__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid rgba(73, 38, 34, 0.15);
    text-decoration: none;
    font-family: 'Public Sans', sans-serif;
    font-weight: 500;
    font-size: 2rem;
    color: #492622;
    transition: color 0.3s ease;
}

.amar-page-list__row:first-of-type {
    border-top: 1px solid rgba(73, 38, 34, 0.15);
}

.amar-page-list__row:hover {
    color: #c3292f;
}

.amar-page-list__arrow {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.amar-page-list__arrow svg {
    width: 1.5rem;
    height: 1.5rem;
}

.amar-page-list__row:hover .amar-page-list__arrow {
    transform: translate(4px, -4px);
}

/* --- Sezione 5: Carosello Foto --- */
.amar-gallery {
    
    padding: 60px 40px;
}

.amar-gallery__label {
    display: block;
    font-family: 'Public Sans', sans-serif;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 243, 230, 0.5);
    margin-bottom: 24px;
}

.amar-gallery__track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
}

.amar-gallery__track::-webkit-scrollbar {
    display: none;
}

.amar-gallery__track:active {
    cursor: grabbing;
}

.amar-gallery__track img {
    flex-shrink: 0;
    height: 450px;
    width: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    scroll-snap-align: start;
    transition: transform 0.3s ease;
    user-select: none;
    -webkit-user-drag: none;
}

.amar-gallery__track img:hover {
    transform: scale(1.02);
}

/* --- Sezione 6: Full Width Image --- */
.amar-fullimg {
    position: relative;
    width: 100%;
    height: 30vh;
    overflow: hidden;
    background-color: #f5f3e6;
}

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

/* === WAVE ANIMATION === */
.wave-layers {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    pointer-events: none;
    mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0) 70%);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0) 70%);
}

.wave-row {
    position: absolute;
    left: 0;
    display: flex;
    flex-shrink: 0;
    will-change: transform;
}

.wave-row svg {
    flex-shrink: 0;
    display: block;
}

.wave-row--1 {
    bottom: -30px;
    opacity: 1;
    animation: waveScroll1 18s linear infinite, waveBob1 4s ease-in-out infinite;
}

.wave-row--2 {
    bottom: 30px;
    opacity: 0.8125;
    animation: waveScroll2 14s linear infinite, waveBob2 5s ease-in-out infinite;
}

.wave-row--3 {
    bottom: 80px;
    opacity: 0.625;
    animation: waveScroll3 22s linear infinite, waveBob3 6s ease-in-out infinite;
}

.wave-row--4 {
    bottom: 120px;
    opacity: 0.4375;
    animation: waveScroll4 26s linear infinite, waveBob4 7s ease-in-out infinite;
}

.wave-row--5 {
    bottom: 160px;
    opacity: 0.25;
    animation: waveScroll5 30s linear infinite, waveBob5 8s ease-in-out infinite;
}

@keyframes waveScroll1 {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-601px); }
}
@keyframes waveScroll2 {
    0%   { transform: translateX(-601px); }
    100% { transform: translateX(0); }
}
@keyframes waveScroll3 {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-601px); }
}
@keyframes waveScroll4 {
    0%   { transform: translateX(-601px); }
    100% { transform: translateX(0); }
}
@keyframes waveScroll5 {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-601px); }
}

@keyframes waveBob1 {
    0%, 100% { bottom: -30px; }
    50%      { bottom: -18px; }
}
@keyframes waveBob2 {
    0%, 100% { bottom: 30px; }
    50%      { bottom: 44px; }
}
@keyframes waveBob3 {
    0%, 100% { bottom: 80px; }
    50%      { bottom: 90px; }
}
@keyframes waveBob4 {
    0%, 100% { bottom: 120px; }
    50%      { bottom: 128px; }
}
@keyframes waveBob5 {
    0%, 100% { bottom: 160px; }
    50%      { bottom: 166px; }
}
/* === END WAVE ANIMATION === */

/* --- Sezione 7: Contatti + Form --- */
.amar-contact {
    background-color: #f5f3e6;
    padding: 80px 40px;
}

.amar-contact__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.amar-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.amar-form__input {
    font-family: 'Public Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #492622;
    background: none;
    border: none;
    border-bottom: 1px solid #492622;
    padding: 12px 0;
    outline: none;
    width: 100%;
    transition: border-color 0.3s ease;
}

.amar-form__input::placeholder {
    color: rgba(73, 38, 34, 0.4);
}

.amar-form__input:focus {
    border-bottom-color: #c3292f;
}

.amar-form__textarea {
    font-family: 'Public Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #492622;
    background: none;
    border: none;
    border-bottom: 1px solid #492622;
    padding: 12px 0;
    outline: none;
    width: 100%;
    resize: vertical;
    margin-bottom: 24px;
    transition: border-color 0.3s ease;
}

.amar-form__textarea::placeholder {
    color: rgba(73, 38, 34, 0.4);
}

.amar-form__textarea:focus {
    border-bottom-color: #c3292f;
}

.amar-form__checks {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.amar-form__check {
    font-family: 'Public Sans', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #492622;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.amar-form__check input[type="checkbox"] {
    accent-color: #c3292f;
}

.amar-form__submit {
    font-family: 'Public Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #f5f3e6;
    background-color: #c3292f;
    border: none;
    border-radius: 30px;
    padding: 14px 0;
    width: 100%;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.amar-form__submit:hover {
    opacity: 0.85;
}

.amar-form__message {
    font-family: 'Public Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.6;
    padding: 16px 0;
    margin: 0 0 24px 0;
    border-bottom: 1px solid rgba(73, 38, 34, 0.15);
}

.amar-form__message--success {
    color: #492622;
}

.amar-form__message--error {
    color: #c3292f;
}

.amar-contact__info-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}

.amar-contact__label {
    font-family: 'Public Sans', sans-serif;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(73, 38, 34, 0.5);
    display: block;
    margin-bottom: 8px;
}

.amar-contact__big-link {
    font-family: 'Public Sans', sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    color: #492622;
    text-decoration: none;
    transition: color 0.3s ease;
}

.amar-contact__big-link:hover {
    color: #c3292f;
}

.amar-contact__socials {
    display: flex;
    gap: 16px;
}

.amar-contact__socials a {
    font-family: 'Public Sans', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #492622;
    text-decoration: none;
    transition: color 0.3s ease;
}

.amar-contact__socials a:hover {
    color: #c3292f;
}

/* --- Footer --- */
.amar-footer {
    background-color: #f5f3e6;
    padding: 60px 40px;
    text-align: center;
    overflow: hidden;
}

.amar-footer__logo-big {
    margin-bottom: 24px;
}

.amar-footer__logo-svg {
    width: 15vw;
    min-width: 120px;
    max-width: 400px;
    height: auto;
}

.amar-footer__copy {
    font-family: 'Public Sans', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: rgba(73, 38, 34, 0.5);
    margin: 0;
}

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

/* Tablet */
@media (max-width: 1024px) {
    .pomme-row {
        grid-template-columns: 1fr;
    }

    .pomme-row--hero {
        height: auto;
        overflow: visible;
    }

    .pomme-heading .indent {
        padding-left: 100px;
    }

    .pomme-hero-crossfade {
        margin-top: 0;
        height: 500px;
    }

    .pomme-right {
        order: -1;
    }

    .pomme-left {
        height: auto;
        padding: 20px 16px;
    }

    .pomme-left-bottom {
        margin-top: 40px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .pomme-secondary-left,
    .pomme-secondary-right {
        
    }

}

/* Mobile */
@media (max-width: 768px) {

    /* --- Header: sticky, stacked & centered --- */
    .pomme-header {
        position: sticky;
        top: 0;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 16px;
        background-color: #f5f3e6;
    }

    .pomme-logo img {
        width: 80px;
    }

    .pomme-nav {
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .pomme-nav a {
        font-size: 10px;
    }

    /* --- Main --- */
    .pomme-main {
        padding-top: 0;
    }

    /* --- Hero grid: single column, stacked --- */
    .pomme-row {
        grid-template-columns: 1fr;
    }

    .pomme-row--hero {
        height: auto;
        overflow: visible;
    }

    .pomme-secondary-left,
    .pomme-secondary-right {
        
    }

    /* --- Left column: everything centered & stacked --- */
    .pomme-left {
        height: auto;
        align-items: center;
        padding: 24px 16px;
        overflow: visible;
    }

    .pomme-heading {
        font-size: 28px;
        line-height: 32px;
        padding: 0 16px;
        text-align: center;
        max-width: 100%;
    }

    .pomme-heading .indent {
        padding-left: 0;
    }

    /* --- Bottom row: stacked vertically, centered --- */
    .pomme-left-bottom {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .pomme-badge img {
        width: 280px;
    }

    .pomme-address {
        position: static;
        text-align: center;
        padding-left: 0;
        order: 1;
    }

    /* --- Right column (slideshow): full width, below left --- */
    .pomme-right {
        order: 1;
    }

    .pomme-hero-crossfade {
        height: 60vh;
    }

    /* --- Angel: smaller, aligned left --- */
    .pomme-angel {
        left: 16px;
        top: auto;
        bottom: 16px;
    }

    .pomme-angel img {
        width: 80px;
    }

    /* --- Info Bar --- */
    .amar-info-bar {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 24px 16px;
    }

    /* --- Statement + Cards --- */
    .amar-statement {
        padding: 48px 16px;
    }

    .amar-statement__text {
        font-size: 1.1rem;
    }

    .amar-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* --- Big Statement --- */
    .amar-big-statement p {
        font-size: 6vw;
        padding: 48px 16px;
    }

    /* --- Page List --- */
    .amar-page-list {
        padding: 48px 16px;
    }

    .amar-page-list__row {
        font-size: 1.5rem;
        padding: 16px 0;
    }

    /* --- Gallery Carousel --- */
    .amar-gallery {
        padding: 40px 20px;
    }

    .amar-gallery__track {
        gap: 12px;
    }

    .amar-gallery__track img {
        height: 300px;
    }

    /* --- Full Width Image + Waves --- */
    .amar-fullimg {
        height: 40vh;
    }

    .wave-row--1 { bottom: -15px; }
    .wave-row--2 { bottom: 10px; }
    .wave-row--3 { bottom: 30px; }
    .wave-row--4 { bottom: 45px; }
    .wave-row--5 { bottom: 60px; }

    .wave-row svg {
        transform: scale(0.5);
        transform-origin: bottom left;
    }

    @keyframes waveBob1 {
        0%, 100% { bottom: -15px; }
        50%      { bottom: -8px; }
    }
    @keyframes waveBob2 {
        0%, 100% { bottom: 10px; }
        50%      { bottom: 18px; }
    }
    @keyframes waveBob3 {
        0%, 100% { bottom: 30px; }
        50%      { bottom: 36px; }
    }
    @keyframes waveBob4 {
        0%, 100% { bottom: 45px; }
        50%      { bottom: 50px; }
    }
    @keyframes waveBob5 {
        0%, 100% { bottom: 60px; }
        50%      { bottom: 64px; }
    }

    /* --- Contact + Form --- */
    .amar-contact {
        padding: 48px 16px;
    }

    .amar-contact__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .amar-form__row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* --- Footer --- */
    .amar-footer {
        padding: 40px 16px;
    }

    .amar-footer__logo-svg {
        width: 40vw;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .pomme-nav {
        gap: 10px;
    }

    .pomme-nav a {
        font-size: 9px;
        letter-spacing: 0.3px;
    }

    .pomme-heading {
        font-size: 22px;
        line-height: 26px;
    }

    .pomme-hero-crossfade {
        height: 300px;
    }
}
