/* ============================================================
   Cuddle Candy Co — Premium Gift Shop (PDF theme)
   ============================================================ */

:root {
    --blue: #1827bd;
    --blue-deep: #131e98;
    --blue-bright: #2236d8;
    --blue-light: #4a5dea;
    --blue-panel: #0e1a96;
    --pink: #ec407a;
    --pink-deep: #c4286a;
    --pink-soft: #ff7aa8;
    --red: #ff3b58;
    --yellow: #ffd54f;
    --white: #ffffff;
    --cream: #faf6ef;
    --ink: #0a1230;
    --muted: rgba(255, 255, 255, 0.78);
    --muted-2: rgba(255, 255, 255, 0.6);
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.16);
    --shadow-md: 0 18px 40px rgba(0, 0, 0, 0.28);
    --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.32);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 36px;
    --display: "Archivo Black", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    background: var(--blue);
    color: var(--white);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; transition: color 0.2s ease, opacity 0.2s ease; }
a:hover { color: var(--pink-soft); }

h1, h2, h3, h4 {
    font-family: var(--display);
    color: var(--white);
    font-weight: 900;
    letter-spacing: -0.01em;
    line-height: 1;
    margin: 0 0 0.5em;
    text-transform: uppercase;
}

h1 { font-size: clamp(3rem, 10vw, 9rem); }
h2 { font-size: clamp(2.2rem, 6vw, 5rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); letter-spacing: 0.02em; }
h4 { font-size: 0.85rem; letter-spacing: 0.18em; font-weight: 700; color: var(--white); }

p { margin: 0 0 1em; }

/* Layout helpers */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
}

.section { padding: clamp(70px, 9vw, 130px) 0; }

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 16px;
}
.eyebrow.pink { color: var(--pink-soft); }
.eyebrow.yellow { color: var(--yellow); }

.heart { color: var(--red); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 999px;
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-pink {
    background: var(--pink);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(236, 64, 122, 0.4);
}
.btn-pink:hover { background: var(--pink-deep); color: var(--white); box-shadow: 0 12px 32px rgba(236, 64, 122, 0.5); }
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--blue); }
.btn-small { padding: 12px 22px; font-size: 0.82rem; }
.btn-large { padding: 20px 40px; font-size: 1.05rem; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(24, 39, 189, 0.92);
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
    gap: 24px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--display);
    color: var(--white);
}
.brand-logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: #000;
    object-fit: contain;
    padding: 4px;
    box-shadow: 0 0 18px rgba(236, 64, 122, 0.45), 0 0 36px rgba(102, 217, 198, 0.2);
}
@media (max-width: 600px) { .brand-logo { width: 52px; height: 52px; } }

.brand-name {
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.1;
}
.brand-name .tm {
    font-size: 0.55em;
    vertical-align: super;
    margin-left: 2px;
    color: var(--pink-soft);
}
.brand-tag {
    display: block;
    font-family: var(--sans);
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    color: var(--muted-2);
    font-weight: 600;
    margin-top: 2px;
}

.nav { display: flex; gap: 28px; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; }
.nav a { color: var(--white); }
.nav a:hover { color: var(--pink-soft); }
@media (max-width: 820px) { .nav { display: none; } }

/* ============================================================
   Hero
   ============================================================ */
.hero {
    padding: clamp(12px, 2vw, 24px) 0 clamp(48px, 6vw, 80px);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -10%;
    width: 50%;
    height: 90%;
    background: radial-gradient(circle at 50% 30%, rgba(236, 64, 122, 0.18), transparent 60%);
    z-index: 0;
}
.hero::after {
    content: "";
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 45%;
    height: 70%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 213, 79, 0.12), transparent 65%);
    z-index: 0;
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }

