:root {
    --ivory: #fffaf5;
    --ivory-2: #f8efe8;
    --cream: #f3e5da;
    --white: #ffffff;
    --charcoal: #252120;
    --text: #2b2422;
    --text-soft: #766762;
    --muted: #a7958e;
    --blush: #e8c8c0;
    --blush-2: #f4ded8;
    --rose: #b9897e;
    --rose-dark: #8d6158;
    --gold: #c6a66a;
    --gold-soft: #ead8ae;
    --line: rgba(43, 36, 34, 0.12);
    --shadow: 0 24px 70px rgba(86, 57, 45, 0.10);
    --radius-xl: 38px;
    --radius-lg: 26px;
    --radius-md: 16px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(232, 200, 192, 0.42), transparent 34rem),
        radial-gradient(circle at top right, rgba(234, 216, 174, 0.35), transparent 32rem),
        var(--ivory);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
}

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

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

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

.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    background: var(--charcoal);
    color: white;
    padding: 10px 14px;
    border-radius: 999px;
    z-index: 999;
}

.skip-link:focus {
    left: 12px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 250, 245, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}

.announcement-bar {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 8px 20px;
    background: var(--blush-2);
    color: var(--rose-dark);
    font-size: 13px;
    letter-spacing: 0.02em;
    text-align: center;
}

.announcement-bar a {
    color: var(--charcoal);
    font-weight: 800;
    border-bottom: 1px solid var(--rose);
}

.navbar {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
    padding: 18px 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    font-weight: 900;
}

.brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, var(--rose), var(--gold));
    box-shadow: 0 14px 34px rgba(185, 137, 126, 0.22);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
}

.brand-text,
.footer-brand {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 22px;
}

.nav-menu a {
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-menu a:hover {
    color: var(--rose-dark);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav-phone {
    font-size: 13px;
    font-weight: 850;
    color: var(--charcoal);
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 13px 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 900;
    cursor: pointer;
    transition: 180ms ease;
}

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

.btn-gold {
    background: linear-gradient(135deg, var(--rose), var(--gold));
    color: white;
    box-shadow: 0 18px 44px rgba(185, 137, 126, 0.22);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.48);
    color: var(--charcoal);
    border-color: rgba(141, 97, 88, 0.24);
}

.btn-outline:hover {
    border-color: var(--rose);
    color: var(--rose-dark);
}

.nav-toggle,
.nav-toggle-label {
    display: none;
}

.messages {
    width: min(var(--container), calc(100% - 40px));
    margin: 18px auto 0;
}

.message {
    padding: 15px 18px;
    border-radius: var(--radius-md);
    background: #fff4e4;
    border: 1px solid rgba(198, 166, 106, 0.28);
    color: #7b5a24;
    font-weight: 800;
}

.section,
.hero,
.page-hero,
.form-section,
.final-cta,
.site-footer {
    padding-left: max(20px, calc((100% - var(--container)) / 2));
    padding-right: max(20px, calc((100% - var(--container)) / 2));
}

.hero {
    padding-top: 64px;
    padding-bottom: 74px;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 60px;
    align-items: center;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--rose-dark);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 11px;
    font-weight: 950;
}

.hero h1,
.page-hero h1 {
    margin: 0;
    max-width: 760px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(46px, 6.5vw, 84px);
    line-height: 1.02;
    letter-spacing: -0.055em;
    color: var(--charcoal);
}

.hero p,
.page-hero p,
.section-header p,
.form-card > p {
    color: var(--text-soft);
    font-size: 18px;
}

.hero > div:first-child > p:not(.eyebrow) {
    max-width: 610px;
}

.hero-actions,
.cta-actions,
.form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.hero-proof {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.proof-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 16px;
    box-shadow: 0 16px 45px rgba(86, 57, 45, 0.06);
}

.proof-card strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 24px;
    line-height: 1.1;
    color: var(--charcoal);
}

.proof-card span {
    color: var(--muted);
    font-size: 13px;
}

