/*
 Theme Name:   Mayfair Grand
 Author:       Cleartwo
 Version:      1.0.0
*/

/* ================================================================
   CONTENTS:
   00. CSS Variables
   01. Reset & Base
   02. Global Buttons
   03. Header
   04. Hero Section
   [05–14 added per section as built]

   Breakpoints:
     Desktop  ≥ 1025px  (Figma: 1920px canvas, 1vw = 19.2px)
     Tablet    768–1024px
     Mobile   ≤  767px  (Figma: 440px canvas,  1vw = 4.4px)
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Slabo+27px&display=swap');
/* ================================================================
   00. CSS VARIABLES
================================================================ */
:root {
    --mg-gold-dark:      #8E6B0A;
    --mg-gold-mid:       #B59D5A;
    --mg-gold-bright:    #CC9A0E;
    --mg-gold-light:     #E5C876;
    --mg-cream-bg:       #EDEBE5;
    --mg-cream-light:    #F4F2ED;
    --mg-stone:          #D9CFC2;
    --mg-dark-text:      #3D3D3D;
    --mg-brown-heading:  #3F2D00;
    --mg-black:          #000000;
    --mg-white:          #FFFFFF;
    --mg-footer-bg:      #2A2A2A;

    --mg-font-heading:   'Crimson Pro', serif;
    --mg-font-body:      'Albert Sans', sans-serif;
    --mg-font-script:    'Italianno', cursive;

    --mg-transition:     300ms ease-in-out;
    --mg-content-max:    1920px;
}


/* ================================================================
   01. RESET & BASE
================================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--mg-font-body);
    font-weight: 300;
    color: var(--mg-dark-text);
    background-color: var(--mg-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { font-family: inherit; }

main, .site-content { padding-top: 0; }
.wpb_raw_code { margin-bottom: 0 !important; }

/* Fix WPBakery negative margins causing horizontal overflow */
.vc_column_container > .vc_column-inner {
    padding-left:  0 !important;
    padding-right: 0 !important;
}
.vc_row {
    margin-left:  0 !important;
    margin-right: 0 !important;
}


/* ================================================================
   02. GLOBAL BUTTONS
   Dark:  Book Now, Enquire       — border #3D3D3D, hover fill #3D3D3D text #E5C876
   Gold:  Learn More, Send Msg    — border #8E6B0A, hover fill #B59D5A text #F4F2ED
   Cream: Subscribe               — border #F4F2ED, hover fill #F4F2ED text #3D3D3D
================================================================ */
.mg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--mg-font-heading);
    font-weight: 500;
    font-size: clamp(15px, 1.25vw, 24px);
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 5px;
    background-color: transparent;
    transition: background-color var(--mg-transition), color var(--mg-transition), border-color var(--mg-transition);
}

.mg-btn--dark { border: 1.5px solid var(--mg-dark-text); color: var(--mg-dark-text); }
.mg-btn--dark:hover, .mg-btn--dark:focus-visible {
    background-color: var(--mg-dark-text); color: var(--mg-gold-light); outline: none;
}

.mg-btn--gold { border: 1.5px solid var(--mg-gold-dark); color: var(--mg-gold-dark); border-radius: 5px; }
.mg-btn--gold:hover, .mg-btn--gold:focus-visible {
    background-color: var(--mg-gold-mid); border-color: var(--mg-gold-mid); color: var(--mg-cream-light); outline: none;
}

.mg-btn--cream { border: 1.5px solid var(--mg-cream-light); color: var(--mg-cream-light); border-radius: 4px; }
.mg-btn--cream:hover, .mg-btn--cream:focus-visible {
    background-color: var(--mg-cream-light); color: var(--mg-dark-text); outline: none;
}

/* Figma button sizes — desktop px → vw (÷19.2) */
.mg-btn--w200 { width: clamp(140px, 10.417vw, 200px); height: clamp(44px, 3.385vw, 65px); }
.mg-btn--w240 { width: clamp(165px, 12.5vw,   240px); height: clamp(44px, 3.385vw, 65px); }
.mg-btn--w250 { width: clamp(170px, 13.021vw, 250px); height: clamp(44px, 3.385vw, 65px); }
.mg-btn--w300 { width: clamp(200px, 15.625vw, 300px); height: clamp(44px, 3.385vw, 65px); }


/* ================================================================
   03. HEADER
   Figma Desktop (1920px):
     Height: 174px | Logo: x:54 y:16 w:329 h:142
     Nav y:76, Crimson Pro Medium 21px uppercase #3D3D3D
     Gap logo→nav: 78px (4.063vw) | Gap item→item: 100px (5.208vw)
     Book Now: x:1620 y:55 w:200 h:65 border:1.5px #3D3D3D r:5px
     Chevron: 7×14px solid fill, angle:-90deg (points ↓ default)
   Figma Mobile (440px):
     Logo: x:22 y:19 w:167 h:91 | Hamburger: x:378 y:53 w:36 h:23
================================================================ */
.mg-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 9000;
    background-color: var(--mg-cream-bg);
    transition: box-shadow var(--mg-transition);
}

.mg-header--stuck {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.mg-header__inner {
    display: flex;
    align-items: center;
    height: clamp(100px, 9.063vw, 174px);     /* 174÷19.2 = 9.063vw */
    max-width: 1920px;
    margin: 0 auto;
    padding-left:  clamp(20px, 2.813vw, 54px);
    padding-right: clamp(20px, 2.813vw, 54px);
    transition: height var(--mg-transition);
}

.mg-header--stuck .mg-header__inner {
    height: clamp(60px, 4.167vw, 80px);
}

.mg-header__logo-link { display: block; flex-shrink: 0; line-height: 0; }

.mg-header__logo {
    width:      clamp(160px, 17.135vw, 329px);  /* 329÷19.2 = 17.135vw */
    height:     auto;
    max-height: clamp(70px, 7.396vw, 142px);    /* 142÷19.2 = 7.396vw */
    object-fit: contain;
    object-position: left center;
    transition: width var(--mg-transition), max-height var(--mg-transition);
}

.mg-header--stuck .mg-header__logo {
    width: clamp(110px, 8.333vw, 160px);
    max-height: clamp(48px, 3.646vw, 70px);
}

/* Nav — starts exactly 78px (4.063vw) right of logo edge */
.mg-header__nav {
    margin-left: clamp(20px, 4.063vw, 78px);
    flex-shrink: 0;
}

.mg-nav__list {
    display: flex;
    align-items: center;
    gap: clamp(20px, 5.208vw, 100px);           /* 100÷19.2 = 5.208vw */
    list-style: none; margin: 0; padding: 0;
}

.mg-nav__item { position: relative; }

.mg-nav__link {
    display: inline-flex;
    align-items: center;
    gap: clamp(4px, 0.365vw, 7px);
    font-family: var(--mg-font-heading);
    font-weight: 500;
    font-size: clamp(13px, 1.094vw, 21px);      /* 21÷19.2 = 1.094vw */
    line-height: 1.198;
    text-transform: uppercase;
    color: var(--mg-dark-text);
    text-decoration: none;
    background: none; border: none; cursor: pointer; padding: 0;
    white-space: nowrap; position: relative;
    transition: color var(--mg-transition);
}

.mg-nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1.5px;
    background-color: var(--mg-gold-dark);
    transition: width var(--mg-transition);
}

.mg-nav__link:hover,
.mg-nav__link:focus-visible,
.mg-nav__item--active > .mg-nav__link { color: var(--mg-gold-dark); outline: none; }

.mg-nav__link:hover::after,
.mg-nav__link:focus-visible::after,
.mg-nav__item--active > .mg-nav__link::after { width: 100%; }

/* Chevron: 7×14px solid filled > shape, default points ↓, open points → */
.mg-nav__chevron {
    width:  clamp(5px, 0.365vw, 7px);
    height: clamp(9px, 0.729vw, 14px);
    flex-shrink: 0;
    color: var(--mg-dark-text);
    transform: rotate(90deg);
    transition: transform var(--mg-transition), color var(--mg-transition);
}

.mg-nav__item--open .mg-nav__chevron,
.mg-nav__link--dropdown[aria-expanded="true"] .mg-nav__chevron {
    transform: rotate(0deg);
    color: var(--mg-gold-dark);
}

/* Dropdown panel */
.mg-nav__dropdown {
    position: absolute;
    top: calc(100% + clamp(6px, 0.625vw, 12px));
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: clamp(180px, 13.021vw, 250px);
    background-color: var(--mg-cream-bg);
    border-top: 2px solid var(--mg-gold-dark);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    padding: 8px 0;
    list-style: none; margin: 0;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity 200ms ease-in-out, visibility 200ms ease-in-out, transform 200ms ease-in-out;
}

.mg-nav__item--open .mg-nav__dropdown,
.mg-nav__link--dropdown[aria-expanded="true"] + .mg-nav__dropdown {
    opacity: 1; visibility: visible; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mg-nav__dropdown-link {
    display: block;
    padding: clamp(8px, 0.573vw, 11px) clamp(16px, 1.25vw, 24px);
    font-family: var(--mg-font-heading);
    font-weight: 400;
    font-size: clamp(13px, 0.938vw, 18px);
    text-transform: uppercase;
    color: var(--mg-dark-text);
    white-space: nowrap;
    transition: color var(--mg-transition), background-color var(--mg-transition);
}

.mg-nav__dropdown-link:hover,
.mg-nav__dropdown-link:focus-visible {
    color: var(--mg-gold-dark);
    background-color: rgba(142, 107, 10, 0.06);
    outline: none;
}

/* Book Now: x:1620 y:55 w:200 h:65 */
.mg-header__cta {
    flex-shrink: 0;
    margin-left: auto;
    width:     clamp(130px, 10.417vw, 200px);     /* 200÷19.2 = 10.417vw */
    height:    clamp(44px, 3.385vw, 65px);        /* 65÷19.2 = 3.385vw */
    font-size: clamp(14px, 1.25vw, 24px);         /* 24÷19.2 = 1.25vw */
}

.mg-header--stuck .mg-header__cta {
    height:    clamp(38px, 2.604vw, 50px);
    font-size: clamp(12px, 0.938vw, 18px);
}

/* Hamburger — hidden desktop, shown mobile */
.mg-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 36px; height: 23px;
    padding: 0; background: none; border: none; cursor: pointer;
    flex-shrink: 0; margin-left: auto;
}

.mg-hamburger__bar {
    display: block; width: 100%; height: 3px;
    background-color: var(--mg-dark-text);
    border-radius: 2px;
    transition: transform var(--mg-transition), opacity var(--mg-transition), background-color var(--mg-transition);
}

.mg-hamburger[aria-expanded="true"] .mg-hamburger__bar:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.mg-hamburger[aria-expanded="true"] .mg-hamburger__bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mg-hamburger[aria-expanded="true"] .mg-hamburger__bar:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

/* Mobile menu overlay */
.mg-mobile-menu {
    position: fixed; inset: 0; z-index: 9050;
    background-color: var(--mg-cream-bg);
    display: flex; flex-direction: column;
    padding: 24px 25px 40px;
    overflow-y: auto;
    opacity: 0; visibility: hidden; transform: translateX(100%);
    transition: opacity var(--mg-transition), visibility var(--mg-transition), transform var(--mg-transition);
}

.mg-mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateX(0); }

.mg-mobile-menu__header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 32px;
}

.mg-mobile-menu__logo { width: 167px; height: auto; max-height: 91px; object-fit: contain; }

.mg-mobile-menu__close {
    position: relative; width: 36px; height: 36px;
    background: none; border: none; cursor: pointer; padding: 0; flex-shrink: 0;
}

.mg-mobile-menu__close span {
    display: block; position: absolute; top: 50%; left: 0;
    width: 100%; height: 3px;
    background-color: var(--mg-dark-text); border-radius: 2px;
}

.mg-mobile-menu__close span:first-child { transform: translateY(-50%) rotate(45deg); }
.mg-mobile-menu__close span:last-child  { transform: translateY(-50%) rotate(-45deg); }

.mg-mobile-backdrop {
    position: fixed; inset: 0; z-index: 9040;
    background-color: rgba(0, 0, 0, 0.45);
    opacity: 0; visibility: hidden;
    transition: opacity var(--mg-transition), visibility var(--mg-transition);
}

.mg-mobile-backdrop.is-open { opacity: 1; visibility: visible; }

.mg-mobile-menu__nav { width: 100%; }

.mg-mobile-nav__list { list-style: none; margin: 0; padding: 0; width: 100%; }

.mg-mobile-nav__item { border-bottom: 1px solid rgba(142, 107, 10, 0.18); }

.mg-mobile-nav__link {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; padding: 18px 0;
    font-family: var(--mg-font-heading); font-weight: 500; font-size: 20px;
    text-transform: uppercase; color: var(--mg-dark-text);
    text-decoration: none; background: none; border: none; cursor: pointer; text-align: left;
    transition: color var(--mg-transition);
}

