:root {
    --brand-maroon: #67112a;
    --brand-maroon-deep: #4f0b1f;
    --brand-gold: #d4ad62;
    --brand-cream: #fff9f2;
    --brand-blush: #f4d8dd;
    --brand-ink: #34181f;
    --brand-soft: #6f5559;
    --card-bg: rgba(255, 255, 255, 0.84);
    --card-border: rgba(255, 255, 255, 0.75);
    --card-shadow: 0 22px 75px rgba(103, 17, 42, 0.11);
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--brand-ink);
    font-family: "Helvetica Neue", Helvetica, Arial, "Noto Sans Bengali", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(244, 216, 221, 0.85), transparent 34%),
        radial-gradient(circle at top right, rgba(212, 173, 98, 0.18), transparent 24%),
        linear-gradient(180deg, #fffaf4 0%, #fff6f0 48%, #fffaf5 100%);
    overflow-x: hidden;
}

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

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

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

::selection {
    background: rgba(103, 17, 42, 0.9);
    color: #fffaf4;
}

.page-glow {
    position: fixed;
    z-index: -1;
    border-radius: 999px;
    filter: blur(85px);
    opacity: 0.48;
}

.page-glow-left {
    top: 5rem;
    left: -6rem;
    width: 16rem;
    height: 16rem;
    background: rgba(244, 216, 221, 0.85);
}

.page-glow-right {
    top: 24rem;
    right: -5rem;
    width: 19rem;
    height: 19rem;
    background: rgba(212, 173, 98, 0.26);
}

.container {
    width: min(1220px, calc(100% - 2rem));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 1rem 0;
}

.header-shell {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 16px 40px rgba(103, 17, 42, 0.08);
    backdrop-filter: blur(18px);
}

.brand-mark {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.brand-logo {
    width: 4.15rem;
    height: 4.15rem;
    object-fit: cover;
    border-radius: 1.15rem;
    background: rgba(255, 248, 243, 0.92);
    box-shadow: 0 1rem 2rem rgba(111, 16, 40, 0.18);
    flex-shrink: 0;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand-copy strong {
    font-family: "Helvetica Neue", Helvetica, Arial, "Noto Sans Bengali", sans-serif;
    font-size: 1.28rem;
    color: var(--brand-maroon);
    white-space: nowrap;
}

.brand-copy small {
    font-size: 0.73rem;
    letter-spacing: 0.08em;
    color: #8b7075;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.3rem;
}

.main-nav a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brand-soft);
    transition: color 0.25s ease;
}

.main-nav a:hover {
    color: var(--brand-maroon);
}

.main-nav a.is-active {
    color: var(--brand-maroon);
}

.header-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.language-switcher {
    position: relative;
    flex-shrink: 0;
}

.language-switcher-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-height: 3rem;
    padding: 0.74rem 1rem;
    border: 1px solid rgba(103, 17, 42, 0.13);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--brand-maroon);
    font: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.language-switcher-toggle::after {
    content: "";
    width: 0.42rem;
    height: 0.42rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.2s ease;
}

.language-switcher-toggle:hover,
.language-switcher-toggle:focus-visible {
    border-color: var(--brand-maroon);
    background: var(--brand-maroon);
    color: #fff8f3;
    box-shadow: 0 18px 34px rgba(103, 17, 42, 0.16);
}

.language-switcher.is-open .language-switcher-toggle::after {
    transform: rotate(225deg) translate(-1px, -1px);
}

.language-switcher-label {
    color: #8b7075;
    font-size: 0.78rem;
    font-weight: 700;
}

.language-switcher-toggle:hover .language-switcher-label,
.language-switcher-toggle:focus-visible .language-switcher-label {
    color: inherit;
}

.language-switcher-current {
    white-space: nowrap;
}

.language-switcher-menu {
    position: absolute;
    top: calc(100% + 0.48rem);
    right: 0;
    z-index: 70;
    display: grid;
    min-width: 10rem;
    gap: 0.25rem;
    padding: 0.45rem;
    border: 1px solid rgba(217, 177, 95, 0.34);
    border-radius: 0.9rem;
    background: #fffbf6;
    box-shadow: 0 18px 40px rgba(103, 17, 42, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.25rem);
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.language-switcher.is-open .language-switcher-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
}