.luxury-panel {
    min-height: 560px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background:
        linear-gradient(rgba(255, 250, 245, 0.12), rgba(37, 33, 32, 0.18)),
        linear-gradient(135deg, #fff8ef, #f1cec6 44%, #d6b06e);
    border: 1px solid rgba(185, 137, 126, 0.22);
    box-shadow: var(--shadow);
    position: relative;
    padding: 28px;
}

.luxury-panel::before {
    content: "";
    position: absolute;
    inset: 26px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 30px;
    pointer-events: none;
}

.panel-topline {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: white;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.12em;
}

.panel-centerpiece {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    padding: 32px;
    border-radius: 30px;
    background: rgba(255, 250, 245, 0.9);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.62);
}

.panel-centerpiece h2 {
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--charcoal);
}

.panel-centerpiece p {
    color: var(--text-soft);
    margin-bottom: 0;
}

.panel-orbit {
    position: absolute;
    width: 142px;
    height: 142px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    font-weight: 950;
    background: rgba(141, 97, 88, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(12px);
}

.panel-orbit.one {
    top: 108px;
    left: 48px;
}

.panel-orbit.two {
    top: 166px;
    right: 48px;
}

.section {
    padding-top: 72px;
    padding-bottom: 72px;
}

.section:nth-of-type(even) {
    background: rgba(255, 255, 255, 0.34);
}

.section-header {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 36px;
    align-items: end;
    margin-bottom: 32px;
}

.section-header h2,
.final-cta h2,
.form-card h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4.4vw, 60px);
    line-height: 1.05;
    letter-spacing: -0.045em;
    color: var(--charcoal);
}

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

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

.card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 26px;
    box-shadow: 0 20px 60px rgba(86, 57, 45, 0.07);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 70px rgba(86, 57, 45, 0.11);
}

.card h3 {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    line-height: 1.15;
    color: var(--charcoal);
}

.card p {
    color: var(--text-soft);
    margin: 0 0 16px;
}

.card-tag {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--blush-2);
    color: var(--rose-dark);
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.service-card {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-hero {
    padding-top: 76px;
    padding-bottom: 44px;
}

.page-hero-inner {
    max-width: 880px;
}

.form-section {
    padding-top: 42px;
    padding-bottom: 76px;
}

.form-card {
    max-width: 880px;
    margin: 0 auto;
    padding: clamp(26px, 5vw, 52px);
    border-radius: var(--radius-xl);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 6px;
    background: linear-gradient(90deg, var(--rose), var(--gold), var(--blush));
}

form p {
    margin: 0 0 18px;
}

label {
    display: block;
    color: var(--text);
    font-weight: 900;
    margin-bottom: 8px;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    border-radius: 15px;
    border: 1px solid var(--line);
    color: var(--text);
    background: #fffdf9;
    padding: 13px 15px;
    outline: none;
}

textarea {
    min-height: 130px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--rose);
    box-shadow: 0 0 0 4px rgba(185, 137, 126, 0.13);
}

input::placeholder,
textarea::placeholder {
    color: rgba(118, 103, 98, 0.58);
}

select[multiple] {
    min-height: 150px;
}

.helptext,
form ul {
    color: var(--muted);
    font-size: 13px;
}

.errorlist {
    color: #9b2f20;
    padding-left: 18px;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid var(--line);
    background: white;
    box-shadow: 0 18px 50px rgba(86, 57, 45, 0.08);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 300ms ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item figcaption {
    padding: 12px 14px;
    font-size: 14px;
    color: var(--text-soft);
    background: rgba(255, 255, 255, 0.94);
}

.final-cta {
    padding-top: 70px;
    padding-bottom: 70px;
}

.final-cta-inner {
    text-align: center;
    padding: clamp(30px, 5vw, 58px);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(255, 250, 245, 0.9), rgba(244, 222, 216, 0.95)),
        var(--blush-2);
    color: var(--text);
    box-shadow: var(--shadow);
    border: 1px solid rgba(185, 137, 126, 0.18);
}

