:root {
	--headerHeight: 70px;
	--pageTop: calc(var(--headerHeight) * 2);

	--fontBody: 'Founders';
	--fontHeading: 'Moulin';
	--fontSubHeading: 'StyreneA';
	--baseFontSize: 13px;
	--baseFontFamily: var(--fontBody);

	/* Colours */
	--dark: #000000;
	--light: #FEFAF1;

	/* Grey */
	--darkGrey: rgba(0, 0, 0, 0.5);
	--midGrey: #f5f6f7;
	--lightGrey: #ecedee;

	/* Spot Colours */
	--white: var(--light);
	--black: var(--dark);
	--lemon: #FFE5A6;
	--pink: #FAE2DD;
	--peppermint: #D6F0E8;
	--hibiscus: #F05921;
	--berry: #573B54;
	--lotus: #C7E0F5;
	--snecha: #3B5454;
	--honey: #FFAB4A;
	--camomile: #FFF5E5;
	--ceylon: #666;
	--ceylon-20: #CCC;

	--fg: var(--dark);
	--bg: var(--camomile);

	--fgRgb: 0, 0, 0;
	--bgRgb: 255, 255, 255;

	/* Layout */
	--gridColumns: 12;
	--gridMargin: 32px;
	--columnGap: 12px;
	--rowGap: 24px;
	

	--h1: 110px;
	--h2: 70px;
	--h3: 44px;
	--h4: 12px;
	--h5: 12px;
	--p1: 19px;
	--p2: 16px;
	--p3: 13px;

	--h1: clamp(55px, calc(55px + (110 - 55) * ((100vw - 900px) / 900)), 110px);
	--h2: clamp(35px, calc(35px + (70 - 35) * ((100vw - 900px) / 900)), 70px);
	--h3: clamp(22px, calc(22px + (44 - 22) * ((100vw - 900px) / 900)), 44px);
	--h4: clamp(10px, calc(10px + (12 - 10) * ((100vw - 900px) / 900)), 12px);
	--h5: clamp(10px, calc(10px + (12 - 10) * ((100vw - 900px) / 900)), 12px);
	--p1: clamp(14px, calc(14px + (19 - 14) * ((100vw - 900px) / 900)), 19px);
	--p2: clamp(12px, calc(12px + (16 - 12) * ((100vw - 900px) / 900)), 16px);
	--p3: clamp(10px, calc(10px + (13 - 10) * ((100vw - 900px) / 900)), 13px);


	--Pxs: 4px;
	--Pg: 40px;
	--Pq: calc(var(--Pg) / 4);
	--Ph: calc(var(--Pg) / 2);
	--Pd: calc(var(--Pg) * 2);
	--Pm: 30px;
	--Pxl: 120px;
	--Pxxl: 230px;
	--Pl: 60px;

	--Hh: 85px;


	--tLongZip: 450ms cubic-bezier(0.66, 0, 0.34, 1);
	--tMedZip: 200ms cubic-bezier(0.66, 0, 0.34, 1);
	--tZip: cubic-bezier(0.66, 0, 0.34, 1);
	--tDelay: 75ms;
}
@media screen and (max-width: 768px) {
    :root {
        --Pg: 20px;
    }
}


body, html {
    background-color: var(--camomile);
}


.fh1, .fh2, .fh3 {
	font-size: var(--h1);
	font-family: var(--fontHeading);
	line-height: 120%;
	letter-spacing: -1%;
    

}
.fh1.upcase {
	letter-spacing: 0.1em;
}
.fh2 {
	font-size: var(--h2);
}
.fh3 {
	font-size: var(--h3);

}
.fh4, .fh5 {
	font-size: var(--h5);
	line-height: 100%;
	font-family: var(--fontSubHeading);
	letter-spacing: 20%;
	text-transform: uppercase;
}
.fh4 {
	font-weight: bold;
}
.fp1, .fp2, .fp3 {
	font-size: var(--p1);
	line-height: 120%;
	font-family: var(--fontBody);
}
.fp2 {
	font-size: var(--p2);
}
.fp3 {
	font-size: var(--p3);
}