.language-option {
    width: 100%;
    padding: 0.72rem 0.85rem;
    border: 0;
    border-radius: 0.62rem;
    background: transparent;
    color: #62434b;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.language-option:hover,
.language-option:focus-visible,
.language-option.is-active {
    background: rgba(103, 17, 42, 0.09);
    color: var(--brand-maroon);
}

.google-translate-element,
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.VIpgJd-ZVi9od-ORHb-OEVmcd,
body > .skiptranslate {
    display: none !important;
}

body,
body.translated-ltr,
body.translated-rtl {
    top: 0 !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
    width: 2.9rem;
    height: 2.9rem;
    border: 0;
    border-radius: 50%;
    background: rgba(103, 17, 42, 0.08);
    cursor: pointer;
}

.nav-toggle span {
    width: 1.15rem;
    height: 2px;
    margin-inline: auto;
    background: var(--brand-maroon);
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.82rem 1.3rem;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

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

.btn:hover,
.btn:focus-visible {
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #e5be76 0%, #f0d389 100%);
    color: var(--brand-maroon);
    box-shadow: 0 16px 36px rgba(212, 173, 98, 0.25);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: linear-gradient(135deg, #f0d389 0%, #e1b562 100%);
    border-color: rgba(212, 173, 98, 0.9);
    color: var(--brand-maroon-deep);
    box-shadow: 0 20px 40px rgba(212, 173, 98, 0.3);
}

.btn-secondary {
    border-color: rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    border-color: rgba(212, 173, 98, 0.9);
    background: #fff6e4;
    color: var(--brand-maroon);
    box-shadow: 0 16px 32px rgba(212, 173, 98, 0.18);
}

.btn-outline {
    border-color: rgba(103, 17, 42, 0.13);
    background: rgba(255, 255, 255, 0.92);
    color: var(--brand-maroon);
}

.btn-outline:hover,
.btn-outline:focus-visible {
    border-color: var(--brand-maroon);
    background: var(--brand-maroon);
    color: #fff8f3;
    box-shadow: 0 18px 34px rgba(103, 17, 42, 0.16);
}

.btn.full-width {
    width: 100%;
}

.hero-section {
    padding-top: 0.35rem;
}

.site-main {
    padding-bottom: 2rem;
}

.hero-panel,
.footer-panel {
    position: relative;
    overflow: hidden;
    border-radius: 2.4rem;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.22), transparent 28%),
        radial-gradient(circle at bottom right, rgba(212, 173, 98, 0.2), transparent 26%),
        linear-gradient(135deg, rgba(103, 17, 42, 0.98) 0%, rgba(133, 24, 56, 0.96) 52%, rgba(185, 83, 109, 0.94) 100%);
    box-shadow: 0 34px 94px rgba(79, 11, 31, 0.24);
}

.hero-panel::before,
.footer-panel::before {
    content: "";
    position: absolute;
    inset: auto auto -4rem -4rem;
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-panel::after,
.footer-panel::after {
    content: "";
    position: absolute;
    inset: 3rem -2rem auto auto;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.hero-panel {
    padding: clamp(1.5rem, 3vw, 3rem);
}

.hero-grid,
.section-split,
.franchise-grid,
.video-layout,
.branch-layout {
    display: grid;
    gap: 1.6rem;
}

.eyebrow,
.offer-pill,
.section-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    border-radius: 999px;
}

.eyebrow {
    gap: 0.75rem;
    padding: 0.72rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.eyebrow .dot {
    width: 0.32rem;
    height: 0.32rem;
    border-radius: 50%;
    background: var(--brand-gold);
}

.offer-pill {
    margin-top: 1.35rem;
    padding: 0.78rem 1.15rem;
    background: rgba(255, 245, 226, 0.95);
    color: var(--brand-maroon);
    font-weight: 700;
    box-shadow: 0 14px 30px rgba(212, 173, 98, 0.16);
}

.hero-copy h1,
.section-heading h2,
.section-copy h2,
.form-heading h2,
.footer-panel h2 {
    margin: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, "Noto Sans Bengali", sans-serif;
    line-height: 1.12;
}

.hero-copy h1 {
    margin-top: 1.45rem;
    font-size: clamp(2.45rem, 5vw, 4.7rem);
    color: #fff8f3;
}

.hero-lead,
.hero-support,
.section-heading p,
.section-copy p,
.footer-panel p,
.featured-copy p,
.video-copy p {
    line-height: 1.85;
}

.hero-lead {
    margin: 1rem 0 0;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.92);
}

.hero-support {
    margin: 0.85rem 0 0;
    color: rgba(255, 255, 255, 0.8);
}

.hero-actions,
.chips,
.inline-actions,
.social-pills,
.video-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.hero-actions {
    margin-top: 1.8rem;
}

.chips {
    margin-top: 1.45rem;
}

.chips span {
    padding: 0.7rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
}

.stats-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.8rem;
}

.stat-card {
    padding: 1.18rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.65rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.stat-card strong {
    display: block;
    font-family: "Helvetica Neue", Helvetica, Arial, "Noto Sans Bengali", sans-serif;
    font-size: 2rem;
    color: var(--brand-gold);
}

.stat-card span {
    display: block;
    margin-top: 0.35rem;
    color: rgba(255, 255, 255, 0.82);
}

.hero-media {
    width: min(100%, 34rem);
    justify-self: center;
}

.hero-main-image {
    width: 100%;
    height: clamp(22rem, 72vw, 40rem);
    object-fit: cover;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 55px rgba(50, 7, 18, 0.16);
}

.hero-thumb-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1rem;
}

.hero-thumb {
    margin: 0;
    overflow: hidden;
    border-radius: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.1);
}

.hero-thumb img {
    width: 100%;
    height: 7.5rem;
    object-fit: cover;
}

.section {
    padding: 1rem 0;
}

.page-section {
    padding: 1rem 0;
}

.section-card {
    position: relative;
    overflow: hidden;
    padding: clamp(1.5rem, 3vw, 3rem);
    border: 1px solid var(--card-border);
    border-radius: 2rem;
    background: var(--card-bg);
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(16px);
}