.final-cta h2 {
    max-width: 850px;
    margin: 0 auto;
}

.final-cta .cta-actions {
    justify-content: center;
}

.site-footer {
    padding-top: 68px;
    padding-bottom: 34px;
    background: #fff8f1;
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 1.1fr;
    gap: 34px;
}

.footer-brand {
    display: inline-block;
    margin-bottom: 12px;
}

.site-footer h3 {
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
}

.site-footer p,
.site-footer a {
    color: var(--text-soft);
}

.site-footer a {
    display: block;
    margin-bottom: 8px;
}

.site-footer a:hover {
    color: var(--rose-dark);
}

.footer-bottom {
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: var(--muted);
    font-size: 14px;
}

@media (max-width: 1020px) {
    .navbar {
        grid-template-columns: auto auto;
    }

    .nav-actions {
        display: none;
    }

    .nav-toggle-label {
        display: grid;
        gap: 5px;
        justify-self: end;
        width: 44px;
        height: 44px;
        place-content: center;
        border: 1px solid var(--line);
        border-radius: 50%;
        cursor: pointer;
        background: white;
    }

    .nav-toggle-label span {
        display: block;
        width: 18px;
        height: 2px;
        background: var(--text);
    }

    .nav-menu {
        display: none;
        grid-column: 1 / -1;
        width: 100%;
        margin-top: 8px;
        padding: 16px;
        border-radius: 22px;
        border: 1px solid var(--line);
        background: white;
        box-shadow: var(--shadow);
    }

    .nav-menu a {
        display: block;
        padding: 12px 0;
        font-size: 14px;
    }

    .nav-toggle:checked ~ .nav-menu {
        display: block;
    }

    .hero {
        grid-template-columns: 1fr;
        padding-top: 52px;
    }

    .luxury-panel {
        min-height: 430px;
    }

    .section-header,
    .grid-3,
    .grid-2,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .announcement-bar {
        flex-direction: column;
        gap: 4px;
        font-size: 13px;
        padding: 8px 14px;
    }

    .navbar {
        width: min(100% - 28px, var(--container));
        padding: 13px 0;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
    }

    .brand-text {
        font-size: 28px;
    }

    .hero {
        gap: 34px;
        padding-top: 42px;
        padding-bottom: 52px;
    }

    .hero h1,
    .page-hero h1 {
        font-size: 41px;
        letter-spacing: -0.045em;
    }

    .hero p,
    .page-hero p {
        font-size: 17px;
    }

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

    .panel-orbit {
        display: none;
    }

    .panel-centerpiece {
        left: 18px;
        right: 18px;
        bottom: 18px;
        padding: 24px;
    }

    .panel-centerpiece h2 {
        font-size: 32px;
    }

    .section {
        padding-top: 54px;
        padding-bottom: 54px;
    }

    .section-header h2,
    .final-cta h2,
    .form-card h1 {
        font-size: 36px;
    }

    .card {
        padding: 22px;
    }

    .form-card {
        border-radius: 24px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 230px;
    }

    .btn {
        width: 100%;
    }
}

.hero-feature-image,
.hero-feature-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-feature-image {
    object-fit: cover;
}

.hero-feature-fallback {
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(255,250,245,0.92), rgba(244,222,216,0.88)),
        radial-gradient(circle at center, rgba(198,166,106,0.35), transparent 22rem);
}

.hero-feature-fallback span {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(54px, 8vw, 110px);
    color: rgba(141, 97, 88, 0.32);
}

.luxury-panel .panel-centerpiece {
    z-index: 2;
}

.gallery-strip {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr 0.85fr 1.05fr;
    gap: 16px;
}

.gallery-strip-item {
    margin: 0;
    border-radius: 28px;
    overflow: hidden;
    background: white;
    box-shadow: 0 20px 60px rgba(86, 57, 45, 0.08);
    border: 1px solid var(--line);
}

.gallery-strip-item img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

