/* =========================================================
   LIVCENT — BOOK A PRIVATE DEMO
========================================================= */

:root {

    --black: #070808;
    --paper: #f2efe8;
    --white: #f6f2eb;

    --gold: #c8a55e;
    --gold2: #dfc88e;

    --serif:
        "Playfair Display",
        Georgia,
        serif;

    --sans:
        "DM Sans",
        Arial,
        sans-serif;

    --width:
        min(
            1240px,
            calc(100% - 100px)
        );
}


/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    background: var(--black);

    color: var(--white);

    font-family: var(--sans);

    font-weight: 300;
}


a {
    color: inherit;

    text-decoration: none;
}


button,
input,
select,
textarea {
    font: inherit;
}


.page-width {

    width: var(--width);

    margin: 0 auto;
}



/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: fixed;

    z-index: 100;

    top: 0;
    left: 0;

    width: 100%;
    height: 78px;

    padding: 0 4.5vw;

    display: flex;

    align-items: center;

    gap: 40px;

    background:
        rgba(5,6,6,.72);

    backdrop-filter:
        blur(16px);

    border-bottom:
        1px solid
        rgba(255,255,255,.08);
}


.brand {

    display: flex;

    flex-direction: column;

    line-height: 1;
}


.brand b {

    font-size: 14px;

    letter-spacing: .28em;

    font-weight: 500;
}


.brand small {

    margin-top: 5px;

    font-size: 7px;

    letter-spacing: .20em;

    color: var(--gold2);
}


.site-header nav {

    margin-left: auto;

    display: flex;

    align-items: center;

    gap: 30px;
}


.site-header nav a {

    font-size: 11px;

    letter-spacing: .13em;

    text-transform: uppercase;

    color:
        rgba(255,255,255,.72);

    transition: .25s;
}


.site-header nav a:hover {

    color: var(--gold2);
}


.mini-btn {

    min-height: 42px;

    padding: 0 18px;

    border:
        1px solid
        rgba(200,165,94,.75);

    display: inline-flex;

    align-items: center;

    font-size: 11px;

    letter-spacing: .13em;

    text-transform: uppercase;

    color: var(--gold2);
}


.mini-btn.active {

    background:
        rgba(200,165,94,.10);
}


.menu-btn {

    display: none;

    margin-left: auto;

    border: 0;

    background: none;
}


.menu-btn span {

    display: block;

    width: 25px;

    height: 1px;

    margin: 6px;

    background: #fff;
}


.mobile-menu {
    display: none;
}



/* =========================================================
   DEMO HERO
========================================================= */

.demo-hero {

    position: relative;

    min-height: 100svh;

    padding:
        145px
        0
        100px;

    overflow: hidden;
}


.demo-bg {

    position: absolute;

    inset: 0;

    background-size: cover;

    background-position: center;

    z-index: 0;
}


.demo-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:

        linear-gradient(
            90deg,
            rgba(0,0,0,.88) 0%,
            rgba(0,0,0,.72) 38%,
            rgba(0,0,0,.54) 100%
        ),

        linear-gradient(
            0deg,
            rgba(0,0,0,.72),
            rgba(0,0,0,.10)
        );
}
.demo-grid {
    position: relative;
    z-index: 5;

    display: grid;

    /* Better balance between content and form */
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(480px, 0.95fr);

    gap: clamp(65px, 7vw, 110px);

    align-items: center;
}

/* =========================================================
   LEFT SIDE
========================================================= */

.section-no {

    display: flex;

    align-items: center;

    gap: 13px;

    font-size: 11px;

    letter-spacing: .18em;

    color:
        rgba(255,255,255,.68);
}


.section-no i {

    width: 46px;

    height: 1px;

    background:
        rgba(255,255,255,.40);
}/* =========================================================
   BOOK DEMO — MAIN HERO HEADING
========================================================= */

.demo-intro h1 {
    max-width: 620px;

    margin: 24px 0 26px;

    font-family: var(--serif);

    /* Reduced from previous oversized version */
    font-size: clamp(48px, 4vw, 68px);

    line-height: 1;

    letter-spacing: -.04em;

    font-weight: 400;
}

.demo-intro h1 em {
    display: block;

    margin-top: 3px;

    color: var(--gold2);

    font-style: italic;

    font-weight: 300;
}

.demo-lead {
    max-width: 540px;

    margin: 0;

    font-size: 15px;

    line-height: 1.75;

    color: rgba(255,255,255,.72);
}


/* =========================================================
   DEMO POINTS
========================================================= */
.demo-points {
    max-width: 560px;

    margin-top: 42px;

    display: grid;

    gap: 0;
}