.soft-pattern {
    background:
        radial-gradient(circle at 1px 1px, rgba(103, 17, 42, 0.08) 1px, transparent 0),
        linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.1));
    background-size: 18px 18px, auto;
}

.section-tag {
    padding: 0.68rem 1rem;
    background: rgba(255, 255, 255, 0.92);
    color: var(--brand-maroon);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    border: 1px solid rgba(212, 173, 98, 0.28);
}

.section-tag.inverse {
    background: var(--brand-maroon);
    color: var(--brand-gold);
}

.section-heading {
    max-width: 46rem;
}

.section-copy p,
.section-heading p {
    margin: 1rem 0 0;
    font-size: 1rem;
    color: var(--brand-soft);
}

.section-heading h2,
.section-copy h2,
.form-heading h2,
.footer-panel h2 {
    margin-top: 1rem;
    font-size: clamp(2rem, 3.8vw, 3.3rem);
    color: var(--brand-maroon);
}

.feature-grid,
.metric-grid,
.review-grid,
.branch-metrics {
    display: grid;
    gap: 1.2rem;
}

.feature-grid-wide {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-card,
.metric-card,
.review-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(103, 17, 42, 0.06);
    border-radius: 1.65rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 12px 35px rgba(103, 17, 42, 0.06);
}

.feature-card,
.metric-card,
.review-body {
    padding: 1.5rem;
}

.feature-icon {
    display: inline-grid;
    place-items: center;
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 1rem;
    background: var(--brand-maroon);
    color: var(--brand-gold);
    font-family: "Helvetica Neue", Helvetica, Arial, "Noto Sans Bengali", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.feature-card h3,
.metric-card h3,
.featured-copy h3,
.review-body strong,
.collection-summary h3,
.contact-bottom h3 {
    margin: 0.9rem 0 0;
    font-family: "Helvetica Neue", Helvetica, Arial, "Noto Sans Bengali", sans-serif;
    color: var(--brand-maroon);
}

.feature-card p,
.metric-card p,
.review-body p {
    margin: 0.75rem 0 0;
    line-height: 1.8;
    color: var(--brand-soft);
}

.showcase-grid {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.showcase-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.7rem;
    min-height: 20rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--card-shadow);
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-overlay {
    position: absolute;
    inset: auto 1rem 1rem;
    display: flex;
    justify-content: flex-start;
}

.showcase-overlay span {
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(103, 17, 42, 0.86);
    color: #fff5ea;
    font-size: 0.82rem;
    font-weight: 700;
}

.collection-tag-cloud {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-top: 1.4rem;
}

.collection-summary {
    padding: 1.25rem;
    border: 1px solid rgba(103, 17, 42, 0.07);
    border-radius: 1.45rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(103, 17, 42, 0.05);
}

.collection-summary p,
.collection-summary small {
    display: block;
    margin-top: 0.55rem;
    color: var(--brand-soft);
}

.collection-summary small {
    font-size: 0.84rem;
}

.page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.4rem;
}

.video-section {
    background:
        radial-gradient(circle at top right, rgba(212, 173, 98, 0.18), transparent 24%),
        rgba(255, 255, 255, 0.84);
}

.video-copy p {
    margin: 1rem 0 0;
    color: var(--brand-soft);
}

.video-actions {
    margin-top: 1.4rem;
}

.video-frame {
    overflow: hidden;
    border-radius: 1.8rem;
    box-shadow: 0 20px 60px rgba(103, 17, 42, 0.1);
}

.video-frame video {
    width: 100%;
    height: 100%;
    min-height: 20rem;
    object-fit: cover;
    background: #000;
}

.branch-layout {
    margin-top: 2rem;
    align-items: start;
}

.featured-location {
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(103, 17, 42, 0.08);
    border-radius: 1.9rem;
    background: #fff8f2;
}

.featured-copy {
    padding: 1.6rem;
}

.featured-copy h3 {
    font-size: 2rem;
}

.featured-copy p {
    margin: 1rem 0 0;
    color: var(--brand-soft);
}

.featured-image {
    padding: 1rem;
    background: rgba(244, 216, 221, 0.3);
}

.featured-image img {
    width: 100%;
    height: 100%;
    min-height: 22rem;
    object-fit: cover;
    border-radius: 1.6rem;
}

.metric-grid,
.branch-metrics {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.metric-card small,
.contact-bottom small,
.footer-panel small {
    display: block;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--brand-maroon);
}

.metric-card h3 {
    font-size: 1.55rem;
}

.franchise-grid {
    align-items: start;
}

.form-panel {
    background: rgba(255, 255, 255, 0.92);
}

.form-heading {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
}

.form-intro {
    margin: 1rem 0 0;
    color: var(--brand-soft);
    line-height: 1.8;
}

.franchise-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.field label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brand-maroon);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 0.92rem 1rem;
    border: 1px solid rgba(103, 17, 42, 0.12);
    border-radius: 1.2rem;
    background: rgba(255, 255, 255, 0.96);
    color: var(--brand-ink);
    outline: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(103, 17, 42, 0.42);
    box-shadow: 0 0 0 4px rgba(103, 17, 42, 0.08);
}