.gallery-strip-item:nth-child(2),
.gallery-strip-item:nth-child(3) {
    transform: translateY(34px);
}

.gallery-strip-item figcaption {
    padding: 12px 14px;
    color: var(--text-soft);
    font-size: 14px;
}

@media (max-width: 1020px) {
    .gallery-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-strip-item:nth-child(2),
    .gallery-strip-item:nth-child(3) {
        transform: none;
    }
}

@media (max-width: 640px) {
    .gallery-strip {
        grid-template-columns: 1fr;
    }

    .gallery-strip-item img {
        height: 240px;
    }
}

.blog-card-image {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 18px;
}

.blog-hero-image {
    margin: 0;
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
}

.blog-hero-image img {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
}

.blog-content {
    max-width: 780px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: clamp(28px, 5vw, 56px);
    box-shadow: 0 20px 60px rgba(86, 57, 45, 0.07);
}

.blog-content p {
    color: var(--text-soft);
    font-size: 18px;
    margin: 0 0 20px;
}

.blog-content h2,
.blog-content h3 {
    font-family: Georgia, "Times New Roman", serif;
    color: var(--charcoal);
}

/* =========================
   Homepage Slideshow
   ========================= */

.hero-slideshow {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: heroFade 24s infinite;
}

.hero-slide:nth-child(1) {
    animation-delay: 0s;
}

.hero-slide:nth-child(2) {
    animation-delay: 6s;
}

.hero-slide:nth-child(3) {
    animation-delay: 12s;
}

.hero-slide:nth-child(4) {
    animation-delay: 18s;
}

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

@keyframes heroFade {
    0% {
        opacity: 0;
    }

    8% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    35% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.luxury-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(37, 33, 32, 0.02), rgba(37, 33, 32, 0.28)),
        radial-gradient(circle at top left, rgba(255, 250, 245, 0.25), transparent 18rem);
    z-index: 1;
    pointer-events: none;
}

.hero-feature-fallback {
    z-index: 0;
}

/* =========================
   Blog Rich Content Styling
   ========================= */

.blog-rich-content {
    max-width: 760px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.75;
    color: var(--text-soft);
}

.blog-rich-content p {
    margin-bottom: 22px;
}

.blog-rich-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 34px;
    margin: 40px 0 16px;
    color: var(--charcoal);
}

.blog-rich-content h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 26px;
    margin: 32px 0 14px;
    color: var(--charcoal);
}

.blog-rich-content strong {
    color: var(--charcoal);
}

.blog-rich-content ul {
    padding-left: 20px;
    margin-bottom: 22px;
}

.blog-rich-content li {
    margin-bottom: 10px;
}

.blog-rich-content blockquote {
    margin: 28px 0;
    padding: 18px 22px;
    border-left: 4px solid var(--rose);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    font-style: italic;
}

/* =========================
   Full Visual Hero Upgrade
   ========================= */

.hero-full {
    position: relative;
    min-height: 88vh;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: var(--charcoal);
}

.hero-bg,
.hero-bg-fallback {
    position: absolute;
    inset: 0;
}

.hero-bg-fallback {
    background:
        linear-gradient(rgba(37, 33, 32, 0.34), rgba(37, 33, 32, 0.5)),
        radial-gradient(circle at top left, rgba(232, 200, 192, 0.5), transparent 28rem),
        radial-gradient(circle at bottom right, rgba(198, 166, 106, 0.45), transparent 30rem),
        var(--blush-2);
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    animation: heroVisualFade 30s infinite;
}

.hero-bg-slide:nth-child(1) {
    animation-delay: 0s;
}

.hero-bg-slide:nth-child(2) {
    animation-delay: 6s;
}

.hero-bg-slide:nth-child(3) {
    animation-delay: 12s;
}

.hero-bg-slide:nth-child(4) {
    animation-delay: 18s;
}

.hero-bg-slide:nth-child(5) {
    animation-delay: 24s;
}