.demo-points > div {
    display: grid;

    grid-template-columns: 50px 1fr;

    gap: 17px;

    padding: 17px 0;

    border-bottom:
        1px solid rgba(255,255,255,.10);
}

.demo-points > div > span {
    padding-top: 2px;

    font-size: 11px;

    letter-spacing: .14em;

    color: var(--gold2);
}

.demo-points p {
    margin: 0;

    display: grid;

    gap: 6px;
}

.demo-points strong {
    font-size: 12px;

    letter-spacing: .10em;

    text-transform: uppercase;

    font-weight: 500;

    color: rgba(255,255,255,.92);
}

.demo-points small {
    max-width: 410px;

    font-size: 12px;

    line-height: 1.6;

    color: rgba(255,255,255,.52);
}

/* =========================================================
   FORM CARD
========================================================= */
.demo-card {
    position: relative;

    width: 100%;
    max-width: 540px;

    justify-self: end;

    padding: 46px 42px 40px;

    background: rgba(16,17,17,.86);

    border:
        1px solid rgba(255,255,255,.15);

    box-shadow:
        0 35px 90px rgba(0,0,0,.38);

    backdrop-filter: blur(22px);
}

.demo-card::before {
    content: "";

    position: absolute;

    left: -1px;
    top: 0;

    width: 2px;
    height: 90px;

    background: var(--gold);
}.form-eyebrow {
    display: block;

    margin-bottom: 16px;

    font-size: 11px;

    font-weight: 600;

    letter-spacing: .16em;

    text-transform: uppercase;

    color: var(--gold2);
}


.demo-card h2 {
    max-width: 430px;

    margin: 0 0 17px;

    font-family: var(--serif);

    font-size: clamp(38px, 3vw, 48px);

    line-height: .98;

    letter-spacing: -.035em;

    font-weight: 400;
}


.demo-card h2 em {
    color: var(--gold2);

    font-style: italic;

    font-weight: 300;
}


.form-intro {
    max-width: 420px;

    margin: 0 0 32px;

    font-size: 14px;

    line-height: 1.65;

    color: rgba(255,255,255,.64);
}

/* =========================================================
   FORM
========================================================= */
/* =========================================================
   BOOK DEMO FORM
========================================================= */

.demo-form {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 26px 22px;
}


/* Full-width fields */

.form-field.full,
.form-submit.full {
    grid-column: 1 / -1;
}


/* Individual field */

.form-field {
    display: grid;

    gap: 10px;
}


/* =========================================================
   FORM LABELS
========================================================= */

.form-field label {
    font-size: 13px;

    font-weight: 500;

    line-height: 1.4;

    letter-spacing: .025em;

    color: rgba(255,255,255,.82);
}


/* =========================================================
   INPUTS / SELECT / TEXTAREA
========================================================= */

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;

    margin: 0;

    padding: 12px 2px 14px;

    border: 0;

    border-bottom:
        1px solid rgba(255,255,255,.28);

    border-radius: 0;

    outline: none;

    background: transparent;

    color: #fff;

    font-family: var(--sans);

    font-size: 14px;

    font-weight: 300;

    line-height: 1.5;

    transition: border-color .25s ease;
}


/* Placeholder */

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255,255,255,.46);

    opacity: 1;
}


/* Focus */

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--gold);
}


/* Select */

.form-field select {
    cursor: pointer;
}

.form-field select option {
    color: #111;

    background: #fff;
}


/* Textarea */

.form-field textarea {
    min-height: 92px;

    resize: vertical;
}




/* =========================================================
   FORM BUTTON
========================================================= */
.demo-form {
    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap:
        23px
        20px;
}

.form-field {
    display: grid;

    gap: 9px;
}

.form-field.full,
.form-submit.full {
    grid-column: 1 / -1;
}

.form-field label {
    font-size: 11px;

    font-weight: 500;

    letter-spacing: .035em;

    color: rgba(255,255,255,.70);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;

    border: 0;

    border-bottom:
        1px solid rgba(255,255,255,.24);

    border-radius: 0;

    outline: 0;

    padding:
        11px
        2px
        13px;

    background: transparent;

    color: #fff;

    font-size: 13px;

    line-height: 1.5;

    transition:
        border-color .25s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255,255,255,.38);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--gold);
}

.form-field textarea {
    min-height: 88px;

    resize: vertical;
}

.form-field select option {
    color: #111;
}
.form-submit {
    margin-top: 4px;
}