.field textarea {
    resize: vertical;
    min-height: 7rem;
}

.field-error {
    min-height: 1rem;
    font-size: 0.82rem;
    color: #a83152;
}

.form-response {
    display: none;
    padding: 0.9rem 1rem;
    border-radius: 1.2rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.form-response.is-visible {
    display: block;
}

.form-response.is-success {
    background: #edfff4;
    color: #107144;
}

.form-response.is-error {
    background: #fff0f4;
    color: #a83152;
}

.gallery-masonry {
    column-gap: 1rem;
    margin-top: 2rem;
}

.gallery-card {
    break-inside: avoid;
    margin: 0 0 1rem;
    overflow: hidden;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 36px rgba(103, 17, 42, 0.08);
}

.gallery-card img {
    width: 100%;
    height: auto;
}

.review-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-top: 2rem;
}

.review-card {
    overflow: hidden;
}

.review-media {
    position: relative;
    overflow: hidden;
}

.review-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(52, 24, 31, 0.5) 100%);
}

.review-media img {
    width: 100%;
    height: 18rem;
    object-fit: cover;
}

.review-media span {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1;
    padding: 0.65rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--brand-maroon);
    font-size: 0.74rem;
    font-weight: 700;
}

.review-body strong {
    display: block;
    margin: 1rem 0 1.2rem;
    font-size: 0.84rem;
}

.contact-panel .section-heading {
    max-width: 52rem;
}

.contact-actions {
    margin-top: 1.6rem;
}

.contact-bottom {
    display: grid;
    gap: 1rem;
    margin-top: 1.6rem;
    padding: 1.5rem;
    border: 1px solid rgba(103, 17, 42, 0.08);
    border-radius: 1.7rem;
    background: #fff8f2;
}

.contact-bottom h3 {
    font-size: 1.4rem;
}

.social-pills {
    margin-top: 0.8rem;
}

.social-pills a {
    padding: 0.7rem 1rem;
    border: 1px solid rgba(103, 17, 42, 0.1);
    border-radius: 999px;
    background: #fff;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--brand-maroon);
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.social-pills a:hover {
    transform: translateY(-1px);
    border-color: rgba(212, 173, 98, 0.6);
    background: var(--brand-maroon);
    color: #fff8f3;
}

.hours-pill {
    display: grid;
    gap: 0.35rem;
    align-content: start;
    padding: 1.25rem 1.3rem;
    border-radius: 1.4rem;
    background: var(--brand-maroon);
    color: #fff;
}

.hours-pill strong {
    font-family: "Helvetica Neue", Helvetica, Arial, "Noto Sans Bengali", sans-serif;
    font-size: 1.2rem;
}

.footer-shell {
    padding: 1rem 0 2rem;
}

.page-hero {
    padding-top: 0.35rem;
}

.page-hero-panel {
    background:
        radial-gradient(circle at top left, rgba(244, 216, 221, 0.24), transparent 30%),
        radial-gradient(circle at bottom right, rgba(212, 173, 98, 0.16), transparent 28%),
        rgba(255, 255, 255, 0.84);
}

.page-hero-grid {
    display: grid;
    gap: 1.6rem;
    align-items: center;
}

.page-hero-copy h1 {
    margin: 1rem 0 0;
    font-family: "Helvetica Neue", Helvetica, Arial, "Noto Sans Bengali", sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--brand-maroon);
    line-height: 1.15;
}

.page-hero-copy p {
    margin: 1rem 0 0;
    color: var(--brand-soft);
    line-height: 1.9;
    max-width: 38rem;
}

.page-hero-media img {
    width: 100%;
    height: clamp(20rem, 55vw, 30rem);
    object-fit: cover;
    border-radius: 1.8rem;
    box-shadow: 0 18px 50px rgba(103, 17, 42, 0.09);
}

.mini-gallery {
    display: grid;
    gap: 1rem;
}

.mini-gallery-card {
    margin: 0;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: 0 14px 36px rgba(103, 17, 42, 0.08);
}

.mini-gallery-card img {
    width: 100%;
    height: 100%;
    min-height: 18rem;
    object-fit: cover;
}

.cta-band {
    display: grid;
    gap: 1.5rem;
    padding: clamp(1.5rem, 3vw, 2.6rem);
    border-radius: 2rem;
    background:
        radial-gradient(circle at top right, rgba(212, 173, 98, 0.18), transparent 26%),
        linear-gradient(135deg, rgba(103, 17, 42, 0.98) 0%, rgba(137, 27, 59, 0.95) 100%);
    color: #fff8f3;
    box-shadow: 0 24px 70px rgba(79, 11, 31, 0.18);
}

.cta-band h2 {
    margin: 1rem 0 0;
    font-family: "Helvetica Neue", Helvetica, Arial, "Noto Sans Bengali", sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    line-height: 1.18;
}

.cta-band p {
    margin: 1rem 0 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.85;
    max-width: 40rem;
}

.cta-band-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    align-items: center;
}

.footer-panel {
    padding: clamp(1.5rem, 3vw, 3rem);
    color: #fff;
}