.hero-bg-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    animation: heroImageDrift 30s infinite;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 88vh;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 80px 20px;
    background:
        linear-gradient(rgba(37, 33, 32, 0.42), rgba(37, 33, 32, 0.48)),
        radial-gradient(circle at center, rgba(255, 250, 245, 0.08), transparent 32rem);
}

.hero-content {
    max-width: 880px;
    color: white;
}

.hero-content .eyebrow {
    color: var(--gold-soft);
}

.hero-content h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 7vw, 94px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    color: white;
}

.hero-content p {
    max-width: 680px;
    margin: 22px auto 0;
    color: rgba(255, 250, 245, 0.9);
    font-size: clamp(17px, 1.6vw, 21px);
}

.hero-actions-center {
    justify-content: center;
}

.hero-outline {
    color: white;
    border-color: rgba(255, 255, 255, 0.56);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.hero-outline:hover {
    color: white;
    border-color: white;
}

@keyframes heroVisualFade {
    0% {
        opacity: 0;
    }

    8% {
        opacity: 1;
    }

    24% {
        opacity: 1;
    }

    34% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes heroImageDrift {
    0% {
        transform: scale(1.06) translateY(0);
    }

    50% {
        transform: scale(1.12) translateY(-12px);
    }

    100% {
        transform: scale(1.06) translateY(0);
    }
}

@media (max-width: 640px) {
    .hero-full,
    .hero-overlay {
        min-height: 82vh;
    }

    .hero-overlay {
        padding: 64px 20px;
    }

    .hero-content h1 {
        font-size: 44px;
    }
}

/* =========================
   Luxury Portfolio Slider
   ========================= */

.portfolio-showcase {
    padding: 86px max(20px, calc((100% - var(--container)) / 2));
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 250, 245, 0.45), rgba(244, 222, 216, 0.4));
}

.portfolio-header {
    max-width: 760px;
    margin-bottom: 34px;
}

.portfolio-header h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1;
    letter-spacing: -0.055em;
    color: var(--charcoal);
}

.portfolio-header p {
    max-width: 560px;
    color: var(--text-soft);
    font-size: 18px;
}

.portfolio-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 420px);
    gap: 22px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    padding: 8px 0 28px;
}

.portfolio-slider::-webkit-scrollbar {
    height: 10px;
}

.portfolio-slider::-webkit-scrollbar-track {
    background: rgba(185, 137, 126, 0.12);
    border-radius: 999px;
}

.portfolio-slider::-webkit-scrollbar-thumb {
    background: rgba(185, 137, 126, 0.45);
    border-radius: 999px;
}

.portfolio-slide {
    margin: 0;
    scroll-snap-align: start;
    border-radius: 32px;
    overflow: hidden;
    background: white;
    border: 1px solid rgba(43, 36, 34, 0.12);
    box-shadow: 0 24px 70px rgba(86, 57, 45, 0.10);
}

.portfolio-slide img {
    width: 100%;
    height: 460px;
    object-fit: cover;
}

.portfolio-slide figcaption {
    padding: 16px 18px;
    color: var(--text-soft);
    font-size: 15px;
}

.portfolio-actions {
    margin-top: 10px;
}

@media (max-width: 640px) {
    .portfolio-showcase {
        padding-top: 62px;
        padding-bottom: 62px;
    }

    .portfolio-slider {
        grid-auto-columns: minmax(250px, 82vw);
    }

    .portfolio-slide img {
        height: 360px;
    }
}

/* =========================
   Premium Gallery Page
   ========================= */

.gallery-feature-section {
    padding: 42px max(20px, calc((100% - var(--container)) / 2)) 86px;
}

.gallery-masonry {
    columns: 3 280px;
    column-gap: 22px;
}

.gallery-masonry-item {
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 0 0 22px;
    overflow: hidden;
    border-radius: 32px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: 0 24px 70px rgba(86, 57, 45, 0.10);
    break-inside: avoid;
}

.gallery-masonry-item img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    transition: transform 350ms ease;
}

