:root {
    --bg: #f8f4ec;
    --bg-soft: #fffdf8;
    --surface: rgba(255, 255, 255, 0.82);
    --surface-strong: #ffffff;
    --text: #1f1a17;
    --muted: #6f655d;
    --line: rgba(111, 101, 93, 0.18);
    --gold: #b8893d;
    --gold-deep: #8f6625;
    --forest: #173c36;
    --shadow: 0 24px 60px rgba(27, 23, 19, 0.1);
    --radius: 24px;
    --radius-sm: 18px;
    --container: min(1120px, calc(100% - 2rem));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(184, 137, 61, 0.13), transparent 32%),
        radial-gradient(circle at right 20%, rgba(23, 60, 54, 0.08), transparent 24%),
        linear-gradient(180deg, #fffdf9 0%, var(--bg) 45%, #f4efe5 100%);
}

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

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

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.site-shell {
    min-height: 100vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: rgba(255, 251, 245, 0.82);
    border-bottom: 1px solid rgba(184, 137, 61, 0.12);
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 88px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.brand-mark {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(160deg, rgba(184, 137, 61, 0.18), rgba(184, 137, 61, 0.04));
    border: 1px solid rgba(184, 137, 61, 0.24);
    color: var(--gold-deep);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 700;
}

.brand-copy {
    display: grid;
    gap: 0.15rem;
}

.brand-copy strong,
.site-nav a,
h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
}

.brand-copy strong {
    font-size: 2rem;
    line-height: 1;
}

.brand-copy small {
    color: var(--gold-deep);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.7rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.site-nav a {
    position: relative;
    font-size: 1.15rem;
    padding: 0.5rem 0;
}

.site-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), rgba(184, 137, 61, 0));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
    transform: scaleX(1);
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--surface);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.3rem;
}

.nav-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    background: var(--text);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero-section,
.page-hero {
    position: relative;
    overflow: hidden;
}

.hero-section::before,
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 10%, rgba(184, 137, 61, 0.12), transparent 18%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.4));
    pointer-events: none;
}

.hero-grid,
.about-hero,
.contact-grid,
.split-panel {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    grid-template-areas:
        "copy visual"
        "actions visual"
        "highlights visual";
    min-height: 530px;
    padding: 2.5rem 0 2.25rem;
    position: relative;
    column-gap: 2rem;
    row-gap: 1.1rem;
}

.hero-section {
    background: linear-gradient(90deg, rgba(255, 251, 245, 0.99), rgba(255, 251, 245, 0.88));
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.8) 40%, rgba(255, 255, 255, 0.26) 64%, rgba(255, 255, 255, 0.08) 100%),
        radial-gradient(circle at 15% 58%, rgba(184, 137, 61, 0.08), transparent 24%);
    pointer-events: none;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--gold-deep);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 700;
}

h1 {
    margin: 0;
    font-size: clamp(3.55rem, 6.3vw, 5.15rem);
    line-height: 0.92;
    letter-spacing: -0.045em;
    color: var(--text);
    position: relative;
    z-index: 3;
    text-shadow: none;
}

h2 {
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 0.95;
}

h3 {
    margin: 0 0 0.85rem;
    font-size: 1.9rem;
}

p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.hero-copy p,
.section-heading p,
.page-hero p {
    max-width: 60ch;
}

.hero-copy p {
    max-width: 33rem;
    margin-top: 1.15rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #5f564e;
    opacity: 1;
    filter: none;
}

.hero-actions,
.section-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-actions {
    position: relative;
    grid-area: actions;
    align-self: start;
    z-index: 3;
    margin-top: 0;
}

.text-gold {
    color: var(--gold);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 1.5rem;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(31, 26, 23, 0.12);
}

.setup-notice-wrap {
    padding: 1rem 0 0;
}

.setup-notice {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    padding: 1rem 1.2rem;
    border-radius: 18px;
    background: rgba(255, 248, 238, 0.95);
    border: 1px solid rgba(184, 137, 61, 0.2);
    color: var(--text);
    box-shadow: 0 16px 28px rgba(31, 26, 23, 0.05);
}

.setup-notice span {
    color: var(--muted);
}

.setup-notice code {
    padding: 0.15rem 0.4rem;
    border-radius: 999px;
    background: rgba(184, 137, 61, 0.12);
    color: var(--gold-deep);
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    min-height: 56px;
    padding-inline: 1.9rem;
    box-shadow: 0 14px 30px rgba(184, 137, 61, 0.2);
    position: relative;
    z-index: 3;
    text-shadow: none;
}

.button-secondary {
    border-color: rgba(184, 137, 61, 0.28);
    background: rgba(255, 255, 255, 0.6);
}

.hero-visual {
    grid-area: visual;
    position: relative;
    padding: 0 0 0 1rem;
    display: flex;
    justify-content: flex-end;
    align-self: center;
    z-index: 2;
}

.hero-frame,
.about-visual,
.contact-panel,
.contact-form,
.category-card,
.stat-card,
.info-card,
.value-card {
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid rgba(184, 137, 61, 0.14);
    box-shadow: var(--shadow);
}

.hero-frame {
    overflow: hidden;
    margin-left: auto;
    width: min(100%, 540px);
    height: 480px;
    border-radius: 28px 28px 0 0;
    background: #f3ebdf;
    border: 1px solid rgba(184, 137, 61, 0.12);
    box-shadow: 0 30px 70px rgba(71, 47, 21, 0.12);
}

.hero-frame img,
.about-visual img {
    width: 100%;
    object-fit: cover;
}

.hero-frame img {
    height: 100%;
    object-position: center center;
}

.hero-copy {
    grid-area: copy;
    align-self: end;
    position: relative;
    z-index: 2;
    padding: 1rem 0 1rem 1.5rem;
    isolation: isolate;
}

.hero-copy > * {
    position: relative;
    z-index: 3;
    text-shadow: none;
}

.hero-copy::before,
.hero-copy::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid rgba(184, 137, 61, 0.08);
    border-bottom: 0;
    border-radius: 220px 220px 0 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.08));
    pointer-events: none;
    z-index: 0;
}

.hero-copy::before {
    left: -3.5rem;
    width: 210px;
    height: 320px;
}

.hero-copy::after {
    right: -10.5rem;
    width: 250px;
    height: 380px;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: 12px 10px 12px auto;
    width: min(100%, 520px);
    border-radius: 34px 34px 0 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0)),
        radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.75), transparent 22%);
    border: 1px solid rgba(184, 137, 61, 0.08);
    pointer-events: none;
}

.section,
.page-hero {
    padding: 6rem 0;
}

.page-hero-compact {
    padding-top: 4.5rem;
    padding-bottom: 3rem;
}

.section-heading {
    display: grid;
    gap: 0.9rem;
    margin-bottom: 2.5rem;
}

.category-grid,
.featured-grid,
.footer-grid,
.story-grid,
.values-grid,
.stats-grid {
    display: grid;
    gap: 1.5rem;
}