.footer-grid {
    display: grid;
    gap: 1.5rem;
}

.footer-column {
    position: relative;
    z-index: 1;
}

.footer-column h3 {
    margin: 0 0 1rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff8f3;
}

.footer-panel h2 {
    color: #fff8f3;
}

.footer-panel p {
    margin: 0.95rem 0 0;
    color: rgba(255, 255, 255, 0.84);
}

.footer-logo {
    display: block;
    width: clamp(5.2rem, 9vw, 7rem);
    height: auto;
    border-radius: 1.4rem;
    margin-bottom: 1rem;
    background: rgba(255, 248, 243, 0.9);
    box-shadow: 0 1.25rem 2.5rem rgba(11, 6, 9, 0.26);
}

.footer-brand-column p {
    max-width: 30rem;
}

.footer-brand-column h2 {
    margin-top: 0.55rem;
    font-size: clamp(1.85rem, 3vw, 2.65rem);
}

.footer-kicker {
    color: rgba(255, 248, 243, 0.76) !important;
}

.footer-note {
    color: rgba(255, 248, 243, 0.72) !important;
}

.footer-nav {
    display: grid;
    gap: 0.85rem;
}

.footer-nav a,
.footer-inline-links a,
.footer-contact-list a {
    color: rgba(255, 248, 243, 0.9);
    transition: color 0.25s ease, opacity 0.25s ease;
}

.footer-nav a:hover,
.footer-inline-links a:hover,
.footer-contact-list a:hover {
    color: #fff;
}

.footer-contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 1rem;
}

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

.footer-contact-list span {
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 248, 243, 0.62);
}

.footer-contact-list strong {
    font-weight: 600;
    color: #fff8f3;
}

.footer-social {
    margin-top: 1.25rem;
}

.footer-social a {
    background: rgba(255, 255, 255, 0.12);
    color: #fff8f3;
    border-color: rgba(255, 255, 255, 0.14);
}

.footer-social a:hover {
    background: #fff3de;
    color: var(--brand-maroon);
    border-color: rgba(255, 243, 222, 0.94);
}

.footer-bottom {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.85rem;
    margin-top: 2rem;
    padding-top: 1.15rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-copy {
    margin: 0;
    font-size: 0.92rem;
    color: rgba(255, 248, 243, 0.72);
}

.footer-inline-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem 1.2rem;
    font-size: 0.92rem;
}

.legal-stack {
    display: grid;
    gap: 1.25rem;
}

.legal-card {
    padding: clamp(1.35rem, 3vw, 2rem);
}

.legal-list {
    margin: 0;
    padding-left: 1.15rem;
    display: grid;
    gap: 0.85rem;
    color: #5c464b;
    line-height: 1.8;
}

.floating-actions {
    position: fixed;
    left: 50%;
    bottom: 1rem;
    z-index: 40;
    display: flex;
    gap: 0.75rem;
    transform: translateX(-50%);
}

.float-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3rem;
    padding: 0.85rem 1.15rem;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 700;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.float-whatsapp {
    background: #128c7e;
    color: #fff;
}

.float-whatsapp:hover,
.float-whatsapp:focus-visible {
    background: #0f6f64;
    color: #ffffff;
    box-shadow: 0 22px 44px rgba(18, 140, 126, 0.25);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
    transition-delay: var(--delay, 0ms);
}

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

@media (min-width: 680px) {
    .stats-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .span-2 {
        grid-column: 1 / -1;
    }

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

    .showcase-card-large {
        grid-row: span 2;
        min-height: 100%;
    }

    .gallery-masonry {
        column-count: 2;
    }

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

@media (min-width: 900px) {
    .hero-grid,
    .section-split,
    .franchise-grid,
    .video-layout,
    .branch-layout,
    .page-hero-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: start;
    }

    .featured-location {
        grid-template-columns: 0.95fr 1.05fr;
    }

    .contact-bottom {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: end;
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 0.75fr));
        align-items: start;
    }

    .footer-bottom {
        grid-template-columns: 1fr auto;
        align-items: center;
    }

    .footer-inline-links {
        justify-content: flex-end;
    }

    .gallery-masonry {
        column-count: 3;
    }

    .cta-band {
        grid-template-columns: 1fr auto;
        align-items: end;
    }
}

@media (min-width: 1160px) {
    .showcase-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .showcase-card-large {
        grid-column: span 2;
    }

    .gallery-masonry {
        column-count: 4;
    }
}

@media (max-width: 1160px) and (min-width: 1000px) {
    .main-nav {
        gap: 0.72rem;
    }

    .main-nav a {
        font-size: 0.86rem;
    }

    .header-links {
        gap: 0.5rem;
    }

    .header-links .btn {
        padding-inline: 0.95rem;
    }

    .language-switcher-label {
        display: none;
    }

    .language-switcher-toggle {
        padding-inline: 0.85rem;
    }
}