.mg-mobile-nav__link:hover, .mg-mobile-nav__link:focus-visible { color: var(--mg-gold-dark); outline: none; }

.mg-mobile-nav__chevron {
    width: 7px; height: 14px; flex-shrink: 0;
    color: var(--mg-dark-text);
    transform: rotate(90deg);
    transition: transform var(--mg-transition), color var(--mg-transition);
}

.mg-mobile-nav__link--accordion[aria-expanded="true"] .mg-mobile-nav__chevron {
    transform: rotate(0deg); color: var(--mg-gold-dark);
}

.mg-mobile-nav__sub {
    list-style: none; margin: 0; padding-left: 16px;
    max-height: 0; overflow: hidden;
    transition: max-height 300ms ease-in-out;
}

.mg-mobile-nav__sub.is-open { max-height: 500px; }

.mg-mobile-nav__sub-link {
    display: block; padding: 12px 0;
    font-family: var(--mg-font-heading); font-weight: 400; font-size: 18px;
    text-transform: uppercase; color: var(--mg-dark-text);
    text-decoration: none; transition: color var(--mg-transition);
}

.mg-mobile-nav__sub-link:hover { color: var(--mg-gold-dark); }

.mg-mobile-menu__cta { margin-top: 32px; width: 200px; height: 52px; font-size: 18px; }


/* ================================================================
   03. HEADER — TABLET (768–1024px)
================================================================ */
@media (min-width: 768px) and (max-width: 1024px) {
    .mg-header__inner {
        height: clamp(90px, 11.719vw, 120px);
        padding-left:  clamp(16px, 2.93vw, 30px);
        padding-right: clamp(16px, 2.93vw, 30px);
    }
    .mg-header--stuck .mg-header__inner { height: 70px; }
    .mg-header__logo { width: clamp(140px, 19.531vw, 200px); max-height: clamp(60px, 8.398vw, 86px); }
    .mg-header__nav  { margin-left: clamp(12px, 2.344vw, 24px); }
    .mg-nav__list    { gap: clamp(12px, 2.93vw, 30px); }
    .mg-nav__link    { font-size: clamp(11px, 1.367vw, 14px); }
    .mg-nav__dropdown-link { font-size: 13px; padding: 9px 14px; }
    .mg-header__cta  { width: clamp(100px, 12.695vw, 130px); height: clamp(36px, 4.395vw, 45px); font-size: clamp(11px, 1.367vw, 14px); }
}


/* ================================================================
   03. HEADER — MOBILE (≤767px)
   Figma: Logo x:22 y:19 w:167 h:91 | Hamburger x:378 y:53 w:36 h:23
================================================================ */
@media (max-width: 767px) {
    .mg-header__nav { display: none; }
    .mg-header__cta { display: none; }
    .mg-hamburger   { display: flex; }

    .mg-header__inner {
        height: 130px;
        padding-left:  22px;
        padding-right: 25px;
    }
    .mg-header--stuck .mg-header__inner { height: 70px; }

    /* Figma: logo masked to 167×91px, source image 221×95px
       left:-6px means image bleeds 6px left of mask = use object-position */
    .mg-header__logo {
        width: 167px;
        height: auto;
        object-fit: unset;
        object-position: unset;
    }
    .mg-header--stuck .mg-header__logo { width: 120px; height: auto; max-height: 65px; }

    .mg-btn--w200, .mg-btn--w240, .mg-btn--w250 { width: 230px; height: 60px; font-size: 18px; }
    .mg-btn--w300 { width: 235px; height: 60px; font-size: 18px; }
}


/* ================================================================
   04. HERO SECTION
   Figma Desktop: Video x:100 y:167 w:1720 h:870 border-radius:35px
   Figma Mobile:  Video x:25  y:138 w:390  h:650 border-radius:20px

   Key insight: Figma uses a static layout so y:167 is from page top.
   In our fixed-header layout:
     Desktop header height = 174px (clamp max)
     Video needs to sit at y:167 visually = just under the header
     So video-wrap padding-top = header height (174px) = 9.063vw
     This gives the 35px radius full visibility below the header.
   Mobile: header = 130px fixed, video y:138 from page top
     padding-top = 130px (header) + 8px gap = 138px
================================================================ */
.mg-hero {
    background-color: var(--mg-cream-bg);
    padding-top: 0;
}

/* Desktop: padding-top = header height so video sits right below */
.mg-hero__video-wrap {
    padding-top:   clamp(120px, 9.063vw, 174px); /* = header height 174÷19.2 = 9.063vw */
    padding-left:  clamp(20px, 5.208vw, 100px);  /* 100÷19.2 = 5.208vw */
    padding-right: clamp(20px, 5.208vw, 100px);
}

/* Video: w:1720 h:870 border-radius:35px */
.mg-hero__video {
    display: block;
    width: 100%;
    height: clamp(300px, 45.313vw, 870px);        /* 870÷19.2 = 45.313vw */
    object-fit: cover;
    border-radius: clamp(18px, 1.823vw, 35px);    /* 35÷19.2 = 1.823vw */
}


/* ================================================================
   04. HERO — TABLET (768–1024px)
================================================================ */
@media (min-width: 768px) and (max-width: 1024px) {
    .mg-hero__video-wrap {
        padding-top: clamp(100px, 11.719vw, 120px); /* = tablet header height */
    }
    .mg-hero__video {
        height: clamp(260px, 39.063vw, 400px);
    }
}


/* ================================================================
   04. HERO — MOBILE (≤767px)
   Header = 130px fixed. Video y:138 from page top.
   padding-top = 130px (header) + 8px = 138px exact.
================================================================ */
@media (max-width: 767px) {
    .mg-hero__video-wrap {
        padding-top:   138px;  /* Figma: video top:138px from page top */
        padding-left:  25px;   /* Figma: video left:25px */
        padding-right: 25px;
    }
    .mg-hero__video {
        height: clamp(400px, 147.727vw, 650px);    /* 650÷4.4 = 147.727vw */
        border-radius: 20px;
    }
}

/* ================================================================
   05. ABOUT SECTION — "A Venue Made for Love"
   Desktop (1920px ÷19.2) | Mobile (440px ÷4.4)
================================================================ */


.mg-about {
    background-color: var(--mg-cream-bg);
    padding-bottom: 0;                             /* tagline-wrap handles bottom space */
}

.mg-about__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top:   clamp(71px, 2.208vw, 100px);   /* 100÷19.2 = 5.208vw */
    padding-left:  clamp(20px, 10.469vw, 201px);
    padding-right: clamp(20px, 10.417vw, 200px);
    max-width: 1920px;
    margin: 0 auto;
}

/* Row containing frames + text — sits below heading block */
.mg-about__columns {
    display: flex;
    align-items: flex-start;
    width: 100%;
    margin-top: clamp(10px, 1.667vw, 32px);       /* 32÷19.2 = 1.667vw gap H1→frames */
}

/* Heading block — centred above the three columns */
.mg-about__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: clamp(500px, 45.677vw, 877px);      /* H1 w:877px */
    margin-bottom: 0;
}

/* Frame container — photo + overlay stacked */
.mg-about__frame {
    flex-shrink: 0;
    width:    clamp(160px, 20.677vw, 397px);       /* 397÷19.2 = 20.677vw */
    height:   clamp(220px, 26.406vw, 507px);       /* 507÷19.2 = 26.406vw */
    position: relative;
    margin-top: clamp(16px, 1.667vw, 32px);        /* 32÷19.2 = 1.667vw — aligns frame top with body start */
}

/* Photo — pill shape, offset 6.3% right matching Figma */
.mg-about__frame-photo {
    position: absolute;
    left: 6.3%;
    top: 0;
    width: 88.2%;
    height: 99.2%;
    border-radius: 999px;
    overflow: hidden;
    z-index: 1;
}
/* Left frame photo — zoom out slightly + nudge right */

.mg-about__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transform: scale(1.15) translateY(-8%);
    transform-origin: center top;
}

/* Right frame photo — zoom out slightly + nudge right */
.mg-about__frame--right .mg-about__photo {
    transform: scale(1.01) translateX(0%);         /* scale(1.05) = zoomed out vs left frame */
    transform-origin: center center;
}

/* Frame PNG on top of photo */
.mg-about__frame-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    pointer-events: none;
}

.mg-about__frame--right { margin-left: auto; }

/* Text column */
.mg-about__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 clamp(16px, 2.083vw, 40px);
    padding-top: clamp(40px, 4.208vw, 100px);     /* push text down to align with frame photo start */
}

/* Eyebrow — Albert Sans Medium 20px #8E6B0A ls:15%
   y:1137 from page top, 100px below video */
.mg-about__eyebrow {
    font-family: var(--mg-font-body);
    font-weight: 500;
    font-size: clamp(13px, 1.042vw, 20px);         /* 20÷19.2 = 1.042vw */
    letter-spacing: 0.15em;
    color: var(--mg-gold-dark);
    text-transform: uppercase;
    margin-bottom: clamp(6px, 0.625vw, 12px);      /* 12÷19.2 = 0.625vw */
}

/* H1 — Crimson Pro Light 48px/53lh #3F2D00 uppercase w:877
   Figma line-height: 53px — forces exact 2-line break
   53÷19.2 = 2.76vw */
.mg-about__heading {
    font-family: var(--mg-font-heading);
    font-weight: 300;
    font-size: clamp(26px, 2.5vw, 48px);           /* 48÷19.2 = 2.5vw */
    line-height: clamp(30px, 2.76vw, 53px);        /* 53÷19.2 = 2.76vw — Figma exact */
    color: var(--mg-brown-heading);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 0;
    max-width: clamp(500px, 45.677vw, 877px);
}
.mg-about__heading--mobile  { display: none; }
.mg-about__heading--desktop { display: block; }

/* Body — Albert Sans Light 22px/36lh */
.mg-about__body {
    font-family: var(--mg-font-body);
    font-weight: 300;
    font-size: clamp(15px, 1.146vw, 22px);        /* 22÷19.2 = 1.146vw */
    line-height: clamp(26px, 1.875vw, 36px);      /* 36÷19.2 = 1.875vw */
    color: var(--mg-dark-text);
    text-align: center;
    width: clamp(340px, 35vw, 672px);             /* hard width forces Figma-exact wrapping */
    margin-bottom: clamp(10px, 0.938vw, 18px);
}

/* Learn More — w:240 h:65 gold outline */
/* Button y:1771, Body2 bottom y:1541+180=1721 → gap=50px → 50÷19.2=2.604vw
   Figma exact gap confirmed — was too large due to extra body margin */
.mg-about__btn {
    margin-top: clamp(12px, 1.563vw, 30px);       /* reduced to move button up */
    width:  clamp(165px, 12.5vw, 240px);          /* 240÷19.2 = 12.5vw */
    height: clamp(44px, 3.385vw, 65px);           /* 65÷19.2 = 3.385vw */
    font-size: clamp(14px, 1.25vw, 24px);
}

/* Tagline + dividers */
.mg-about__tagline-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;                                        /* no gap — lines grow to fill */
    padding-top:    clamp(30px, 3.604vw, 60px);
    padding-bottom: clamp(32px, 2.604vw, 50px);
    padding-left:  0;
    padding-right: 0;
    width: 100%;
    overflow: hidden;
}

/* Lines grow from screen edges toward text.
   PNG has thick/decorative end on LEFT, thin end on RIGHT.
   Left line:  thick end at left wall → thin end meets text (normal direction)
   Right line: thick end at right wall → thin end meets text (flip horizontally)
   Both lines sit on the same vertical centre as the text — no overlap.  */
.mg-about__divider {
    display: block;
    flex: 1;                                       /* stretches to fill remaining space */
    height: clamp(16px, 1.563vw, 30px);
    border: none;
    align-self: center;
}
/* Left line PNG — thick/decorative end toward left wall, thin end toward text */
.mg-about__divider:first-child {
    background: url('https://mayfairgrand.c2devm.uk/wp-content/uploads/2026/09/Vector-1-line-left.png') left center / 100% auto no-repeat;
}

/* Right line PNG — thick/decorative end toward right wall, thin end toward text */
.mg-about__divider:last-child {
    background: url('https://mayfairgrand.c2devm.uk/wp-content/uploads/2026/09/Vector-1-line-right.png') right center / 100% auto no-repeat;
    transform: none;                               /* no flip needed — separate PNG */
}

/* Italianno 45px #8E6B0A opacity:0.88 */
/* Figma: Italianno Regular 45px line-height:100% (= 45px) ls:0% centered
   45÷19.2 = 2.344vw */
.mg-about__tagline {
    font-family: var(--mg-font-script);
    font-weight: 400;
    font-size: clamp(22px, 2.344vw, 45px);        /* 45÷19.2 = 2.344vw */
    line-height: 1;                                /* Figma: 100% = 1 */
    letter-spacing: 0;
    color: var(--mg-gold-dark);
    text-align: center;
    opacity: 0.88;
    white-space: nowrap;
    flex: 0 1 auto;
    padding: 0 clamp(12px, 1.563vw, 30px);        /* breathing room from lines */
    position: relative;
    z-index: 1;                                    /* text sits above line images */
}

