:root {
    --ink: #20171a;
    --muted: #716066;
    --paper: #fffafb;
    --soft: #fff3f5;
    --blush: #ffd9de;
    --rose: #c93f61;
    --berry: #7f2443;
    --plum: #321725;
    --champagne: #f8e7c7;
    --line: rgba(50, 23, 37, 0.13);
    --shadow: 0 28px 80px rgba(42, 18, 30, 0.16);
    color-scheme: light;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        linear-gradient(180deg, #fffafb 0%, #fff5f7 48%, #fffafb 100%);
    font-family: Inter, Arial, sans-serif;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.site-header {
    position: fixed;
    top: 18px;
    left: clamp(14px, 4vw, 58px);
    right: clamp(14px, 4vw, 58px);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 12px 14px 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 18px 60px rgba(32, 23, 26, 0.1);
    backdrop-filter: blur(18px);
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
    color: var(--ink);
    border-color: rgba(50, 23, 37, 0.1);
    background: rgba(255, 250, 251, 0.9);
    box-shadow: 0 18px 48px rgba(37, 25, 30, 0.09);
}

.brand {
    display: inline-flex;
    flex-direction: column;
    line-height: 0.92;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.15rem;
}

.brand strong {
    font-size: 1.65rem;
}

.site-nav {
    display: flex;
    gap: clamp(14px, 3vw, 34px);
    font-size: 0.94rem;
    font-weight: 700;
}

.site-nav a,
.header-action {
    opacity: 0.88;
}

.header-action {
    border: 1px solid rgba(50, 23, 37, 0.14);
    border-radius: 999px;
    padding: 10px 15px;
    font-weight: 800;
    font-size: 0.78rem;
    background: rgba(255, 255, 255, 0.52);
}

.site-header.is-scrolled .header-action {
    border-color: rgba(50, 23, 37, 0.18);
    background: #fff;
}

.hero {
    position: relative;
    min-height: 78vh;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 430px);
    gap: clamp(28px, 6vw, 78px);
    align-items: center;
    padding: 140px clamp(20px, 7vw, 104px) 64px;
    overflow: hidden;
    color: var(--ink);
    background:
        radial-gradient(circle at 90% 20%, rgba(255, 217, 222, 0.72), transparent 28%),
        linear-gradient(135deg, #fffafb 0%, #fff1f4 58%, #f8e7c7 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 16px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.55), transparent 52%),
        repeating-linear-gradient(90deg, rgba(50, 23, 37, 0.05) 0 1px, transparent 1px 88px);
    border: 1px solid rgba(50, 23, 37, 0.08);
    border-radius: 34px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 860px;
    padding-top: 34px;
}

.hero-content::before {
    content: "";
    display: block;
    width: 92px;
    height: 2px;
    margin-bottom: 28px;
    background: var(--rose);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--rose);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: var(--rose);
}

h1,
h2,
h3 {
    margin: 0;
    line-height: 1.02;
}

h1,
h2 {
    font-family: "Playfair Display", Georgia, serif;
}

h1 {
    max-width: 820px;
    font-size: clamp(2.9rem, 7.2vw, 6.3rem);
}

h2 {
    font-size: clamp(2rem, 4.2vw, 3.8rem);
}

h3 {
    font-size: 1.45rem;
}

.hero-content p:not(.eyebrow),
.section-copy {
    max-width: 650px;
    color: var(--muted);
    font-size: clamp(1.08rem, 2vw, 1.35rem);
    line-height: 1.7;
}

.hero-content p:not(.eyebrow) {
    max-width: 560px;
    margin-top: 20px;
    font-weight: 700;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    border: 0;
    border-radius: 999px;
    padding: 12px 20px;
    cursor: pointer;
    font-weight: 800;
    letter-spacing: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--rose), var(--berry));
    box-shadow: 0 14px 34px rgba(201, 63, 97, 0.32);
}

.button-ghost {
    color: var(--ink);
    border: 1px solid rgba(50, 23, 37, 0.16);
    background: rgba(255, 255, 255, 0.54);
}

.button-dark {
    color: #fff;
    background: linear-gradient(135deg, var(--plum), var(--berry));
}

.button-danger {
    color: #fff;
    background: #b83434;
}

.section {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
    padding: 74px 0;
}

