:root {
    --bg-light: #ebe9e4;
    --bg-soft: #dcd8cf;
    --bg-dark: #0f1013;
    --surface: #ffffff;
    --text-dark: #171717;
    --text-light: #f6f1e6;
    --muted: #6e675f;
    --accent: #cbb27a;
    --border-light: rgba(255, 255, 255, 0.12);
    --shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.12);
    --radius-pill: 999px;
    --radius-card: 28px;
    --container: 1240px;
    --header-height: 84px;
    --transition: 220ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: scroll;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

button,
a,
img {
    transition: transform var(--transition), opacity var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition);
}

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

.narrow {
    width: min(calc(100% - 32px), 760px);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(203, 178, 122, 0.12);
    transform: translateY(0);
    transition: transform 320ms ease, background-color 320ms ease, backdrop-filter 320ms ease, border-color 320ms ease, box-shadow 320ms ease;
}

.site-header.is-scrolled {
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(18px);
    border-bottom-color: rgba(203, 178, 122, 0.22);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.site-header.is-hidden {
    transform: translateY(calc(-100% - 8px));
}

body {
    padding-top: var(--header-height);
}

.header-inner {
    min-height: var(--header-height);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
}

.desktop-nav,
.header-actions,
.mobile-nav,
.footer-details,
.footer-bottom,
.social-links {
    display: flex;
    align-items: center;
}

.desktop-nav {
    gap: 22px;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 600;
}

.desktop-nav a:hover,
.mobile-nav a:hover,
.social-links a:hover,
.header-phone:hover {
    color: var(--accent);
}

.brand {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    color: #d4b456;
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    line-height: 0.88;
    letter-spacing: 0.04em;
    font-size: 1.2rem;
}

.brand-image {
    width: 118px;
    height: 66px;
    justify-self: center;
}

.brand-image img {
    object-fit: contain;
}

.brand span:first-child {
    font-size: 2rem;
}

.header-actions {
    justify-content: flex-end;
    gap: 18px;
    color: var(--text-light);
}

.header-phone {
    font-weight: 700;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 700;
}

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

.button-dark {
    background: #111214;
    color: var(--text-light);
}

.button-dark:hover {
    background: #202226;
}

.button-light {
    background: rgba(255, 255, 255, 0.92);
    color: #181818;
}

.button-light:hover {
    background: #ffffff;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--text-light);
    border-radius: 999px;
}

.mobile-menu {
    display: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu.is-open {
    display: block;
}

.mobile-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 16px 22px;
    color: var(--text-light);
}

.mobile-booking {
    margin-top: 8px;
    width: 100%;
}

.hero,
.feature,
.site-footer {
    position: relative;
    overflow: hidden;
}

.hero {
    min-height: min(86vh, 900px);
}

.hero-media,
.feature-media,
.footer-media,
.hero-overlay,
.feature-overlay,
.footer-overlay {
    position: absolute;
    inset: 0;
}

.hero-overlay {
    background: linear-gradient(to bottom, rgba(30, 25, 18, 0.2), rgba(233, 229, 222, 0.12) 58%, rgba(233, 229, 222, 0.75));
}

.hero-slider,
.hero-slider .swiper-wrapper,
.hero-slide {
    width: 100%;
    height: 100%;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    min-height: min(86vh, 900px);
    display: flex;
    flex-direction: column;
    align-items: center;    
    justify-content: space-evenly;
    text-align: center;
    padding-top: 8vw;
}

.eyebrow,
.intro h1,
.section-heading h2,
.feature-card h2,
.site-footer h2 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.eyebrow {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(3.2rem, 7vw, 6.2rem);
}

.hero-address {
    margin-top: 8.5rem;
    display: grid;
    gap: 4px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}

.intro {
    padding: 7rem 0 5.5rem;
    text-align: center;
    background: #f1efed;
}

.intro h1 {
    margin: 0;
    font-size: clamp(3.1rem, 6vw, 5.7rem);
    line-height: 0.95;
}

.intro p {
    max-width: 520px;
    margin: 1.8rem auto 2.6rem;
    color: #38332e;
    font-size: 1.05rem;
    line-height: 1.7;
}

.services {
    padding: 3rem 0 3rem;
    background: var(--bg-soft);
}

.events {
    padding: 4.8rem 0 5.5rem;
    background: linear-gradient(180deg, #111214 0%, #101215 100%);
    color: var(--text-light);
}

.section-heading {
    text-align: center;
    margin-bottom: 2.8rem;
}

.section-heading-light h2 {
    color: var(--text-light);
}

.section-mark {
    width: 90px;
    margin: 0 auto 0.6rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 2.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(23, 23, 23, 0.42);
}

.section-mark-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.section-mark-light {
    color: rgba(255, 255, 255, 0.35);
}

.section-heading h2,
.feature-card h2,
.site-footer h2 {
    margin: 0;
    font-size: clamp(2.5rem, 4vw, 4.2rem);
}

.services-slider,
.event-slider {
    overflow: visible;
}

.service-card,
.event-card {
    text-align: center;
}

.service-card a,
.event-card a {
    display: block;
}

.media-frame {
    overflow: hidden;
    border-radius: 0;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.service-card .media-frame {
    aspect-ratio: 0.78 / 1;
}

.event-card .media-frame {
    aspect-ratio: 0.8 / 1;
}

.service-card img:hover,
.event-card img:hover {
    transform: scale(1.06);
}

.service-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 26px 30px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0.2) 44%, rgba(0, 0, 0, 0.72) 100%);
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}