/* --- TABLET --- */
@media (min-width: 768px) and (max-width: 1024px) {
    .mg-about__inner { padding-left: clamp(16px, 5vw, 60px); padding-right: clamp(16px, 5vw, 60px); }
    .mg-about__frame { width: clamp(130px, 17.578vw, 180px); height: clamp(180px, 24.414vw, 250px); }
    .mg-about__tagline { font-size: clamp(18px, 2.344vw, 28px); white-space: normal; }
    .mg-about__divider { flex: 0 0 clamp(30px, 7.813vw, 80px); }
}

/* ================================================================
   05. ABOUT — MOBILE (≤767px)
   Figma mobile (440px canvas ÷4.4):

================================================================ */
@media (max-width: 767px) {

    .mg-about__inner {
        flex-direction: column;
        align-items: center;
        padding-top:   clamp(20px, 11.364vw, 50px); /* gap from video bottom */
        padding-left:  25px;
        padding-right: 25px;
        padding-bottom: 0;
    }

    /* Header block — eyebrow + H1 — stays on top, order:1 */
    .mg-about__header {
        order: 1;
        width: 100%;
        max-width: 100%;
        text-align: center;
        margin-bottom: 0;                           /* frame provides the 35px gap */
    }

    /* Eyebrow: 14px ls:10% centered */
    .mg-about__eyebrow {
        font-size: 14px;
        letter-spacing: 0.10em;
        margin-bottom: 10px;                        /* 865-838-17 = 10px gap to H1 */
    }

    /* H1: 32px/36lh uppercase w:390 */
    .mg-about__heading {
        font-size: clamp(26px, 7.273vw, 32px);     /* 32÷4.4 = 7.273vw */
        line-height: 36px;
        max-width: 100%;
    }
    .mg-about__heading--desktop { display: none; }
    .mg-about__heading--mobile  { display: block; }

    /* Columns block — becomes vertical stack, order:2 */
    .mg-about__columns {
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 0;
        order: 2;
    }

    /* Hide right frame — mobile shows one frame only */
    .mg-about__frame--right { display: none; }

    /* Left frame — order:1 inside columns, 35px below H1
       Figma: w:369 h:472
       369÷4.4 = 83.864vw | 472÷4.4 = 107.273vw */
    .mg-about__frame--left {
        order: 1;
        width:       clamp(260px, 83.864vw, 369px);
        height:      clamp(320px, 107.273vw, 472px);
        margin-top:  35px;                          /* Figma exact: 35px gap from H1 */
        margin-left: auto;
        margin-right: auto;
        flex-shrink: 0;
    }

    /* Text column — order:2 inside columns, 35px below frame */
    .mg-about__text {
        order: 2;
        padding:    0;
        padding-top: 35px;                          /* Figma exact: 35px gap from frame bottom */
        max-width:  100%;
        width:      100%;
    }

    /* Body: 18px/35lh centered */
    .mg-about__body {
        font-size:   18px;
        line-height: 35px;
        width:       100%;
        max-width:   100%;
        margin-bottom: 0;
    }

    /* Second body paragraph gap */
    .mg-about__body + .mg-about__body {
        margin-top: clamp(16px, 5.455vw, 24px);
    }

    /* Button: w:230 h:60 20px — 30px below body */
    .mg-about__btn {
        order: 3;
        width:      230px;
        height:     60px;
        font-size:  20px;
        margin-top: 30px;                           /* Figma: 30px gap from body */
    }

    /* Tagline — 43px below button, no divider lines */
    .mg-about__tagline-wrap {
        padding-top:    43px;                       /* Figma: button bottom y:2125 → tagline y:2168 = 43px */
        padding-left:   25px;
        padding-right:  25px;
        padding-bottom: clamp(30px, 9.091vw, 40px);
    }

    .mg-about__tagline {
        font-size:   clamp(28px, 8.182vw, 36px);   /* 36÷4.4 = 8.182vw */
        line-height: 40px;
        white-space: normal;
        padding:     0;
    }

    /* Hide divider lines on mobile — Figma confirmed no lines */
    .mg-about__divider { display: none; }
}

/* ================================================================
   06. FEATURES BAR
   Figma: 1920×151px bg:#2A2A2A
   4 PNG icons — each 188px tall natural height
   At h:94px displayed: widths = 328 / 295 / 249 / 330px
   space-between distributes items across full width automatically
================================================================ */

.mg-features.vc_section {
    padding-left:  0 !important;
    padding-right: 0 !important;
    padding-top:   0 !important;
    padding-bottom: 0 !important;
    margin-left:   0 !important;
    margin-right:  0 !important;
}

.vc_section.vc_section-has-fill.mg-features {
    padding-top: 0 !important;
}

.mg-features > .vc_row {
    display:         flex !important;
    align-items:     center !important;
    justify-content: space-between !important;
    height:          clamp(100px, 7.865vw, 151px) !important;
    padding-top:     0 !important;
    padding-bottom:  0 !important;
    margin-left:     0 !important;
    margin-right:    0 !important;
    box-sizing:      border-box !important;
    width:           100% !important;
    max-width:       100% !important;
}

.mg-features .mg-features__item,
.mg-features .mg-features__item.vc_col-sm-3 {
    float:   none !important;
    width:   auto !important;
    flex:    0 0 auto !important;
    padding: 0 !important;
}

.mg-features .mg-features__item .vc_column-inner { padding: 0 !important; }

.mg-features .mg-features__item .wpb_single_image,
.mg-features .mg-features__item figure,
.mg-features .mg-features__item .vc_single_image-wrapper,
.mg-features .mg-features__item .vc_figure {
    margin:  0 !important;
    padding: 0 !important;
    border:  none !important;
    display: block !important;
}

.mg-features .vc_box_border_grey {
    border:     none !important;
    box-shadow: none !important;
}

.mg-features .vc_row-full-width.vc_clearfix {
    display: none !important;
}

/* Image height forces correct display size
   width:auto gives exact natural aspect ratio */
.mg-features .vc_single_image-img,
.mg-features .mg-features__item img {
    height:     clamp(50px, 4.896vw, 94px) !important;
    width:      auto !important;
    max-width:  none !important;
    display:    block !important;
}


/* --- TABLET --- */
@media (min-width: 768px) and (max-width: 1024px) {
    .mg-features > .vc_row {
        height: auto !important;
        padding: 16px 20px !important;
    }
    .mg-features .vc_single_image-img,
    .mg-features .mg-features__item img {
        height: clamp(44px, 6.836vw, 70px) !important;
    }
}


/* --- MOBILE --- */
@media (max-width: 767px) {
    /* Clip the marquee */
    .mg-features { overflow: hidden !important; }

    /* Animate the row as a marquee */
    .mg-features > .vc_row {
        justify-content: flex-start !important;
        gap:             clamp(30px, 11.364vw, 50px) !important;
        overflow:        visible !important;
        flex-wrap:       nowrap !important;
        height:          auto !important;
        padding:         20px 0 !important;
        scrollbar-width: none;
    }
}


/* ================================================================
   07. VIRTUAL TOUR / GALLERY SECTION
================================================================ */

.mg-tour { background-color: var(--mg-white); }

/* --- HEADING --- */
.mg-tour__header {
    text-align:     center;
    padding-top:    clamp(40px, 4.208vw, 81px);
    padding-bottom: clamp(20px, 2.604vw, 50px);
}

.mg-tour__eyebrow {
    font-family:    var(--mg-font-body);
    font-weight:    500;
    font-size:      clamp(13px, 1.042vw, 20px);
    letter-spacing: 0.15em;
    color:          var(--mg-gold-dark);
    text-transform: uppercase;
    margin-bottom:  clamp(6px, 0.625vw, 12px);
    margin-top:     0;
}

.mg-tour__heading {
    font-family:    var(--mg-font-heading);
    font-weight:    300;
    font-size:      clamp(28px, 2.5vw, 48px);
    line-height:    clamp(32px, 2.76vw, 53px);
    color:          var(--mg-brown-heading);
    text-transform: uppercase;
    margin:         0;
}

/* --- MAIN IMAGE --- */
.mg-tour__main-wrap {
    padding-left:  clamp(20px, 10.104vw, 194px);
    padding-right: clamp(20px, 10.417vw, 200px);
    position:      relative;
    overflow:      hidden;
}
.mg-tour__main-wrap,
.mg-tour__swiper-main,
.mg-tour__swiper-main .swiper-wrapper {
    will-change: transform;
}

.mg-tour {
    overflow-x: hidden;
    max-width:  100%;
}

.mg-tour__swiper-main {
    width:         100% !important;
    max-width:     100%;
    border-radius: clamp(12px, 1.823vw, 35px) clamp(12px, 1.823vw, 35px) 0 0;
    overflow:      hidden;
}

.mg-tour__swiper-main .swiper-slide {
    width: 100% !important;
}

.mg-tour__swiper-main .swiper-slide img {
    width:      100%;
    height:     clamp(300px, 52.083vw, 1000px);
    object-fit: cover;
    display:    block;
}

.mg-tour__play {
    position:        absolute;
    top:             50%;
    left:            50%;
    transform:       translate(-50%, -50%);
    z-index:         10;
    width:           clamp(80px, 10.729vw, 206px);
    height:          clamp(80px, 10.729vw, 206px);
    border-radius:   50%;
    background:      rgba(255, 255, 255, 0.19);
    border:          4px solid var(--mg-dark-text);
    display:         flex;
    align-items:     center;
    justify-content: center;
    cursor:          pointer;
    transition:      background var(--mg-transition), opacity var(--mg-transition);
}

.mg-tour__play:hover { background: rgba(255, 255, 255, 0.35); }

.mg-tour__play svg {
    width:       clamp(28px, 3.906vw, 75px);
    height:      clamp(36px, 5.104vw, 98px);
    margin-left: 6px;
}

/* Arrow row — desktop: absolute positioned inside strip, full width */
.mg-tour__arrow-row {
    position: absolute;
    top:      50%;
    left:     0;
    right:    0;
    transform: translateY(-50%);
    display:  flex;
    align-items:     center;
    justify-content: space-between;
    padding-left:  clamp(50px, 5.208vw, 100px);
    padding-right: clamp(50px, 5.208vw, 100px);
    pointer-events: none;
    z-index: 2;
}

.mg-tour__arrow {
    pointer-events: all;
}

/* --- THUMBNAIL STRIP --- */
.mg-tour__strip {
    background-color: var(--mg-footer-bg);
    height:           clamp(120px, 12.240vw, 235px);
    display:          flex;
    align-items:      center;
    justify-content:  center;
    overflow:         hidden;
    position:         relative;
}

.mg-tour__arrow {
    position:   static;
    background: none;
    border:     none;
    cursor:     pointer;
    padding:    0;
    transition: opacity var(--mg-transition);
    display:    flex;
    align-items: center;
}
.mg-tour__arrow:hover { opacity: 0.7; }

.mg-tour__arrow img {
    width:   clamp(24px, 2.5vw, 48px);
    height:  clamp(8px, 0.781vw, 15px);
    display: block;
}

/* Thumbs track */
.mg-tour__thumbs-track {
    display:         flex;
    align-items:     center;
    justify-content: center;
    gap:             clamp(8px, 2.240vw, 43px);
    height:          100%;
    padding-top:     clamp(10px, 1.094vw, 21px);
    padding-bottom:  clamp(10px, 1.094vw, 21px);
    box-sizing:      border-box;
}

.mg-tour__thumb-item {
    flex-shrink:   0;
    width:         clamp(70px, 11.250vw, 216px);
    height:        100%;
    cursor:        pointer;
    border-radius: 5px;
    overflow:      hidden;
    border:        3px solid transparent;
    opacity:       0.6;
    transition:    opacity var(--mg-transition), border-color var(--mg-transition);
    box-sizing:    border-box;
}

.mg-tour__thumb-item--active {
    opacity:       1;
    border:        6px solid var(--mg-gold-light);
    border-radius: 5px;
}

.mg-tour__thumb-item img {
    width:      100%;
    height:     100%;
    object-fit: cover;
    display:    block;
    border-radius: 3px;
}

.mg-tour__swiper-thumbs { display: none !important; }


/* --- TABLET 768–1024px --- */
@media (min-width: 768px) and (max-width: 1024px) {
    .mg-tour__main-wrap { padding-left: 30px; padding-right: 30px; }
    .mg-tour__swiper-main .swiper-slide img { height: clamp(260px, 39.063vw, 400px); }
    .mg-tour__strip { height: auto; min-height: 100px; }
    .mg-tour__thumb-item { height: 80px; }
    .mg-tour__arrow-row { padding-left: 20px; padding-right: 20px; }
}