.gallery-masonry-item.tall img {
    height: 520px;
}

.gallery-masonry-item.wide img {
    height: 300px;
}

.gallery-masonry-item:hover img {
    transform: scale(1.05);
}

.gallery-masonry-item figcaption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 250, 245, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.58);
}

.gallery-masonry-item figcaption span {
    display: block;
    margin-bottom: 5px;
    color: var(--rose-dark);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 950;
}

.gallery-masonry-item figcaption p {
    margin: 0;
    color: var(--charcoal);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    line-height: 1.2;
}

@media (max-width: 640px) {
    .gallery-feature-section {
        padding-top: 28px;
        padding-bottom: 58px;
    }

    .gallery-masonry {
        columns: 1;
    }

    .gallery-masonry-item img,
    .gallery-masonry-item.tall img,
    .gallery-masonry-item.wide img {
        height: 360px;
    }
}

/* =========================
   World-Class Gallery Experience
   ========================= */

.gallery-hero {
    position: relative;
    padding: 110px max(20px, calc((100% - var(--container)) / 2)) 76px;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(232, 200, 192, 0.55), transparent 34rem),
        radial-gradient(circle at top right, rgba(234, 216, 174, 0.42), transparent 32rem),
        linear-gradient(180deg, #fffaf5, #f8efe8);
}

.gallery-hero::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 26px;
    width: min(680px, 88vw);
    height: min(680px, 88vw);
    transform: translateX(-50%);
    border-radius: 50%;
    border: 1px solid rgba(185, 137, 126, 0.16);
    pointer-events: none;
}

.gallery-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 920px;
    margin: 0 auto;
}

.gallery-hero h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 7vw, 96px);
    line-height: 0.98;
    letter-spacing: -0.06em;
    color: var(--charcoal);
}

.gallery-hero p {
    max-width: 680px;
    margin: 22px auto 0;
    color: var(--text-soft);
    font-size: clamp(17px, 1.7vw, 21px);
}

.gallery-toolbar {
    position: sticky;
    top: 94px;
    z-index: 20;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto 18px;
    padding: 12px;
    width: fit-content;
    max-width: 100%;
    border: 1px solid rgba(43, 36, 34, 0.12);
    border-radius: 999px;
    background: rgba(255, 250, 245, 0.82);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 54px rgba(86, 57, 45, 0.08);
}

.gallery-filter {
    min-height: 40px;
    padding: 9px 15px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: 180ms ease;
}

.gallery-filter:hover,
.gallery-filter.is-active {
    background: linear-gradient(135deg, var(--rose), var(--gold));
    color: #fff;
    box-shadow: 0 12px 30px rgba(185, 137, 126, 0.18);
}

.gallery-count {
    text-align: center;
    color: var(--muted);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 28px;
}

.gallery-masonry {
    columns: 3 280px;
    column-gap: 22px;
}

.gallery-masonry-item {
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 0 0 22px;
    overflow: hidden;
    border-radius: 32px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: 0 24px 70px rgba(86, 57, 45, 0.10);
    break-inside: avoid;
    isolation: isolate;
}

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

.gallery-open {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
    text-align: inherit;
}

.gallery-open img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    transition: transform 450ms ease, filter 450ms ease;
}

.gallery-masonry-item.tall .gallery-open img {
    height: 540px;
}

.gallery-masonry-item.wide .gallery-open img {
    height: 310px;
}

.gallery-image-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    background: rgba(37, 33, 32, 0.26);
    transition: opacity 240ms ease;
}

.gallery-image-overlay span {
    padding: 11px 17px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 250, 245, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.52);
    backdrop-filter: blur(12px);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gallery-masonry-item:hover img {
    transform: scale(1.055);
    filter: saturate(1.04) contrast(1.02);
}

.gallery-masonry-item:hover .gallery-image-overlay {
    opacity: 1;
}

.gallery-masonry-item figcaption {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px;
    border-radius: 22px;
    background: rgba(255, 250, 245, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.58);
    transform: translateY(0);
}