.hero-eyebrow-line {
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--pink-soft);
    margin: 0 0 8px;
}
.hero-subline {
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin: 0 0 28px;
}
.hero-title {
    font-size: clamp(2.8rem, 7.5vw, 6.5rem);
    line-height: 0.95;
    margin: 0 0 28px;
}
.hero-title-row { display: block; }
.hero-title-row.accent-row {
    background: linear-gradient(90deg, #ff7aa8 0%, #ffd54f 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lede {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 540px;
    margin: 0 0 36px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 40px;
}

.hero-badges {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}
.hero-badges li { display: inline-flex; align-items: center; gap: 8px; }
.dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--white);
    display: inline-block;
}
.dot-yellow { background: var(--yellow); box-shadow: 0 0 12px rgba(255, 213, 79, 0.6); }
.dot-pink { background: var(--pink-soft); box-shadow: 0 0 12px rgba(255, 122, 168, 0.6); }
.dot-cyan { background: #66d9c6; box-shadow: 0 0 12px rgba(102, 217, 198, 0.6); }

/* Hero collage */
.hero-collage {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1.05;
    max-width: 560px;
    margin: 0 auto;
}
@media (max-width: 980px) { .hero-collage { margin: 0 auto; max-width: 500px; } }
@media (max-width: 500px) { .hero-collage { aspect-ratio: 1 / 1.15; } }

.collage-card {
    position: absolute;
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 0 4px rgba(255, 255, 255, 0.08);
    background: var(--blue-deep);
    transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.collage-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.collage-card figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px 14px 12px;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 18, 48, 0.85) 80%);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.collage-feature {
    top: 0;
    left: 0;
    width: 58%;
    height: 64%;
    transform: rotate(-4deg);
    z-index: 3;
}
.collage-feature:hover { transform: rotate(-2deg) translateY(-6px); }

.collage-chocolate {
    top: 6%;
    right: 0;
    width: 46%;
    height: 36%;
    transform: rotate(3deg);
    z-index: 2;
    background: #0e1a96;
}
.collage-chocolate img {
    object-fit: contain;
    background: #0e1a96;
    padding: 6px;
}
.collage-chocolate:hover { transform: rotate(1deg) translateY(-6px); }

.collage-candy {
    bottom: 4%;
    right: 4%;
    width: 50%;
    height: 38%;
    transform: rotate(5deg);
    z-index: 4;
}
.collage-candy:hover { transform: rotate(2deg) translateY(-6px); }

.collage-moo {
    bottom: 0;
    left: 6%;
    width: 44%;
    height: 32%;
    transform: rotate(-3deg);
    z-index: 1;
}
.collage-moo:hover { transform: rotate(-1deg) translateY(-6px); }

.collage-logo {
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    background: #000;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 0 30px rgba(236, 64, 122, 0.6), 0 0 60px rgba(102, 217, 198, 0.3), 0 14px 30px rgba(0, 0, 0, 0.4);
    z-index: 5;
    animation: floatLogo 5s ease-in-out infinite;
}
.collage-logo img { width: 100%; height: 100%; object-fit: contain; border-radius: 50%; }

@media (max-width: 500px) { .collage-logo { width: 96px; height: 96px; } }

@keyframes floatLogo {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50% { transform: translate(-50%, -50%) translateY(-10px); }
}

.collage-sticker {
    position: absolute;
    top: 4%;
    right: -2%;
    z-index: 6;
    background: var(--yellow);
    color: var(--ink);
    width: 96px;
    height: 96px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(12deg);
    font-family: var(--display);
    line-height: 1;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
    animation: spinSticker 12s linear infinite;
}
.collage-sticker .sticker-line-1 {
    font-size: 1.5rem;
    letter-spacing: 0.02em;
}
.collage-sticker .sticker-line-2 {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 0.55rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 4px;
    padding: 0 6px;
}
@keyframes spinSticker {
    0% { transform: rotate(12deg); }
    50% { transform: rotate(18deg); }
    100% { transform: rotate(12deg); }
}
@media (max-width: 500px) { .collage-sticker { width: 76px; height: 76px; right: 0; } .collage-sticker .sticker-line-1 { font-size: 1.2rem; } }

