/* ===========================================================
   Modern restaurant website template
   Dark aesthetic, gold accent — server-rendered port of the
   React/Vite prototype (06-modern-restaurant-website).
   =========================================================== */

:root {
    --cwm-bg: #080808;
    --cwm-bg-soft: #121212;
    --cwm-bg-card: rgba(255, 255, 255, 0.02);
    --cwm-border: rgba(255, 255, 255, 0.06);
    --cwm-gold: #d4af37;
    --cwm-white: #ffffff;
    --cwm-neutral-400: #a3a3a3;
    --cwm-neutral-500: #737373;
    --cwm-neutral-600: #525252;
}

.cwm-root {
    background: var(--cwm-bg);
    color: var(--cwm-white);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    min-height: 100vh;
    overflow-x: clip;
    position: relative;
}

.cwm-root *,
.cwm-root *::before,
.cwm-root *::after {
    box-sizing: border-box;
}

.cwm-display {
    font-family: 'Playfair Display', Georgia, serif;
}

.cwm-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 48px;
}

@media (max-width: 768px) {
    .cwm-container {
        padding: 0 24px;
    }
}

/* ---------- Background atmosphere ---------- */
.cwm-atmosphere {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.cwm-blob {
    position: absolute;
    border-radius: 9999px;
    filter: blur(120px);
}

.cwm-blob-1 {
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: #1a1a1a;
    opacity: 0.4;
}

.cwm-blob-2 {
    bottom: -5%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: var(--cwm-bg-soft);
    opacity: 0.3;
    filter: blur(100px);
}

/* ---------- Navigation ---------- */
.cwm-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.5s ease;
    padding: 32px 0;
    background: transparent;
}

.cwm-nav.cwm-nav-scrolled {
    background: rgba(8, 8, 8, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cwm-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cwm-nav-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.cwm-nav-brand img {
    height: 48px;
    width: auto;
    filter: brightness(1.1) contrast(1.25);
}

.cwm-nav-brand-name {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--cwm-gold);
}

.cwm-nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.cwm-nav-link {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    color: var(--cwm-neutral-400);
    text-decoration: none;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.cwm-nav-link:hover {
    color: var(--cwm-gold);
}

.cwm-nav-cta {
    padding: 8px 24px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 9999px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
    color: var(--cwm-gold);
    background: transparent;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.cwm-nav-cta:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--cwm-gold);
    transform: scale(1.05);
}

.cwm-nav-burger {
    display: none;
    background: none;
    border: none;
    color: var(--cwm-white);
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}

/* Right-aligned cluster: nav links + language switcher + burger */
.cwm-nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Header language switcher (visible on both desktop and mobile) */
.cwm-nav-lang {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--cwm-neutral-400);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    white-space: nowrap;
}

.cwm-nav-lang form {
    display: inline;
    margin: 0;
}

.cwm-nav-lang .login-info {
    color: var(--cwm-neutral-400);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    line-height: 1;
}

.cwm-nav-lang button.login-info {
    background: none !important;
    border: none !important;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s ease;
}

.cwm-nav-lang button.login-info:hover {
    color: var(--cwm-gold);
}

.cwm-nav-lang span.login-info {
    color: rgba(255, 255, 255, 0.25);
}

/* ---------- Mobile drawer ---------- */
.cwm-drawer {
    position: fixed;
    inset: 0;
    background: var(--cwm-bg);
    z-index: 60;
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cwm-drawer.cwm-drawer-open {
    transform: translateX(0);
}

.cwm-drawer-close {
    position: absolute;
    top: 32px;
    right: 32px;
    background: none;
    border: none;
    color: var(--cwm-white);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

.cwm-drawer-link {
    font-size: 28px;
    font-weight: 500;
    color: var(--cwm-white);
    text-decoration: none;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
}

.cwm-drawer-link:hover {
    color: var(--cwm-gold);
}

.cwm-drawer-cta {
    border: 1px solid var(--cwm-gold);
    color: var(--cwm-gold);
    padding: 16px 40px;
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    background: transparent;
}

/* ---------- Hero ---------- */
.cwm-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.cwm-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cwm-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    filter: brightness(1.2);
}

.cwm-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--cwm-bg), transparent, var(--cwm-bg));
}