.category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.category-card,
.featured-card,
.gallery-card {
    overflow: hidden;
}

.category-grid-curated {
    gap: 1.1rem;
}

.category-grid-curated .category-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(184, 137, 61, 0.12);
    border-radius: 18px;
    box-shadow: 0 16px 36px rgba(45, 33, 16, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.category-grid-curated .category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 40px rgba(45, 33, 16, 0.12);
    border-color: rgba(184, 137, 61, 0.24);
}

.category-grid-curated .category-image {
    position: relative;
    padding: 0.9rem 0.9rem 0;
}

.category-image img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}

.category-grid-curated .category-image img {
    aspect-ratio: 16 / 9;
    border-radius: 12px;
}

.category-medallion {
    position: absolute;
    left: 1.25rem;
    bottom: -1rem;
    width: 2.8rem;
    height: 2.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #d7b061, #b8842b);
    border: 4px solid rgba(255, 255, 255, 0.95);
    color: #fff8ea;
    box-shadow: 0 10px 24px rgba(143, 102, 37, 0.22);
}

.category-content {
    padding: 1.5rem;
}

.category-grid-curated .category-content {
    padding: 1.45rem 1.25rem 1.25rem;
}

.category-grid-curated .category-content h3 {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.35;
}

.category-content a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--gold-deep);
    font-weight: 700;
}

.category-grid-curated .category-content a {
    margin-top: 0.6rem;
    font-size: 0.92rem;
}

.stats-grid,
.values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card,
.info-card,
.value-card,
.contact-panel,
.contact-form {
    padding: 1.75rem;
}

.featured-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.featured-card,
.gallery-card {
    position: relative;
    border: 0;
    padding: 0;
    background: none;
    border-radius: var(--radius-sm);
    isolation: isolate;
}

.featured-card img,
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.featured-card img {
    aspect-ratio: 1 / 1;
}

.featured-card span {
    position: absolute;
    inset: auto 1rem 1rem 1rem;
    padding: 0.75rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 252, 246, 0.85);
    color: var(--text);
    font-size: 0.88rem;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.featured-card:hover img,
.gallery-card:hover img,
.category-card:hover img,
.about-visual:hover img {
    transform: scale(1.04);
    filter: saturate(1.06);
}

.featured-card:hover span {
    opacity: 1;
    transform: translateY(0);
}

.gallery-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--muted);
}

.gallery-grid {
    columns: 4 240px;
    column-gap: 1.25rem;
}

.gallery-card {
    display: block;
    width: 100%;
    margin: 0 0 1.25rem;
    break-inside: avoid;
}

.gallery-card img {
    border-radius: var(--radius-sm);
}

.gallery-overlay {
    position: absolute;
    inset: auto 1rem 1rem 1rem;
    display: grid;
    gap: 0.2rem;
    padding: 1rem;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0), rgba(10, 10, 10, 0.74));
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

.about-hero {
    grid-template-columns: 1fr 0.8fr;
}

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

.contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
}

.contact-list,
.footer-links {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 0;
    display: grid;
    gap: 0.85rem;
}

.contact-list li {
    display: grid;
    gap: 0.3rem;
}

.field-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.contact-form label {
    display: grid;
    gap: 0.55rem;
}

.contact-form span {
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    padding: 0.95rem 1rem;
    color: var(--text);
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 3rem;
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(107, 83, 46, 0.9) 50%),
        linear-gradient(135deg, rgba(107, 83, 46, 0.9) 50%, transparent 50%);
    background-position:
        calc(100% - 22px) calc(50% - 3px),
        calc(100% - 16px) calc(50% - 3px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    cursor: pointer;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: rgba(184, 137, 61, 0.52);
    box-shadow: 0 0 0 4px rgba(184, 137, 61, 0.12);
}

.site-footer {
    margin-top: 4rem;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(184, 137, 61, 0.14);
    background: rgba(255, 251, 245, 0.78);
}

.footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 0.9fr;
    align-items: start;
}

.brand-footer {
    margin-bottom: 1rem;
}

.footer-copy {
    max-width: 28ch;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.4rem;
}

.social-links a,
.back-to-top {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(184, 137, 61, 0.2);
    background: rgba(255, 255, 255, 0.75);
    color: var(--gold-deep);
}

.site-footer h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(184, 137, 61, 0.12);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: rgba(20, 17, 14, 0.85);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-figure {
    margin: 0;
    display: grid;
    gap: 1rem;
    justify-items: center;
}

.lightbox-figure img {
    max-width: min(900px, 100%);
    max-height: 60vh;
    border-radius: 24px;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.3);
}

.lightbox figcaption {
    color: #fff;
    display: grid;
    gap: 0.5rem;
    text-align: center;
}

.lightbox-close,
.lightbox-nav {
    border: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    width: 54px;
    height: 54px;
    border-radius: 999px;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 1rem;
        right: 1rem;
        display: grid;
        gap: 0.25rem;
        padding: 1rem;
        border-radius: 24px;
        background: rgba(255, 251, 245, 0.96);
        border: 1px solid rgba(184, 137, 61, 0.18);
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .site-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .hero-grid,
    .about-hero,
    .split-panel,
    .contact-grid,
    .footer-grid,
    .story-grid,
    .category-grid,
    .featured-grid,
    .stats-grid,
    .values-grid,
    .field-row {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        grid-template-areas:
            "copy"
            "visual"
            "actions"
            "highlights";
        min-height: auto;
        padding-top: 3rem;
        gap: 1.5rem;
    }

    .hero-visual {
        padding-inline: 0;
        justify-content: center;
    }

    .hero-copy {
        padding-left: 0;
    }

    .hero-copy::before,
    .hero-copy::after,
    .hero-visual::before {
        display: none;
    }

    .hero-frame {
        width: min(100%, 620px);
        height: 460px;
    }

    .gallery-grid {
        columns: 3 200px;
    }
}