/* Tagline strip */
.tagline-strip {
    background: var(--blue-bright);
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.tagline-strip p {
    margin: 0;
    text-align: center;
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
}
.tagline-strip strong { color: var(--yellow); font-weight: 800; }

/* ============================================================
   About Us
   ============================================================ */
.section-about { padding: clamp(70px, 9vw, 130px) 0; background: var(--blue); }
.about-container { text-align: center; }
.about-copy {
    max-width: 780px;
    margin: 0 auto;
}
.about-copy h2 { margin-bottom: 24px; }
.about-copy p {
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.75;
    max-width: 680px;
    margin: 0 auto 16px;
}
.about-copy .about-closer {
    color: var(--white);
    font-weight: 600;
    font-size: 1.15rem;
    margin-top: 12px;
}

/* ============================================================
   Coming Soon strip
   ============================================================ */
.coming-soon {
    background: linear-gradient(135deg, var(--pink) 0%, #ff6f9b 50%, var(--yellow) 100%);
    color: var(--ink);
    padding: clamp(40px, 6vw, 70px) 0;
    position: relative;
    overflow: hidden;
}
.coming-soon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, rgba(255,255,255,0) 0 18px, rgba(255,255,255,0.06) 18px 36px);
    pointer-events: none;
}
.coming-soon-inner {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
}
@media (max-width: 760px) { .coming-soon-inner { grid-template-columns: 1fr; gap: 16px; text-align: center; justify-items: center; } }

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ink);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
}
.coming-soon-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 0 4px rgba(255, 213, 79, 0.4);
    animation: pulseDot 1.6s ease-in-out infinite;
}
@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 4px rgba(255, 213, 79, 0.4); }
    50% { box-shadow: 0 0 0 7px rgba(255, 213, 79, 0.15); }
}

.coming-soon-title {
    font-family: var(--display);
    font-size: clamp(1.4rem, 3.4vw, 2.4rem);
    color: var(--ink);
    text-transform: uppercase;
    line-height: 1.05;
    margin: 0;
    letter-spacing: -0.01em;
}
.coming-soon-text {
    grid-column: 2;
    color: rgba(10, 18, 48, 0.78);
    font-size: 0.95rem;
    margin: 6px 0 0;
    max-width: 620px;
    line-height: 1.5;
}
@media (max-width: 760px) {
    .coming-soon-title { font-size: 1.4rem; }
    .coming-soon-text { grid-column: auto; font-size: 0.9rem; max-width: 100%; }
}

.coming-soon .btn-pink {
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}
.coming-soon .btn-pink:hover { background: #1a2440; }

/* ============================================================
   Visit
   ============================================================ */
.section-visit { padding-top: clamp(80px, 10vw, 140px); padding-bottom: clamp(80px, 10vw, 140px); }
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 56px;
    align-items: center;
}
@media (max-width: 900px) { .visit-grid { grid-template-columns: 1fr; } }

.visit-copy h2 { margin-bottom: 24px; }
.visit-address {
    margin: 0 0 32px;
    font-family: var(--display);
    font-weight: 900;
    line-height: 1.2;
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--white);
}
.visit-address .line-1 { display: block; }
.visit-address .line-2 { display: block; font-weight: 700; color: var(--muted); }

.visit-hours {
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin: 0 0 24px;
}
.visit-hours strong { color: var(--white); font-weight: 700; }

.visit-contact {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 0 32px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 0.95rem;
}
.visit-contact-label {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--pink-soft);
}
.visit-contact a {
    color: var(--white);
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding-bottom: 1px;
}
.visit-contact a:hover { color: var(--pink-soft); border-color: var(--pink-soft); }

.visit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 20px;
}

.visit-card-msg {
    margin-top: 28px;
    color: var(--muted);
    font-size: 1rem;
}
.visit-card-msg .heart { color: var(--red); }

.visit-image-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid rgba(255, 255, 255, 0.08);
    transform: rotate(1deg);
    transition: transform 0.5s ease;
}
.visit-image-wrap:hover { transform: rotate(0deg); }
.visit-image-wrap img { width: 100%; height: auto; }

.visit-pin {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--pink);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 18px;
    box-shadow: 0 6px 18px rgba(236, 64, 122, 0.4);
}
.pin-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--white); }

/* ============================================================
   Categories (3 cards)
   ============================================================ */
.section-categories {
    background: var(--blue-deep);
    padding: clamp(70px, 9vw, 130px) 0;
}
.section-head {
    text-align: center;
    margin-bottom: 56px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}