@media (max-width: 999px) {
    .main-nav {
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.9rem;
        padding: 1.2rem;
        border: 1px solid rgba(255, 255, 255, 0.78);
        border-radius: 1.6rem;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 18px 40px rgba(103, 17, 42, 0.08);
    }

    .site-header.nav-open .main-nav {
        display: flex;
    }

    .site-header.nav-open .nav-toggle span:nth-child(1) {
        transform: translateY(0.4rem) rotate(45deg);
    }

    .site-header.nav-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    .site-header.nav-open .nav-toggle span:nth-child(3) {
        transform: translateY(-0.4rem) rotate(-45deg);
    }

    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 799px) {
    .header-links {
        display: none;
    }

    .desktop-only {
        display: none;
    }

    .hero-main-image {
        height: 23rem;
    }

    .hero-thumb img {
        height: 5.7rem;
    }

    .featured-image img,
    .video-frame video {
        min-height: 18rem;
    }
}

@media (max-width: 639px) {
    .brand-logo {
        width: 3.3rem;
        height: 3.3rem;
        border-radius: 0.95rem;
    }

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

    .showcase-card {
        min-height: 16rem;
    }

    .review-media img {
        height: 15rem;
    }

    .floating-actions {
        width: calc(100% - 1rem);
        justify-content: center;
    }

    .float-btn {
        flex: 1 1 0;
    }
}

.product-credit-footer {
    width: 100%;
    overflow: hidden;
    border-top: 2px solid var(--brand-gold);
    background: linear-gradient(90deg, #4c0719, #7b1630 58%, #b58227);
    color: #fffdf8;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
    box-shadow: 0 -12px 30px rgba(76, 7, 25, 0.16);
}

.product-credit-track {
    display: flex;
    width: max-content;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    animation: productCreditTicker 34s linear infinite;
}

.product-credit-track span {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    min-height: 2.15rem;
    padding-right: 5rem;
    white-space: nowrap;
}

@keyframes productCreditTicker {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-credit-track {
        width: 100%;
        animation: none;
        transform: none;
    }

    .product-credit-track span {
        justify-content: center;
        width: 100%;
        padding: 0 1rem;
        text-align: center;
        white-space: normal;
    }

    .product-credit-track span[aria-hidden="true"] {
        display: none;
    }
}

body,
body * {
    font-family: "Helvetica Neue", Helvetica, Arial, "Noto Sans Bengali", sans-serif !important;
}

/* Premium public storefront refresh. Kept in site.css so the ERP/admin UI is untouched. */
.site-public {
    --boutique-wine: #4f0b1f;
    --boutique-rose: #8f2346;
    --boutique-gold: #d9b15f;
    --boutique-ivory: #fff8ef;
    --boutique-ink: #251116;
    background:
        linear-gradient(90deg, rgba(79, 11, 31, 0.035) 1px, transparent 1px),
        linear-gradient(180deg, rgba(79, 11, 31, 0.025) 1px, transparent 1px),
        linear-gradient(180deg, #fffaf3 0%, #fff3ec 44%, #fffaf5 100%);
    background-size: 34px 34px, 34px 34px, auto;
}

.site-public *,
.site-public *::before,
.site-public *::after {
    letter-spacing: 0 !important;
}

.site-public .page-glow {
    display: none;
}

.site-public .site-header {
    padding: 0.75rem 0;
}

.site-public .header-shell {
    border-radius: 1.1rem;
    padding: 0.68rem 0.85rem;
    border: 1px solid rgba(217, 177, 95, 0.34);
    background: rgba(255, 251, 246, 0.9);
    box-shadow: 0 18px 55px rgba(79, 11, 31, 0.12);
}

.site-public .header-shell::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: -1px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(217, 177, 95, 0.92), transparent);
}

.site-public .brand-logo {
    width: 3.8rem;
    height: 3.8rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(217, 177, 95, 0.36);
}

.site-public .brand-copy strong {
    font-size: 1.16rem;
    color: var(--boutique-wine);
}

.site-public .brand-copy small,
.site-public .main-nav a {
    font-size: 0.84rem;
}

.site-public .main-nav {
    gap: 1rem;
}

.site-public .main-nav a {
    position: relative;
    color: #62434b;
}

.site-public .main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.45rem;
    height: 2px;
    border-radius: 999px;
    background: var(--boutique-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.24s ease;
}

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

.site-public .btn {
    min-height: 2.75rem;
    border-radius: 0.85rem;
    font-size: 0.9rem;
}

.site-public .language-switcher-toggle {
    min-height: 2.75rem;
    padding: 0.74rem 0.9rem;
    border-radius: 0.85rem;
    font-size: 0.86rem;
}

.site-public .language-switcher-menu {
    border-radius: 0.85rem;
}

.site-public .hero-section {
    width: 100%;
    padding: 0.25rem 0 1.2rem;
}

