:root {
    --maroon: #7d1329;
    --maroon-dark: #5f0d1d;
    --gold: #c8a35d;
    --gold-soft: #e4c88d;
    --cream: #f7f2ea;
    --beige: #efe5d6;
    --brown: #6d4d34;
    --text: #2b1d16;
    --muted: #685448;
    --white: #ffffff;
    --border: #e4d7c6;
    --shadow: 0 14px 35px rgba(70, 26, 17, 0.08);
    --radius: 16px;
    --radius-sm: 12px;
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #fffdf9 0%, #fff9f2 100%);
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

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

h1,
h2,
h3,
h4 {
    margin-top: 0;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.01em;
    line-height: 1.2;
}

p {
    margin-top: 0;
    color: var(--muted);
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.top-bar {
    background: var(--maroon-dark);
    color: #fbeedd;
    font-size: 13px;
    position: relative;
    z-index: 1001;
}

.top-bar-inner {
    padding: 10px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
}

.top-item a:hover {
    color: var(--gold-soft);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 250, 244, 0.9);
    backdrop-filter: blur(7px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.site-header.is-sticky {
    border-color: rgba(125, 19, 41, 0.15);
    box-shadow: 0 10px 24px rgba(32, 12, 7, 0.09);
}

.header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 520px;
}

.brand-logo-wrap {
    width: 74px;
    height: 74px;
    border-radius: 18px;
    border: 1px solid #e8d4b7;
    background: linear-gradient(160deg, #fff7ed 0%, #f8e8cf 100%);
    display: grid;
    place-items: center;
    padding: 7px;
    box-shadow: 0 8px 18px rgba(73, 24, 12, 0.08);
    flex-shrink: 0;
}

.brand-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-text strong {
    display: block;
    color: var(--maroon);
    font-size: 16px;
    letter-spacing: 0.03em;
}

.brand-text small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.primary-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 18px;
}

.primary-nav a {
    font-size: 14px;
    font-weight: 600;
    color: #4a3125;
}

.primary-nav a:hover,
.primary-nav a.active {
    color: var(--maroon);
}

.nav-cta {
    min-height: 46px;
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    white-space: nowrap;
    font-weight: 700;
    letter-spacing: 0.01em;
    background: linear-gradient(135deg, #8a1530 0%, #b11f42 62%, #7f0f28 100%);
    box-shadow: 0 10px 24px rgba(116, 17, 40, 0.32);
}

.primary-nav .nav-cta {
    color: #fff;
}

.primary-nav .nav-cta:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(116, 17, 40, 0.4);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    padding: 10px 8px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--maroon);
    margin: 6px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition);
}

.btn.small {
    padding: 10px 18px;
    font-size: 13px;
}