/* --- MOBILE ≤767px ---
   Strip: 440×250px | Thumbs: 165×150px gap:15px scrollable
   Arrows: 48×15px side by side centred, 15px from strip bottom
================================================================ */
@media (max-width: 767px) {

    .mg-tour__header { padding: 10.091vw 5.682vw 6.818vw; }
    .mg-tour__eyebrow { font-size: 14px; letter-spacing: 0.10em; }

    /* 2-line heading: hide <br>, let text wrap at 2 lines naturally */
    .mg-tour__heading {
        font-size:   clamp(24px, 6.5vw, 32px);   /* floor 24px prevents 3-line wrap on small screens */
        line-height: clamp(28px, 8.182vw, 36px);
        padding:     0 25px;
        margin:      0 auto;
        max-width:   100%;
    }
    .mg-tour__heading br { display: none; }

    .mg-tour__main-wrap { padding-left: 25px; padding-right: 25px; }
    .mg-tour__swiper-main { border-radius: 20px 20px 0 0; }
    .mg-tour__swiper-main .swiper-slide img { height: clamp(280px, 125vw, 550px); }

    .mg-tour__play { width: 100px; height: 100px; border-width: 3px; }
    .mg-tour__play svg { width: 28px; height: 36px; margin-left: 4px; }

    /* Strip: column, thumbs top, arrow-row bottom */
    .mg-tour__strip {
        height:          250px;
        flex-direction:  column;
        justify-content: flex-start;
        align-items:     center;
        padding-top:     30px;
        overflow:        hidden;
        position:        relative;
    }

    /* Thumbs: scrollable, 165px wide, 3 visible + partial cut */
    .mg-tour__thumbs-track {
        display:     flex;
        align-items: center;
        gap:         15px;
        width:       100%;
        height:      150px;
        overflow-x:  auto;
        overflow-y:  hidden;
        padding:     0;
        box-sizing:  border-box;
        scrollbar-width: none;
        flex-shrink: 0;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
    }
    .mg-tour__thumbs-track::-webkit-scrollbar { display: none; }

    .mg-tour__thumb-item {
        flex-shrink:   0;
        width:         165px;
        height:        100%;
        border:        2px solid transparent;
        opacity:       0.7;
    }

    .mg-tour__thumb-item--active {
        opacity: 1;
        border:  3px solid var(--mg-gold-light);
    }

    /* Arrow row: visible, centred, absolute at bottom of strip */
    .mg-tour__arrow-row {
        display:         flex !important;
        align-items:     center;
        justify-content: center;
        gap:             5.909vw;
        position:        absolute;
        bottom:          6.364vw !important;
        left:            0;
        right:           0;
    }

    /* Arrow-row: override desktop positioning for mobile */
    .mg-tour__arrow-row {
        top:       auto;
        bottom:    15px;
        transform: none;
        padding:   0;
        justify-content: center;
        gap: 26px;
    }

    .mg-tour__arrow img {
        width:  48px;
        height: 15px;
    }
}


/* ================================================================
   08. HALLS & ROOMS SECTION
   Desktop (1920px ÷19.2):
     Section margin-top: 100px = 5.208vw
     Left panel:  w:948px = 49.375vw h:600px = 31.250vw
                  bg:#EDEBE5 radius: 0 35px 35px 0
     Right panel: w:962px = 50.104vw h:600px
                  gap from left: 10px = 0.521vw
     Images:      w:402px = 20.938vw h:600px radius:35px gap:12px
   Mobile (440px ÷4.4):
     Text panel:  h:510px radius: 0 0 20 20
     Slider:      h:500px images w:402px radius:20px gap:10px
================================================================ */

.mg-halls {
    display:          flex;
    align-items:      stretch;
    gap:              clamp(5px, 0.521vw, 10px);
    padding-top:      clamp(50px, 5.208vw, 100px);
    overflow:         hidden;
    background-color: var(--mg-white);
}

/* --- LEFT TEXT PANEL --- */
.mg-halls__text {
    flex-shrink:    0;
    width:          clamp(320px, 49.375vw, 948px);   /* 948÷19.2 */
    height:         clamp(400px, 31.250vw, 600px);   /* 600÷19.2 — fixed height */
    background:     var(--mg-cream-bg);              /* #EDEBE5 */
    border-radius:  0 clamp(18px, 1.823vw, 35px) clamp(18px, 1.823vw, 35px) 0;
    padding-top:    clamp(40px, 3.958vw, 76px);      /* 76÷19.2 — eyebrow from top */
    padding-left:   clamp(80px, 10.417vw, 200px);    /* 200÷19.2 — all text x from left */
    padding-right:  clamp(20px, 2.083vw, 40px);
    padding-bottom: 0;
    display:        flex;
    flex-direction: column;
    position:       relative;
}

.mg-halls__eyebrow {
    font-family:    var(--mg-font-body);
    font-weight:    500;
    font-size:      clamp(13px, 1.042vw, 20px);      /* 20÷19.2 */
    letter-spacing: 0.15em;
    color:          var(--mg-gold-dark);
    text-transform: uppercase;
    margin:         0;
    line-height:    1;
}

.mg-halls__heading {
    font-family:    var(--mg-font-heading);
    font-weight:    300;
    font-size:      clamp(28px, 2.500vw, 48px);      /* 48÷19.2 */
    line-height:    clamp(32px, 2.760vw, 53px);      /* 53÷19.2 */
    color:          var(--mg-brown-heading);
    text-transform: uppercase;
    max-width:      clamp(300px, 28.958vw, 556px);   /* 556÷19.2 */
    margin-top:     clamp(16px, 1.875vw, 36px);      /* 36÷19.2 — gap eyebrow→H2 */
    margin-bottom:  clamp(16px, 1.823vw, 35px);      /* 35÷19.2 — gap H2→body */
}

.mg-halls__body {
    font-family:    var(--mg-font-body);
    font-weight:    300;
    font-size:      clamp(15px, 1.146vw, 22px);      /* 22÷19.2 */
    line-height:    clamp(26px, 1.875vw, 36px);      /* 36÷19.2 */
    color:          var(--mg-dark-text);
    text-align:     justify;
    max-width:      clamp(300px, 30.729vw, 590px);   /* 590÷19.2 */
    flex:           1;
}

/* Arrow button: w:135 h:82 x:813 from panel left = bottom-right of text panel
   border-radius: 35px 0 0 35px (Figma: top-left + bottom-left rounded) */
.mg-halls__arrow-btn {
    position:        absolute;
    bottom:          0;
    right:           0;
    width:           clamp(80px, 7.031vw, 135px);    /* 135÷19.2 */
    height:          clamp(50px, 4.271vw, 82px);     /* 82÷19.2 */
    background:      var(--mg-stone);                /* #D9CFC2 */
    border:          none;
    border-radius:   clamp(18px, 1.823vw, 35px) 0 clamp(18px, 1.823vw, 35px) 0;
    cursor:          pointer;
    display:         flex;
    align-items:     center;
    justify-content: center;
    transition:      background var(--mg-transition), transform var(--mg-transition);
}

.mg-halls__arrow-btn:hover {
    background:  var(--mg-gold-mid);
    transform:   scale(1.05);
}

.mg-halls__arrow-svg {
    width:   clamp(40px, 3.750vw, 72px);             /* 72÷19.2 */
    height:  clamp(12px, 1.198vw, 23px);             /* 23÷19.2 */
    display: block;
}

/* --- RIGHT IMAGE SLIDER --- */
.mg-halls__swiper {
    flex:        1;
    min-width:   0;
    height:      clamp(400px, 31.250vw, 600px);
    margin-left: clamp(5px, 0.521vw, 10px);
    overflow:    visible;
}

.mg-halls__swiper .swiper-slide {
    width:        clamp(200px, 20.938vw, 402px) !important; /* 402÷19.2 */
    height:       100%;
    border-radius: clamp(18px, 1.823vw, 35px);
    overflow:     hidden;
    flex-shrink:  0;
}

.mg-halls__swiper .swiper-slide img {
    width:      100%;
    height:     100%;
    object-fit: cover;
    display:    block;
}


/* --- TABLET 768–1024px --- */
@media (min-width: 768px) and (max-width: 1024px) {
    .mg-halls__text {
        padding-left: clamp(30px, 5vw, 60px);
    }
    .mg-halls__heading { font-size: clamp(24px, 3.125vw, 32px); }
    .mg-halls__swiper .swiper-slide { width: clamp(180px, 29.297vw, 300px) !important; }
}


/* --- MOBILE ≤767px ---
   Figma (440px ÷4.4):
   Text panel: full width h:510px radius: 0 0 20 20
   Arrow btn:  w:100 h:61 bottom-right x:340
   Slider:     h:500px images w:402px radius:20px gap:10px
================================================================ */
@media (max-width: 767px) {
    .mg-halls {
        flex-direction: column;
        margin-top:     0;
    }

    .mg-halls__text {
        width:          100%;
        min-height:     clamp(400px, 115.909vw, 510px);  /* 510÷4.4 */
        border-radius:  0 0 clamp(14px, 4.545vw, 20px) clamp(14px, 4.545vw, 20px);
        padding-top:    clamp(30px, 8.864vw, 39px);      /* 39÷4.4 */
        padding-left:   25px;
        padding-right:  25px;
        padding-bottom: clamp(50px, 13.864vw, 61px);
        align-items:    center;
        text-align:     center;
    }

    .mg-halls__eyebrow {
        font-size:      14px;
        letter-spacing: 0.10em;     
    }

    .mg-halls__heading {
        font-size:      clamp(26px, 7.273vw, 32px);      /* 32÷4.4 */
        line-height:    clamp(30px, 8.182vw, 36px);      /* 36÷4.4 */
        text-align:     center;
        max-width:      100%;
        margin-bottom:  clamp(20px, 6.818vw, 30px);       
    }

    .mg-halls__body {
        font-size:   clamp(16px, 4.091vw, 18px);         /* 18÷4.4 */
        line-height: clamp(28px, 7.955vw, 35px);         /* 35÷4.4 */
        text-align:  justify;
        max-width:   100%;
    }

    /* Arrow btn: w:100 h:61 bottom-right corner */
    .mg-halls__arrow-btn {
        width:         clamp(80px, 22.727vw, 100px);     /* 100÷4.4 */
        height:        clamp(50px, 13.864vw, 61px);      /* 61÷4.4 */
        border-radius: clamp(20px, 7.955vw, 35px) 0 clamp(12px, 4.545vw, 20px) 0;
    }

    .mg-halls__arrow-svg {
        width:  clamp(36px, 12.273vw, 54px);             /* 54÷4.4 */
        height: clamp(12px, 3.864vw, 17px);              /* 17÷4.4 */
    }

    /* Image slider: full width, h:500px, images w:402px */
    .mg-halls__swiper {
        width:       100%;
        height:      clamp(350px, 113.636vw, 500px);
        margin-left: 0;
        margin-top:  clamp(6px, 2.273vw, 10px);
        overflow:    hidden;
    }

    .mg-halls__swiper .swiper-slide {
        width:         clamp(300px, 91.364vw, 402px) !important;
        height:        clamp(350px, 113.636vw, 500px) !important;
        border-radius: clamp(14px, 4.545vw, 20px);
    }
}

/* ================================================================
   09. PACKAGES SECTION
   Desktop: stacked accordion — inactive slides peek right as 78px strips
   Mobile:  vertical accordion (unchanged, working)
================================================================ */

.mg-packages {
    background-color: var(--mg-white);
    padding-top:      clamp(40px, 4.167vw, 80px);
    padding-bottom:   clamp(40px, 4.167vw, 80px);
}

/* --- SECTION HEADER --- */
.mg-packages__header {
    text-align:     center;
    padding-left:   25px;
    padding-right:  25px;
    padding-bottom: clamp(30px, 2.604vw, 50px);
}

.mg-packages__eyebrow {
    font-family:    var(--mg-font-body);
    font-weight:    500;
    font-size:      clamp(13px, 1.042vw, 20px);
    letter-spacing: 0.15em;
    color:          var(--mg-gold-dark);
    text-transform: uppercase;
    margin:         0 0 clamp(8px, 0.625vw, 10px);
}

.mg-packages__heading {
    font-family:    var(--mg-font-heading);
    font-weight:    300;
    font-size:      clamp(28px, 2.500vw, 48px);
    line-height:    clamp(32px, 2.760vw, 53px);
    color:          var(--mg-brown-heading);
    text-transform: uppercase;
    margin:         0 auto clamp(16px, 1.250vw, 24px);
    max-width:      clamp(400px, 43.177vw, 829px);
}

.mg-packages__intro {
    font-family: var(--mg-font-body);
    font-weight: 300;
    font-size:   clamp(15px, 1.250vw, 24px);
    line-height: clamp(24px, 1.875vw, 36px);
    color:       var(--mg-dark-text);
    max-width:   clamp(500px, 73.125vw, 1404px);
    margin:      0 auto;
}

/* --- DESKTOP ACCORDION SLIDER --- */
.mg-packages__card {
    position:     relative;
    margin-left:  clamp(20px, 10.417vw, 200px);
    margin-right: clamp(20px, 10.417vw, 200px);
    height:       clamp(350px, 31.250vw, 600px);
    overflow:     hidden;
    border-radius: clamp(18px, 1.823vw, 35px);
}