.service-overlay p {
    margin: 0;
    max-width: 92%;
    font-size: 0.95rem;
    line-height: 1.58;
    font-weight: 600;
    text-align: left;
}

.service-overlay-button {
    align-self: flex-start;
    min-height: 52px;
    color: #1a1a1a;
}

.service-card a:hover .service-overlay,
.service-card a:focus-visible .service-overlay {
    opacity: 1;
    visibility: visible;
}

.event-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 8px;
    padding: 22px 20px 24px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.82) 100%);
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}

.event-overlay p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.45;
    font-weight: 600;
    text-align: left;
}

.event-card a:hover .event-overlay,
.event-card a:focus-visible .event-overlay {
    opacity: 1;
    visibility: visible;
}

.service-card h3,
.event-card h3 {
    margin: 0.95rem 0 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.swiper-pagination {
    position: static;
    margin-top: 1.6rem;
}

.swiper-pagination-bullet {
    background: rgba(120, 116, 110, 0.45);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--accent);
}

.feature {
    min-height: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem 6rem;
}

.feature-overlay {
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.24), rgba(17, 17, 17, 0.38));
}

.feature-video-shell {
    background: #101010;
}

.feature-video-shell iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    min-width: 100%;
    min-height: 100%;
    height: 56.25vw;
    border: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.feature-card {
    position: relative;
    z-index: 1;
    padding: 2rem 2.4rem 2.1rem;
    text-align: center;
    color: var(--text-light);
}

.feature-card p {
    margin: 0.55rem 0 1.4rem;
    letter-spacing: 0.3em;
    font-size: 0.78rem;
    font-weight: 700;
}



.site-footer {
    min-height: 760px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-overlay {
    background: rgba(7, 14, 7, 0.34);
    backdrop-filter: blur(2px);
}

.footer-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 5rem 0;
}

.footer-details {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 28px;
    max-width: 820px;
    margin: 1.8rem auto 2rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.social-links {
    justify-content: center;
    gap: 20px;
    margin-top: 1.25rem;
    font-size: 0.92rem;
}

.footer-hours {
    width: min(100%, 420px);
    margin: 1.4rem auto 0;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.footer-hours-title {
    margin-bottom: 0.7rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.35rem;
    letter-spacing: 0.08em;
}

.footer-hours-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 0.45rem 0;
    font-size: 0.88rem;
    line-height: 1.5;
}

.footer-hours-row + .footer-hours-row {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom {
    justify-content: center;
    gap: 18px;
    margin-top: 1.6rem;
    font-size: 0.78rem;
}

.section-observe {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 480ms ease, transform 480ms ease;
}

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

/* Generic reveal hook for blog/list/detail blocks */
.js-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 520ms ease, transform 520ms ease;
    transition-delay: var(--d, 0ms);
}

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

.page-shell {
    min-height: 48vh;
    background: linear-gradient(180deg, #f3f1ec 0%, #e4dfd5 100%);
}

.page-hero {
    padding: 8rem 0 5rem;
    text-align: center;
}

.page-kicker {
    margin: 0 0 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--muted);
}

.page-hero h1 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    line-height: 0.95;
}

.about-page {
    background: #ece9e1;
}

.page-banner {
    position: relative;
    min-height: clamp(280px, 38vw, 520px);
    overflow: hidden;
}

.page-banner::after,
.about-showcase::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16, 13, 10, 0.08) 0%, rgba(16, 13, 10, 0.22) 100%);
    pointer-events: none;
}

.page-banner-media,
.about-showcase-media {
    position: absolute;
    inset: 0;
}

.page-banner-media img,
.about-showcase-media img {
    transform: scale(1.04);
    transition: transform 900ms ease;
}

.section-observe.is-visible .page-banner-media img,
.section-observe.is-visible .about-showcase-media img {
    transform: scale(1);
}

.about-intro,
.about-split,
.about-focus {
    padding: 5.5rem 0 0;
}

.about-showcase {
    position: relative;
    min-height: 860px;
    margin-top: 4rem;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
    gap: 54px;
    align-items: start;
}

.about-title-wrap h1,
.about-title-wrap h2,
.about-copy-card h2,
.about-floating-card h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 0.96;
}

.about-title-wrap h1,
.about-title-wrap h2 {
    font-size: clamp(2.8rem, 4vw, 4.6rem);
}

.about-decor {
    width: 62px;
    margin-top: 4rem;
    opacity: 0.62;
}

.about-copy,
.about-copy-card p,
.about-floating-card p {
    font-size: 1.02rem;
    line-height: 1.8;
    color: #2f2c28;
}

.about-copy p,
.about-copy-card p,
.about-floating-card p {
    margin: 0 0 1.4rem;
}

.about-copy strong,
.about-copy-card strong,
.about-floating-card strong {
    font-weight: 700;
}

.about-title-wrap,
.about-copy,
.about-image-card,
.about-copy-card,
.about-floating-card {
    transition: transform 420ms ease, box-shadow 420ms ease, background-color 420ms ease, border-color 420ms ease;
}

.about-divider {
    height: 1px;
    background: rgba(43, 39, 34, 0.12);
    margin-bottom: 3rem;
}

.about-grid-feature {
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.9fr);
    align-items: center;
}

.about-image-card {
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: #ddd7cb;
}

.about-image-card img {
    transition: transform 700ms ease, filter 700ms ease;
}

.about-image-card:hover img {
    transform: scale(1.035);
    filter: saturate(1.04) contrast(1.02);
}