@media (max-width: 720px) {
    .section,
    .page-hero {
        padding: 4.5rem 0;
    }

    .hero-grid {
        padding-top: 1.25rem;
        padding-bottom: 0.5rem;
        gap: 1rem;
    }

    .brand-copy strong {
        font-size: 1.55rem;
    }

    .brand-copy small {
        font-size: 0.62rem;
    }

    .gallery-toolbar,
    .footer-bottom,
    .hero-actions,
    .setup-notice {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-grid {
        columns: 2 160px;
    }

    .lightbox {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .lightbox-nav {
        display: none;
    }

    .hero-frame {
        height: 360px;
        border-radius: 24px;
    }

    .hero-actions {
        margin-top: 1.35rem;
        margin-bottom: 0.15rem;
    }

    .hero-highlights {
        gap: 0.75rem;
        margin-top: 1rem;
    }

    .hero-highlight {
        padding: 0.8rem 1rem;
    }

    .hero-visual {
        margin-top: -0.5rem;
    }
}

@media (max-width: 520px) {
    .container {
        width: min(100% - 1.1rem, 100%);
    }

    .header-row {
        min-height: 76px;
    }

    h1 {
        font-size: 2.85rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .gallery-grid {
        columns: 1;
    }

    .hero-frame {
        height: 280px;
    }

    .hero-copy p {
        margin-top: 0.9rem;
        line-height: 1.65;
    }

    .hero-actions {
        margin-top: 1.1rem;
        margin-bottom: 0;
    }

    .hero-highlights {
        gap: 0.65rem;
        margin-top: 0.85rem;
    }

    .hero-highlight {
        padding: 0.75rem 0.95rem;
    }

    .hero-highlight strong {
        margin-bottom: 0.1rem;
    }

    .about-visual img {
        aspect-ratio: 1 / 1.15;
    }
}

.brand-mark svg,
.search-button svg,
.social-links svg {
    width: 100%;
    height: 100%;
}

.floating-whatsapp {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 90;
    width: 60px;
    height: 60px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25d366, #128c4a);
    color: rgb(209, 226, 221);
    box-shadow: 0 18px 35px rgba(18, 140, 74, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.floating-whatsapp i {
    font-size: 2rem;
    line-height: 1;
}

.floating-whatsapp:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 22px 38px rgba(18, 140, 74, 0.34);
}

.search-button {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(184, 137, 61, 0.16);
    background: rgba(255, 255, 255, 0.75);
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.search-button:hover {
    transform: translateY(-2px);
    border-color: rgba(184, 137, 61, 0.32);
    box-shadow: 0 16px 28px rgba(31, 26, 23, 0.08);
}

.search-panel {
    padding-bottom: 1rem;
}

.search-form {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(184, 137, 61, 0.12);
    box-shadow: 0 18px 34px rgba(31, 26, 23, 0.06);
}

.search-form input {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0.95rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(184, 137, 61, 0.14);
    background: rgba(255, 255, 255, 0.95);
    color: var(--text);
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 0;
    grid-area: highlights;
    align-self: start;
    position: relative;
    z-index: 3;
}

.hero-highlight {
    min-width: 120px;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(184, 137, 61, 0.14);
    box-shadow: 0 14px 28px rgba(31, 26, 23, 0.06);
}

.hero-highlight strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.hero-highlight span {
    color: var(--muted);
    font-size: 0.84rem;
}

.category-card,
.featured-card,
.gallery-card,
.button,
.social-links a,
.filter-chip {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.category-card:hover,
.gallery-card:hover,
.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 40px rgba(31, 26, 23, 0.1);
}

.filter-bar {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.6rem;
}

.filter-chip {
    border: 1px solid rgba(184, 137, 61, 0.18);
    background: rgba(255, 255, 255, 0.82);
    color: var(--text);
    padding: 0.8rem 1.15rem;
    border-radius: 999px;
}

.filter-chip:hover,
.filter-chip.is-active {
    background: linear-gradient(135deg, rgba(184, 137, 61, 0.14), rgba(184, 137, 61, 0.06));
    border-color: rgba(184, 137, 61, 0.38);
    color: var(--gold-deep);
}

.gallery-card[hidden] {
    display: none;
}

.newsletter-panel,
.map-card {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.6rem 1.8rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(184, 137, 61, 0.14);
    box-shadow: var(--shadow);
}

.newsletter-form {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.newsletter-form input {
    min-width: 280px;
    padding: 0.95rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(184, 137, 61, 0.16);
    background: rgba(255, 255, 255, 0.92);
}

.social-links a svg {
    width: 18px;
    height: 18px;
}

.social-links a:hover,
.back-to-top:hover {
    transform: translateY(-2px);
    background: rgba(184, 137, 61, 0.1);
}

.lightbox-panel {
    width: min(980px, 100%);
    display: grid;
    gap: 1rem;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
    padding-right: 0.2rem;
}

.lightbox-figure {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 28px;
    padding: 1rem;
}

.lightbox-figure img {
    cursor: zoom-in;
    transition: transform 0.35s ease;
}

.lightbox-figure img.is-zoomed {
    transform: scale(1.5);
    cursor: zoom-out;
}

.lightbox figcaption strong {
    font-size: 1.5rem;
}

.lightbox figcaption span:first-child {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lightbox-description {
    margin: 0.8rem 0 0;
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.75;
    max-width: 62ch;
}

.lightbox-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 0.9rem;
}

.lightbox-meta-chip {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 248, 236, 0.92);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.lightbox-thumbs {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
}

.lightbox-thumb {
    width: 72px;
    height: 72px;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 16px;
    border: 2px solid transparent;
    padding: 0;
    background: transparent;
}

.lightbox-thumb.is-active {
    border-color: var(--gold);
}

.lightbox-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whatsapp-card {
    margin-top: 1.5rem;
    padding: 1.25rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(184, 137, 61, 0.14);
}

.form-success {
    margin-top: 0.25rem;
    color: var(--gold-deep);
    font-weight: 600;
}

.section-map {
    padding-top: 0;
}

.map-visual {
    min-height: 220px;
    min-width: 320px;
    display: grid;
    place-items: center;
    border-radius: 24px;
    color: var(--gold-deep);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background:
        linear-gradient(rgba(255,255,255,0.75), rgba(255,255,255,0.75)),
        radial-gradient(circle at 20% 20%, rgba(184, 137, 61, 0.18), transparent 20%),
        repeating-linear-gradient(45deg, rgba(184, 137, 61, 0.08), rgba(184, 137, 61, 0.08) 8px, transparent 8px, transparent 16px);
    border: 1px solid rgba(184, 137, 61, 0.14);
}

@media (max-width: 980px) {
    .header-row {
        flex-wrap: wrap;
    }

    .search-button {
        display: none;
    }

    .newsletter-panel,
    .map-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .hero-highlights,
    .filter-bar,
    .newsletter-form,
    .search-form {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-highlight,
    .newsletter-form input,
    .map-visual {
        min-width: 0;
        width: 100%;
    }

    .lightbox-panel {
        gap: 0.75rem;
    }
}

.about-page {
    padding: 4.2rem 0 2.8rem;
}

.about-page::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 14% 16%, rgba(184, 137, 61, 0.12), transparent 18%),
        radial-gradient(circle at 88% 14%, rgba(184, 137, 61, 0.08), transparent 18%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(247, 240, 227, 0.28)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'%3E%3Cg fill='none' stroke='%23b8893d' stroke-opacity='.05' stroke-width='1'%3E%3Cpath d='M110 18c24 25 42 47 42 74 0 23-19 42-42 42s-42-19-42-42c0-27 18-49 42-74Z'/%3E%3Cpath d='M110 46c15 16 26 30 26 47 0 14-12 26-26 26s-26-12-26-26c0-17 11-31 26-47Z'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat, no-repeat, no-repeat, repeat;
    background-position: left top, right top, center, center;
    background-size: auto, auto, auto, 220px;
    opacity: 0.8;
    pointer-events: none;
}

.about-hero {
    display: block;
}

.about-copy {
    max-width: 37rem;
    position: relative;
    z-index: 2;
}

.about-copy h1 {
    font-size: clamp(3rem, 5vw, 4.4rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
}

.about-copy p {
    margin-top: 1rem;
    max-width: 34rem;
    color: #5f564e;
    line-height: 1.85;
}

.artist-about-copy .eyebrow {
    margin-bottom: 0.9rem;
}

.about-role {
    margin-top: 0.8rem;
    color: var(--gold-deep);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.artist-hero-card {
    position: relative;
    min-height: 33rem;
    padding: 3.6rem 3.25rem;
    display: flex;
    align-items: flex-start;
    border-radius: 38px;
    background:
        linear-gradient(90deg, rgba(255, 252, 245, 0.98) 0%, rgba(255, 252, 245, 0.93) 31%, rgba(255, 252, 245, 0.62) 48%, rgba(255, 252, 245, 0.1) 66%),
        url('../images/about_img/about_hero.png'),
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 244, 236, 0.86));
    border: 1px solid rgba(184, 137, 61, 0.18);
    box-shadow: 0 28px 80px rgba(53, 37, 18, 0.12);
    overflow: hidden;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: auto, cover, auto;
    background-position: left top, center center, center;
}

.artist-hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 26%, rgba(184, 137, 61, 0.24), transparent 10%),
        linear-gradient(180deg, rgba(255, 248, 234, 0.16), rgba(255, 248, 234, 0.12));
    pointer-events: none;
}

.artist-hero-card::after {
    content: '';
    position: absolute;
    inset: 1rem;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    pointer-events: none;
}

.artist-mark {
    position: absolute;
    right: 2rem;
    top: 1.9rem;
    width: 5.5rem;
    height: 5.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(184, 137, 61, 0.68);
    font-size: 2.8rem;
    z-index: 3;
    pointer-events: none;
}

.about-expertise-section {
    padding-top: 1rem;
    padding-bottom: 2.2rem;
}

.about-expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.15rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(184, 137, 61, 0.12);
    border-radius: 28px;
    box-shadow: 0 18px 40px rgba(31, 26, 23, 0.05);
}

.about-expertise-card {
    min-height: 100%;
    padding: 1.35rem 1rem 1.2rem;
    text-align: center;
    border-right: 1px solid rgba(184, 137, 61, 0.12);
}

.about-expertise-card:last-child {
    border-right: 0;
}

.about-expertise-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.15rem;
    height: 3.15rem;
    margin-bottom: 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(184, 137, 61, 0.2);
    color: var(--gold-deep);
    background: rgba(255, 251, 244, 0.95);
}

.about-expertise-card h3 {
    margin-bottom: 0.55rem;
    font-size: 1.2rem;
}

.about-expertise-card p {
    color: #6a6056;
    font-size: 0.94rem;
    line-height: 1.7;
}

.about-journey-section {
    padding-top: 0.9rem;
    padding-bottom: 3rem;
}

.about-journey-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.96fr) minmax(0, 1.04fr);
    gap: 1.5rem;
    align-items: center;
}