.cwm-hero-inner {
    position: relative;
    z-index: 10;
    width: 100%;
    padding-top: 80px;
}

.cwm-hero-grid {
    display: grid;
    grid-template-columns: 7fr 5fr;
    gap: 32px;
    align-items: center;
}

.cwm-eyebrow {
    color: var(--cwm-gold);
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 12px;
    font-weight: 600;
    display: block;
    margin-bottom: 24px;
}

.cwm-hero-title {
    font-size: clamp(48px, 9vw, 110px);
    line-height: 0.9;
    font-style: italic;
    color: var(--cwm-white);
    margin: 0 0 32px;
}

.cwm-hero-title span {
    font-style: normal;
    font-weight: 300;
    letter-spacing: -0.03em;
}

.cwm-hero-text {
    max-width: 28rem;
    color: var(--cwm-neutral-400);
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.cwm-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.cwm-btn {
    padding: 16px 40px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.cwm-btn-light {
    background: var(--cwm-white);
    color: #000;
}

.cwm-btn-light:hover {
    background: var(--cwm-gold);
}

.cwm-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--cwm-white);
    background: transparent;
}

.cwm-btn-outline:hover {
    border-color: var(--cwm-gold);
    color: var(--cwm-gold);
}

.cwm-btn-gold {
    background: var(--cwm-gold);
    color: #000;
}

.cwm-btn-gold:hover {
    background: var(--cwm-white);
}

/* Hero right visual */
.cwm-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 40px;
}

.cwm-hero-frame {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 200px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
}

.cwm-hero-frame img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    filter: brightness(1.1);
}

.cwm-hero-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, rgba(8, 8, 8, 0.6), transparent, transparent);
}

/* ---------- Generic section heading ---------- */
.cwm-section {
    position: relative;
    z-index: 10;
}

.cwm-section-pad {
    padding: 160px 0;
}

.cwm-section-pad-sm {
    padding: 96px 0;
}

.cwm-border-t {
    border-top: 1px solid var(--cwm-border);
}

.cwm-border-y {
    border-top: 1px solid var(--cwm-border);
    border-bottom: 1px solid var(--cwm-border);
}

.cwm-soft-bg {
    background: rgba(255, 255, 255, 0.01);
}

.cwm-h2 {
    font-size: clamp(40px, 7vw, 96px);
    font-style: italic;
    line-height: 1.05;
    color: var(--cwm-white);
    letter-spacing: -0.03em;
    margin: 0;
}

.cwm-h2 span {
    font-style: normal;
    text-transform: uppercase;
}

.cwm-rule {
    height: 1px;
    width: 96px;
    background: rgba(212, 175, 55, 0.4);
}

/* ---------- Digital services ---------- */
.cwm-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.cwm-service-card {
    background: var(--cwm-bg-card);
    border: 1px solid var(--cwm-border);
    padding: 48px;
    border-radius: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.5s ease;
    min-height: 320px;
}

.cwm-service-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
}

.cwm-service-eyebrow {
    color: var(--cwm-gold);
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 9px;
    font-weight: 700;
    display: block;
    margin-bottom: 16px;
    font-style: italic;
}

.cwm-service-card h3 {
    font-size: 36px;
    font-style: italic;
    color: var(--cwm-white);
    margin: 0 0 24px;
}

.cwm-service-card p {
    color: var(--cwm-neutral-500);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 24rem;
    font-weight: 300;
}

.cwm-service-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 700;
    color: var(--cwm-white);
    text-decoration: none;
    transition: color 0.3s ease;
    align-self: flex-start;
}