.intro-section {
    display: block;
    position: relative;
}

.intro-card {
    max-width: 940px;
    border-left: 3px solid var(--rose);
    padding-left: clamp(20px, 4vw, 38px);
}

.intro-section .section-copy {
    color: var(--muted);
}

.section-heading {
    max-width: 720px;
}

.stores-section {
    padding-top: 20px;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 34px;
}

.store-card {
    display: grid;
    gap: 24px;
    min-height: 360px;
    padding: clamp(22px, 4vw, 38px);
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 52px rgba(42, 18, 30, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.store-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 34px 90px rgba(42, 18, 30, 0.18);
}

.store-card p,
.store-details {
    color: var(--muted);
    line-height: 1.65;
}

.store-label {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--rose);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.store-details {
    display: grid;
    gap: 14px;
    margin: 0;
}

.store-details div {
    display: grid;
    gap: 4px;
}

.store-details dt {
    color: var(--ink);
    font-weight: 800;
}

.store-details dd {
    margin: 0;
}

.hero-photo-card {
    position: relative;
    width: min(430px, calc(100% - 28px));
    margin: 0 auto;
}

.hero-photo-card {
    z-index: 1;
    width: min(100%, 430px);
    margin: 0;
    padding: 0;
    animation: floatIn 0.9s ease both;
}

.slideshow-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    border: 1px solid rgba(50, 23, 37, 0.12);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 243, 245, 0.9));
    box-shadow: 0 28px 80px rgba(42, 18, 30, 0.16);
}

.slideshow-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(180deg, transparent 48%, rgba(32, 23, 26, 0.56));
    pointer-events: none;
}

.slideshow-frame::after {
    content: "";
    position: absolute;
    inset: 12px;
    z-index: 4;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 22px;
    pointer-events: none;
}

.slideshow-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 0.75s ease, transform 1.6s ease;
}

.slideshow-slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.slideshow-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slideshow-slide figcaption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 5;
    color: #fff;
    font-weight: 800;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.slideshow-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 16px;
}

.slideshow-controls > button {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(50, 23, 37, 0.12);
    border-radius: 999px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 12px 28px rgba(42, 18, 30, 0.1);
    cursor: pointer;
    font-size: 1.8rem;
    line-height: 1;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.slideshow-controls > button:hover {
    color: #fff;
    background: var(--berry);
    transform: translateY(-2px);
}

.slideshow-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slideshow-dots button {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: rgba(50, 23, 37, 0.22);
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.slideshow-dots button.is-active {
    width: 28px;
    background: var(--rose);
}

[data-slideshow].is-single .slideshow-controls {
    display: none;
}

.slideshow-empty {
    display: grid;
    place-items: center;
    min-height: 420px;
    border: 1px dashed rgba(50, 23, 37, 0.22);
    border-radius: 28px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.62);
    text-align: center;
}

.slideshow-empty span {
    display: block;
    color: var(--ink);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2rem;
}

.contact-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
    padding: 82px 0;
}

.contact-section h2 {
    max-width: 680px;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 28px clamp(20px, 7vw, 96px);
    color: #fff;
    background: var(--ink);
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    filter: blur(8px);
    transition: opacity 0.75s ease, transform 0.75s ease, filter 0.75s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(26px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.login-body,
.admin-body {
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(247, 234, 214, 0.62), rgba(255, 247, 248, 0.88)),
        #fffafa;
}

.login-body {
    display: grid;
    place-items: center;
    padding: 24px;
}

.login-panel {
    width: min(440px, 100%);
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow);
}

.login-brand {
    margin-bottom: 28px;
}

.login-panel h1 {
    font-family: Inter, Arial, sans-serif;
    font-size: 1.9rem;
}

.login-panel p,
.admin-section-title p {
    color: var(--muted);
    line-height: 1.6;
}

.form-stack,
.upload-card,
.password-card {
    display: grid;
    gap: 16px;
}

label {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-weight: 800;
}

input,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 14px;
    color: var(--ink);
    background: #fff;
    outline: none;
}

textarea {
    resize: vertical;
}

input:focus,
textarea:focus {
    border-color: var(--rose);
    box-shadow: 0 0 0 4px rgba(184, 77, 100, 0.12);
}