.about-journey-media {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    box-shadow: 0 22px 48px rgba(31, 26, 23, 0.1);
}

.about-journey-media img,
.about-activity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-journey-media img {
    aspect-ratio: 1.08 / 0.88;
}

.about-journey-copy h2 {
    font-size: clamp(2.2rem, 4vw, 3.1rem);
    margin-bottom: 0.9rem;
}

.about-journey-copy p + p {
    margin-top: 0.8rem;
}

.about-quote {
    margin: 1.5rem 0 0;
    padding: 1.2rem 1.25rem;
    border-left: 4px solid rgba(184, 137, 61, 0.72);
    border-radius: 0 18px 18px 0;
    background: rgba(255, 248, 238, 0.84);
    color: #6b5845;
    font-size: 0.98rem;
    line-height: 1.8;
    font-style: italic;
}

.about-activities-section {
    padding-top: 2.3rem;
    padding-bottom: 4.5rem;
}

.about-activities-heading {
    text-align: center;
    margin-bottom: 1.8rem;
}

.about-activities-heading h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.about-activities-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.about-activity-card {
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    background: #f2eadf;
    box-shadow: 0 16px 38px rgba(31, 26, 23, 0.08);
}

.about-activity-card img {
    aspect-ratio: 1 / 0.82;
    transition: transform 0.35s ease;
}

.about-activity-card:hover img {
    transform: scale(1.05);
}

.about-activities-cta {
    justify-content: center;
    margin-top: 1.6rem;
}

.about-activities-cta .button {
    gap: 0.65rem;
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(184, 137, 61, 0.22);
}

@media (max-width: 980px) {
    .about-page {
        padding: 3.5rem 0 2.5rem;
    }

    .about-copy {
        max-width: 100%;
    }

    .about-copy p,
    .about-expertise-card p {
        max-width: 100%;
    }

    .about-expertise-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
    }

    .about-expertise-card {
        border-right: 0;
        border-bottom: 1px solid rgba(184, 137, 61, 0.12);
    }

    .about-expertise-card:nth-child(2n + 1) {
        border-right: 1px solid rgba(184, 137, 61, 0.12);
    }

    .about-expertise-card:nth-last-child(-n + 2) {
        border-bottom: 0;
    }

    .about-journey-grid {
        grid-template-columns: 1fr;
    }

    .about-activities-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .artist-hero-card {
        min-height: 29rem;
        padding: 2.8rem 2.4rem;
        background-position: left top, 68% center, center;
    }
}

@media (max-width: 720px) {
    .about-page {
        padding: 2.6rem 0 1.8rem;
    }

    .about-page::after {
        background-size: auto, auto, auto, 180px;
        opacity: 0.55;
    }

    .about-hero {
        gap: 1.1rem;
    }

    .about-copy {
        text-align: left;
    }

    .about-copy h1 {
        font-size: clamp(2.4rem, 12vw, 3.2rem);
        line-height: 0.98;
    }

    .about-copy p {
        margin-top: 0.85rem;
        line-height: 1.75;
    }

    .artist-hero-card {
        min-height: auto;
        padding: 2rem 1.35rem 18rem;
        border-radius: 28px;
        background:
            linear-gradient(180deg, rgba(255, 252, 245, 0.96) 0%, rgba(255, 252, 245, 0.9) 32%, rgba(255, 252, 245, 0.46) 58%, rgba(255, 252, 245, 0.18) 100%),
            url('../images/about_img/about_hero.png'),
            linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 244, 236, 0.86));
        background-repeat: no-repeat, no-repeat, no-repeat;
        background-size: auto, cover, auto;
        background-position: left top, 66% bottom, center;
    }

    .artist-hero-card::after {
        inset: 0.7rem;
        border-radius: 22px;
    }

    .about-role {
        font-size: 1rem;
    }

    .artist-mark {
        width: 4rem;
        height: 4rem;
        font-size: 2.1rem;
        right: 0.75rem;
        top: 0.85rem;
    }

    .about-expertise-section,
    .about-journey-section,
    .about-activities-section {
        padding-top: 1.4rem;
        padding-bottom: 2.2rem;
    }

    .about-expertise-grid {
        grid-template-columns: 1fr;
        padding: 0.8rem;
    }

    .about-expertise-card,
    .about-expertise-card:nth-child(2n + 1) {
        border-right: 0;
        border-bottom: 1px solid rgba(184, 137, 61, 0.12);
        padding: 1.15rem 0.8rem;
    }

    .about-expertise-card:last-child {
        border-bottom: 0;
    }

    .about-journey-copy h2,
    .about-activities-heading h2 {
        font-size: clamp(1.85rem, 8vw, 2.4rem);
    }

    .about-quote {
        padding: 1rem 1rem 1rem 1.05rem;
        font-size: 0.92rem;
    }

    .about-activities-heading {
        margin-bottom: 1.2rem;
    }

    .about-activities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 520px) {
    .about-page {
        padding-top: 2.1rem;
    }

    .about-copy h1 {
        font-size: 2.2rem;
    }

    .artist-hero-card {
        padding: 1.75rem 1rem 15rem;
        min-height: 31rem;
        background-position: left top, 69% bottom, center;
    }

    .about-expertise-grid,
    .about-activities-grid {
        gap: 0.85rem;
    }

    .about-journey-media {
        border-radius: 20px;
    }
}