.cwm-service-link:hover {
    color: var(--cwm-gold);
}

/* ---------- Info bar ---------- */
.cwm-infobar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.cwm-info-item p:first-child {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cwm-neutral-500);
    font-weight: 700;
    margin: 0 0 8px;
}

.cwm-info-item p:last-child {
    font-size: 13px;
    color: var(--cwm-white);
    margin: 0;
}

.cwm-info-item.cwm-info-gold p:last-child {
    color: var(--cwm-gold);
    font-weight: 700;
    letter-spacing: 0.1em;
}

.cwm-info-item.cwm-info-divider {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 48px;
}

/* ---------- Section header (offers) ---------- */
.cwm-section-head {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 96px;
}

.cwm-section-head-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
}

.cwm-section-head-meta {
    display: flex;
    align-items: center;
    gap: 24px;
}

.cwm-section-head-meta .cwm-rule {
    width: 48px;
}

.cwm-section-head-meta p {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--cwm-neutral-500);
    font-weight: 500;
    margin: 0;
}

/* ---------- Offers ---------- */
.cwm-offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
}

.cwm-offer {
    position: relative;
}

.cwm-offer-img {
    aspect-ratio: 4 / 5;
    border-radius: 100px;
    border: 1px solid var(--cwm-border);
    overflow: hidden;
    position: relative;
    margin-bottom: 32px;
    transition: border-color 0.5s ease;
}

.cwm-offer:hover .cwm-offer-img {
    border-color: rgba(212, 175, 55, 0.2);
}

.cwm-offer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    filter: brightness(1.05);
    transition: opacity 1s ease;
}

.cwm-offer:hover .cwm-offer-img img {
    opacity: 1;
}

.cwm-offer-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--cwm-bg), transparent);
    opacity: 0.8;
}

.cwm-offer-img-empty {
    aspect-ratio: 4 / 5;
    border-radius: 100px;
    border: 1px solid var(--cwm-border);
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cwm-bg-card);
}

.cwm-offer-img-empty i {
    font-size: 64px;
    color: rgba(212, 175, 55, 0.3);
}

.cwm-offer-badge {
    position: absolute;
    top: 32px;
    left: 32px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--cwm-gold);
    font-size: 9px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.cwm-offer-body {
    padding: 0 16px;
}

.cwm-offer-code {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cwm-neutral-600);
    margin: 0 0 8px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    cursor: pointer;
}

.cwm-offer-title {
    font-size: 28px;
    font-style: italic;
    color: var(--cwm-white);
    margin: 0 0 24px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.cwm-offer:hover .cwm-offer-title {
    color: var(--cwm-gold);
}

.cwm-offer-meta {
    font-size: 12px;
    color: var(--cwm-neutral-500);
    margin: 0 0 12px;
    font-weight: 300;
}

.cwm-offer-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cwm-offer-link:hover {
    color: var(--cwm-gold);
}

.cwm-offer-link i {
    color: var(--cwm-gold);
}

/* ---------- Events ---------- */
.cwm-events-list {
    display: flex;
    flex-direction: column;
    gap: 160px;
}

.cwm-event {
    display: flex;
    align-items: center;
    gap: 80px;
}

.cwm-event.cwm-event-reverse {
    flex-direction: row-reverse;
}

.cwm-event-img {
    width: 50%;
    aspect-ratio: 16 / 9;
    border-radius: 150px;
    border: 1px solid var(--cwm-border);
    overflow: hidden;
    position: relative;
}

.cwm-event-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    filter: brightness(1.05);
    transition: opacity 1s ease;
}

.cwm-event:hover .cwm-event-img img {
    opacity: 1;
}

.cwm-event-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, rgba(8, 8, 8, 0.6), transparent);
}

.cwm-event-img-empty {
    width: 50%;
    aspect-ratio: 16 / 9;
    border-radius: 150px;
    border: 1px solid var(--cwm-border);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cwm-bg-card);
}