.section-head p { color: var(--muted); margin: 16px auto 0; max-width: 600px; font-size: 1.05rem; }

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 900px) { .categories-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

.category-card {
    background: var(--blue-panel);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}
.category-card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center 22%;
}
.category-card-body { padding: 24px 26px 28px; }
.category-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}
.category-card-head h3 { margin: 0; font-size: 1.15rem; letter-spacing: 0.04em; }
.category-tag {
    background: rgba(255, 213, 79, 0.18);
    color: var(--yellow);
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 700;
}
.category-tag.pink { background: rgba(236, 64, 122, 0.18); color: var(--pink-soft); }
.category-tag.cyan { background: rgba(102, 217, 198, 0.18); color: #66d9c6; }
.category-card-body p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ============================================================
   Photo gallery (mosaic)
   ============================================================ */
.section-gallery { padding: clamp(70px, 9vw, 130px) 0; }
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 18px;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; } }
@media (max-width: 540px) { .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; } }

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    border: 4px solid rgba(255, 255, 255, 0.08);
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }
@media (max-width: 540px) {
    .gallery-tall, .gallery-wide { grid-row: auto; grid-column: auto; }
}

/* ============================================================
   Trust badges row
   ============================================================ */
.trust-row {
    background: var(--blue-bright);
    padding: 36px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: center;
}
@media (max-width: 760px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}
.trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--yellow);
}
.trust-icon svg { width: 22px; height: 22px; }

/* ============================================================
   Contact
   ============================================================ */
.contact {
    padding: clamp(70px, 9vw, 130px) 0;
    background: radial-gradient(ellipse at center, var(--blue-bright) 0%, var(--blue) 70%);
}
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
@media (max-width: 900px) { .contact-inner { grid-template-columns: 1fr; gap: 40px; } }

.contact-copy h2 { margin-bottom: 18px; }
.contact-lede {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 460px;
    margin: 0;
    line-height: 1.6;
}

.contact-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow-md);
}
@media (max-width: 600px) { .contact-card { padding: 32px 24px; } }

.contact-label {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--pink-soft);
    margin: 0 0 12px;
}
.contact-email {
    display: block;
    font-family: var(--display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--white);
    letter-spacing: 0.01em;
    text-transform: lowercase;
    word-break: break-all;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}
.contact-email:hover { color: var(--pink-soft); }

.contact-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin: 28px 0;
}

.contact-meta {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 28px;
    letter-spacing: 0.02em;
}
.contact-meta strong {
    color: var(--white);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.contact-btn { width: 100%; }
@media (min-width: 600px) { .contact-btn { width: auto; } }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
    background: var(--ink);
    color: var(--muted-2);
    padding: 64px 0 28px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.8fr 1.2fr 0.8fr;
    gap: 36px;
    align-items: start;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 1024px) { .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; row-gap: 32px; } }
@media (max-width: 760px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-inner { grid-template-columns: 1fr; } }

.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: #000;
    object-fit: contain;
    padding: 4px;
    box-shadow: 0 0 24px rgba(236, 64, 122, 0.4);
}
.footer-name { margin: 0; color: var(--white); font-family: var(--display); font-size: 1rem; letter-spacing: 0.06em; text-transform: uppercase; }
.footer-tag { margin: 4px 0 0; font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); }

.footer-inner h4 { margin: 0 0 14px; color: var(--white); }
.footer-inner p { font-size: 0.9rem; line-height: 1.7; margin: 0; color: var(--muted-2); }
.footer-inner a { color: var(--muted-2); }
.footer-inner a:hover { color: var(--white); }

.footer-bottom {
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--muted-2);
}
.footer-bottom p { margin: 0; }

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .btn:hover, .category-card:hover, .gallery-item:hover img, .visit-image-wrap:hover { transform: none; }
}

/* ============================================================
   Mobile polish
   ============================================================ */