/* Each slide — absolutely positioned, slides horizontally */
.mg-packages__slide {
    position:   absolute;
    top:        0;
    left:       0;
    width:      100%;
    height:     100%;
    display:    flex;
    transition: transform 500ms cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Dark strip — the clickable tab, 78px wide */
.mg-packages__slide-strip {
    flex-shrink:     0;
    width:           clamp(40px, 4.062vw, 78px);
    height:          100%;
    background:      var(--mg-footer-bg);
    display:         flex;
    align-items:     center;
    justify-content: center;
    cursor:          pointer;
    transition:      background var(--mg-transition);
}

.mg-packages__slide-strip:hover { background: #1a1a1a; }

.mg-packages__slide-label {
    font-family:    var(--mg-font-heading);
    font-weight:    300;
    font-size:      clamp(14px, 1.875vw, 36px);
    color:          var(--mg-gold-bright);
    text-transform: uppercase;
    white-space:    nowrap;
    transform:      rotate(-90deg);
    display:        block;
    pointer-events: none;
}

/* Content area — text + image */
.mg-packages__slide-content {
    display:  flex;
    flex:     1;
    height:   100%;
    overflow: hidden;
    min-width: 0;
}

/* Text panel */
.mg-packages__text {
    flex-shrink:      0;
    width:            clamp(250px, 38.958vw, 748px);
    height:           100%;
    background-color: #EDEBE5;
    padding-top:      clamp(24px, 2.500vw, 48px);
    padding-left:     clamp(20px, 2.552vw, 49px);
    padding-right:    clamp(20px, 2.552vw, 49px);
    padding-bottom:   clamp(20px, 2.969vw, 57px);
    box-sizing:       border-box;
    display:          flex;
    flex-direction:   column;
    overflow:         hidden;
}

.mg-packages__panel-title {
    font-family:    var(--mg-font-heading);
    font-weight:    300;
    font-size:      clamp(24px, 2.500vw, 48px);
    line-height:    clamp(28px, 2.760vw, 53px);
    color:          var(--mg-brown-heading);
    text-transform: uppercase;
    padding-left:   clamp(20px, 6.385vw, 124px);
    margin:         0 0 clamp(10px, 0.781vw, 15px);
}

.mg-packages__panel-subtitle {
    font-family:   var(--mg-font-heading);
    font-style:    italic;
    font-weight:   400;
    font-size:     clamp(14px, 1.354vw, 26px);
    line-height:   1.1;
    color:         var(--mg-gold-dark);
    text-align:    center;
    margin-bottom: clamp(8px, 1.302vw, 25px);
}

.mg-packages__panel-body {
    font-family:    var(--mg-font-body);
    font-style:     italic;
    font-weight:    300;
    font-size:      clamp(13px, 0.990vw, 19px);
    line-height:    clamp(20px, 1.563vw, 30px);
    letter-spacing: -0.02em;
    color:          var(--mg-dark-text);
    text-align:     center;
    margin-bottom:  clamp(8px, 1.302vw, 25px);
}

.mg-packages__includes {
    font-family:    var(--mg-font-body);
    font-weight:    600;
    font-size:      clamp(13px, 1.042vw, 20px);
    text-transform: uppercase;
    color:          var(--mg-gold-dark);
    margin-bottom:  clamp(8px, 1.302vw, 25px);
    text-align:     center;
}

.mg-packages__features {
    list-style:            none;
    margin:                0 0 auto;
    padding:               0;
    display:               grid;
    grid-template-columns: clamp(150px, 16.302vw, 313px) clamp(120px, 15.208vw, 292px); /* fixed col widths */
    column-gap:            clamp(20px, 2.500vw, 48px);  
    row-gap:               clamp(6px, 0.677vw, 13px);     /* 13÷19.2 — exact Figma row gap */
    flex-shrink:           0;
}

/* Col 1: Décor (36px lh) + Performance (28px lh, 2 lines) */
.mg-packages__features li:nth-child(1),
.mg-packages__features li:nth-child(3) {
    font-family:  var(--mg-font-body);
    font-weight:  300;
    font-size:    clamp(13px, 0.990vw, 19px);
    line-height:  clamp(20px, 1.458vw, 28px);
    color:        var(--mg-dark-text);
    padding-left: 14px;
    position:     relative;
}

/* Col 2: Lighting (36px lh) + Bespoke (36px lh) */
.mg-packages__features li:nth-child(2),
.mg-packages__features li:nth-child(4) {
    font-family:  var(--mg-font-body);
    font-weight:  300;
    font-size:    clamp(13px, 0.990vw, 19px);
    line-height:  clamp(24px, 1.875vw, 36px);
    color:        var(--mg-dark-text);
    padding-left: 14px;
    position:     relative;
}

.mg-packages__features li::before {
    content:  '•';
    position: absolute;
    left:     0;
    color:    var(--mg-dark-text);  /* #3D3D3D — Figma: same as text */
}

.mg-packages__btn {
    display:         inline-flex;
    align-items:     center;
    justify-content: center;
    font-family:     var(--mg-font-heading);
    font-weight:     500;
    font-size:       clamp(15px, 1.250vw, 24px);
    text-transform:  uppercase;
    color:           var(--mg-gold-dark);
    border:          1.5px solid var(--mg-gold-dark);
    border-radius:   5px;
    text-decoration: none;
    width:           clamp(160px, 13.021vw, 250px);
    height:          clamp(44px, 3.385vw, 65px);
    margin-left:     clamp(40px, 10.000vw, 192px);
    margin-top:      auto;
    margin-bottom:   0;
    flex-shrink:     0;
    transition:      background var(--mg-transition), color var(--mg-transition);
}

.mg-packages__btn:hover {
    background: var(--mg-gold-dark);
    color:      var(--mg-cream-light);
}

.mg-packages__image {
    flex:      1;
    overflow:  hidden;
    min-width: 0;
}

.mg-packages__image img {
    width:      100%;
    height:     100%;
    object-fit: cover;
    display:    block;
}

/* Mobile accordion hidden on desktop */
.mg-packages__accordion { display: none; }


/* --- TABLET 768–1024px --- */
@media (min-width: 768px) and (max-width: 1024px) {
    .mg-packages__card      { margin-left: 20px; margin-right: 20px; }
    .mg-packages__panel-title { padding-left: 20px; }
    .mg-packages__btn       { margin-left: 20px; }
    .mg-packages__features  { grid-template-columns: 1fr; }
}

/* --- TABLET 1025–1199px — card needs more height --- */
@media (min-width: 1025px) and (max-width: 1199px) {
    .mg-packages__card {
        height: clamp(420px, 36.458vw, 500px);
    }

    .mg-packages__panel-title {
        padding-left: clamp(20px, 4.167vw, 80px);
        margin-bottom: clamp(8px, 0.521vw, 10px);
    }

    .mg-packages__panel-body {
        margin-bottom: clamp(6px, 0.781vw, 15px);
    }

    .mg-packages__panel-subtitle {
        margin-bottom: clamp(6px, 0.781vw, 15px);
    }

    .mg-packages__includes {
        margin-bottom: clamp(6px, 0.781vw, 15px);
    }

    .mg-packages__features {
        grid-template-columns: 1fr 1fr;
        column-gap: clamp(10px, 1.563vw, 30px);
        row-gap:    clamp(4px, 1.417vw, 8px);
    }

    .mg-packages__btn {
        margin-left: auto;
        margin-right: auto;
    }
}


/* --- MOBILE + TABLET ≤1024px --- */
@media (max-width: 1024px) {

    .mg-packages {
        padding-top:    clamp(10px, 1.042vw, 20px);
        padding-bottom: 0;
    }

    .mg-packages__header {
        padding: clamp(30px, 6.818vw, 30px) 25px clamp(30px, 6.818vw, 30px);
    }

    .mg-packages__eyebrow {
        font-size:      14px;
        letter-spacing: 0.10em;
        margin-bottom:  clamp(8px, 0.521vw, 10px);
    }

    .mg-packages__heading {
        font-size:   clamp(26px, 7.273vw, 32px);
        line-height: 36px;
        max-width:   clamp(300px, 81.818vw, 360px);   /* 360÷4.4 */
        margin:      0 auto clamp(20px, 6.818vw, 30px);
    }

    .mg-packages__heading br { display: none; }

    .mg-packages__intro {
        font-size:   clamp(16px, 4.091vw, 18px);
        line-height: clamp(28px, 7.955vw, 35px);
        text-align:  justify;
        max-width:   100%;
    }

    .mg-packages__card      { display: none; }
    .mg-packages__accordion {
        display:        flex;
        flex-direction: column;
        margin-left:    clamp(18px, 5.682vw, 25px);    /* 25÷4.4 */
        margin-right:   clamp(18px, 5.682vw, 25px);
        margin-bottom:  clamp(36px, 11.364vw, 50px);   /* 50÷4.4 */
        border-radius:  clamp(14px, 4.545vw, 20px);
        overflow:       hidden;
    }

    .mg-packages__acc-item { overflow: hidden; }

    .mg-packages__acc-header {
        width:           100%;
        height:          clamp(44px, 11.364vw, 50px);
        background:      var(--mg-footer-bg);
        border:          none;
        cursor:          pointer;
        display:         flex;
        align-items:     center;
        justify-content: center;
        padding:         0;
        transition:      background var(--mg-transition);
    }

    .mg-packages__acc-header--active,
    .mg-packages__acc-header:hover { background: #1a1a1a; }

    .mg-packages__acc-label {
        font-family:    var(--mg-font-heading);
        font-weight:    300;
        font-size:      clamp(18px, 5.455vw, 24px);
        color:          var(--mg-gold-bright);
        text-transform: uppercase;
        text-align:     center;
        white-space:    nowrap;
    }

    .mg-packages__acc-body {
        max-height: 0;
        overflow:   hidden;
        transition: max-height 500ms ease-in-out;
    }

    .mg-packages__acc-body--open { max-height: 1200px; }

    .mg-packages__acc-image {
        width:    100%;
        height:   clamp(220px, 68.182vw, 300px);
        overflow: hidden;
    }

    .mg-packages__acc-image img {
        width:      100%;
        height:     100%;
        object-fit: cover;
        display:    block;
    }

    .mg-packages__acc-text {
        background:      var(--mg-cream-bg);
        padding:        clamp(16px, 4.545vw, 20px) 25px clamp(24px, 7.818vw, 37px);
        display:        flex;
        flex-direction: column;
        align-items:    center;
        text-align:     center;
    }

    .mg-packages__acc-title {
        font-family:    var(--mg-font-heading);
        font-weight:    300;
        font-size:      clamp(24px, 6.818vw, 30px);
        line-height:    clamp(28px, 7.500vw, 33px);
        text-transform: uppercase;
        color:          var(--mg-brown-heading);
        margin-bottom:  clamp(14px, 6.136vw, 27px);
        text-align:     center;
    }

    .mg-packages__acc-subtitle {
        font-family:   var(--mg-font-heading);
        font-style:    italic;
        font-weight:   400;
        font-size:     clamp(16px, 4.545vw, 20px);
        line-height:   clamp(20px, 5.000vw, 22px);
        color:         var(--mg-gold-dark);
        text-align:    center;
        margin-bottom: clamp(16px, 7.273vw, 32px);
        max-width:     clamp(240px, 68.182vw, 300px);
    }

    .mg-packages__acc-body-text {
        font-family:    var(--mg-font-body);
        font-style:     italic;
        font-weight:    300;
        font-size:      16px;
        line-height:    30px;
        letter-spacing: -0.02em;
        color:          var(--mg-dark-text);
        text-align:     center;
        max-width:      clamp(280px, 77.273vw, 340px);
        margin-bottom:  clamp(20px, 1.563vw, 30px);
    }

    .mg-packages__acc-includes {
        font-family:    var(--mg-font-body);
        font-weight:    600;
        font-size:      16px;
        text-transform: uppercase;
        color:          var(--mg-gold-dark);
        margin-bottom:  clamp(20px, 1.042vw, 20px);
        text-align:     center;
    }

    .mg-packages__acc-features {
        list-style:     none;
        padding:        0;
        margin:         0 0 clamp(24px, 8.864vw, 39px);
        display:        flex;
        flex-direction: column;
        align-items:    center;
        gap:            clamp(20px, .094vw, 21px);
        width:          100%;
    }

    .mg-packages__acc-features li {
        font-family:  var(--mg-font-body);
        font-weight:  300;
        font-size:    16px;
        line-height:  19px;
        color:        var(--mg-dark-text);
        text-align:   center;
        padding-left: 0;
        position:     static;
    }

    .mg-packages__acc-features li::before {
        display:  inline;
        content:  '• ';
        color:    var(--mg-dark-text);
    }

    .mg-packages__acc-btn {
        display:         inline-flex;
        align-items:     center;
        justify-content: center;
        font-family:     var(--mg-font-heading);
        font-weight:     500;
        font-size:       clamp(16px, 4.545vw, 20px);
        text-transform:  uppercase;
        color:           var(--mg-gold-dark);
        border:          1.5px solid var(--mg-gold-dark);
        border-radius:   5px;
        text-decoration: none;
        width:           clamp(200px, 53.409vw, 235px);
        height:          clamp(52px, 13.636vw, 60px);
        margin:          0 auto;
        transition:      background var(--mg-transition), color var(--mg-transition);
    }

    .mg-packages__acc-btn:hover {
        background: var(--mg-gold-dark);
        color:      var(--mg-cream-light);
    }
}


/* ================================================================
   10. PREVIOUS EVENTS SECTION
   Desktop (1920px ÷19.2):
     Section: 1920×1000px bg:#EDEBE5
     Header: eyebrow+H2 left x:200, body right x:960
     Masonry: 8 images absolute positioned, all exact Figma coords
     Quote: Italianno 60px x:1474 y:6509
     Nav: x:1486 y:6988 — left arrow | counter | right arrow
   Mobile (440px ÷4.4):
     Header centred, body justify
     Swiper slider 317px images h:400px
     Quote + nav centred below
================================================================ */

.mg-events {
    background-color: var(--mg-cream-bg);
    position:         relative;
    overflow-x:       hidden;
    overflow-y:       visible;
    min-height:       clamp(600px, 52.083vw, 1000px);
}

/* --- HEADER --- */
.mg-events__header {
    display:       flex;
    align-items:   flex-start;
    padding-left:  clamp(20px, 10.417vw, 200px);   /* 200÷19.2 */
    padding-right: clamp(20px, 10.417vw, 200px);
    padding-top:   clamp(30px, 2.656vw, 51px);     /* 51÷19.2 */
    gap:           clamp(20px, 13.021vw, 250px);
}

.mg-events__header-left {
    flex-shrink: 0;
    width:       clamp(280px, 26.563vw, 510px);    /* 510÷19.2 */
}

.mg-events__eyebrow {
    font-family:    var(--mg-font-body);
    font-weight:    500;
    font-size:      clamp(13px, 1.042vw, 20px);
    letter-spacing: 0.15em;
    color:          var(--mg-gold-dark);
    text-transform: uppercase;
    margin:         0 0 clamp(8px, 0.625vw, 12px);
}

.mg-events__heading {
    font-family:    var(--mg-font-heading);
    font-weight:    300;
    font-size:      clamp(28px, 2.500vw, 48px);
    line-height:    clamp(32px, 2.760vw, 53px);
    color:          var(--mg-brown-heading);
    text-transform: uppercase;
    margin:         0;
}

.mg-events__intro {
    font-family:    var(--mg-font-body);
    font-weight:    300;
    font-size:      clamp(15px, 1.146vw, 22px);
    line-height:    clamp(24px, 1.875vw, 36px);
    letter-spacing: -0.02em;
    color:          var(--mg-dark-text);
    text-align:     justify;
    max-width:      clamp(400px, 39.583vw, 760px); /* 760÷19.2 */
    margin:         0;
    padding-top:    clamp(4px, 0.469vw, 9px);      /* align with eyebrow baseline */
}

/* --- DESKTOP MASONRY --- */
.mg-events__pages {
    position:   relative;
    height:     clamp(500px, 36.458vw, 700px);
    margin-top: clamp(20px, 2.708vw, 52px);
}

.mg-events__page {
    position:   absolute;
    top:        0;
    left:       0;
    width:      100%;
    height:     100%;
    opacity:    0;
    pointer-events: none;
    transition: opacity 500ms ease;
}

.mg-events__page--active {
    opacity:        1;
    pointer-events: auto;
}

.mg-events__grid {
    position: relative;
    width:    100%;
    height:   100%;
}

/* All grid items: absolute positioned, cursor pointer for lightbox */
.mg-events__grid-item {
    position:      absolute;
    border-radius: clamp(8px, 0.781vw, 15px);      /* 15÷19.2 */
    overflow:      hidden;
    cursor:        pointer;
    transition:    transform 300ms ease, box-shadow 300ms ease;
}

.mg-events__grid-item:hover {
    transform:  scale(1.02);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    z-index:    2;
}

.mg-events__grid-item img {
    width:      100%;
    height:     100%;
    object-fit: cover;
    display:    block;
}

/* Exact Figma positions (vw relative to 1920px canvas) */
/* Grid positions relative to grid container (grid starts at y:6354 in Figma)
   All tops: Figma_y - 6354, all lefts: Figma_x (from page left)
   Converted to vw ÷19.2 */
.mg-events__grid-item.img1 { left: 10.417vw; top:  0;        width: 18.750vw; height: 23.698vw; }
.mg-events__grid-item.img2 { left: 29.583vw; top:  0;        width: 12.188vw; height: 15.208vw; }
.mg-events__grid-item.img3 { left: 42.135vw; top:  0;        width: 19.427vw; height: 12.865vw; }
.mg-events__grid-item.img4 { left: 61.979vw; top:  0;        width: 12.240vw; height: 18.177vw; }
.mg-events__grid-item.img5 { left: 10.417vw; top: 24.115vw; width: 31.354vw; height: 12.344vw; } /* (6817-6354)÷19.2 */
.mg-events__grid-item.img6 { left: 29.583vw; top: 15.573vw; width: 12.188vw; height:  8.125vw; } /* (6653-6354)÷19.2 */
.mg-events__grid-item.img7 { left: 42.135vw; top: 13.229vw; width: 19.427vw; height: 23.229vw; } /* (6608-6354)÷19.2 */
.mg-events__grid-item.img8 { left: 61.979vw; top: 18.594vw; width: 12.240vw; height: 17.865vw; } /* (6711-6354)÷19.2 */

/* --- QUOTE + NAV SIDEBAR --- */
.mg-events__sidebar {
    display:         flex;
    flex-direction:  column;
    align-items:     center;
    justify-content: space-between;
    position:        absolute;
    top:             clamp(280px, 20.833vw, 400px);
    left:            76.771vw;
    width:           12.812vw;
    height:          clamp(300px, 28.906vw, 555px);
    box-sizing:      border-box;
    overflow:        visible;
}

.mg-events__quote {
    font-family: var(--mg-font-script);
    font-weight: 400;
    font-size:   clamp(20px, 3.125vw, 60px);
    line-height: clamp(24px, 3.385vw, 65px);
    color:       var(--mg-dark-text);
    text-align:  center;
    margin:      0;
    width:       100%;
}

.mg-events__nav {
    display:         flex;
    align-items:     center;
    justify-content: center;
    gap:             clamp(10px, 1.563vw, 30px);
}

.mg-events__nav-arrow {
    background:  none;
    border:      none;
    cursor:      pointer;
    padding:     0;
    display:     flex;
    align-items: center;
    transition:  opacity var(--mg-transition);
    flex-shrink: 0;
}

.mg-events__nav-arrow:hover { opacity: 0.5; }

.mg-events__nav-arrow svg {
    width:   clamp(30px, 3.177vw, 61px);
    height:  clamp(10px, 0.990vw, 19px);
    display: block;
}

.mg-events__counter {
    width:         clamp(36px, 3.229vw, 62px);     /* 62÷19.2 */
    height:        clamp(38px, 3.438vw, 66px);     /* 66÷19.2 */
    border:        2px solid var(--mg-dark-text);
    border-radius: 8px;
    display:       flex;
    align-items:   center;
    justify-content: center;
    flex-shrink:   0;
}

.mg-events__counter-num {
    font-family:     'Slabo 27px', serif;
    font-weight:     400;
    font-size:       clamp(36px, 2.500vw, 48px);
    color:           var(--mg-dark-text);
    line-height:     1;
    letter-spacing:  -0.02em;
}


/* Desktop only ≥1025px — show masonry, hide mobile */
@media (min-width: 1025px) {
    .mg-events__mobile        { display: none !important; }
    .mg-events__mobile-footer { display: none !important; }
    .mg-events__pages         { display: block; }
    .mg-events__sidebar       { display: flex; }
}

/* --- MOBILE ≤767px ---
   Figma (440px ÷4.4):
   Section h:1109px bg:#EDEBE5
   Header centred, body justify
   Slider: 317px images h:400px gap:10px
   Quote: Italianno 40px centred
   Nav: centred arrows + counter
================================================================ */
@media (max-width: 1024px) {

    .mg-events {
        padding-bottom: clamp(30px, 6.818vw, 30px);
    }

    /* Header — centred on mobile */
    .mg-events__header {
        flex-direction: column;
        align-items:    center;
        text-align:     center;
        padding:        clamp(28px, 7.273vw, 32px) 25px clamp(20px, 6.818vw, 30px);
        gap:            clamp(16px, 6.818vw, 30px);
    }

    .mg-events__header-left {
        width:    100%;
        display:  flex;
        flex-direction: column;
        align-items: center;
    }

    .mg-events__eyebrow {
        font-size:      14px;
        letter-spacing: 0.10em;
        margin-bottom:  clamp(18px, 6.136vw, 27px);
    }

    .mg-events__heading {
        font-size:   clamp(26px, 7.273vw, 32px);
        line-height: 36px;
        text-align:  center;
        max-width:   100%;
    }

    .mg-events__heading br { display: none; }

    .mg-events__intro {
        font-size:  clamp(16px, 4.091vw, 18px);
        line-height: clamp(28px, 7.955vw, 35px);
        text-align: justify;
        max-width:  100%;
        padding-top: 0;
    }

    /* Hide desktop masonry + sidebar */
    .mg-events__pages   { display: none; }
    .mg-events__sidebar { display: none; }

    /* Show mobile slider */
    .mg-events__mobile {
        display:  block;
        position: relative;
    }

    .mg-events__mobile-page { display: none; }
    .mg-events__mobile-page--active { display: block; }

    /* Swiper: 317px slides, h:400px, peek on right */
    .mg-events__swiper {
        width:       calc(100% - 25px);
        height:      clamp(300px, 90.909vw, 400px);
        margin-left: 25px !important;
        overflow:    visible;
    }

    .mg-events__swiper .swiper-slide {
        width:         clamp(240px, 72.045vw, 317px) !important; /* 317÷4.4 */
        height:        100%;
        border-radius: clamp(10px, 3.409vw, 15px);
        overflow:      hidden;
        flex-shrink:   0;
    }

    .mg-events__swiper .swiper-slide img {
        width:      100%;
        height:     100%;
        object-fit: cover;
        display:    block;
    }

    /* Mobile footer: quote + nav */
    .mg-events__mobile-footer {
        display:         flex;
        flex-direction:  column;
        align-items:     center;
        padding:         clamp(30px, 9.091vw, 40px) 25px clamp(10px, 3.409vw, 15px);
    }

    .mg-events__quote--mobile {
        font-family: var(--mg-font-script);
        font-weight: 400;
        font-size:   clamp(28px, 9.091vw, 40px);   /* 40÷4.4 */
        line-height: clamp(28px, 9.091vw, 40px);
        color:       var(--mg-dark-text);
        text-align:  center;
        max-width:   clamp(280px, 74.545vw, 328px); /* 328÷4.4 */
        margin-bottom: clamp(30px, 9.091vw, 40px);
    }

    .mg-events__nav--mobile {
        gap: clamp(14px, 4.545vw, 20px);
    }

    .mg-events__nav--mobile .mg-events__nav-arrow svg {
        width:  clamp(28px, 9.545vw, 42px);        /* 42÷4.4 */
        height: clamp(9px, 2.955vw, 13px);         /* 13÷4.4 */
    }

    .mg-events__nav--mobile .mg-events__counter {
        width:  clamp(38px, 10.675vw, 47px);       /* 47÷4.4 */
        height: clamp(40px, 11.364vw, 50px);       /* 50÷4.4 */
    }
}

/* Events slider — more slides visible on wider screens */
@media (min-width: 480px) and (max-width: 1024px) {
    .mg-events__swiper .swiper-slide {
        width: clamp(260px, 38vw, 360px) !important;
    }
}
/* --- LIGHTBOX --- */
.mg-lightbox {
    position:        fixed;
    inset:           0;
    background:      rgba(0, 0, 0, 0.92);
    z-index:         9999;
    display:         flex;
    align-items:     center;
    justify-content: center;
    opacity:         0;
    pointer-events:  none;
    transition:      opacity 300ms ease;
}

.mg-lightbox.is-open {
    opacity:        1;
    pointer-events: auto;
}

.mg-lightbox__img-wrap {
    max-width:  90vw;
    max-height: 85vh;
    display:    flex;
    align-items: center;
    justify-content: center;
}

.mg-lightbox__img {
    max-width:     90vw;
    max-height:    85vh;
    object-fit:    contain;
    border-radius: 8px;
    display:       block;
}

.mg-lightbox__close {
    position:   absolute;
    top:        clamp(16px, 2.083vw, 40px);
    right:      clamp(16px, 2.083vw, 40px);
    background: none;
    border:     none;
    color:      var(--mg-cream-light);
    font-size:  clamp(24px, 2.083vw, 40px);
    cursor:     pointer;
    line-height: 1;
    transition: opacity var(--mg-transition);
    z-index:    1;
}

.mg-lightbox__close:hover { opacity: 0.7; }

.mg-lightbox__arrow {
    position:   absolute;
    top:        50%;
    transform:  translateY(-50%);
    background: none;
    border:     none;
    cursor:     pointer;
    padding:    20px;
    transition: opacity var(--mg-transition);
    z-index:    1;
}

.mg-lightbox__arrow:hover { opacity: 0.7; }
.mg-lightbox__arrow--prev { left:  clamp(10px, 2.604vw, 50px); }
.mg-lightbox__arrow--next { right: clamp(10px, 2.604vw, 50px); }

.mg-lightbox__arrow svg {
    width:   clamp(30px, 3.177vw, 61px);
    height:  clamp(10px, 0.990vw, 19px);
    display: block;
}

.mg-lightbox__counter {
    position:  absolute;
    bottom:    clamp(16px, 2.083vw, 40px);
    left:      50%;
    transform: translateX(-50%);
    color:     var(--mg-cream-light);
    font-family: var(--mg-font-body);
    font-size: clamp(14px, 0.938vw, 18px);
    opacity:   0.8;
}


/* ================================================================
   11. TESTIMONIALS — KIND WORDS
   Desktop (1920px ÷19.2):
     Section: h:962px bg:white
     Eyebrow y:7209 centred, H2 y:7244 centred
     Cards: Swiper h:500px, 3 visible + peek, w:~540px gap:30px
     Arrows: centred below cards, #2A2A2A, 67×21px
   Mobile (440px ÷4.4):
     1 card full width, arrows below
================================================================ */

.mg-testimonials {
    background-color: var(--mg-white);
    padding-top:      clamp(50px, 5.208vw, 100px);
    padding-bottom:   clamp(40px, 5.208vw, 100px);
    overflow:         hidden;
}

/* --- HEADER --- */
.mg-testimonials__header {
    text-align:     center;
    padding-left:   25px;
    padding-right:  25px;
    margin-bottom:  clamp(30px, 2.604vw, 50px);   /* 50÷19.2 — header→cards */
}

.mg-testimonials__eyebrow {
    font-family:    var(--mg-font-body);
    font-weight:    500;
    font-size:      clamp(13px, 1.042vw, 20px);
    letter-spacing: 0.15em;
    color:          var(--mg-gold-dark);
    text-transform: uppercase;
    margin:         0 0 clamp(8px, 0.573vw, 11px);    /* 11÷19.2 */
}

.mg-testimonials__heading {
    font-family:    var(--mg-font-heading);
    font-weight:    300;
    font-size:      clamp(28px, 2.500vw, 48px);
    line-height:    clamp(32px, 2.760vw, 53px);
    color:          var(--mg-brown-heading);
    text-transform: uppercase;
    margin:         0 auto;
    max-width:      clamp(360px, 34.115vw, 655px);
}

/* --- SWIPER --- */
.mg-testimonials__swiper {
    width:    100%;
    overflow: visible;
    padding-left: clamp(20px, 4.167vw, 80px);
}

.mg-testimonials__swiper .swiper-slide {
    width:   clamp(400px, 39.063vw, 750px) !important;  /* 750÷19.2 */
    height:  clamp(300px, 26.042vw, 500px);              /* 500÷19.2 */
}

/* --- CARD --- */
.mg-testimonials__card {
    width:            100%;
    height:           100%;
    background-color: var(--mg-cream-light);
    border-radius:    clamp(12px, 1.563vw, 30px);
    padding:          clamp(24px, 2.604vw, 50px) clamp(20px, 3.698vw, 71px);
    box-sizing:       border-box;
    display:          flex;
    flex-direction:   column;
    text-align:       left;
}

.mg-testimonials__stars {
    color:          #CC9A0E;
    font-size:      clamp(20px, 2.188vw, 42px);  /* stars h:42px ÷19.2 */
    letter-spacing: 6px;
    margin-bottom:  clamp(12px, 1.927vw, 37px);
    text-align:     center;
}

.mg-testimonials__card-title {
    font-family:    var(--mg-font-heading);
    font-weight:    300;
    font-size:      clamp(22px, 2.083vw, 40px);       /* 40÷19.2 */
    line-height:    1;
    text-transform: uppercase;
    color:          var(--mg-brown-heading);
    margin:         0 0 clamp(19px, 1.979vw, 38px);
    text-align:     center;
}

.mg-testimonials__card-body {
    font-family: var(--mg-font-body);
    font-weight: 300;
    font-size:   clamp(15px, 1.094vw, 21px);          /* 21÷19.2 */
    line-height: clamp(26px, 1.875vw, 36px);          /* 36÷19.2 */
    color:       var(--mg-dark-text);
    flex:        1;
    margin:      0 0 clamp(19px, 1.979vw, 38px);
    text-align:  center;
}

.mg-testimonials__card-author {
    font-family:    var(--mg-font-body);
    font-weight:    500;
    font-size:      clamp(16px, 1.250vw, 24px);       /* 24÷19.2 */
    line-height:    clamp(24px, 1.875vw, 36px);
    color:          var(--mg-dark-text);
    text-align:     center;
    margin:         0;
}

/* --- NAV ARROWS --- */
.mg-testimonials__nav {
    display:         flex;
    align-items:     center;
    justify-content: center;
    gap:             clamp(10px, 1.042vw, 20px);
    margin-top:      clamp(35px, 3.125vw, 50px);
}

.mg-testimonials__arrow {
    background:  none;
    border:      none;
    cursor:      pointer;
    padding:     clamp(8px, 0.521vw, 10px);
    display:     flex;
    align-items: center;
    transition:  opacity 250ms ease, transform 250ms ease;
    flex-shrink: 0;
}

.mg-testimonials__arrow:hover {
    opacity:   0.5;
    transform: scale(1.1);
}

.mg-testimonials__arrow svg {
    width:   clamp(36px, 3.490vw, 67px);   /* 67÷19.2 */
    height:  clamp(10px, 1.094vw, 21px);   /* 21÷19.2 */
    display: block;
}


/* --- TABLET 768–1024px --- */
@media (min-width: 768px) and (max-width: 1024px) {
    .mg-testimonials__swiper .swiper-slide {
        width: clamp(240px, 40vw, 360px) !important;
    }
}


/* --- MOBILE ≤767px ---
   Figma (440px ÷4.4): section h:643px
   1 card full width (390px), arrows centred below
================================================================ */
@media (max-width: 767px) {

    .mg-testimonials {
        padding-top:    clamp(36px, 11.364vw, 50px);  /* 50÷4.4 */
        padding-bottom: clamp(30px, 6.818vw, 30px);
    }

    .mg-testimonials__header {
        margin-bottom: clamp(22px, 7.955vw, 35px);
    }

    .mg-testimonials__eyebrow {
        font-size:      14px;
        letter-spacing: 0.10em;
    }

    .mg-testimonials__heading {
        font-size:   clamp(22px, 6.818vw, 30px);
        line-height: 1;
        max-width:   clamp(260px, 72.727vw, 320px);  /* forces 2-line wrap */
    }

    /* Card: 390×360px */
    .mg-testimonials__swiper .swiper-slide {
        width:  clamp(340px, 88.636vw, 390px) !important;  /* 390÷4.4 */
        height: clamp(300px, 81.818vw, 360px) !important;  /* 360÷4.4 */
    }

    .mg-testimonials__card {
        border-radius:  clamp(12px, 3.409vw, 15px);
        padding-top:    clamp(22px, 6.818vw, 30px);    /* 30÷4.4 */
        padding-left:   25px;
        padding-right:  25px;
        padding-bottom: clamp(30px, 8.864vw, 39px);    /* 39÷4.4 */
        height:         100%;
        text-align:     center;
    }

    .mg-testimonials__stars {
        font-size:     clamp(18px, 6.818vw, 30px);
        text-align:    center;
        margin-bottom: clamp(18px, 5.682vw, 25px);     /* 25÷4.4 star→title */
    }

    .mg-testimonials__card-title {
        font-size:     clamp(18px, 5.000vw, 22px);
        line-height:   1;
        text-align:    center;
        margin-bottom: clamp(12px, 3.864vw, 17px);     /* 17÷4.4 title→body */
    }

    .mg-testimonials__card-body {
        font-size:     16px;
        line-height:   30px;
        text-align:    center;
        margin-bottom: clamp(18px, 5.682vw, 25px);     /* 25÷4.4 body→name */
        flex:          none;
    }

    .mg-testimonials__card-author {
        font-size:   16px;
        line-height: 1;
        text-align:  center;
        margin:      0;
    }

    .mg-testimonials__arrow svg {
        width:  clamp(30px, 9.545vw, 42px);
        height: clamp(9px, 2.955vw, 13px);
    }
}

/* style.css */

/* ═══════════════════════════════════════════════════════
   12 / 13 — CONTACT FORM + FOOTER
   ─────────────────────────────────────────────────────
   One dark-bg wrapper; contact card floats on top,
   footer content below it, copyright bar at base.
═══════════════════════════════════════════════════════ */

/* ── 12 Outer section wrapper ── */
.mg-cf-section {
  background: var(--mg-footer-bg);
  padding-top: clamp(40px, 3.646vw, 70px);
  overflow: hidden;
}

/* ── 12 Contact card ── */
.mg-contact-card {
  background: var(--mg-cream-bg);
  border-radius: 30px;
  margin: 0 clamp(16px, 10.417vw, 200px);
  padding: clamp(30px, 3.125vw, 60px) clamp(24px, 2.604vw, 50px);
  position: relative;
  overflow: hidden;
  min-height: clamp(400px, 36.979vw, 710px);
  display: flex;
  align-items: center;
}

/* Botanical floral decoration — export from Figma, upload, replace src */
.mg-contact-card__floral {
  position: absolute;
  left: 0;
  bottom: 0;
  width: clamp(180px, 15.625vw, 300px);
  height: auto;
  pointer-events: none;
  user-select: none;
}

/* ── 12 Two-column inner grid ── */
.mg-contact-card__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3.125vw, 60px);
  width: 100%;
  align-items: start;
}

/* ── 12 Left: text ── */
.mg-contact-eyebrow {
  font-family: var(--mg-font-body);
  font-weight: 500;
  font-size: clamp(14px, 1.042vw, 20px);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mg-gold-dark);
  margin: 0 0 clamp(8px, 0.625vw, 12px);
  line-height: 1.2;
}