.upcase{
    text-transform: uppercase;
}
.bold, strong {
	font-weight: bold;
}
.ceylon {
	color: var(--ceylon);
}
.ceylon-20 {
	color: var(--ceylon-20);
}

.sct_pad  {
	padding-top: var(--Pl);
	padding-bottom: var(--Pl);
}
.pts {
	padding-top: var(--Pg);
}
.pbs {
	padding-bottom: var(--Pg);
}
.ptm {
	padding-top: var(--Pl);
}
.pbm {
	padding-bottom: var(--Pl);
}
.ptl {
	padding-top: var(--Pxl);
}
.pbl {
	padding-bottom: var(--Pxl);
}
.px {
	padding-left: var(--Pg);
	padding-right: var(--Pg);
}
.pl {
	padding-left: var(--Pg);
}
.pr {
	padding-right: var(--Pg);
}


/* Hero Section Styling */
.landing-hero {
    /* height: 100vh; */
    width: 100vw;
    aspect-ratio: 1.514084507;
    /* background-color: var(--hibiscus); */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--lemon);
    position: relative;
    overflow: hidden;

}
.landing-hero .landing-hero-clip-defs {
    position: absolute;
    top: -1000000px;
    left: -10000px;
}
.landing-hero-media {
    width: calc(100% - (var(--Pg) * 2));
    height: calc(100% - (var(--Pg) * 2));
    /* padding: var(--Pg); */
    position: absolute;
    top: var(--Pg);
    left: var(--Pg);
}
.landing-hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.landing-hero img.bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: -1;
    opacity: 0.9;
}

.landing-hero-content {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--Ph);
    text-align: center;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.landing-hero-content .fh4 {
    font-size: clamp(10px, calc(10px + (24 - 10) * ((100vw - 900px) / 900)), 24px);
    
}
.landing-hero-content  p {
    line-height: 180%;
    font-size: var(--h4);
    color: var(--light);
}

.landing-hero .arrow-down {
    padding-top: var(--Pm);
    width: 30px;
    height: auto;
    position: absolute;
    bottom: 30%;
    /* transform: translateY(-100%); */
    svg {
        width: 100%;
        height: 100%;
    }
    path {
        stroke: var(--lemon);
    }
}

/* Intro Styling */
.intro-section {
    background: var(--camomile);
    padding: 90px var(--Pg);
    text-align: center;
    color: var(--berry);
    display: flex;
    flex-direction: column;
    gap: var(--Pm);
}



.intro-section .body {
    max-width: 715px;
    width: 100%;
    /* display: flex; */
    /* flex-direction: column; */
    gap: var(--Ph);
    text-align: center;
    /* align-items: center;
    justify-content: center; */
    margin: 0 auto;
}

.intro-section .monogram {
    width: 60px;
    height: 60px;
    color: var(--berry);
    margin-left: auto;
    margin-right: auto;
}
.intro-section .monogram  svg {
    width: 100%;
}

/* Reservations Section Styling */
.reservations-section {
    background-color: var(--berry);
    position: relative;
    padding-bottom: 360px;
    color: var(--camomile);
    text-align: center;
    padding-left: var(--Pg);
    padding-right: var(--Pg);
    padding-top: 60px;
    position: relative;
}
.reservations-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    width: 100%;
    height: 20px;
    background: radial-gradient(circle at 50% 90%, var(--berry) 70%, transparent 71%) -20px 0 / 40px 22px repeat-x;
}

.reservations-section h2 {
    margin-bottom: 60px;
}

.widget-outer {
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.widget-container {
    background: #fff;
    border-radius: 4px;
    /* min-height: 600px; */
    position: relative;
    overflow: hidden;
    color: var(--dark);
}

/* Footer Refined Styling */
.footer-landing {
    background: var(--black);
    color: var(--camomile);
    position: relative;
    /* padding: 0 0 40px 0; */
}

.footer-initial-wave {
    width: 100%;
    /* height: 160px;
    margin-top: -80px;
    margin-bottom: 40px; */
    aspect-ratio: 10;
}
.footer-initial-wave svg {
    height: 100%;
}

.footer-content {
    /* padding: 0 40px;
    max-width: 1400px; */
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: center;
    padding-bottom: 60px;
    position: relative;
}





.footer-icons {
    color: var(--light);
    --fg: var(--light);
}

.footer-col {
    padding: 0 40px;
    text-align: center;
}

.footer-col h4 {
    font-family: var(--fontSubHeading);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 25px;
    color: var(--camomile);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 5px;
    color: var(--camomile);
}


.footer-logo-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    padding: 20px;
    width: 100px;
    height: 100px;
    background-color: var(--black);
}