.gallery-masonry-item figcaption span {
    display: block;
    margin-bottom: 5px;
    color: var(--rose-dark);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 950;
}

.gallery-masonry-item figcaption p {
    margin: 0;
    color: var(--charcoal);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 19px;
    line-height: 1.2;
}

.no-scroll {
    overflow: hidden;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 28px;
    background:
        radial-gradient(circle at center, rgba(185, 137, 126, 0.14), transparent 34rem),
        rgba(37, 33, 32, 0.9);
    backdrop-filter: blur(16px);
}

.gallery-lightbox.is-open {
    display: grid;
}

.gallery-lightbox-stage {
    min-width: 0;
    display: grid;
    justify-items: center;
}

.gallery-lightbox-counter {
    margin: 0 0 12px;
    color: rgba(255, 250, 245, 0.72);
    font-weight: 900;
    letter-spacing: 0.08em;
}

.gallery-lightbox-image {
    max-width: min(1180px, 82vw);
    max-height: 68vh;
    object-fit: contain;
    border-radius: 28px;
    box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42);
    background: rgba(255, 255, 255, 0.04);
}

.gallery-lightbox-copy {
    max-width: 820px;
    margin: 18px auto 0;
    text-align: center;
}

.gallery-lightbox-category {
    color: var(--gold-soft);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.gallery-lightbox-copy h2 {
    margin: 7px 0 6px;
    color: #fffaf5;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1;
}

.gallery-lightbox-copy p {
    margin: 0;
    color: rgba(255, 250, 245, 0.82);
}

.gallery-lightbox-close,
.gallery-lightbox-nav,
.gallery-thumb {
    cursor: pointer;
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
    border: 0;
    display: grid;
    place-items: center;
    color: var(--charcoal);
    background: rgba(255, 250, 245, 0.94);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
    transition: transform 180ms ease, background 180ms ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
    transform: scale(1.04);
    background: #fff;
}

.gallery-lightbox-close {
    position: fixed;
    top: 22px;
    right: 26px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 32px;
    line-height: 1;
    z-index: 2;
}

.gallery-lightbox-nav {
    width: 58px;
    height: 78px;
    border-radius: 999px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 58px;
    line-height: 1;
}

.gallery-lightbox-thumbs {
    width: min(920px, 82vw);
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 72px;
    gap: 9px;
    overflow-x: auto;
    padding: 16px 2px 4px;
    margin-top: 8px;
}

.gallery-thumb {
    height: 58px;
    border: 2px solid transparent;
    border-radius: 14px;
    overflow: hidden;
    padding: 0;
    background: transparent;
    opacity: 0.62;
    transition: opacity 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.gallery-thumb:hover,
.gallery-thumb.is-active {
    opacity: 1;
    border-color: var(--gold-soft);
    transform: translateY(-2px);
}

@media (max-width: 760px) {
    .gallery-toolbar {
        position: relative;
        top: auto;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        border-radius: 24px;
        width: 100%;
    }

    .gallery-filter {
        white-space: nowrap;
    }

    .gallery-masonry {
        columns: 1;
    }

    .gallery-open img,
    .gallery-masonry-item.tall .gallery-open img,
    .gallery-masonry-item.wide .gallery-open img {
        height: 390px;
    }

    .gallery-lightbox {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .gallery-lightbox-nav {
        position: fixed;
        top: 50%;
        width: 44px;
        height: 60px;
        font-size: 42px;
        z-index: 2;
    }

    .gallery-lightbox-prev {
        left: 10px;
    }

    .gallery-lightbox-next {
        right: 10px;
    }

    .gallery-lightbox-image {
        max-width: 92vw;
        max-height: 62vh;
        border-radius: 20px;
    }

    .gallery-lightbox-thumbs {
        width: 92vw;
        grid-auto-columns: 58px;
    }

    .gallery-thumb {
        height: 48px;
    }

    .gallery-lightbox-close {
        top: 14px;
        right: 14px;
    }
}