.cwm-event-img-empty i {
    font-size: 72px;
    color: rgba(212, 175, 55, 0.3);
}

.cwm-event-body {
    width: 50%;
}

.cwm-event-date {
    color: var(--cwm-gold);
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 10px;
    font-weight: 700;
    display: block;
    margin-bottom: 24px;
}

.cwm-event-title {
    font-size: clamp(32px, 4vw, 48px);
    font-style: italic;
    color: var(--cwm-white);
    margin: 0 0 32px;
    line-height: 1.1;
}

.cwm-event-desc {
    color: var(--cwm-neutral-400);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 28rem;
    font-weight: 300;
}

.cwm-event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.cwm-event-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cwm-neutral-400);
    border: 1px solid var(--cwm-border);
    padding: 6px 16px;
    border-radius: 9999px;
}

.cwm-event-tag-gold {
    color: var(--cwm-gold);
    border-color: rgba(212, 175, 55, 0.4);
}

/* ---------- Loyalty ---------- */
.cwm-loyalty-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 96px;
    align-items: center;
}

.cwm-loyalty-text p.cwm-loyalty-lead {
    color: var(--cwm-neutral-400);
    font-size: 18px;
    line-height: 1.7;
    margin: 40px 0 48px;
    font-weight: 300;
    max-width: 36rem;
}

.cwm-loyalty-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.cwm-loyalty-point .cwm-loyalty-point-title {
    color: var(--cwm-gold);
    font-size: 24px;
    font-style: italic;
    margin-bottom: 8px;
}

.cwm-loyalty-point p {
    color: var(--cwm-neutral-500);
    font-size: 14px;
    font-weight: 300;
    margin: 0;
}