.mg-contact-heading {
  font-family: var(--mg-font-heading);
  font-weight: 300;
  font-size: clamp(26px, 2.5vw, 48px);
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--mg-brown-heading);
  margin: 0 0 clamp(14px, 1.25vw, 24px);
  max-width: 478px;
}

.mg-contact-body-text {
  font-family: var(--mg-font-body);
  font-weight: 300;
  font-size: clamp(14px, 1.146vw, 22px);
  line-height: 1.636;
  text-align: justify;
  color: var(--mg-dark-text);
  max-width: 579px;
  margin: 0;
}

/* ── 12 Right: CF7 form ── */
.mg-contact-form-wrap .wpcf7,
.mg-contact-form-wrap .wpcf7-form {
  margin: 0 !important;
  padding: 0 !important;
}

.mg-form-row {
  margin-bottom: clamp(16px, 1.302vw, 25px);
}

.mg-form-row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(8px, 0.521vw, 10px);
}

.mg-field-group {
  display: flex;
  flex-direction: column;
}

/* CF7 span wrapper — must be block so inputs don't collapse */
.mg-contact-form-wrap .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.mg-field-label {
  font-family: var(--mg-font-body);
  font-weight: 500;
  font-size: clamp(15px, 1.146vw, 22px);
  line-height: 36px;
  color: var(--mg-gold-dark);
  margin-bottom: 4px;
  display: block;
}