.contact-page {
    padding: 0 0 3rem;
}

.contact-showcase {
    padding-top: 0;
}

.contact-hero-card {
    position: relative;
    min-height: 30rem;
    padding: 3.8rem 3.2rem;
    display: flex;
    align-items: center;
    border-radius: 0 0 34px 34px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255, 251, 244, 0.98) 0%, rgba(255, 251, 244, 0.93) 31%, rgba(255, 251, 244, 0.66) 46%, rgba(255, 251, 244, 0.18) 64%),
        linear-gradient(180deg, rgba(247, 236, 215, 0.18), rgba(255, 255, 255, 0)),
        url('../images/about_img/contact_hero.png'),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280' viewBox='0 0 280 280'%3E%3Cg fill='none' stroke='%23d4a65a' stroke-opacity='.11' stroke-width='1'%3E%3Cpath d='M140 10c35 33 63 69 63 112 0 35-28 63-63 63s-63-28-63-63c0-43 28-79 63-112Z'/%3E%3Cpath d='M140 45c24 23 42 47 42 77 0 23-19 42-42 42s-42-19-42-42c0-30 18-54 42-77Z'/%3E%3C/g%3E%3C/svg%3E");
    border: 1px solid rgba(184, 137, 61, 0.12);
    box-shadow: 0 26px 70px rgba(53, 37, 18, 0.08);
    background-repeat: no-repeat, no-repeat, no-repeat, repeat;
    background-position: left top, center, center right, center;
    background-size: auto, auto, cover, 280px;
}

.contact-hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 54%, rgba(184, 137, 61, 0.08) 68%, rgba(184, 137, 61, 0.02) 100%);
    pointer-events: none;
}

.contact-hero-card::after {
    content: none;
}

.contact-hero-copy {
    position: relative;
    z-index: 2;
    max-width: 34rem;
}

.contact-hero-copy h1 {
    margin-bottom: 1rem;
    font-size: clamp(3.4rem, 6vw, 5.1rem);
    line-height: 0.96;
}

.contact-hero-copy p {
    max-width: 32rem;
    color: #5b534d;
    font-size: 1.08rem;
    line-height: 1.9;
}

.contact-hero-divider {
    display: inline-block;
    width: 2.8rem;
    height: 2px;
    margin: 0 0 1.2rem;
    background: linear-gradient(90deg, var(--gold), rgba(184, 137, 61, 0.16));
}

.contact-section {
    padding-top: 2rem;
    padding-bottom: 2.4rem;
}

.contact-grid {
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.82fr);
    align-items: stretch;
    gap: 0.9rem;
}

.contact-panel,
.contact-form {
    min-height: 100%;
    padding: 1.9rem 2rem;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(184, 137, 61, 0.12);
    box-shadow: 0 22px 48px rgba(31, 26, 23, 0.06);
    backdrop-filter: blur(8px);
}

.contact-panel {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.contact-panel h2,
.contact-form h2 {
    font-size: clamp(2rem, 3vw, 2.45rem);
    margin-top: 0.15rem;
    margin-bottom: 0.6rem;
}

.contact-list {
    margin-top: 0.9rem;
    gap: 0;
}

.contact-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.9rem;
    align-items: center;
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(184, 137, 61, 0.12);
}

.contact-list li:last-child {
    border-bottom: 0;
}

.contact-list-icon {
    width: 3.15rem;
    height: 3.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(184, 137, 61, 0.18);
    color: var(--gold-deep);
    background: rgba(255, 251, 244, 0.92);
    font-size: 1.15rem;
}

.contact-list li > div {
    display: grid;
    gap: 0.2rem;
}

.contact-list strong {
    font-size: 1.06rem;
    letter-spacing: 0;
    text-transform: none;
    color: var(--text);
}

.contact-list a,
.contact-list span {
    font-size: 1rem;
    color: #544d46;
}

.contact-form {
    gap: 0.95rem;
    align-content: start;
}

.contact-form .eyebrow {
    margin-bottom: 0;
}

.contact-form label {
    gap: 0.45rem;
}

.contact-form span {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    border-radius: 14px;
    border: 1px solid rgba(184, 137, 61, 0.14);
    background: rgba(255, 255, 255, 0.94);
    padding: 0.9rem 1rem;
    line-height: 1.5;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

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

.contact-form .button-primary {
    justify-self: start;
    margin-top: 0.35rem;
    gap: 0.65rem;
}

.form-success {
    margin-top: 0.15rem;
}

.contact-map-section {
    padding-top: 0.8rem;
    padding-bottom: 3.8rem;
}

.map-card {
    margin-top: 0;
    grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1.28fr);
    padding: 1.2rem;
    gap: 1.4rem;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(184, 137, 61, 0.12);
    box-shadow: 0 22px 48px rgba(31, 26, 23, 0.06);
}

.map-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 28rem;
    padding: 1.4rem 1.25rem 1.4rem 1.45rem;
}

.map-copy h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-top: 0.15rem;
}

.map-copy p {
    margin-top: 0;
    color: #5f564e;
    line-height: 1.85;
}