.tilt-card {
    transform: perspective(1200px) rotateX(0deg) rotateY(0deg);
    transform-style: preserve-3d;
    will-change: transform;
}

.tilt-card:hover {
    transform: perspective(1200px) rotateX(1.8deg) rotateY(-2deg) translateY(-4px);
}

.about-copy-card {
    padding: 1rem 0;
    position: relative;
}

.about-copy-card h2 {
    font-size: clamp(2.8rem, 4vw, 4.4rem);
    margin-bottom: 2rem;
}

.about-copy-card .button {
    margin-top: 1rem;
}

.lift-card {
    transform: translateY(0);
}

.lift-card:hover {
    transform: translateY(-6px);
}

.about-showcase-content {
    position: relative;
    z-index: 1;
    min-height: 860px;
}

.about-floating-card {
    position: absolute;
    left: 2rem;
    bottom: 6rem;
    width: min(100%, 430px);
    padding: 2.3rem 2.4rem;
    background: rgba(241, 238, 231, 0.95);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(44, 39, 31, 0.08);
    backdrop-filter: blur(6px);
}

.about-floating-card h2 {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.about-floating-divider {
    width: 100%;
    height: 1px;
    margin: 1.6rem 0;
    background: rgba(43, 39, 34, 0.16);
}

.about-showcase-note {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    min-width: 420px;
    max-width: min(92vw, 560px);
    background: rgba(255, 255, 255, 0.96);
    text-align: center;
    padding: 0.95rem 2.25rem 0.85rem;
    font-size: 0.92rem;
    line-height: 1.2;
    border-radius: 18px 18px 0 0;
}

.services-page {
    background: #ece9e1;
}

.promotion-page {
    background: #ece9e1;
    padding: 2.2rem 0 6rem;
}

.promotion-shell {
    width: min(calc(100% - 32px), var(--container));
}

.promotion-banner-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
}

.promotion-banner-card img {
    aspect-ratio: 2.8 / 1;
}

.promotion-banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(73, 43, 22, 0.16), rgba(73, 43, 22, 0.24));
    color: #ffffff;
}

.promotion-banner-overlay h1 {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.promotion-banner-overlay p {
    margin: 0.35rem 0 1rem;
    font-family: "Parisienne", cursive;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
}

.promotion-banner-overlay a {
    font-size: 0.98rem;
    letter-spacing: 0.34em;
}

.promotion-stack {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 22px;
    margin-top: 0.8rem;
}

.promo-poster-card {
    margin: 0;
    width: 100%;
    aspect-ratio: 0.82 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.34);
}

.promo-poster-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.promo-poster-card-tall {
    min-height: 0;
}

.promo-poster-card-dark {
    min-height: 0;
}

.promotion-invite {
    padding: 1rem 0 2.5rem;
}

.promotion-invite-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
    gap: 34px;
    align-items: center;
}

.promotion-invite-image {
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.promotion-invite-copy {
    text-align: center;
    padding: 1rem 1rem 1rem 0;
}

.promotion-invite-copy h2,
.promotion-section-title,
.promotion-offer-copy h3 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.promotion-invite-copy h2 {
    margin: 0 0 1rem;
    font-size: clamp(2.4rem, 4vw, 4rem);
    font-style: italic;
}

.promotion-invite-copy p {
    margin: 0 0 0.8rem;
    font-size: 1rem;
    line-height: 1.65;
}

.promotion-invite-copy .button {
    margin-top: 1rem;
}

.promotion-group {
    padding-top: 1rem;
}

.promotion-section-title {
    margin: 0 0 2rem;
    text-align: center;
    font-size: clamp(2.8rem, 4.4vw, 4.3rem);
    font-style: italic;
}

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

.promotion-offer-card {
    text-align: center;
}

.promotion-offer-image {
    overflow: hidden;
    border-radius: 14px;
    box-shadow: var(--shadow-soft);
}

.promotion-offer-copy {
    padding: 1rem 0 0;
}

.promotion-offer-copy h3 {
    margin: 0 0 1rem;
    font-size: 2rem;
    line-height: 0.95;
    font-style: italic;
}

.promotion-offer-copy ul {
    margin: 0 0 1.15rem;
    padding-left: 1.1rem;
    text-align: left;
    font-size: 0.92rem;
    line-height: 1.7;
}

.promotion-offer-copy .button {
    min-height: 38px;
    padding: 0 16px;
    font-size: 0.74rem;
}

.policy-page {
    background: #ece9e1;
    padding: 2.5rem 0 5rem;
}

.policy-shell {
    width: min(calc(100% - 40px), 1080px);
}

.policy-section h1 {
    margin: 0 0 1.6rem;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.8rem, 4vw, 4.1rem);
    font-weight: 500;
}

.policy-list {
    margin: 0;
    padding-left: 1.6rem;
    display: grid;
    gap: 0.9rem;
}

.policy-list li,
.policy-thankyou,
.policy-signoff {
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    line-height: 1.45;
    letter-spacing: 0.01em;
}

.policy-thankyou {
    margin: 1.8rem 0 1rem;
}

.policy-signoff {
    margin: 0 0 2.8rem;
    font-weight: 700;
}

.policy-divider {
    height: 1px;
    background: rgba(41, 37, 31, 0.16);
}

.contact-page {
    background: #ece9e1;
}

.contact-banner {
    min-height: clamp(320px, 42vw, 620px);
}

.contact-banner-tab {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    min-width: 420px;
    max-width: min(92vw, 560px);
    z-index: 2;
    background: rgba(255, 255, 255, 0.96);
    text-align: center;
    padding: 0.95rem 2.25rem 0.85rem;
    font-size: 0.92rem;
    line-height: 1.2;
    border-radius: 18px 18px 0 0;
}