@media (max-width: 760px) {
    .container { padding: 0 20px; }
    .section,
    .section-visit,
    .section-categories,
    .section-gallery,
    .contact { padding-top: 60px; padding-bottom: 60px; }

    /* Header */
    .header-inner { padding: 12px 0; gap: 12px; }
    .brand-logo { width: 48px; height: 48px; border-radius: 10px; }
    .brand-name { font-size: 0.9rem; letter-spacing: 0.04em; }
    .brand-tag { display: none; }
    .btn-small { padding: 9px 16px; font-size: 0.72rem; letter-spacing: 0.06em; }

    /* Hero */
    .hero { padding-top: 16px; padding-bottom: 56px; }
    .hero-grid { gap: 36px; }
    .hero-eyebrow-line { font-size: 0.8rem; margin-bottom: 6px; }
    .hero-subline { font-size: 0.72rem; letter-spacing: 0.18em; margin-bottom: 20px; }
    .hero-title { font-size: clamp(2.4rem, 11vw, 4rem); margin-bottom: 20px; }
    .hero-lede { font-size: 0.98rem; margin-bottom: 26px; }
    .hero-actions { gap: 10px; margin-bottom: 28px; }
    .hero-actions .btn { flex: 1 1 auto; min-width: 0; }
    .btn-large { padding: 14px 22px; font-size: 0.85rem; letter-spacing: 0.06em; }
    .hero-badges { gap: 14px 18px; font-size: 0.68rem; letter-spacing: 0.12em; }

    /* Hero collage */
    .hero-collage { max-width: 380px; }
    .collage-card figcaption {
        padding: 10px 10px 8px;
        font-size: 0.58rem;
        letter-spacing: 0.1em;
    }
    .collage-logo {
        width: 90px;
        height: 90px;
        padding: 6px;
        box-shadow: 0 0 22px rgba(236, 64, 122, 0.55), 0 0 40px rgba(102, 217, 198, 0.25), 0 10px 22px rgba(0, 0, 0, 0.4);
    }
    .collage-sticker { width: 68px; height: 68px; top: 2%; right: -2%; }
    .collage-sticker .sticker-line-1 { font-size: 1rem; }
    .collage-sticker .sticker-line-2 { font-size: 0.45rem; }

    /* Tagline strip */
    .tagline-strip { padding: 22px 0; }
    .tagline-strip p { font-size: 0.85rem; letter-spacing: 0.06em; }

    /* Visit */
    .visit-pin { font-size: 0.65rem; padding: 7px 14px; margin-bottom: 14px; }
    .visit-address { font-size: 1.05rem; line-height: 1.3; margin-bottom: 22px; }
    .visit-hours { font-size: 0.78rem; letter-spacing: 0.08em; margin-bottom: 24px; line-height: 1.7; }
    .visit-card-msg { font-size: 0.92rem; }

    /* Categories */
    .section-head { margin-bottom: 40px; }
    .section-head p { font-size: 0.95rem; }
    .category-card-img { aspect-ratio: 5 / 3; }
    .category-card-body { padding: 20px 22px 24px; }
    .category-card-body p { font-size: 0.88rem; }

    /* Gallery */
    .gallery-grid { grid-auto-rows: 200px; gap: 14px; }

    /* Trust */
    .trust-row { padding: 28px 0; }
    .trust-grid { gap: 18px; }
    .trust-item { font-size: 0.72rem; gap: 12px; letter-spacing: 0.08em; }
    .trust-icon { width: 38px; height: 38px; }
    .trust-icon svg { width: 18px; height: 18px; }

    /* Contact */
    .contact-card { padding: 28px 22px; }
    .contact-email { font-size: 1.4rem; margin-bottom: 6px; }
    .contact-divider { margin: 22px 0; }
    .contact-meta { font-size: 0.85rem; margin-bottom: 22px; }
    .contact-btn { width: 100%; }

    /* Footer */
    .site-footer { padding: 48px 0 24px; }
    .footer-inner { gap: 28px; padding-bottom: 28px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
}

@media (max-width: 460px) {
    h1 { font-size: clamp(2.2rem, 12vw, 3.2rem); }
    h2 { font-size: clamp(1.8rem, 8vw, 2.6rem); }
    .hero-actions .btn { flex: 1 1 100%; }
    .visit-actions { flex-direction: column; }
    .visit-actions .btn { width: 100%; }
    .hero-collage { max-width: 320px; }
    .collage-logo { width: 76px; height: 76px; }
}