.map-visual {
    position: relative;
    min-height: 250px;
    min-width: 0;
    width: 100%;
    overflow: hidden;
    background:
        linear-gradient(rgba(255,255,255,0.68), rgba(255,255,255,0.68)),
        radial-gradient(circle at 32% 28%, rgba(184, 137, 61, 0.14), transparent 16%),
        linear-gradient(120deg, rgba(184, 137, 61, 0.08) 2px, transparent 2px),
        linear-gradient(45deg, rgba(184, 137, 61, 0.06) 2px, transparent 2px),
        linear-gradient(90deg, rgba(184, 137, 61, 0.04) 1px, transparent 1px),
        linear-gradient(rgba(184, 137, 61, 0.04) 1px, transparent 1px);
    background-size: auto, auto, 140px 140px, 120px 120px, 36px 36px, 36px 36px;
    background-position: center;
    border: 1px solid rgba(184, 137, 61, 0.16);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4.2rem;
    height: 4.2rem;
    border-radius: 999px 999px 999px 0;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    box-shadow: 0 0 0 10px rgba(184, 137, 61, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    rotate: -45deg;
}

.map-pin i {
    rotate: 45deg;
}

.map-visual span {
    position: absolute;
    left: 50%;
    bottom: 1.2rem;
    transform: translateX(-50%);
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(184, 137, 61, 0.12);
    color: var(--gold-deep);
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: none;
}

@media (max-width: 980px) {
    .contact-page {
        padding-bottom: 2.6rem;
    }

    .contact-hero-card {
        min-height: 26rem;
        padding: 2.8rem 2.3rem;
        background-position: left top, center, 64% center, center;
    }

    .contact-section {
        padding-top: 2rem;
    }

    .contact-grid,
    .map-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .contact-hero-card {
        min-height: auto;
        padding: 2rem 1.35rem 14rem;
        border-radius: 0 0 26px 26px;
        background:
            linear-gradient(180deg, rgba(255, 251, 244, 0.98) 0%, rgba(255, 251, 244, 0.92) 30%, rgba(255, 251, 244, 0.56) 54%, rgba(255, 251, 244, 0.24) 100%),
            linear-gradient(180deg, rgba(247, 236, 215, 0.18), rgba(255, 255, 255, 0)),
            url('../images/about_img/contact_hero.png'),
            url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280' viewBox='0 0 280 280'%3E%3Cg fill='none' stroke='%23d4a65a' stroke-opacity='.11' stroke-width='1'%3E%3Cpath d='M140 10c35 33 63 69 63 112 0 35-28 63-63 63s-63-28-63-63c0-43 28-79 63-112Z'/%3E%3Cpath d='M140 45c24 23 42 47 42 77 0 23-19 42-42 42s-42-19-42-42c0-30 18-54 42-77Z'/%3E%3C/g%3E%3C/svg%3E");
        background-repeat: no-repeat, no-repeat, no-repeat, repeat;
        background-size: auto, auto, cover, 280px;
        background-position: left top, center, 62% bottom, center;
    }

    .contact-hero-copy h1 {
        font-size: clamp(2.5rem, 12vw, 3.5rem);
    }

    .contact-panel,
    .contact-form,
    .map-card {
        padding: 1.45rem;
    }

    .contact-grid {
        gap: 1rem;
    }

    .field-row {
        grid-template-columns: 1fr;
    }

    .contact-map-section {
        padding-bottom: 2.8rem;
    }

    .map-copy {
        padding: 0.5rem 0.2rem 0;
    }

    .map-visual {
        min-height: 220px;
    }

    .map-visual span {
        width: calc(100% - 1.5rem);
        text-align: center;
    }

    .floating-whatsapp {
        width: 54px;
        height: 54px;
        right: 1rem;
        bottom: 1rem;
    }

    .floating-whatsapp i {
        font-size: 1.8rem;
    }
}

.gallery-section {
    padding-top: 2.3rem;
}

.customize-page {
    padding-bottom: 2.2rem;
}

.customize-heading p {
    max-width: 28rem;
}

.customize-catalog-card img {
    width: 100%;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: none;
}

.customize-products-section {
    padding-top: 2.4rem;
}

.customize-products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

.customize-product-card {
    display: block;
    width: 100%;
    padding: 0;
    text-align: left;
    cursor: pointer;
    font: inherit;
    color: inherit;
    appearance: none;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(184, 137, 61, 0.12);
    box-shadow: 0 16px 34px rgba(31, 26, 23, 0.05);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.customize-product-card:hover {
    transform: translateY(-2px);
    border-color: rgba(184, 137, 61, 0.2);
    box-shadow: 0 22px 38px rgba(31, 26, 23, 0.08);
}

.customize-product-card img {
    width: 100%;
    aspect-ratio: 1.08 / 0.92;
    object-fit: cover;
}

.customize-product-card-head {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.customize-product-card-tag {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
}

.customize-product-card-tag {
    padding: 0 0.8rem;
    background: rgba(255, 249, 241, 0.96);
    border: 1px solid rgba(184, 137, 61, 0.12);
    color: #7b684c;
}

.customize-product-card-body {
    display: grid;
    gap: 0.7rem;
    padding: 1rem 1rem 1.1rem;
}

.customize-product-card-body h3 {
    margin: 0;
    font-size: 1.45rem;
}

.customize-product-card-body p {
    margin: 0;
    color: #5f564e;
    line-height: 1.7;
}

.customize-product-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--gold-deep);
}

.customize-product-card-meta span {
    color: #6b6259;
}

.customize-product-card-action {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.1rem;
    color: var(--text);
    font-weight: 700;
}

.customize-product-card-action::after {
    content: '\2192';
    color: var(--gold-deep);
}

.customize-product-card-empty {
    display: grid;
    align-items: center;
}

.customize-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.4rem;
}

.customize-summary span {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 1rem;
    border-radius: 14px;
    background: rgba(255, 249, 241, 0.92);
    border: 1px solid rgba(184, 137, 61, 0.14);
    color: #6b573d;
    font-weight: 600;
}

.customize-inquiry-notes {
    display: grid;
    gap: 0.9rem;
    margin-top: 0.4rem;
}

.customize-inquiry-note {
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: rgba(255, 249, 241, 0.82);
    border: 1px solid rgba(184, 137, 61, 0.1);
}

.customize-inquiry-note small {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--gold-deep);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.customize-inquiry-note strong {
    display: block;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.45;
}

.customize-products-section .customize-product-card-empty {
    cursor: default;
}

.customize-products-section .customize-product-card-empty:hover {
    transform: none;
    border-color: rgba(184, 137, 61, 0.12);
    box-shadow: 0 20px 42px rgba(31, 26, 23, 0.06);
}

.catalog-page {
    padding-top: 4.5rem;
    padding-bottom: 3.25rem;
    overflow: hidden;
}

.catalog-page::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 18%, rgba(184, 137, 61, 0.12), transparent 18%),
        radial-gradient(circle at 18% 76%, rgba(184, 137, 61, 0.08), transparent 22%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 42%, rgba(255, 255, 255, 0.38) 100%);
    pointer-events: none;
}

.catalog-hero {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: 2rem;
    align-items: center;
}

.catalog-hero-copy {
    max-width: 34rem;
}

.catalog-hero-copy h1 {
    font-size: clamp(3.2rem, 5.8vw, 5rem);
}

.catalog-hero-copy p {
    margin-top: 1.2rem;
    color: #5f564e;
    line-height: 1.9;
}