.footer-logo-center  svg {
    width: 100%;
    height: auto;
}

.footer-grid-vr {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: #222;
    z-index: 1;
}

.venue-logos {
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.venue-logos span.label {
    font-family: var(--fontSubHeading);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--camomile);
    display: block;
    margin-bottom: 50px;
}
.footer-icons-item {
    width: 400px;
    height: 300px;
}
.footer-icons-item * {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.venue-logos
/* .venue-logos svg path {
    fill: #fff;
} */

.logo-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.logo-row span {
    font-family: var(--fontHeading);
    font-size: 16px;
    letter-spacing: 0.1em;
    color: var(--camomile);
    opacity: 0.8;
}

.newsletter-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    padding: var(--Pg);
    gap: 40px;
    border-bottom: 1px solid #222;
}

.newsletter-section p { 
    font-size: 14px;
    color: var(--camomile);
}

.newsletter-form {
    display: flex;
    gap: 40px;
    align-items: flex-end;
}

.newsletter-form .field {
    flex: 1;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}

.newsletter-form input {
    background: transparent;
    border: none;
    color: var(--camomile);
    width: 100%;
    font-size: 13px;
    outline: none;
    font-family: var(--fontBody);
}

.newsletter-form button.submit-btn {
    background: transparent;
    border: 1px solid var(--camomile);
    color: var(--camomile);
    border-radius: 50px;
    padding: 8px 35px;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.3s;
    height: fit-content;
}

.newsletter-form button.submit-btn:hover { background: #fff; color: #000; }

.big-wordmark-container {
    padding: var(--Pg);
    color: var(--camomile);
}

.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    padding: var(--Ph) var(--Pg);
    font-size: 10px;
    color: var(--ceylon);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-bottom-bar div { display: flex; gap: 30px; }

.footer-footer {
    height: var(--Pg);
    background-color: var(--hibiscus);
}


@media screen and (max-width: 768px) {

    /* .landing-hero {
        height: 50vh;
    } */
     .fp1 {
        font-size: 16px;
     }
    .landing-hero-content {
        row-gap: 0;
    }
    .landing-hero-content h1{
        font-size: 30px;
    }
    .landing-hero-content p {
        line-height: 120%;
    }
    .landing-hero .arrow-down {
        display: none;
    }

    .reservations-section {
        padding-bottom: 120px;
    }

    .landing-hero {
        aspect-ratio: 1.3;
    }

    .reservations-section::before {
        top: 1px
    }

    .intro-section {
        row-gap: 20px;
    }
    .footer-grid {

    }
    .footer-landing {
        width: 100vw;
        /* overflow-x: hidden;
        overflow-y: visible; */
    }
    .footer-initial-wave {
        /* width: 200%; */
        overflow: hidden;
        /* aspect-ratio: 7; */
    }
    .footer-initial-wave svg {
        /* width: 200%; */
    }
    .footer-logo-center {
        position: relative;
        grid-row: 1;
        padding-top: 48px;
        padding: 26px;
        width: 110px;
        height: 110px;
        padding-top: 42px;
    }
    .footer-col {
        border-bottom: 1px solid #222;
    }

    .big-wordmark-container {
        padding: 80px var(--Pg);
        border-bottom: 1px solid #222;
    }
    .venue-logos {
        border-top: none;
        padding: var(--Pm) 0;
    }
    .footer-icons-item {
        width: 100px;
        height: 80px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr;
        padding-bottom: 0;
    }
    .footer-col {
        padding: var(--Pm) 0;
    }
    
    .footer-grid-vr {
        display: none;
    }
}