.contact-form-section {
    padding: 5rem 0 5.5rem;
}

.contact-shell {
    width: min(calc(100% - 40px), 980px);
}

.contact-kicker {
    margin: 0 0 1rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.1rem;
    letter-spacing: 0.03em;
}

.contact-form-section h1 {
    margin: 0 0 3.2rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 50px;
    font-weight: 500;
    line-height: 0.95;
}

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

.contact-form-status {
    min-height: 1.5em;
    margin: -0.4rem 0 0;
    padding: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    border-radius: 12px;
}

.contact-form-status.is-success {
    padding: 0.8rem 1rem;
    color: #1f5137;
    background: rgba(112, 193, 144, 0.22);
    border: 1px solid rgba(63, 145, 98, 0.28);
}

.contact-form-status.is-error {
    padding: 0.8rem 1rem;
    color: #8f2528;
    background: rgba(196, 72, 72, 0.12);
    border: 1px solid rgba(161, 45, 47, 0.18);
}

.contact-form .button[type="submit"] {
    min-width: 112px;
    width: auto;
    justify-self: start;
    padding: 0 22px;
}

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

.contact-field {
    display: grid;
    gap: 0.7rem;
    font-size: 0.98rem;
}

.contact-field span {
    font-weight: 500;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    padding: 1.1rem 1rem;
    border: 1px solid rgba(38, 34, 29, 0.16);
    background: rgba(255, 255, 255, 0.48);
    color: var(--text-dark);
    font: inherit;
    outline: none;
    transition: border-color var(--transition), background-color var(--transition), box-shadow var(--transition);
}

.contact-field textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: rgba(157, 123, 58, 0.9);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 0 0 4px rgba(203, 178, 122, 0.14);
}

.contact-field select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(0, 0, 0, 0.65) 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.65) 50%, transparent 50%);
    background-position:
        calc(100% - 18px) calc(50% + 1px),
        calc(100% - 13px) calc(50% + 1px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 2.3rem;
}

.event-page {
    background: #ece9e1;
}

.event-list {
    padding: 3.4rem 0 2.5rem;
}

.event-shell {
    width: min(calc(100% - 32px), 1200px);
    display: grid;
    gap: 2.8rem;
}

.event-offer {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(320px, 0.9fr);
    gap: 2.2rem;
    align-items: center;
}

.event-offer--reverse {
    grid-template-columns: minmax(320px, 0.9fr) minmax(300px, 1fr);
}

.event-offer--reverse .event-offer__media {
    order: 2;
}

.event-offer--reverse .event-offer__content {
    order: 1;
}

.event-offer__media {
    margin: 0;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
}

.event-offer__media img {
    aspect-ratio: 1.42 / 1;
    object-fit: cover;
    transition: transform .45s ease;
}

.event-offer:hover .event-offer__media img {
    transform: scale(1.04);
}

.event-offer__content {
    padding-bottom: 0.4rem;
}

.event-offer__kicker {
    margin: 0 0 0.5rem;
    font-family: "Cormorant Garamond", serif;
    font-size: 0.94rem;
    letter-spacing: 0.03em;
}

.event-offer__content h2 {
    margin: 0 0 0.8rem;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 500;
    line-height: 0.96;
}

.event-offer__content p {
    margin: 0.5rem 0 0.75rem;
    font-size: 1.05rem;
    line-height: 1.65;
}

.event-offer__content ul,
.event-offer__content ol {
    margin: 0;
    padding-left: 1.2rem;
    font-size: 1.03rem;
    line-height: 1.62;
}

.event-offer__button {
    margin-top: 1.25rem;
    min-height: 42px;
    padding: 0 18px;
    font-size: 0.84rem;
}

.event-book {
    padding: 2.2rem 0 5.6rem;
}

.event-book h1 {
    margin-bottom: 2.4rem;
}

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

.contact-map iframe {
    display: block;
    width: 100%;
    min-height: 460px;
    border: 0;
}

.services-menu {
    padding: 4.5rem 0 1rem;
}

.services-menu-shell {
    width: min(calc(100% - 40px), 980px);
}

.menu-section + .menu-section {
    margin-top: 4.8rem;
}