.form-submit button {
    width: 100%;

    min-height: 60px;

    padding: 0 22px;

    border: 1px solid var(--gold);

    background: var(--gold);

    color: #17130b;

    display: flex;

    align-items: center;

    justify-content: space-between;

    cursor: pointer;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: .11em;

    text-transform: uppercase;

    transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease;
}


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

    background: var(--gold2);

    box-shadow:
        0 12px 35px rgba(200,165,94,.18);
}


.form-submit button span {
    font-size: 19px;
}
.privacy-note {
    max-width: 440px;

    margin: 18px 0 0;

    font-size: 11px;

    line-height: 1.65;

    color: rgba(255,255,255,.48);
}

/* =========================================================
   CONTACT SECTION
========================================================= */
.demo-contact {
    padding: 90px 0 95px;
    background: var(--paper);
    color: #111;
}

.contact-heading {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    align-items: end;
    gap: 48px;
    margin-bottom: 48px;
}

.contact-heading > span {
    padding-bottom: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .17em;
    text-transform: uppercase;
    color: #766c5c;
}

.contact-heading h2 {
    max-width: 720px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(48px, 4.7vw, 70px);
    line-height: .96;
    letter-spacing: -.04em;
    font-weight: 400;
}

.contact-heading h2 em {
    color: #a9874a;
    font-style: italic;
    font-weight: 300;
}

/* =========================================================
   CONTACT CARDS
========================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #d1cbc0;
    border-bottom: 1px solid #d1cbc0;
}

.contact-card {
    min-height: 190px;
    padding: 27px 24px 30px;
    border-right: 1px solid #d1cbc0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: background .3s ease, transform .3s ease;
}

.contact-card:last-child {
    border-right: 0;
}

a.contact-card:hover {
    background: rgba(200,165,94,.08);
    transform: translateY(-3px);
}

.contact-no {
    margin-bottom: 27px;
    font-size: 11px;
    letter-spacing: .15em;
    color: #a9874a;
}

.contact-card strong {
    font-size: 11px;
    letter-spacing: .13em;
    text-transform: uppercase;
    font-weight: 600;
}

.contact-card b {
    margin-top: 13px;
    font-family: var(--serif);
    font-size: 23px;
    line-height: 1.15;
    font-weight: 400;
}

.contact-card small {
    max-width: 240px;
    margin-top: 11px;
    font-size: 12px;
    line-height: 1.6;
    color: #746e65;
}

/* =========================================================
   CLOSING / PREMIUM CTA
========================================================= */
.demo-closing {
    padding: 82px 0;
    background: #090a0a;
    border-top: 1px solid rgba(255,255,255,.05);
}

.closing-content {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr) 180px;
    gap: 50px;
    align-items: center;
}

.closing-content > span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .22em;
    color: var(--gold2);
}

.closing-content h2 {
    max-width: 800px;
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(44px, 4.2vw, 66px);
    line-height: .97;
    letter-spacing: -.04em;
    font-weight: 400;
}

.closing-content h2 em {
    display: block;
    color: var(--gold2);
    font-style: italic;
    font-weight: 300;
}

.closing-content > a {
    min-width: 170px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 0 0 14px;
    border-bottom: 1px solid rgba(255,255,255,.28);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .10em;
    text-transform: uppercase;
    transition: color .25s ease, border-color .25s ease;
}

.closing-content > a:hover {
    color: var(--gold2);
    border-color: var(--gold);
}

/* =========================================================
   FOOTER
========================================================= */
/* =========================================================
   LIVCENT PREMIUM FOOTER
========================================================= */