.catalog-hero-visual {
    position: relative;
    min-height: 520px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-left: 2rem;
}

.catalog-hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 240px 240px 34px 34px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
        url("../images/collection_img/collection2.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.22;
    filter: saturate(0.9);
    pointer-events: none;
}

.catalog-arch-frame {
    position: relative;
    width: min(100%, 620px);
    padding: 2.2rem;
    border-radius: 220px 220px 32px 32px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 236, 0.88)),
        rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(184, 137, 61, 0.16);
    box-shadow: 0 32px 80px rgba(65, 45, 23, 0.1);
}

.catalog-arch-frame::before {
    content: '';
    position: absolute;
    inset: 1rem;
    border-radius: 210px 210px 24px 24px;
    border: 1px solid rgba(184, 137, 61, 0.12);
    pointer-events: none;
}

.catalog-arch-frame img {
    width: 100%;
    aspect-ratio: 4 / 3.2;
    object-fit: cover;
    border-radius: 180px 180px 18px 18px;
    box-shadow: 0 18px 44px rgba(31, 26, 23, 0.08);
}

.catalog-collections-section {
    padding-top: 2.4rem;
    padding-bottom: 2rem;
}

.catalog-heading p {
    max-width: 42rem;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.catalog-card {
    overflow: hidden;
    min-height: 100%;
    position: relative;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(184, 137, 61, 0.14);
    box-shadow: 0 22px 48px rgba(31, 26, 23, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.catalog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 56px rgba(31, 26, 23, 0.1);
}

.catalog-card-image {
    position: relative;
    padding: 1rem 1rem 0;
}

.catalog-card-image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 22px;
}

.catalog-card-badge {
    position: absolute;
    left: 50%;
    bottom: -2rem;
    transform: translate(-50%, -50%);
    width: 66px;
    height: 66px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: #fff9f0;
    border: 6px solid rgba(255, 255, 255, 0.92);
    box-shadow:
        0 16px 28px rgba(184, 137, 61, 0.22),
        0 0 0 1px rgba(143, 102, 37, 0.06);
    z-index: 2;
}

.catalog-card-badge i {
    font-size: 1.15rem;
}

.catalog-card-badge strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
}

.catalog-card-body {
    display: grid;
    align-content: start;
    gap: 0.9rem;
    padding: 2.65rem 1.4rem 1.5rem;
    text-align: center;
}

.catalog-card-body h3,
.customize-catalog-card h3 {
    margin: 0;
    font-size: 2rem;
}

.catalog-card-body p,
.customize-catalog-copy p,
.customize-catalog-card p {
    color: #5f564e;
    line-height: 1.85;
}

.catalog-card-body p {
    max-width: 25ch;
    justify-self: center;
}

.catalog-card-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    justify-self: center;
    min-height: 52px;
    margin-top: 0.15rem;
    padding: 0 1.35rem;
    border-radius: 16px;
    border: 1px solid rgba(184, 137, 61, 0.28);
    background: rgba(255, 255, 255, 0.72);
    color: var(--gold-deep);
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.catalog-card-link i {
    font-size: 0.9rem;
}

.catalog-card-link:hover {
    transform: translateY(-2px);
    border-color: rgba(184, 137, 61, 0.42);
    background: rgba(255, 251, 243, 0.96);
    box-shadow: 0 16px 24px rgba(184, 137, 61, 0.12);
}

.catalog-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(184, 137, 61, 0.025));
    pointer-events: none;
}

.customize-catalog-section {
    padding-top: 1rem;
    padding-bottom: 2.5rem;
}

.customize-catalog-panel {
    display: grid;
    gap: 1.8rem;
    padding: 0.8rem 0 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.customize-catalog-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 40rem;
}

.customize-catalog-icon {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--gold-deep));
    color: #fff9f0;
    box-shadow: 0 18px 32px rgba(184, 137, 61, 0.18);
}

.customize-catalog-icon i {
    font-size: 1.15rem;
}

.customize-catalog-copy {
    max-width: 52rem;
}

.customize-catalog-copy h2 {
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    margin-top: 0.15rem;
    line-height: 1.15;
    max-width: none;
}

.customize-catalog-copy p {
    max-width: 46ch;
}

.customize-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.35rem;
}

.customize-catalog-card {
    min-height: 100%;
    overflow: hidden;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(184, 137, 61, 0.1);
    box-shadow: 0 18px 36px rgba(31, 26, 23, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.customize-catalog-card img {
    aspect-ratio: 1.08 / 0.86;
    margin-bottom: 0;
    border-radius: 0;
    box-shadow: none;
}

.customize-catalog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 42px rgba(31, 26, 23, 0.09);
}

.customize-catalog-card-body {
    display: grid;
    justify-items: center;
    gap: 0.7rem;
    padding: 1rem 1rem 1.25rem;
    text-align: center;
}

.customize-catalog-card-body h3 {
    margin: 0;
    font-size: 1.9rem;
}

.customize-catalog-divider {
    width: 42px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(184, 137, 61, 0.1), rgba(184, 137, 61, 0.85), rgba(184, 137, 61, 0.1));
}

.customize-catalog-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 124px;
    min-height: 46px;
    padding: 0 1rem;
    border-radius: 12px;
    border: 1px solid rgba(184, 137, 61, 0.28);
    background: rgba(255, 255, 255, 0.72);
    color: var(--gold-deep);
    font-weight: 700;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.customize-catalog-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 250, 241, 0.95);
    border-color: rgba(184, 137, 61, 0.4);
    box-shadow: 0 14px 24px rgba(184, 137, 61, 0.12);
}

.gallery-toolbar {
    padding-bottom: 1rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid rgba(184, 137, 61, 0.1);
}

.gallery-toolbar p {
    color: var(--text);
}

.gallery-toolbar strong {
    font-size: 1.05rem;
}

.filter-bar {
    gap: 0.65rem;
    margin-bottom: 2rem;
    padding: 0.35rem 0;
}

.filter-chip {
    border: 0;
    background: rgba(255, 255, 255, 0.7);
    color: #645b54;
    padding: 0.72rem 1.1rem;
    border-radius: 999px;
    box-shadow: inset 0 0 0 1px rgba(184, 137, 61, 0.12);
}

.filter-chip:hover,
.filter-chip.is-active {
    background: rgba(255, 248, 238, 0.96);
    color: var(--gold-deep);
    box-shadow:
        inset 0 0 0 1px rgba(184, 137, 61, 0.22),
        0 10px 22px rgba(184, 137, 61, 0.08);
}

.gallery-grid {
    columns: 4 250px;
    column-gap: 1.35rem;
}

.gallery-card {
    margin: 0 0 1.35rem;
    border-radius: 20px;
    overflow: hidden;
    transform: translateY(0);
    box-shadow: 0 18px 34px rgba(31, 26, 23, 0.04);
}

.gallery-card img {
    border-radius: 20px;
    filter: saturate(0.97);
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 44px rgba(31, 26, 23, 0.1);
}