/* All inputs + textarea */
.mg-contact-form-wrap .mg-input {
  width: 100% !important;
  box-sizing: border-box;
  border: 1px solid var(--mg-gold-dark) !important;
  border-radius: 5px;
  background: transparent;
  font-family: var(--mg-font-body) !important;
  font-weight: 300 !important;
  font-size: clamp(14px, 0.938vw, 18px) !important;
  color: var(--mg-dark-text);
  padding: 0 clamp(10px, 0.833vw, 16px);
  height: clamp(48px, 3.125vw, 60px);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-font-smoothing: antialiased;
  transition: border-color 0.2s ease;
}

.mg-contact-form-wrap .mg-input.mg-textarea {
  height: clamp(100px, 9.115vw, 175px);
  padding-top: clamp(14px, 0.833vw, 16px);
  padding-bottom: clamp(14px, 0.833vw, 16px);
  resize: none !important;
  overflow: hidden;
  vertical-align: top;
}

.mg-contact-form-wrap .mg-input:focus {
  border-color: var(--mg-gold-bright) !important;
  outline: none;
}

/* CF7 validation — red border, hide tooltip (matches site standard) */
.mg-contact-form-wrap .wpcf7-not-valid.mg-input {
  border-color: #F6354D !important;
}

.mg-contact-form-wrap .wpcf7-not-valid-tip {
  display: none !important;
}