.btn-primary {
    background: linear-gradient(130deg, var(--maroon) 0%, #a11f3c 100%);
    color: #fff;
    box-shadow: 0 10px 24px rgba(120, 17, 42, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(120, 17, 42, 0.35);
}

.btn-secondary {
    background: linear-gradient(130deg, #f2e0be 0%, #dfbf7f 100%);
    color: #5a4027;
    border-color: #e4cb95;
}

.btn-secondary:hover {
    background: linear-gradient(130deg, #f6e8c8 0%, #e8c785 100%);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: rgba(125, 19, 41, 0.35);
    color: var(--maroon);
    background: rgba(255, 255, 255, 0.82);
}

.btn-outline:hover {
    background: var(--maroon);
    color: #fff;
}

.site-main {
    overflow: hidden;
}

.section {
    padding: 88px 0;
    position: relative;
}

.section-light {
    background: linear-gradient(180deg, #fff8ee 0%, #fef3e2 100%);
}

.section-alt {
    background: linear-gradient(180deg, #fdf9f2 0%, #fff4e7 100%);
}

.section-heading {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 36px;
}

.section-heading.left {
    text-align: left;
    margin-left: 0;
}

.section-kicker {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 8px;
}

.section-heading h2,
.inner-hero h1 {
    font-size: clamp(34px, 5vw, 48px);
    color: #3b241a;
    margin-bottom: 14px;
}

.lead-text {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
    font-size: 18px;
}

.heading-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-end;
    max-width: 100%;
}

.hero {
    position: relative;
    padding: 94px 0;
    background:
        radial-gradient(circle at 86% 10%, rgba(200, 163, 93, 0.2), transparent 44%),
        radial-gradient(circle at 8% 92%, rgba(125, 19, 41, 0.14), transparent 40%),
        linear-gradient(140deg, #fff4e6 0%, #fdf0dd 100%);
}

.hero::before {
    content: '';
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 50%;
    border: 1px solid rgba(200, 163, 93, 0.28);
    right: -130px;
    bottom: -130px;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 44px;
    align-items: center;
}

.hero-kicker {
    color: var(--maroon);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
}

.hero h1 {
    font-size: clamp(38px, 6vw, 68px);
    color: var(--maroon-dark);
    margin-bottom: 14px;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    color: #4e3324;
    margin-bottom: 10px;
}

.hero-text {
    font-size: 16px;
    max-width: 620px;
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-badges span {
    display: inline-block;
    border: 1px solid rgba(125, 19, 41, 0.15);
    background: rgba(255, 255, 255, 0.75);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #583627;
}

.hero-visual {
    position: relative;
}

.hero-visual > img {
    width: 100%;
    min-height: 520px;
    max-height: 560px;
    object-fit: cover;
    object-position: center;
    border-radius: 28px;
    box-shadow: var(--shadow);
    border: 1px solid #f0dec4;
}

.hero-pillars {
    margin-top: -34px;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.pillar-mini {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-sm);
    padding: 14px;
    border: 1px solid var(--border);
    box-shadow: 0 12px 24px rgba(40, 15, 8, 0.08);
}

.pillar-mini h3 {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--maroon);
}

.pillar-mini p {
    font-size: 12px;
    margin: 0;
}

.card-grid {
    display: grid;
    gap: 22px;
}

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

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

.premium-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 8px 24px rgba(48, 20, 12, 0.05);
    transition: var(--transition);
}

.premium-card:hover {
    transform: translateY(-5px);
    border-color: #d8bc8e;
    box-shadow: var(--shadow);
}

.premium-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
}

.premium-card h3 {
    font-size: 28px;
    color: #492c1d;
    margin-bottom: 10px;
}

.premium-card p {
    font-size: 14px;
    margin-bottom: 0;
}

.premium-card.compact h3 {
    font-size: 24px;
}

.story-subtitle {
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-size: 11px;
    font-weight: 700;
    color: var(--maroon);
    margin-bottom: 6px;
}

.story-grid .story-card {
    border-color: #e6d1b0;
}

.story-points {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
    display: grid;
    gap: 7px;
}

.story-points li {
    position: relative;
    padding-left: 18px;
    font-size: 13px;
    color: #5b4436;
}

.story-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(130deg, var(--maroon) 0%, #cc9d4f 100%);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.trust-item {
    background: #fff;
    border: 1px solid #e8d7bd;
    border-radius: 12px;
    padding: 16px 14px;
    font-size: 14px;
    color: #584234;
    box-shadow: 0 8px 16px rgba(47, 19, 12, 0.05);
}

.faq-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.faq-wrap.compact {
    grid-template-columns: 1fr;
}

.faq-item {
    background: #fff;
    border: 1px solid #e7d4b9;
    border-radius: 14px;
    padding: 18px;
}

.faq-item h3 {
    font-size: 23px;
    color: #472a1e;
    margin-bottom: 8px;
}

.faq-item p {
    margin-bottom: 0;
    font-size: 14px;
}

.catalog-card {
    background: linear-gradient(160deg, #fffaf2 0%, #f9edd7 100%);
    border-color: #e6cea4;
}

.catalog-card h3 {
    margin-bottom: 10px;
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(140deg, #f2e4c8 0%, #e3c286 100%);
    color: #624626;
    font-weight: 700;
    margin-bottom: 14px;
}

.text-link {
    margin-top: 16px;
    display: inline-block;
    color: var(--maroon);
    font-weight: 700;
}

.text-link:hover {
    color: #a51d3b;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.advantage-grid.single-col {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid #ecd8be;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 12px;
    padding: 14px;
}

.advantage-item p {
    margin: 0;
    font-size: 14px;
    color: #5f4738;
}

.check-dot {
    width: 10px;
    height: 10px;
    margin-top: 8px;
    border-radius: 50%;
    background: linear-gradient(130deg, var(--maroon) 0%, #c58e35 100%);
    flex-shrink: 0;
}

.chip {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #5d4122;
    background: #f5e6c8;
    margin-bottom: 10px;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card .btn {
    margin-top: auto;
}

.card-actions {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.card-actions .btn {
    margin-top: 0;
}

.detail-layout .detail-title {
    font-size: clamp(32px, 4.4vw, 42px);
    margin-bottom: 10px;
}

.detail-price {
    font-size: 16px;
    color: #5f3f2a;
}

.detail-price strong {
    color: var(--maroon);
}

.detail-highlights {
    list-style: none;
    margin: 16px 0 20px;
    padding: 0;
    display: grid;
    gap: 8px;
}

.detail-highlights li {
    position: relative;
    padding-left: 18px;
    font-size: 14px;
    color: #5d4535;
}

.detail-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(130deg, var(--maroon) 0%, #cba05b 100%);
}

.promo-grid {
    margin-bottom: 24px;
}

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

.compact-promo .promo-card {
    min-height: 230px;
}

.promo-card h3 {
    margin-bottom: 8px;
}

.promo-valid {
    margin: 8px 0 12px;
    font-size: 13px;
    color: #7a5f4d;
}

.schedule-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.schedule-calendar {
    background: #fff;
    border: 1px solid #e7d5b8;
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 9px 20px rgba(40, 15, 8, 0.05);
}

.calendar-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.calendar-toolbar h3 {
    margin: 0;
    font-size: 28px;
    color: #472d1f;
}

.calendar-nav-btn {
    border: 1px solid #dfc7a0;
    background: #fff8ee;
    color: #5b4128;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 8px;
}

.calendar-weekdays span {
    font-size: 12px;
    text-align: center;
    color: #7a6556;
    font-weight: 700;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

.cal-cell {
    border: 1px solid #ead8bc;
    background: #fff;
    min-height: 74px;
    border-radius: 10px;
    padding: 8px 6px;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.cal-cell.empty {
    background: #fbf6ef;
    border-style: dashed;
    cursor: default;
}

.cal-cell .cal-day {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #5c4333;
}

.cal-cell .cal-events {
    display: inline-block;
    margin-top: 6px;
    font-size: 11px;
    color: #7f132c;
    font-weight: 700;
}

.cal-cell.has-event {
    border-color: #d5b17d;
    background: #fff8ec;
}

.cal-cell.is-today {
    box-shadow: inset 0 0 0 1px #8b1833;
}

.schedule-list {
    display: grid;
    gap: 10px;
}

.schedule-item {
    background: #fff;
    border: 1px solid #ead8bc;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 8px 15px rgba(40, 15, 8, 0.05);
}

.schedule-item.active {
    border-color: #ba8d49;
    box-shadow: 0 10px 22px rgba(125, 19, 41, 0.13);
}

.schedule-item h3 {
    font-size: 24px;
    margin-bottom: 6px;
}

.schedule-item p {
    margin-bottom: 4px;
    font-size: 13px;
}

.schedule-date {
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-size: 11px;
    font-weight: 700;
    color: var(--maroon);
}

.schedule-fee {
    font-weight: 700;
    color: #613f23;
}

.stock-grid .stock-card {
    min-height: 210px;
}

.stock-category {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 11px;
    font-weight: 700;
    color: #7a132a;
}

.stock-status {
    display: inline-block;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stock-status.tersedia {
    background: #d8f5df;
    color: #1f6b31;
}

.stock-status.terbatas {
    background: #fff0cf;
    color: #7a5a1f;
}

.stock-status.pre-order {
    background: #f2e6ff;
    color: #5a2d84;
}

.stock-update {
    font-size: 12px;
    color: #745f4f;
}

.testimonial-card .quote {
    font-size: 16px;
    color: #4f3527;
    margin-bottom: 18px;
}

.testimonial-card h4 {
    font-size: 24px;
    margin-bottom: 4px;
    color: var(--maroon);
}

.testimonial-card span {
    font-size: 13px;
    color: #7a6559;
}

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

.gallery-card {
    margin: 0;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 240px;
    border: 1px solid #edd9bd;
    box-shadow: 0 8px 18px rgba(54, 18, 9, 0.08);
}

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

.gallery-card figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 12, 8, 0.75) 100%);
    color: #fff;
}

.gallery-card figcaption strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}

.gallery-card figcaption span {
    font-size: 12px;
    opacity: 0.88;
}

.gallery-card.large {
    min-height: 300px;
}

.filter-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 26px;
}

.filter-btn,
.gallery-filter-btn {
    border: 1px solid #dfc9a4;
    background: #fff;
    border-radius: 999px;
    padding: 9px 16px;
    font-size: 13px;
    color: #5b4128;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active,
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--maroon);
    border-color: var(--maroon);
    color: #fff;
}

.cta-band {
    background: linear-gradient(140deg, #661224 0%, #901d37 55%, #b97f39 100%);
    color: #fff;
}

.cta-band .section-kicker,
.cta-band h2,
.cta-band p {
    color: #fff;
}

.cta-band-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cta-band .btn-outline {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
}

.cta-band .btn-outline:hover {
    background: #fff;
    color: var(--maroon);
}

.inner-hero {
    padding: 86px 0 54px;
    background:
        radial-gradient(circle at 100% 0%, rgba(214, 166, 88, 0.25), transparent 34%),
        linear-gradient(140deg, #fff4e4 0%, #fdeed8 100%);
}

.inner-hero p {
    max-width: 800px;
    font-size: 17px;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: center;
}

.image-panel img {
    border-radius: 20px;
    border: 1px solid #edd9bc;
    box-shadow: var(--shadow);
}

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

.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-list li {
    padding: 8px 0;
    border-bottom: 1px dashed #e8d8c4;
    font-size: 14px;
    color: #5c4435;
}

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

.contact-list a {
    color: var(--maroon);
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form label {
    font-size: 13px;
    font-weight: 600;
    color: #533a2d;
}

.contact-form input,
.contact-form textarea {
    border: 1px solid #ddc9ad;
    border-radius: 10px;
    padding: 12px;
    font-family: inherit;
    font-size: 14px;
    color: #3d2a20;
    background: #fffcf8;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--maroon);
    box-shadow: 0 0 0 3px rgba(125, 19, 41, 0.13);
}

.form-error {
    border: 1px solid #e8bcbc;
    color: #8c1d1d;
    background: #fff1f1;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 13px;
}

.form-note {
    border: 1px solid #e6d8b8;
    color: #5f4228;
    background: #fff9ec;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 13px;
}

.map-frame {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #ecd8b7;
    box-shadow: var(--shadow);
}

.site-footer {
    background: linear-gradient(150deg, #3d1512 0%, #5a201f 45%, #7d1329 100%);
    color: #f7e9d7;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 0.8fr;
    gap: 22px;
    padding: 70px 0 44px;
}

.footer-col h4 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #f4d8ab;
}

.footer-col p,
.footer-col li,
.footer-col a:not(.btn) {
    color: #f3e6d5;
    font-size: 14px;
}

.site-footer .footer-cta {
    margin-top: 6px;
    min-height: 48px;
    padding: 11px 22px;
    border-radius: 999px;
    border: 1px solid rgba(250, 228, 185, 0.8);
    background: linear-gradient(135deg, #f8e2b8 0%, #edcb8a 52%, #d8a95d 100%);
    color: #542f17;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.site-footer .footer-cta:hover {
    color: #4b2612;
    border-color: #ffe2b2;
    background: linear-gradient(135deg, #fdebc7 0%, #f3d69c 56%, #e2b66c 100%);
    transform: translateY(-2px);
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 18px;
    font-weight: 700;
}

.footer-brand img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-links,
.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.footer-links a:hover,
.footer-contact a:hover,
.social-link:hover {
    color: #ffdca8;
}

.social-link {
    display: inline-block;
    margin-bottom: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px 0;
    text-align: center;
}

.footer-bottom p {
    color: #ecdcc8;
    margin: 0;
    font-size: 13px;
}

.floating-wa {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #22c15e;
    color: #fff;
    font-weight: 700;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 28px rgba(17, 79, 42, 0.38);
    z-index: 999;
}

.floating-wa:hover {
    transform: translateY(-3px);
    background: #18a74f;
}

.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 90px;
    border: 0;
    background: var(--maroon);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    cursor: pointer;
    z-index: 998;
}

.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: 0.7s ease;
}

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

@media (max-width: 1100px) {
    .hero-pillars {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 991px) {
    .menu-toggle {
        display: block;
    }

    .primary-nav {
        position: absolute;
        left: 4%;
        right: 4%;
        top: calc(100% + 10px);
        background: #fffaf2;
        border: 1px solid #ecdabf;
        border-radius: 14px;
        padding: 16px;
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        transition: var(--transition);
    }

    .primary-nav.open {
        max-height: 460px;
        opacity: 1;
        pointer-events: auto;
    }

    .primary-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .primary-nav .btn {
        width: 100%;
    }

    .hero-grid,
    .two-col,
    .schedule-layout,
    .contact-grid,
    .cta-band-inner {
        grid-template-columns: 1fr;
        display: grid;
    }

    .hero-visual > img {
        min-height: 420px;
        max-height: 460px;
    }

    .three-col,
    .gallery-grid,
    .advantage-grid,
    .trust-grid,
    .faq-wrap,
    .promo-two-col {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .heading-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .top-bar-inner {
        justify-content: flex-start;
    }

    .brand-text small {
        display: none;
    }

    .section {
        padding: 72px 0;
    }

    .hero {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: clamp(34px, 11vw, 50px);
    }

    .hero-visual > img {
        min-height: 320px;
        max-height: 360px;
    }

    .premium-card {
        padding: 20px;
    }

    .three-col,
    .four-col,
    .gallery-grid,
    .advantage-grid,
    .trust-grid,
    .faq-wrap,
    .promo-two-col,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .calendar-toolbar h3 {
        font-size: 24px;
    }

    .cal-cell {
        min-height: 62px;
    }

    .cta-actions,
    .hero-actions {
        width: 100%;
    }

    .cta-actions .btn,
    .hero-actions .btn {
        width: 100%;
    }

    .floating-wa {
        width: 52px;
        height: 52px;
        right: 16px;
        bottom: 16px;
    }

    .back-to-top {
        right: 16px;
        bottom: 78px;
    }
}