.gallery-card:hover img {
    transform: scale(1.035);
    filter: saturate(1.04);
}

.gallery-overlay {
    inset: auto 0.85rem 0.85rem 0.85rem;
    gap: 0.3rem;
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(14, 13, 12, 0), rgba(14, 13, 12, 0.72)),
        rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(6px);
}

.gallery-overlay strong {
    font-size: 1.02rem;
    font-weight: 700;
}

.gallery-overlay small {
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.04em;
}

@media (max-width: 980px) {
    .catalog-hero,
    .customize-products-grid,
    .catalog-grid,
    .customize-catalog-grid {
        grid-template-columns: 1fr;
    }

    .customize-catalog-header {
        max-width: 100%;
    }

    .catalog-hero-visual {
        min-height: auto;
        justify-content: center;
        padding-left: 0;
    }

    .gallery-grid {
        columns: 3 220px;
    }
}

@media (max-width: 720px) {
    .customize-catalog-header {
        align-items: center;
    }

    .customize-catalog-icon {
        width: 52px;
        height: 52px;
        flex-basis: 52px;
    }

    .catalog-page {
        padding-top: 3.6rem;
        padding-bottom: 2.6rem;
    }

    .catalog-arch-frame,
    .customize-catalog-panel {
        padding: 1.45rem;
    }

    .catalog-arch-frame {
        border-radius: 140px 140px 24px 24px;
    }

    .catalog-arch-frame::before {
        border-radius: 128px 128px 18px 18px;
    }

    .catalog-arch-frame img {
        border-radius: 112px 112px 16px 16px;
    }

    .catalog-hero-visual {
        display: block;
    }
    .gallery-section {
        padding-top: 1.8rem;
    }

    .gallery-toolbar {
        margin-bottom: 1rem;
        padding-bottom: 0.85rem;
    }

    .gallery-grid {
        columns: 2 170px;
        column-gap: 1rem;
    }

    .gallery-card {
        margin-bottom: 1rem;
    }

    .lightbox-meta {
        gap: 0.55rem;
    }

    .lightbox-meta-chip {
        font-size: 0.86rem;
    }
}

@media (max-width: 520px) {
    .gallery-grid {
        columns: 1;
    }
}

.lightbox-detail-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.9rem;
    min-height: 42px;
    padding: 0 1rem;
    border-radius: 999px;
    background: rgba(255, 249, 241, 0.96);
    color: var(--gold-deep);
    font-weight: 700;
    box-shadow: 0 10px 22px rgba(26, 18, 11, 0.12);
}

.artwork-page-hero {
    padding-bottom: 0.75rem;
}

.artwork-detail-intro {
    max-width: 52rem;
}

.artwork-detail-intro h1 {
    margin-bottom: 0.7rem;
}

.artwork-detail-intro p {
    max-width: 44rem;
    margin-bottom: 0;
}

.artwork-detail-section {
    padding-top: 2rem;
}

.artwork-detail-section-compact {
    padding-top: 0.6rem;
    padding-bottom: 1.2rem;
}

.artwork-detail-grid,
.inquiry-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
    gap: 1.6rem;
    align-items: start;
}

.inquiry-grid-single {
    grid-template-columns: 1fr;
}

.customize-products-section + .inquiry-section {
    padding-top: 1.4rem;
}

.customize-products-section + .inquiry-section .inquiry-panel-copy h2,
.customize-products-section + .inquiry-section .inquiry-form h2 {
    font-size: clamp(2.5rem, 3.8vw, 3.8rem);
    line-height: 0.98;
}

.artwork-detail-card,
.inquiry-panel,
.inquiry-form {
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(184, 137, 61, 0.1);
    box-shadow: 0 24px 44px rgba(31, 26, 23, 0.06);
}

.artwork-detail-visual {
    padding: 1.2rem;
}

.artwork-detail-visual img {
    width: 100%;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 18px 36px rgba(31, 26, 23, 0.08);
}

.artwork-detail-meta,
.inquiry-panel-copy,
.inquiry-form {
    padding: 2rem;
}

.inquiry-panel-copy {
    display: grid;
    gap: 1rem;
    align-content: start;
}

.artwork-detail-meta {
    align-content: start;
    gap: 0.75rem;
}

.artwork-detail-meta h2,
.inquiry-form h2 {
    margin-bottom: 0.7rem;
}

.artwork-detail-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.artwork-detail-specs div,
.inquiry-highlights li {
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: rgba(255, 249, 241, 0.84);
    border: 1px solid rgba(184, 137, 61, 0.08);
}

.artwork-detail-specs small,
.inquiry-highlights strong {
    display: block;
    color: var(--gold-deep);
}

.artwork-detail-specs strong {
    display: block;
    margin-top: 0.35rem;
    font-size: 1rem;
}

.inquiry-highlights {
    margin: 1.4rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.8rem;
}

.inquiry-form {
    display: grid;
    gap: 1.1rem;
}

.artwork-inquiry-section {
    padding-top: 0.8rem;
    padding-bottom: 3rem;
}

.artwork-inquiry-section .inquiry-form {
    gap: 0.95rem;
}

.artwork-inquiry-section .inquiry-form h2 {
    margin-bottom: 0.3rem;
}

.artwork-inquiry-section .inquiry-form > p {
    margin-top: 0;
    margin-bottom: 0.35rem;
    max-width: 50rem;
}

.inquiry-form label {
    display: grid;
    gap: 0.45rem;
}

.inquiry-form span {
    color: var(--text);
    font-weight: 700;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    min-height: 52px;
    padding: 0.95rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(184, 137, 61, 0.14);
    background: rgba(255, 255, 255, 0.96);
    color: var(--text);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.inquiry-form textarea {
    min-height: 150px;
    resize: vertical;
}

.inquiry-form .button {
    width: 100%;
    margin-top: 0.25rem;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: rgba(184, 137, 61, 0.35);
    box-shadow: 0 0 0 4px rgba(184, 137, 61, 0.1);
}

.inquiry-form-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-top: 0.4rem;
}

.form-error {
    margin: 0;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    background: rgba(206, 76, 55, 0.1);
    color: #a33d2d;
    border: 1px solid rgba(206, 76, 55, 0.12);
}

@media (max-width: 980px) {
    .artwork-detail-grid,
    .inquiry-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .artwork-detail-meta,
    .inquiry-panel-copy,
    .inquiry-form,
    .artwork-detail-visual {
        padding: 1.4rem;
    }

    .artwork-page-hero {
        padding-bottom: 0.35rem;
    }

    .artwork-detail-section-compact {
        padding-top: 0.3rem;
        padding-bottom: 0.8rem;
    }

    .artwork-inquiry-section {
        padding-top: 0.5rem;
        padding-bottom: 2.2rem;
    }

    .artwork-detail-specs {
        grid-template-columns: 1fr;
    }

    .inquiry-form-actions {
        flex-direction: column;
        align-items: stretch;
    }
}