.admin-topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px clamp(16px, 4vw, 48px);
    background: rgba(255, 250, 250, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.admin-brand {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.35rem;
    font-weight: 700;
}

.admin-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-weight: 800;
}

.admin-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 32px 0 70px;
}

.notice {
    margin-bottom: 18px;
    border-radius: 8px;
    padding: 13px 15px;
    font-weight: 800;
}

.notice-success {
    color: #165c38;
    background: #e3f7eb;
}

.notice-error {
    color: #8a1f1f;
    background: #fde6e6;
}

.admin-hero,
.admin-section {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 12px 42px rgba(57, 23, 39, 0.08);
}

.admin-hero {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    padding: clamp(24px, 5vw, 44px);
}

.admin-hero h1 {
    font-family: Inter, Arial, sans-serif;
    font-size: clamp(2rem, 5vw, 3.4rem);
    max-width: 720px;
}

.admin-section {
    margin-top: 22px;
    padding: clamp(20px, 4vw, 34px);
}

.admin-section-title {
    margin-bottom: 22px;
}

.admin-section-title h2 {
    font-family: Inter, Arial, sans-serif;
    font-size: 1.5rem;
}

.admin-grid-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.admin-card {
    display: grid;
    gap: 14px;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px;
}

.admin-card legend {
    padding: 0 8px;
    font-weight: 900;
}

.admin-grid-form > .button {
    justify-self: start;
}

.upload-card,
.password-card {
    max-width: 620px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
}

.admin-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 22px;
}

.photo-admin-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.photo-admin-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.photo-admin-card div,
.photo-admin-card form {
    padding: 12px;
}

.photo-admin-card div {
    display: grid;
    gap: 4px;
}

.photo-admin-card span,
.admin-empty {
    color: var(--muted);
}

@media (max-width: 820px) {
    .site-header {
        position: absolute;
        top: 14px;
        left: 14px;
        right: 14px;
        flex-wrap: wrap;
        align-items: flex-start;
        border-radius: 24px;
    }

    .site-nav {
        order: 3;
        width: 100%;
        justify-content: space-between;
    }

    .hero {
        min-height: 74vh;
        grid-template-columns: 1fr;
        padding-top: 210px;
        align-items: end;
    }

    .hero-photo-card {
        width: min(100%, 360px);
    }

    .intro-section,
    .store-grid,
    .admin-grid-form {
        grid-template-columns: 1fr;
    }

    .contact-section,
    .site-footer,
    .admin-hero {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 540px) {
    .brand strong {
        font-size: 1.35rem;
    }

    h1 {
        font-size: 3rem;
    }

    .section {
        padding: 68px 0;
    }

    .hero-photo-card {
        width: min(100%, 320px);
    }

    .slideshow-controls > button {
        width: 38px;
        height: 38px;
    }

    .admin-topbar {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* One-screen public layout */
.single-page {
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 18% 18%, rgba(201, 63, 97, 0.34), transparent 26%),
        radial-gradient(circle at 88% 82%, rgba(248, 231, 199, 0.2), transparent 24%),
        linear-gradient(135deg, #180c12 0%, #321725 52%, #7f2443 100%);
}

.one-screen {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(260px, 360px);
    gap: clamp(18px, 4vw, 54px);
    align-items: center;
    min-height: 100vh;
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    padding: clamp(18px, 4vh, 42px) 0;
}

.one-screen::before {
    content: "";
    position: absolute;
    inset: clamp(8px, 2vw, 22px) -10px;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06)),
        rgba(255, 255, 255, 0.06);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
}

.brand-panel {
    display: grid;
    gap: clamp(22px, 4vh, 38px);
}

.mini-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.single-page .brand,
.single-page .eyebrow {
    color: #fff;
}

.single-page .brand span {
    color: rgba(255, 255, 255, 0.78);
}

.admin-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border: 1px solid rgba(50, 23, 37, 0.14);
    border-radius: 999px;
    padding: 8px 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.78rem;
    font-weight: 900;
}

.headline {
    max-width: 680px;
    color: #fff;
}

.headline h1 {
    max-width: 680px;
    font-size: clamp(2.6rem, 6.4vw, 5.7rem);
}

.headline p:not(.eyebrow) {
    max-width: 520px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(1rem, 1.7vw, 1.16rem);
    line-height: 1.7;
}