/* CF7 response output */
.mg-contact-form-wrap .wpcf7-response-output {
  margin: 12px 0 0;
  padding: 8px 16px;
  font-family: var(--mg-font-body);
  font-size: clamp(13px, 0.729vw, 14px);
  border-radius: 4px;
  border: none !important;
}

/* CF7 AJAX success — suppress the flash (Elementor pattern) */
.mg-contact-form-wrap .wpcf7-mail-sent-ok {
  background: rgba(142,107,10,0.08);
  color: var(--mg-gold-dark);
}

.mg-contact-form-wrap .wpcf7-mail-sent-ng,
.mg-contact-form-wrap .wpcf7-spam-blocked,
.mg-contact-form-wrap .wpcf7-validation-errors {
  background: rgba(246,53,77,0.08);
  color: #F6354D;
}

/* Submit button */
.mg-form-submit {
  margin-top: clamp(28px, 2.604vw, 50px);
}

.mg-contact-form-wrap .mg-btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(180px, 13.021vw, 250px);
  height: clamp(50px, 3.385vw, 65px);
  border: 1.5px solid var(--mg-gold-dark) !important;
  border-radius: 4px;
  background: transparent;
  font-family: var(--mg-font-heading);
  font-weight: 500;
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--mg-gold-dark);
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.25s ease, color 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
}

.mg-contact-form-wrap .mg-btn-submit:hover {
  background: var(--mg-gold-dark);
  color: var(--mg-cream-bg);
}

/* ── 13 Footer ── */
.mg-footer {
  margin-top: clamp(20px, 1.771vw, 34px);
}

.mg-footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 clamp(16px, 10.417vw, 200px);
  gap: clamp(16px, 1.563vw, 30px);
}

/* Logo col */
.mg-footer__logo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: clamp(140px, 16.25vw, 312px);
}

.mg-footer__emblem {
  width: clamp(50px, 6.25vw, 120px);
  height: auto;
  margin-bottom: clamp(6px, 0.417vw, 8px);
}

.mg-footer__logo-name {
  font-family: var(--mg-font-heading);
  font-weight: 700;
  font-size: clamp(11px, 0.833vw, 16px);
  color: var(--mg-cream-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  margin: 0 0 4px;
}

.mg-footer__logo-script {
  font-family: var(--mg-font-script);
  font-size: clamp(13px, 0.938vw, 18px);
  color: var(--mg-gold-light);
  text-align: center;
  margin: 0;
}

/* Nav cols */
.mg-footer__col {
  flex: 1;
  min-width: 0;
}

/* Quick links wrap: flex row on desktop so both cols sit side by side */
.mg-footer__links-wrap {
  display: flex;
  flex-direction: row;
  gap: clamp(16px, 2.083vw, 40px);
  flex: 1.8; /* occupies two column slots in the parent flex row */
}

.mg-footer__col-heading {
  font-family: var(--mg-font-heading);
  font-weight: 600;
  font-size: clamp(13px, 0.938vw, 18px);
  line-height: 20px;
  text-transform: uppercase;
  color: var(--mg-gold-light);
  margin: 0 0 clamp(14px, 1.094vw, 21px);
}

.mg-footer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mg-footer__nav li {
  margin-bottom: clamp(14px, 2.188vw, 42px);
}

.mg-footer__nav li:last-child {
  margin-bottom: 0;
}

.mg-footer__nav a {
  font-family: var(--mg-font-heading);
  font-weight: 400;
  font-size: clamp(12px, 0.833vw, 16px);
  line-height: 20px;
  text-transform: uppercase;
  color: var(--mg-cream-light);
  text-decoration: none;
  transition: color 0.2s ease;
}

.mg-footer__nav a:hover {
  color: var(--mg-gold-light);
}

/* Contact col */
.mg-footer__contact-col {
  flex: 1.4;
}

.mg-footer__contact-item {
  display: flex;
  align-items: center;
  gap: clamp(8px, 0.625vw, 12px);
  font-family: var(--mg-font-heading);
  font-weight: 400;
  font-size: clamp(12px, 0.833vw, 16px);
  line-height: 20px;
  text-transform: uppercase;
  color: var(--mg-cream-light);
  text-decoration: none;
  margin-bottom: clamp(14px, 2.188vw, 42px);
  transition: color 0.2s ease;
}

.mg-footer__contact-item:last-child {
  margin-bottom: 0;
}

.mg-footer__contact-item:hover {
  color: var(--mg-gold-light);
}

.mg-footer__contact-item svg {
  flex-shrink: 0;
  width: clamp(12px, 0.729vw, 14px);
  height: auto;
}

/* Newsletter col */
.mg-footer__newsletter {
  flex-shrink: 0;
  width: clamp(180px, 15.625vw, 300px);
}

.mg-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.25vw, 24px);
}

.mg-newsletter-email {
  width: 100%;
  box-sizing: border-box;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--mg-cream-light);
  font-family: var(--mg-font-heading);
  font-style: italic;
  font-size: clamp(13px, 0.833vw, 16px);
  color: rgba(244, 242, 237, 0.62);
  padding: 6px 0;
  outline: none;
}

.mg-newsletter-email::placeholder {
  color: rgba(244, 242, 237, 0.62);
}

.mg-newsletter-email:focus {
  border-bottom-color: var(--mg-gold-light);
  outline: none;
}

.mg-newsletter-btn {
  display: block;
  width: 100%;
  height: clamp(50px, 3.385vw, 65px);
  border: 1.5px solid var(--mg-cream-light);
  border-radius: 4px;
  background: transparent;
  font-family: var(--mg-font-heading);
  font-weight: 500;
  font-size: clamp(16px, 1.25vw, 24px);
  text-transform: uppercase;
  color: var(--mg-cream-light);
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.25s ease, color 0.25s ease;
}

.mg-newsletter-btn:hover {
  background: var(--mg-cream-light);
  color: var(--mg-footer-bg);
}

.mg-newsletter-msg {
  font-family: var(--mg-font-body);
  font-size: 13px;
  color: var(--mg-gold-light);
  margin: 0;
  min-height: 18px;
  display: block;
}

/* Copyright bar */
.mg-footer__bar {
  margin-top: clamp(18px, 1.302vw, 25px);
  border-top: 1px solid var(--mg-cream-light);
  padding: clamp(12px, 1.094vw, 21px) clamp(16px, 10.417vw, 200px);
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.083vw, 40px);
}

.mg-footer__copyright,
.mg-footer__bar a {
  font-family: var(--mg-font-heading);
  font-weight: 400;
  font-size: clamp(11px, 0.833vw, 16px);
  text-transform: uppercase;
  color: var(--mg-white);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.mg-footer__copyright {
  flex: 1;
}

.mg-footer__copyright a {
  color: var(--mg-white);
}

.mg-footer__bar a:hover {
  color: var(--mg-gold-light);
}

/* ── Tablet (768–1024px) ── */
@media (min-width: 768px) and (max-width: 1024px) {
  .mg-contact-card {
    margin: 0 clamp(16px, 2.083vw, 20px);
    min-height: auto;
  }

  .mg-contact-card__inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .mg-contact-heading {
    font-size: clamp(26px, 3.5vw, 36px);
    max-width: none;
  }

  .mg-footer__inner {
    flex-wrap: wrap;
    padding: 24px clamp(16px, 3.125vw, 30px);
    gap: 24px;
  }

  .mg-footer__logo-col {
    width: 100%;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }

  .mg-footer__newsletter {
    width: 100%;
  }

  .mg-newsletter-form {
    flex-direction: row;
    align-items: flex-end;
    gap: 16px;
  }

  .mg-newsletter-btn {
    width: auto;
    padding: 0 24px;
    flex-shrink: 0;
  }

  .mg-footer__bar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 16px clamp(16px, 3.125vw, 30px);
  }

  .mg-footer__copyright {
    width: 100%;
    text-align: center;
    flex: none;
  }
}

/* ── Mobile (≤767px) ── */
@media (max-width: 767px) {
  .mg-cf-section {
    padding-top: clamp(20px, 4.545vw, 20px);
  }

  /* Contact card */
  .mg-contact-card {
    margin: 0 clamp(10px, 2.273vw, 10px);
    padding: clamp(28px, 6.364vw, 28px) clamp(18px, 4.091vw, 18px);
    border-radius: 20px;
    min-height: auto;
    display: block;
  }

  .mg-contact-card__floral {
    width: clamp(100px, 27.273vw, 120px);
    left: auto;
    right: -15px;
    bottom: 0;
    opacity: 0.8;
  }

  .mg-contact-card__inner {
    grid-template-columns: 1fr;
    gap: clamp(20px, 4.545vw, 20px);
  }

  .mg-contact-eyebrow {
    font-size: clamp(11px, 2.727vw, 12px);
    text-align: center;
  }

  .mg-contact-heading {
    font-size: clamp(24px, 6.364vw, 28px);
    text-align: center;
    max-width: none;
  }

  .mg-contact-body-text {
    font-size: clamp(14px, 3.636vw, 16px);
    text-align: left;
    max-width: none;
  }

  /* Form: single column on mobile */
  .mg-form-row--two {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .mg-form-row--two .mg-field-group:first-child {
    margin-bottom: clamp(16px, 3.636vw, 16px);
  }

  .mg-field-label {
    font-size: clamp(14px, 3.636vw, 16px);
    line-height: 1.4;
    margin-bottom: 6px;
  }

  .mg-contact-form-wrap .mg-input {
    height: clamp(48px, 10.909vw, 48px);
    font-size: 14px;
  }

  .mg-contact-form-wrap .mg-input.mg-textarea {
    height: clamp(120px, 27.273vw, 120px);
  }

  .mg-contact-form-wrap .mg-btn-submit {
    width: 100%;
    font-size: clamp(16px, 4.091vw, 18px);
    height: clamp(50px, 11.364vw, 50px);
  }

  /* Footer mobile */
  .mg-footer {
    margin-top: clamp(20px, 4.545vw, 20px);
  }

  .mg-footer__inner {
    flex-direction: column;
    align-items: center;
    padding: clamp(24px, 5.455vw, 24px) clamp(18px, 4.091vw, 18px);
    gap: clamp(20px, 4.545vw, 20px);
  }

  .mg-footer__logo-col {
    width: auto;
    align-items: center;
  }

  /* Contact col: phone + email in row, address full width */
  .mg-footer__contact-col {
    width: 100%;
  }

  .mg-footer__contact-inner {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(10px, 2.273vw, 10px);
  }

  .mg-footer__contact-item {
    font-size: clamp(11px, 2.5vw, 12px);
    margin-bottom: 0;
  }

  .mg-footer__contact-item--address {
    width: 100%;
    margin-top: clamp(10px, 2.273vw, 10px);
  }

  /* Quick links: 3-column grid on mobile */
  .mg-footer__links-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(12px, 2.727vw, 12px);
    width: 100%;
  }

  .mg-footer__col {
    flex: none;
  }

  .mg-footer__col-heading {
    font-size: clamp(11px, 2.727vw, 12px);
    margin-bottom: 10px;
  }

  .mg-footer__nav li {
    margin-bottom: 10px;
  }

  .mg-footer__nav a {
    font-size: clamp(11px, 2.5vw, 12px);
  }

  .mg-footer__newsletter {
    width: 100%;
  }

  .mg-newsletter-btn {
    font-size: clamp(15px, 3.636vw, 16px);
    height: clamp(48px, 10.909vw, 48px);
  }

  /* Copyright bar */
  .mg-footer__bar {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 14px clamp(18px, 4.091vw, 18px);
    text-align: center;
  }

  .mg-footer__copyright {
    flex: none;
    text-align: center;
    font-size: clamp(10px, 2.273vw, 10px);
    white-space: normal;
  }

  .mg-footer__bar a {
    font-size: clamp(10px, 2.273vw, 10px);
  }

/* style.css — append to section 12/13 block */

/* Required asterisk */
.mg-required {
  color: #F6354D;
  margin-left: 2px;
  font-weight: 700;
}

/* Submit button — loading state */
.mg-contact-form-wrap .mg-btn-submit.mg-is-loading {
  opacity: 0.75;
  pointer-events: none;
  cursor: not-allowed;
  position: relative;
  padding-right: clamp(40px, 2.604vw, 50px);
}

.mg-contact-form-wrap .mg-btn-submit.mg-is-loading::after {
  content: '';
  position: absolute;
  right: clamp(12px, 0.833vw, 16px);
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid rgba(142, 107, 10, 0.3);
  border-top-color: #8E6B0A;
  border-radius: 50%;
  animation: mg-spin 0.7s linear infinite;
}

@keyframes mg-spin {
  to { transform: translateY(-50%) rotate(360deg); }
}

}