.site-public .hero-panel {
    width: min(1420px, calc(100% - 2rem));
    min-height: 68vh;
    max-height: 760px;
    margin-inline: auto;
    display: flex;
    align-items: flex-end;
    padding: clamp(1.1rem, 3vw, 2.6rem);
    border-radius: 1.75rem;
    border: 1px solid rgba(255, 248, 239, 0.32);
    background:
        linear-gradient(90deg, rgba(30, 8, 14, 0.9) 0%, rgba(52, 11, 24, 0.76) 42%, rgba(52, 11, 24, 0.2) 78%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.22)),
        var(--hero-image, linear-gradient(135deg, #6a132e 0%, #a7475e 100%)),
        linear-gradient(135deg, #6a132e 0%, #a7475e 100%);
    background-position: center;
    background-size: cover;
    box-shadow: 0 32px 90px rgba(79, 11, 31, 0.28);
}

.site-public .hero-panel::before {
    inset: 1rem;
    width: auto;
    height: auto;
    border: 1px solid rgba(255, 248, 239, 0.16);
    border-radius: 1.25rem;
    pointer-events: none;
}

.site-public .hero-panel::after {
    inset: auto 1rem 1rem auto;
    width: 11rem;
    height: 0.25rem;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(217, 177, 95, 0.92));
}

.site-public .hero-grid {
    position: relative;
    z-index: 1;
    width: 100%;
    grid-template-columns: minmax(0, 660px) minmax(260px, 1fr);
    align-items: end;
}

.site-public .hero-copy {
    max-width: 660px;
    padding: clamp(0.3rem, 1vw, 0.8rem);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.site-public .eyebrow,
.site-public .offer-pill,
.site-public .chips span {
    border-radius: 0.75rem;
    backdrop-filter: blur(14px);
}

.site-public .eyebrow {
    background: rgba(255, 248, 239, 0.13);
    border-color: rgba(255, 248, 239, 0.24);
    font-size: 0.74rem;
}

.site-public .offer-pill {
    background: rgba(255, 248, 239, 0.94);
    color: var(--boutique-wine);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.site-public .hero-copy h1 {
    max-width: 12ch;
    font-size: 4.2rem;
    color: #fff8ef;
}

.site-public .hero-lead {
    max-width: 38rem;
    font-size: 1.04rem;
}

.site-public .hero-support {
    max-width: 40rem;
    font-size: 0.96rem;
}

.site-public .hero-main-image {
    display: none;
}

.site-public .hero-media {
    width: min(100%, 440px);
    justify-self: end;
}

.site-public .hero-thumb-row {
    padding: 0.8rem;
    border: 1px solid rgba(255, 248, 239, 0.18);
    border-radius: 1rem;
    background: rgba(255, 248, 239, 0.12);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.site-public .hero-thumb {
    border-radius: 0.75rem;
}

.site-public .hero-thumb img {
    height: 8.2rem;
}

.site-public .stat-card {
    border-radius: 1rem;
    background: rgba(255, 248, 239, 0.13);
}

.site-public .section-card {
    border-radius: 1.25rem;
    border-color: rgba(217, 177, 95, 0.22);
    background: rgba(255, 253, 249, 0.88);
    box-shadow: 0 22px 65px rgba(79, 11, 31, 0.1);
}

.site-public .soft-pattern {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 246, 236, 0.72)),
        repeating-linear-gradient(90deg, rgba(79, 11, 31, 0.035) 0 1px, transparent 1px 18px);
}

.site-public .section-heading h2,
.site-public .section-copy h2,
.site-public .form-heading h2 {
    max-width: 760px;
    font-size: 2.45rem;
}

.site-public .section-tag {
    border-radius: 0.65rem;
    background: #fff6e6;
    color: var(--boutique-wine);
}

.site-public .feature-card,
.site-public .metric-card,
.site-public .review-card,
.site-public .collection-summary {
    border-radius: 1rem;
    border-color: rgba(217, 177, 95, 0.22);
    box-shadow: 0 16px 38px rgba(79, 11, 31, 0.08);
}

.site-public .feature-card::before,
.site-public .metric-card::before,
.site-public .collection-summary::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--boutique-wine), var(--boutique-gold));
}

.site-public .feature-card,
.site-public .collection-summary {
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.site-public .feature-card:hover,
.site-public .collection-summary:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 52px rgba(79, 11, 31, 0.12);
}

.site-public .feature-icon {
    border-radius: 0.7rem;
    background: linear-gradient(135deg, var(--boutique-wine), var(--boutique-rose));
}

.site-public .showcase-grid {
    gap: 0.85rem;
}

.site-public .showcase-card,
.site-public .gallery-card,
.site-public .mini-gallery-card {
    border-radius: 1rem;
    border: 1px solid rgba(255, 248, 239, 0.78);
    box-shadow: 0 22px 55px rgba(79, 11, 31, 0.12);
}

.site-public .showcase-card img,
.site-public .gallery-card img,
.site-public .mini-gallery-card img,
.site-public .page-hero-media img,
.site-public .featured-image img,
.site-public .review-media img {
    transition: transform 0.7s ease, filter 0.7s ease;
}

.site-public .showcase-card:hover img,
.site-public .gallery-card:hover img,
.site-public .mini-gallery-card:hover img {
    transform: scale(1.045);
    filter: saturate(1.06) contrast(1.03);
}

.site-public .showcase-overlay span {
    border-radius: 0.7rem;
    background: rgba(255, 248, 239, 0.92);
    color: var(--boutique-wine);
}