.store-list {
    display: grid;
    gap: 12px;
    max-width: 720px;
}

.mini-store {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    padding: 14px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
    transition: transform 0.25s ease, background 0.25s ease;
}

.mini-store:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.16);
}

.mini-store div {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.mini-store span {
    color: var(--champagne);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.mini-store strong,
.mini-store small {
    overflow-wrap: anywhere;
}

.mini-store small {
    color: rgba(255, 255, 255, 0.7);
}

.mini-store a {
    flex: 0 0 auto;
    border-radius: 999px;
    padding: 10px 13px;
    color: #fff;
    background: linear-gradient(135deg, var(--rose), var(--berry));
    font-size: 0.82rem;
    font-weight: 900;
}

.photo-panel {
    display: grid;
    justify-items: center;
    gap: 14px;
}

.photo-shell {
    position: relative;
    width: min(100%, 330px);
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    background:
        radial-gradient(circle at 30% 18%, rgba(255, 217, 222, 0.28), transparent 28%),
        linear-gradient(145deg, #fffafb, #ffd9de 48%, #7f2443);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.photo-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    background:
        linear-gradient(180deg, transparent 54%, rgba(32, 23, 26, 0.58)),
        linear-gradient(135deg, rgba(255, 255, 255, 0.24), transparent 36%);
    pointer-events: none;
}

.photo-slide {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    transform: scale(1.06) translateX(12px);
    transition: opacity 0.8s ease, transform 1.4s ease;
}

.photo-slide.is-active {
    opacity: 1;
    transform: scale(1) translateX(0);
}

.photo-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-slide figcaption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 4;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 900;
    text-shadow: 0 10px 26px rgba(0, 0, 0, 0.38);
}

.photo-empty {
    position: relative;
    z-index: 5;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 12px;
    height: 100%;
    padding: 24px;
    color: rgba(255, 255, 255, 0.74);
    text-align: center;
}

.photo-empty i {
    position: relative;
    display: block;
    width: 126px;
    height: 104px;
}

.photo-empty i::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 4px;
    width: 112px;
    height: 48px;
    border-radius: 999px 999px 20px 20px;
    background:
        radial-gradient(circle at 34px 25px, transparent 0 20px, rgba(255, 255, 255, 0.92) 21px 38px, transparent 39px),
        radial-gradient(circle at 78px 25px, transparent 0 20px, rgba(255, 255, 255, 0.92) 21px 38px, transparent 39px),
        linear-gradient(135deg, #fffafb, #ffd9de);
    box-shadow: 0 18px 40px rgba(32, 23, 26, 0.22);
}

.photo-empty i::after {
    content: "";
    position: absolute;
    left: 36px;
    bottom: 4px;
    width: 54px;
    height: 42px;
    clip-path: polygon(0 0, 100% 0, 76% 100%, 24% 100%);
    border-radius: 0 0 18px 18px;
    background: linear-gradient(135deg, #fffafb, #ffd9de);
    box-shadow: 0 14px 34px rgba(32, 23, 26, 0.22);
}

.photo-empty span {
    display: block;
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2rem;
}

.photo-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.photo-controls .slideshow-dots {
    max-width: 156px;
    overflow: hidden;
}

.photo-controls > button {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    font-size: 1.6rem;
    line-height: 1;
    transition: transform 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.photo-controls > button:hover {
    color: #fff;
    background: var(--berry);
    transform: translateY(-2px);
}

.single-page .reveal {
    transition-duration: 0.9s;
}

.single-page .photo-panel.reveal {
    transition-delay: 0.12s;
}

@media (max-width: 820px) {
    .single-page {
        overflow-y: auto;
    }

    .one-screen {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 22px 0 28px;
    }

    .one-screen::before {
        inset: 8px -8px;
    }

    .brand-panel {
        gap: 18px;
    }

    .headline h1 {
        font-size: clamp(2.35rem, 12vw, 4.1rem);
    }

    .photo-shell {
        width: min(76vw, 310px);
    }
}

@media (max-width: 540px) {
    .one-screen {
        width: min(100% - 24px, 430px);
    }

    .mini-store {
        align-items: flex-start;
        flex-direction: column;
    }

    .mini-store a {
        width: 100%;
    }

    .photo-shell {
        width: min(82vw, 280px);
    }
}