.menu-section-title {
    margin: 0 0 2.5rem;
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 50px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.menu-section-title,
.menu-service,
.menu-column > .menu-item-row {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.menu-section.is-visible .menu-section-title,
.menu-section.is-visible .menu-service,
.menu-section.is-visible .menu-column > .menu-item-row,
.section-observe.is-visible .menu-section-title,
.menu-service.section-observe.is-visible,
.menu-item-row.section-observe.is-visible,
.section-observe.is-visible .menu-column > .menu-item-row {
    opacity: 1;
    transform: translateY(0);
}

.menu-section.is-visible .menu-column .menu-service:nth-child(1),
.menu-section.is-visible .menu-column > .menu-item-row:nth-child(1),
.section-observe.is-visible .menu-column .menu-service:nth-child(1),
.section-observe.is-visible .menu-column > .menu-item-row:nth-child(1) {
    transition-delay: 90ms;
}

.menu-section.is-visible .menu-column .menu-service:nth-child(2),
.menu-section.is-visible .menu-column > .menu-item-row:nth-child(2),
.section-observe.is-visible .menu-column .menu-service:nth-child(2),
.section-observe.is-visible .menu-column > .menu-item-row:nth-child(2) {
    transition-delay: 150ms;
}

.menu-section.is-visible .menu-column .menu-service:nth-child(3),
.menu-section.is-visible .menu-column > .menu-item-row:nth-child(3),
.section-observe.is-visible .menu-column .menu-service:nth-child(3),
.section-observe.is-visible .menu-column > .menu-item-row:nth-child(3) {
    transition-delay: 210ms;
}

.menu-section.is-visible .menu-column .menu-service:nth-child(4),
.menu-section.is-visible .menu-column > .menu-item-row:nth-child(4),
.section-observe.is-visible .menu-column .menu-service:nth-child(4),
.section-observe.is-visible .menu-column > .menu-item-row:nth-child(4) {
    transition-delay: 270ms;
}

.menu-section.is-visible .menu-column > .menu-item-row:nth-child(5),
.section-observe.is-visible .menu-column > .menu-item-row:nth-child(5) {
    transition-delay: 330ms;
}

.menu-section.is-visible .menu-column > .menu-item-row:nth-child(6),
.section-observe.is-visible .menu-column > .menu-item-row:nth-child(6) {
    transition-delay: 390ms;
}

.menu-section.is-visible .menu-column > .menu-item-row:nth-child(7),
.section-observe.is-visible .menu-column > .menu-item-row:nth-child(7) {
    transition-delay: 450ms;
}

.menu-section.is-visible .menu-column > .menu-item-row:nth-child(8),
.section-observe.is-visible .menu-column > .menu-item-row:nth-child(8) {
    transition-delay: 510ms;
}

.menu-section.is-visible .menu-column > .menu-item-row:nth-child(9),
.section-observe.is-visible .menu-column > .menu-item-row:nth-child(9) {
    transition-delay: 570ms;
}

.menu-columns {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 42px;
}

.menu-columns-compact {
    gap: 26px 42px;
}

.menu-column {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    align-self: start;
}

.menu-service {
    display: grid;
    gap: 0.7rem;
    align-content: start;
}

.menu-item-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 1.02rem;
    line-height: 1.4;
}

.menu-item-name,
.menu-item-price {
    font-weight: 700;
}

.menu-item-dots {
    flex: 1;
    border-bottom: 1px dotted rgba(20, 20, 20, 0.72);
    transform: translateY(-0.1em);
}

.menu-item-note {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.5;
}

.menu-detail-list {
    margin: 0;
    padding-left: 1.05rem;
    display: grid;
    gap: 0.35rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.menu-detail-list li::marker {
    color: #8c6b2a;
}

.services-showcase {
    margin-top: 5rem;
}

.services-showcase-media {
    background: #0f0f0f;
}

.services-showcase-media iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    min-width: 100%;
    min-height: 100%;
    height: 56.25vw;
    border: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.services-showcase .about-showcase-content {
    min-height: 760px;
}

.services-floating-card {
    width: min(100%, 470px);
    left: 8rem;
    /* top: auto; */
    /* bottom: auto; */
    padding: 2.8rem 2.6rem;
    transform: translateY(-50%);
}

.services-floating-card h2 {
    font-size: 30px;
    line-height: 1.04;
}

.services-floating-card p {
    margin-bottom: 0.8rem;
}

.services-floating-card .button {
    margin-top: 1.2rem;
}

.about-grid .about-title-wrap,
.about-grid .about-copy,
.about-grid-feature .about-image-card,
.about-grid-feature .about-copy-card,
.about-showcase-content .about-floating-card,
.about-showcase-content .about-showcase-note {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 560ms ease, transform 560ms ease;
}

.section-observe.is-visible .about-title-wrap,
.section-observe.is-visible .about-copy,
.section-observe.is-visible .about-image-card,
.section-observe.is-visible .about-copy-card,
.section-observe.is-visible .about-floating-card,
.section-observe.is-visible .about-showcase-note {
    opacity: 1;
    transform: translateY(0);
}

.section-observe.is-visible .about-copy {
    transition-delay: 90ms;
}

.section-observe.is-visible .about-copy-card,
.section-observe.is-visible .about-showcase-note {
    transition-delay: 110ms;
}

.section-observe.is-visible .about-floating-card {
    transition-delay: 140ms;
}

@media (min-width: 901px) {
    .services-slider .swiper-wrapper,
    .event-slider .swiper-wrapper {
        display: grid;
    }

    .services-slider .swiper-wrapper {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 18px;
    }

    .event-slider .swiper-wrapper {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .services-slider .swiper-pagination,
    .event-slider .swiper-pagination {
        display: none;
    }

}

@media (max-width: 1100px) {
    .desktop-nav {
        display: none;
    }

    .header-inner {
        grid-template-columns: 1fr auto auto;
    }

    .header-phone,
    .header-actions .button {
        display: none;
    }

    .nav-toggle {
        display: inline-block;
    }
}

@media (max-width: 900px) {
    .hero {
        min-height: 78vh;
    }

    .hero-content {
        min-height: 78vh;
        padding-top: 7rem;
    }

    .hero-address {
        margin-top: 5rem;
        letter-spacing: 0.14em;
    }

    .intro {
        padding: 5.5rem 0 4.5rem;
    }
    .brand-image {
        justify-self: start;
    }
    .services,
    .events {
        padding-left: 0;
        padding-right: 0;
    }

    .services .container,
    .events .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .services-slider,
    .event-slider {
        overflow: hidden;
    }

    .service-card h3,
    .event-card h3 {
        font-size: 1.08rem;
    }

    .service-overlay {
        opacity: 1;
        visibility: visible;
        padding: 20px 18px 20px;
    }

    .service-overlay p {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.5;
    }

    .service-overlay-button {
        min-height: 42px;
        padding: 0 18px;
        font-size: 0.88rem;
        align-self: center;
    }

    .event-overlay {
        opacity: 1;
        visibility: visible;
        padding: 18px 16px 20px;
        gap: 6px;
    }

    .event-overlay p {
        font-size: 0.76rem;
        line-height: 1.38;
    }

    .feature {
        min-height: 620px;
    }

    .site-footer {
        min-height: 680px;
    }

    .about-intro,
    .about-split,
    .about-focus {
        padding-top: 4rem;
    }

    .about-grid,
    .about-grid-feature {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-decor {
        margin-top: 2rem;
    }

    .about-showcase {
        min-height: 720px;
        margin-top: 3rem;
    }

    .about-showcase-content {
        min-height: 720px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding-bottom: 3.5rem;
    }

    .about-floating-card {
        position: relative;
        left: auto;
        bottom: auto;
        width: min(100%, 460px);
        margin-top: auto;
    }

    .about-showcase-note {
        min-width: 0;
        width: min(88vw, 420px);
        padding: 0.8rem 1.3rem 0.75rem;
        border-radius: 14px 14px 0 0;
    }

    .services-menu {
        padding: 3.2rem 0 4.5rem;
    }

    .promotion-page {
        padding-top: 1rem;
    }

    .policy-page {
        padding-top: 1.4rem;
    }

    .contact-form-section {
        padding: 3.6rem 0 4rem;
    }

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

    .event-offer,
    .event-offer--reverse {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .event-offer--reverse .event-offer__media,
    .event-offer--reverse .event-offer__content {
        order: initial;
    }

    .event-offer__content h2 {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .event-form-grid {
        grid-template-columns: 1fr;
    }

    .promotion-invite-grid,
    .promotion-offer-grid,
    .promotion-stack {
        grid-template-columns: 1fr;
    }

    .promotion-invite-copy {
        padding: 0;
    }

    .promotion-offer-grid {
        gap: 26px;
    }

    .menu-columns,
    .menu-columns-compact {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .menu-section + .menu-section {
        margin-top: 3.6rem;
    }

    .menu-section-title {
        margin-bottom: 1.8rem;
    }

    .services-showcase .about-showcase-content {
        /* min-height: 680px; */
    }

    .services-floating-card {
        left: auto;
        top: auto;
        width: min(100%, 520px);
        padding: 2rem 1.8rem;
        transform: none;
    }

    .lift-card:hover,
    .tilt-card:hover {
        transform: none;
    }
}

@media (max-width: 640px) {
    :root {
        --header-height: 74px;
    }

    .brand span:first-child {
        font-size: 1.75rem;
    }

    .brand-image {
        width: 96px;
        height: 56px;
    }

    .eyebrow {
        font-size: 2.7rem;
    }

    .hero-address {
        margin-top: 3rem;
        font-size: 0.62rem;
    }

    .intro h1 {
        font-size: 2.65rem;
    }

    .intro p {
        font-size: 0.96rem;
    }

    .section-heading h2,
    .feature-card h2,
    .site-footer h2 {
        font-size: 2.35rem;
    }

    .feature-card {
        padding: 1.6rem;
    }



    .footer-details {
        gap: 10px;
        font-size: 0.66rem;
        letter-spacing: 0.12em;
    }

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

    .footer-hours-row {
        flex-direction: column;
        gap: 2px;
        text-align: center;
    }

    .page-banner {
        min-height: 220px;
    }

    .about-title-wrap h1,
    .about-title-wrap h2,
    .about-copy-card h2,
    .about-floating-card h2 {
        font-size: 2.45rem;
    }

    .about-copy,
    .about-copy-card p,
    .about-floating-card p {
        font-size: 0.96rem;
        line-height: 1.7;
    }

    .about-floating-card {
        padding: 1.6rem;
    }

    .services-menu-shell {
        width: min(calc(100% - 24px), 980px);
    }

    .promotion-shell {
        width: min(calc(100% - 24px), var(--container));
    }

    .policy-shell {
        width: min(calc(100% - 24px), 1080px);
    }

    .contact-shell {
        width: min(calc(100% - 24px), 980px);
    }

    .promotion-banner-card img {
        aspect-ratio: 1.45 / 1;
    }

    .promotion-banner-overlay a {
        letter-spacing: 0.2em;
    }

    .menu-item-row {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 6px 10px;
        font-size: 0.96rem;
    }

    .menu-item-dots {
        order: 3;
        width: 100%;
        flex-basis: 100%;
    }

    .menu-item-price {
        margin-left: auto;
    }

    .menu-detail-list,
    .menu-item-note {
        font-size: 0.86rem;
    }

    .services-floating-card h2 {
        font-size: 2.45rem;
    }

    .promotion-offer-copy h3 {
        font-size: 1.9rem;
    }

    .policy-list li,
    .policy-thankyou,
    .policy-signoff {
        font-size: 1.12rem;
        line-height: 1.5;
    }

    .contact-banner-tab {
        min-width: 0;
        width: min(88vw, 420px);
        padding: 0.8rem 1.3rem 0.75rem;
        border-radius: 14px 14px 0 0;
    }
}

/* =========================
   BLOG LIST PAGE
========================= */
.blog-list-page{
  padding: 72px 0 92px;
}

.blog-list-page .js-reveal,
.post .js-reveal{
  will-change: opacity, transform;
}

.blog-list-head{
  text-align: center;
  margin-bottom: 44px;
}

.blog-list-title{
  margin: 0 0 10px;
  font-size: 42px;
  font-weight: 500;
  font-family: var(--font-title);
}

.blog-list-sub{
  margin: 0;
  font-size: 16px;
  color: rgba(0,0,0,.55);
  line-height: 1.8;
}

/* Grid 3 cột */
.blog-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

/* Card */
.blog-card{
  display:flex;
  flex-direction: column;
  transition: transform .28s ease;
}

.blog-thumb{
  display:block;
  overflow:hidden;
  border-radius: 0; /* giống mẫu: ảnh vuông */
  box-shadow: 0 16px 44px rgba(0,0,0,.10);
  transition: transform .25s ease, box-shadow .25s ease;
}

.blog-thumb img{
  width:100%;
  height: 360px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .45s ease;
  will-change: transform;
}

.blog-card:hover{
  transform: translateY(-4px);
}

.blog-card:hover .blog-thumb{
  transform: translateY(-6px);
  box-shadow: 0 26px 64px rgba(0,0,0,.14);
}
.blog-card:hover .blog-thumb img{
  transform: scale(1.08);
}

.blog-body{
  padding-top: 18px;
}

.blog-title{
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
}

.blog-title a{
  color: rgba(0,0,0,.85);
  text-decoration: none;
  transition: color .2s ease;
}
.blog-title a:hover{
  color: rgba(0,0,0,1);
}

.blog-excerpt{
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.85;
  color: rgba(0,0,0,.55);
}

.blog-meta{
  font-size: 14px;
  line-height: 1.6;
  display:flex;
  gap: 6px;
  align-items:center;
  flex-wrap: wrap;
}
.blog-date{
  color: rgba(231,76,60,.95);
}
.blog-dot{
  color: rgba(0,0,0,.35);
}
.blog-comment{
  color: rgba(0,0,0,.45);
  text-decoration:none;
}
.blog-comment:hover{
  color: rgba(0,0,0,.75);
}

/* Pagination */
.blog-pagination{
  margin-top: 54px;
  display:flex;
  justify-content:center;
  gap: 10px;
  align-items:center;
}

.pg-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 40px;
  padding: 0 14px;
  border-radius: 10px;
  background: rgba(0,0,0,.04);
  color: rgba(0,0,0,.75);
  text-decoration:none;
  transition: transform .2s ease, background .2s ease;
}
.pg-btn:hover{
  transform: translateY(-2px);
  background: rgba(0,0,0,.07);
}
.pg-btn.is-active{
  background: rgba(231,76,60,.95);
  color:#fff;
}
.pg-ellipsis{
  color: rgba(0,0,0,.45);
}

/* =========================
   Responsive
========================= */
@media (max-width: 1023px){
  .blog-list-page{ padding: 60px 0 76px; }
  .blog-list-title{ font-size: 34px; }

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

  .blog-thumb img{ height: 320px; }
}

@media (max-width: 767px){
  .blog-list-page{ padding: 52px 0 64px; }
  .blog-list-title{ font-size: 28px; }

  .blog-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .blog-thumb img{ height: 260px; }
}

/* =========================
   BLOG DETAIL - layout with left order
========================= */
.post{
  padding: 72px 0 92px;
  background: #fff;
}

.post-layout{
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 44px;
  align-items: start;
}

/* LEFT: blogs order */
.post-left{
  position: sticky;
  top: calc(var(--header-h) + 18px);
  align-self: start;
  padding: 18px 16px;
  border-radius: 12px;
  background: rgba(0,0,0,.02);
  border: 1px solid rgba(0,0,0,.06);
}

.post-left__title{
  margin: 6px 0 14px;
  font-size: 16px;
  letter-spacing: .6px;
  color: rgba(0,0,0,.80);
}


.post-order{
  list-style: none;
  padding: 0;
  counter-reset: postorder;
}

.post-order li{
  counter-increment: postorder;
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}

.post-order li::before{
  content: counter(postorder) ".";
  position: absolute;
  left: 0;
  top: 0;              /* luôn nằm cùng dòng đầu */
  font-weight: 700;
  color: rgba(0,0,0,.75);
}
.post-order a{
  color: rgba(0,0,0,.62);
  text-decoration: none;
  line-height: 1.6;
  transition: color .2s ease, transform .2s ease;
  display: inline-block;
}
.post-order a:hover{
  color: rgba(0,0,0,.85);
  transform: translateX(2px);
}

.post-order a.is-current{
  color: rgba(0,0,0,.9);
  font-weight: 700;
  transform: translateX(2px);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* RIGHT: content width */
.post-article{
  width: 100%;
}

/* Featured image */
.post-cover{
  margin: 0 0 18px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
  transition: transform .35s ease, box-shadow .35s ease;
}
.post-cover img{
  width: 100%;
  /* height: 360px; */
  object-fit: cover;
  transform: scale(1.02);
  transition: transform .5s ease;
}
.post-cover:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 58px rgba(0,0,0,.14);
}
.post-cover:hover img{
  transform: scale(1.06);
}

/* Keep your existing post typography (from before) */
.post-head{
  display:flex;
  gap: 18px;
  align-items:flex-start;
  margin-bottom: 22px;
}

.post-date{
  min-width: 64px;
  text-align:center;
  color: rgba(0,0,0,.35);
}
.post-day{ display:block; font-size: 34px; line-height: 1; }
.post-mon{ display:block; font-size: 18px; margin-top: 4px; }

.post-title{
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.25;
  font-weight: 600;
  color: rgba(0,0,0,.85);
  font-family: var(--font-title);
}

.post-meta{
  font-size: 14px;
  color: rgba(0,0,0,.35);
  line-height: 1.7;
}

.post-content{
  font-size: 16px;
  color: rgba(0,0,0,.58);
  line-height: 1.95;
}
.post-content p{ margin: 0 0 16px; }

.post-content h2{
  margin: 30px 0 12px;
  font-size: 34px;
  line-height: 1.25;
  color: rgba(0,0,0,.85);
  font-weight: 500;
  font-family: Georgia, "Times New Roman", serif;
}
.post-content h3{
  margin: 18px 0 6px;
  font-size: 18px;
  color: rgba(0,0,0,.80);
  font-weight: 700;
}
.post-content ul{
  margin: 10px 0 18px 18px;
  padding: 0;
}
.post-content ul li{ margin: 6px 0; }

.post-ol{
  margin: 10px 0 18px 18px;
  padding: 0;
}
.post-ol > li{ margin: 10px 0 14px; }

/* ===== POST CTA FIX ===== */

.post-cta{
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,.08);
}

.post-cta__rows{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.post-cta__row{
  display: flex;              
  align-items: center;        
  gap: 10px;                  
  flex-wrap: nowrap;          
}

.post-cta__icon{
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;             
}

.post-cta__label{
  font-size: 16px;            
  line-height: 1.6;
}

.post-cta__label a{
  color: inherit;
  text-decoration: none;
}

.post-cta__label a:hover{
  text-decoration: underline;
}

.post-cta__note{
  margin-top: 20px;
  font-size: 16px;
  opacity: .75;
}

/* =========================
   Responsive (3 devices)
========================= */
@media (max-width: 1023px){
  .post{ padding: 60px 0 76px; }

  .post-layout{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .post-left{
    position: relative;
    top: auto;
    order: -1;
  }

  .post-title{ font-size: 30px; }
  .post-content h2{ font-size: 30px; }
}

@media (max-width: 767px){
  .post{ padding: 52px 0 64px; }


  .post-head{
    flex-direction: column;
    gap: 10px;
  }

  .post-date{
    display:flex;
    gap: 10px;
    align-items: baseline;
    min-width: 0;
  }
  .post-day{ font-size: 28px; }
  .post-mon{ font-size: 16px; margin:0; }

  .post-title{ font-size: 26px; }
  .post-content h2{ font-size: 26px; }
}


.booking-section {
  display: flex;
  justify-content: center;
  padding: 80px 20px;
  background-color: var(--bg);
  position: relative;
  /* z-index: 10; */
  margin-top: 20PX;
}

.iframe-wrapper {
  width: 100%;
  max-width: 1200px;
  height: 90vh; /* Chiều cao bằng 90% chiều cao màn hình */
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .booking-section {
    padding: 40px 10px;
  }

  .iframe-wrapper {
    height: 80vh; /* thấp hơn chút cho mobile */
    border-radius: 6px;
  }
}

.salon{
  position: relative;
  padding: 100px 20px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,.06), transparent 46%),
    linear-gradient(135deg, #0b0b0b, #1a1a1a);
}

.salon__wrap{
  max-width: var(--page-max, 1200px);
  margin: 0 auto;
}

/* Heading with lines */
.salon__heading{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-bottom: 46px;
}

.salon__title{
  margin: 0;
  font-family: var(--font-title, "Lato", Helvetica, Arial, sans-serif);
  font-weight: 300;
  font-size: 30px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #A68230;
  white-space: nowrap;
}

.salon__line{
  height: 1px;
  width: min(280px, 22vw);
  background: rgba(166,130,48,.55);
}

/* Grid images */
.salon__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

/* Square item */
.salon__item{
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1; /* vuông */
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border-radius: 2px;
  box-shadow: 0 18px 45px rgba(0,0,0,.35);
  text-decoration: none;
  transform: translateZ(0);
}

.salon__item img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform .45s ease, filter .45s ease;
  /* filter: brightness(.88); */
}

/* Overlay tối nhẹ */
/* .salon__item::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.18);
  opacity: 1;
  transition: opacity .35s ease;
} */

/* icon + (tùy chọn) */
.salon__item::before{
  content: "+";
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 3;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 2px;
  background: rgba(0,0,0,.35);
  color: rgba(255,255,255,.9);
  font-family: var(--font-title, "Lato", Helvetica, Arial, sans-serif);
  font-size: 22px;
  opacity: 0;
  transform: translateY(6px);
  transition: .25s ease;
}

/* Hover */
.salon__item:hover img{
  transform: scale(1.08);
  filter: brightness(1);
}
.salon__item:hover::after{ opacity: 0; }
.salon__item:hover::before{
  opacity: 1;
  transform: translateY(0);
}

/* ===== iPad ===== */
@media (max-width: 1024px){
  .salon{ padding: 64px 18px; }
  .salon__grid{ grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .salon__title{ font-size: 26px; }
  .salon__heading{ margin-bottom: 34px; gap: 18px; }
  .salon__line{ width: min(220px, 20vw); }
}

/* ===== Mobile ===== */
@media (max-width: 768px){
  .salon{ padding: 52px 16px; }
  .salon__grid{ grid-template-columns: repeat(2, 1fr); gap: 14px; }

  .salon__title{
    font-size: 20px;
    letter-spacing: .22em;
  }

  .salon__line{ width: 18vw; }
}

@media (max-width: 420px){
  .salon__grid{ grid-template-columns: 1fr; }
  .salon__line{ display: none; }
}