.site-public .page-hero-panel {
    min-height: 360px;
    display: flex;
    align-items: end;
    border-radius: 1.4rem;
    background:
        linear-gradient(90deg, rgba(34, 9, 16, 0.86) 0%, rgba(73, 12, 31, 0.64) 48%, rgba(73, 12, 31, 0.14) 100%),
        var(--page-hero-image, linear-gradient(135deg, #6a132e 0%, #a7475e 100%)),
        linear-gradient(135deg, #fff7ed, #f7dfe5);
    background-position: center;
    background-size: cover;
}

.site-public .page-hero-grid {
    width: 100%;
    grid-template-columns: minmax(0, 660px) 1fr;
}

.site-public .page-hero-copy {
    position: relative;
    z-index: 1;
}

.site-public .page-hero-copy h1 {
    max-width: 760px;
    font-size: 3rem;
    color: #fff8ef;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.32);
}

.site-public .page-hero-copy p {
    color: rgba(255, 248, 239, 0.86);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.25);
}

.site-public .page-hero-media {
    display: none;
}

.site-public .cta-band,
.site-public .footer-panel {
    border-radius: 1.25rem;
    background:
        linear-gradient(135deg, rgba(79, 11, 31, 0.98), rgba(143, 35, 70, 0.96)),
        repeating-linear-gradient(90deg, rgba(255, 248, 239, 0.05) 0 1px, transparent 1px 16px);
}

.site-public .footer-panel {
    border: 1px solid rgba(217, 177, 95, 0.22);
}

.site-public .floating-actions {
    bottom: 1.2rem;
}

.site-public .float-btn {
    border-radius: 0.85rem;
}

@media (max-width: 999px) {
    .site-public .header-shell {
        border-radius: 0.95rem;
    }

    .site-public .hero-panel {
        min-height: auto;
        max-height: none;
        align-items: stretch;
        background:
            linear-gradient(180deg, rgba(27, 7, 12, 0.92) 0%, rgba(68, 10, 30, 0.72) 54%, rgba(68, 10, 30, 0.28) 100%),
            var(--hero-image, linear-gradient(135deg, #6a132e 0%, #a7475e 100%)),
            linear-gradient(135deg, #6a132e 0%, #a7475e 100%);
        background-position: center top;
        background-size: cover;
    }

    .site-public .hero-grid,
    .site-public .page-hero-grid {
        grid-template-columns: 1fr;
    }

    .site-public .hero-media {
        justify-self: stretch;
        width: 100%;
    }
}

@media (max-width: 799px) {
    .site-public .brand-logo {
        width: 3.1rem;
        height: 3.1rem;
    }

    .site-public .hero-copy h1 {
        font-size: 2.6rem;
    }

    .site-public .section-heading h2,
    .site-public .section-copy h2,
    .site-public .form-heading h2 {
        font-size: 1.85rem;
    }

    .site-public .page-hero-copy h1 {
        font-size: 2.25rem;
    }

    .site-public .page-hero-panel {
        min-height: 300px;
    }
}

@media (max-width: 639px) {
    .site-public .container {
        width: min(100% - 1rem, 1220px);
    }

    .site-public .hero-panel {
        width: calc(100% - 1rem);
        border-radius: 1.1rem;
    }

    .site-public .hero-actions .btn,
    .site-public .cta-band-actions .btn,
    .site-public .contact-actions .btn {
        width: 100%;
    }

    .site-public .hero-thumb img {
        height: 5.4rem;
    }
}

.site-public .floating-actions {
    left: auto;
    right: 1.15rem;
    bottom: 1.15rem;
    z-index: 60;
    flex-direction: column;
    gap: 0.55rem;
    width: auto;
    transform: none;
}

.site-public .float-btn {
    width: 3.15rem;
    height: 3.15rem;
    min-height: 0;
    flex: 0 0 auto;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 16px 34px rgba(37, 17, 22, 0.22);
}

.site-public .float-btn svg {
    width: 1.38rem;
    height: 1.38rem;
    fill: currentColor;
}

.site-public .float-whatsapp {
    background: #25d366;
}

.site-public .float-facebook {
    background: #1877f2;
}

.site-public .float-youtube {
    background: #ff0000;
}

.site-public .float-instagram {
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 72%, #515bd4 100%);
}

.site-public .float-btn:hover,
.site-public .float-btn:focus-visible {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(37, 17, 22, 0.28);
}

.site-public .float-whatsapp:hover,
.site-public .float-whatsapp:focus-visible {
    background: #1ebe5d;
}

.site-public .float-facebook:hover,
.site-public .float-facebook:focus-visible {
    background: #0f64d8;
}

.site-public .float-youtube:hover,
.site-public .float-youtube:focus-visible {
    background: #d90000;
}

.site-public .float-instagram:hover,
.site-public .float-instagram:focus-visible {
    background: linear-gradient(135deg, #ff9c3c 0%, #e62981 45%, #7132aa 72%, #3f50c9 100%);
}

@media (max-width: 639px) {
    .site-public .floating-actions {
        right: 0.75rem;
        bottom: 0.75rem;
        width: auto;
        justify-content: flex-end;
    }

    .site-public .float-btn {
        width: 2.75rem;
        height: 2.75rem;
    }

    .site-public .float-btn svg {
        width: 1.18rem;
        height: 1.18rem;
    }
}