.site-footer {
    position: relative;
  
    background: #060707;
  
    color: #f5f1ea;
  
    padding: 100px 0 30px;
  
    overflow: hidden;
  }
  
  
  /* Very subtle top glow */
  
  .site-footer::before {
    content: "";
  
    position: absolute;
  
    top: 0;
    left: 50%;
  
    transform: translateX(-50%);
  
    width: 65%;
    height: 1px;
  
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(200,165,94,.42),
            transparent
        );
  }
  
  
  /* =========================================================
   MAIN TOP AREA
  ========================================================= */
  
  .footer-main {
    display: grid;
  
    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(320px, .8fr);
  
    gap: 100px;
  
    align-items: end;
  }
  
  
  /* =========================================================
   BRAND
  ========================================================= */
  
  .footer-brand {
    display: inline-flex;
  
    flex-direction: column;
  
    gap: 7px;
  
    margin-bottom: 36px;
  }
  
  
  .footer-brand strong {
    font-size: 18px;
  
    font-weight: 500;
  
    letter-spacing: .30em;
  
    color: #fff;
  }
  
  
  .footer-brand span {
    font-size: 11px;
  
    letter-spacing: .22em;
  
    color: var(--gold2);
  }
  
  
  /* =========================================================
   LARGE FOOTER STATEMENT
  ========================================================= */
  
  .footer-intro h2 {
    max-width: 680px;
  
    margin: 0;
  
    font-family: var(--serif);
  
    font-size: clamp(50px, 5vw, 82px);
  
    line-height: .95;
  
    letter-spacing: -.045em;
  
    font-weight: 400;
  }
  
  
  .footer-intro h2 em {
    color: var(--gold2);
  
    font-style: italic;
  
    font-weight: 300;
  }
  
  
  .footer-intro > p {
    max-width: 500px;
  
    margin: 28px 0 0;
  
    font-size: 14px;
  
    line-height: 1.8;
  
    color: rgba(255,255,255,.58);
  }
  
  
  /* =========================================================
   RIGHT CTA
  ========================================================= */
  
  .footer-contact {
    padding-bottom: 5px;
  }
  
  
  .footer-label {
    display: block;
  
    margin-bottom: 17px;
  
    font-size: 11px;
  
    font-weight: 500;
  
    letter-spacing: .18em;
  
    text-transform: uppercase;
  
    color: var(--gold2);
  }
  
  
  .footer-contact h3 {
    margin: 0;
  
    font-family: var(--serif);
  
    font-size: clamp(32px, 3vw, 48px);
  
    line-height: 1.05;
  
    font-weight: 400;
  
    letter-spacing: -.035em;
  }
  
  
  /* =========================================================
   DEMO BUTTON
  ========================================================= */
  
  .footer-demo-btn {
    width: 100%;
  
    max-width: 390px;
  
    min-height: 58px;
  
    margin-top: 30px;
  
    padding: 0 20px;
  
    border: 1px solid rgba(200,165,94,.65);
  
    display: flex;
  
    align-items: center;
  
    justify-content: space-between;
  
    font-size: 12px;
  
    letter-spacing: .10em;
  
    text-transform: uppercase;
  
    color: #fff;
  
    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
  }
  
  
  .footer-demo-btn span {
    font-size: 18px;
  
    color: var(--gold2);
  }
  
  
  .footer-demo-btn:hover {
    background: var(--gold);
  
    color: #17130b;
  
    border-color: var(--gold);
  }
  
  
  .footer-demo-btn:hover span {
    color: #17130b;
  }
  
  
  /* =========================================================
   DIVIDER
  ========================================================= */
  
  .footer-divider {
    height: 1px;
  
    margin-top: 75px;
    margin-bottom: 55px;
  
    background:
        rgba(255,255,255,.10);
  }
  
  
  /* =========================================================
   FOUR COLUMN INFORMATION AREA
  ========================================================= */
  
  .footer-links-grid {
    display: grid;
  
    grid-template-columns:
        .75fr
        .85fr
        1.2fr
        1.2fr;
  
    gap: 65px;
  }
  
  
  /* =========================================================
   FOOTER COLUMN
  ========================================================= */
  
  .footer-column {
    display: flex;
  
    flex-direction: column;
  
    align-items: flex-start;
  
    gap: 12px;
  }
  
  
  .footer-column .footer-label {
    margin-bottom: 8px;
  }
  
  
  /* ALL FOOTER LINKS >= 11PX */
  
  .footer-column > a:not(.footer-big-link) {
    position: relative;
  
    font-size: 12px;
  
    line-height: 1.5;
  
    color: rgba(255,255,255,.62);
  
    transition:
        color .25s ease,
        transform .25s ease;
  }
  
  
  .footer-column > a:not(.footer-big-link):hover {
    color: #fff;
  
    transform: translateX(3px);
  }
  
  
  /* =========================================================
   PHONE / EMAIL
  ========================================================= */
  
  .footer-big-link {
    font-family: var(--serif);
  
    font-size: clamp(21px, 1.7vw, 28px);
  
    line-height: 1.15;
  
    color: #f7f3ec;
  
    transition: color .3s ease;
  }
  
  
  .footer-big-link:hover {
    color: var(--gold2);
  }
  
  
  .footer-contact-column p {
    max-width: 260px;
  
    margin: 4px 0 0;
  
    font-size: 12px;
  
    line-height: 1.65;
  
    color: rgba(255,255,255,.45);
  }
  
  
  /* =========================================================
   FOOTER BOTTOM
  ========================================================= */
  
  .footer-bottom-new {
    margin-top: 65px;
  
    padding-top: 24px;
  
    border-top:
        1px solid
        rgba(255,255,255,.08);
  
    display: grid;
  
    grid-template-columns: 1fr auto 1fr;
  
    gap: 30px;
  
    align-items: center;
  }
  
  
  /* Copyright */
  
  .footer-copyright {
    font-size: 11px;
  
    color: rgba(255,255,255,.42);
  }
  
  
  /* =========================================================
   SOCIALS
  ========================================================= */
  
  .footer-social {
    display: flex;
  
    align-items: center;
  
    gap: 10px;
  }
  
  
  .footer-social a {
    width: 38px;
    height: 38px;
  
    border:
        1px solid
        rgba(255,255,255,.24);
  
    border-radius: 50%;
  
    display: grid;
  
    place-items: center;
  
    font-size: 11px;
  
    font-weight: 500;
  
    letter-spacing: .04em;
  
    color: #fff;
  
    transition:
        color .3s ease,
        border-color .3s ease,
        background .3s ease;
  }
  
  
  .footer-social a:hover {
    color: #16130d;
  
    background: var(--gold);
  
    border-color: var(--gold);
  }
  
  
  /* =========================================================
   LEGAL
  ========================================================= */
  
  .footer-legal {
    display: flex;
  
    justify-content: flex-end;
  
    gap: 25px;
  }
  
  
  .footer-legal a {
    font-size: 11px;
  
    color: rgba(255,255,255,.42);
  
    transition: color .25s ease;
  }
  
  
  .footer-legal a:hover {
    color: #fff;
  }
  
  
  /* =========================================================
   TABLET
  ========================================================= */
  
  @media (max-width: 900px) {
  
    .site-footer {
        padding-top: 80px;
    }
  
  
    .footer-main {
        grid-template-columns: 1fr;
  
        gap: 55px;
    }
  
  
    .footer-links-grid {
        grid-template-columns:
            1fr 1fr;
  
        gap: 50px;
    }
  
  
    .footer-contact {
        max-width: 520px;
    }
  
  }
  
  
  /* =========================================================
   MOBILE
  ========================================================= */
  
  @media (max-width: 560px) {
  
    .site-footer {
        padding:
            70px
            0
            25px;
    }
  
  
    .footer-intro h2 {
        font-size: 48px;
    }
  
  
    .footer-intro > p {
        font-size: 13px;
    }
  
  
    .footer-links-grid {
        grid-template-columns: 1fr;
  
        gap: 42px;
    }
  
  
    .footer-divider {
        margin-top: 55px;
        margin-bottom: 45px;
    }
  
  
    .footer-bottom-new {
        grid-template-columns: 1fr;
  
        align-items: flex-start;
  
        gap: 25px;
    }
  
  
    .footer-social {
        order: 1;
    }
  
  
    .footer-copyright {
        order: 2;
    }
  
  
    .footer-legal {
        order: 3;
  
        justify-content: flex-start;
    }
  
  }
  
  /* ---------------------------------------------------------
     MOBILE HEADER
     Hamburger appears only on phones / narrow tablets.
  --------------------------------------------------------- */
  
  @media (max-width: 767px) {
  
    .site-header {
      height: 68px;
      padding: 0 20px;
    }
  
    .site-header nav,
    .site-header .mini-btn {
      display: none;
    }
  
    .menu-btn {
      display: block;
      margin-left: auto;
      background: none;
      border: 0;
      cursor: pointer;
    }
  
    .menu-btn span {
      display: block;
      width: 25px;
      height: 1px;
      margin: 6px 0;
      background: #fff;
    }
  
    .mobile-menu {
      position: fixed;
      z-index: 90;
      inset: 0;
  
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 25px;
  
      background: #080909;
  
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
  
      transition:
        opacity .3s ease,
        visibility .3s ease;
    }
  
    .mobile-menu.open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
  
    .mobile-menu > a:not(.gold-btn) {
      font: 400 34px var(--serif);
    }
  }
  
  
  /* ---------------------------------------------------------
     PHONE
  --------------------------------------------------------- */
  
  @media (max-width: 560px) {
  
    :root {
      --width: calc(100% - 30px);
    }
  
    .brand b {
      font-size: 12px;
    }
  
    .brand small {
      font-size: 5px;
    }
  
    .hero h1 {
      font-size: clamp(48px, 14vw, 64px);
    }
  
    .hero-copy {
      padding-top: 20px;
    }
  
    .buttons {
      flex-wrap: wrap;
    }
  
    .responds {
      height: 165vh;
    }
  
    .responds-story {
      width: min(100%, 300px);
    }
  
    .cta {
      height: 70svh;
    }
  
    .footer-grid {
      grid-template-columns: 1fr;
    }
  
    .footer-grid > div:first-child {
      grid-column: auto;
    }
}