.cwm-loyalty-actions {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cwm-loyalty-login {
    color: var(--cwm-white);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cwm-loyalty-login:hover {
    color: var(--cwm-gold);
}

.cwm-loyalty-card {
    background: var(--cwm-bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 64px;
    border-radius: 60px;
    border: 1px solid var(--cwm-border);
}

.cwm-loyalty-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.cwm-loyalty-card-head .cwm-loyalty-card-title {
    color: var(--cwm-white);
    font-style: italic;
    font-size: 20px;
}

.cwm-loyalty-card-head .cwm-loyalty-card-goal {
    color: var(--cwm-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.cwm-stamps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.cwm-stamp {
    aspect-ratio: 1 / 1;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

.cwm-stamp.cwm-stamp-filled {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--cwm-gold);
    color: var(--cwm-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.cwm-loyalty-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 24px;
    border: 1px solid var(--cwm-border);
}

.cwm-loyalty-status {
    margin: 24px 0 32px;
    padding: 24px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 24px;
    border: 1px solid var(--cwm-border);
}

.cwm-loyalty-status-title {
    font-size: 22px;
    margin: 0 0 8px;
}

.cwm-loyalty-status-text {
    color: var(--cwm-neutral-300);
    margin: 0 0 12px;
}

.cwm-loyalty-status-amount {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: var(--cwm-neutral-500);
}

.cwm-loyalty-status-amount-gold {
    color: var(--cwm-gold);
}

.cwm-loyalty-card-footer span:first-child {
    color: var(--cwm-neutral-500);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 4px;
}

.cwm-loyalty-card-footer .cwm-loyalty-stat {
    color: var(--cwm-white);
    font-size: 14px;
    font-weight: 500;
}

.cwm-loyalty-card-footer .cwm-loyalty-stat-gold {
    color: var(--cwm-gold);
    font-family: 'Courier New', monospace;
}

.cwm-loyalty-card-divider {
    height: 32px;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

/* ---------- Map / contacts ---------- */
.cwm-contacts-grid {
    display: grid;
    grid-template-columns: 6fr 6fr;
    gap: 80px;
    align-items: center;
}

.cwm-contacts-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-top: 48px;
}

.cwm-contacts-detail p:first-child {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cwm-neutral-600);
    font-weight: 700;
    margin: 0 0 8px;
}

.cwm-contacts-detail p {
    font-size: 14px;
    color: var(--cwm-neutral-400);
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

.cwm-contacts-detail p.cwm-contacts-gold {
    color: var(--cwm-gold);
    margin-top: 4px;
}

.cwm-contacts-detail a {
    color: inherit;
    text-decoration: none;
}

.cwm-map {
    height: 650px;
    border-radius: 180px;
    overflow: hidden;
    border: 1px solid var(--cwm-border);
    filter: grayscale(1) contrast(1.2) brightness(0.7);
    transition: filter 1s ease;
    position: relative;
}

.cwm-map:hover {
    filter: grayscale(0);
}

.cwm-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ---------- Footer ---------- */
.cwm-footer {
    padding: 96px 0;
    border-top: 1px solid var(--cwm-border);
    position: relative;
    z-index: 10;
}

.cwm-footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 64px;
    flex-wrap: wrap;
}

.cwm-footer-brand {
    display: flex;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
}

.cwm-footer-logo {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cwm-footer-logo img {
    height: 40px;
    width: auto;
    opacity: 0.6;
    filter: brightness(1.1);
    transition: opacity 0.3s ease;
}

.cwm-footer-logo img:hover {
    opacity: 1;
}

.cwm-footer-logo p {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--cwm-neutral-600);
    font-weight: 700;
    margin: 0;
}

.cwm-footer-copyright {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 700;
    color: var(--cwm-neutral-500);
}

.cwm-footer-copyright a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cwm-footer-copyright a:hover {
    color: var(--cwm-gold);
}

.cwm-footer-social {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.cwm-footer-social a {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 700;
    color: var(--cwm-neutral-500);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cwm-footer-social a:hover {
    color: var(--cwm-gold);
}

/* ---------- Entrance animations ---------- */
.cwm-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.cwm-reveal.cwm-reveal-left {
    transform: translateX(-30px);
}

.cwm-reveal.cwm-reveal-right {
    transform: translateX(30px);
}

.cwm-reveal.cwm-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .cwm-hero-grid {
        grid-template-columns: 1fr;
    }

    .cwm-hero-visual {
        display: none;
    }

    .cwm-services-grid,
    .cwm-loyalty-grid,
    .cwm-contacts-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .cwm-offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .cwm-event,
    .cwm-event.cwm-event-reverse {
        flex-direction: column;
        gap: 40px;
    }

    .cwm-event-img,
    .cwm-event-img-empty,
    .cwm-event-body {
        width: 100%;
    }

    .cwm-map {
        height: 420px;
        border-radius: 80px;
    }

    .cwm-loyalty-card {
        border-radius: 40px;
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .cwm-nav-links {
        display: none;
    }

    .cwm-nav-burger {
        display: block;
    }

    .cwm-nav-right {
        gap: 14px;
    }

    .cwm-nav-lang,
    .cwm-nav-lang .login-info {
        font-size: 12px;
        letter-spacing: 0.1em;
    }

    .cwm-section-pad {
        padding: 96px 0;
    }

    .cwm-section-head-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .cwm-infobar {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cwm-info-item.cwm-info-divider {
        border: none;
        padding: 0;
    }

    .cwm-offers-grid {
        grid-template-columns: 1fr;
    }

    .cwm-loyalty-points {
        grid-template-columns: 1fr;
    }

    .cwm-events-list {
        gap: 96px;
    }

    .cwm-service-card {
        border-radius: 40px;
        padding: 32px;
    }

    .cwm-offer-img,
    .cwm-offer-img-empty {
        border-radius: 60px;
    }

    .cwm-event-img,
    .cwm-event-img-empty {
        border-radius: 60px;
    }
}
