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