:root {
    --ivory: #f5f0e9;
    --softIvory: #fbf8f4;
    --wine: #5b2835;
    --deepWine: #351a22;
    --rose: #b98289;
    --softRose: #dec5c5;
    --champagne: #bfa77b;
    --charcoal: #2b2524;
    --muted: #766c68;
    --line: rgba(53, 26, 34, 0.14);
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ivory);
    color: var(--charcoal);
    font-family: "Manrope", sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

body.menuOpen {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}


/* GENERAL */

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 400;
}

.sectionEyebrow,
.eyebrow {
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.19em;
    font-size: 0.72rem;
    font-weight: 500;
}

.sectionNumber {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    color: var(--muted);
}

em {
    font-weight: 400;
}

.textLink {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid currentColor;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.textLink.light {
    color: var(--white);
}

.textLink.mutedLight {
    color: rgba(255, 255, 255, 0.7);
}


/* HEADER */

.siteHeader {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    padding: 24px 4.5%;
    color: var(--white);
}

.brand {
    display: flex;
    align-items: center;
    justify-self: start;

    width: 92px;
    height: 92px;

    border-radius: 50%;
    overflow: hidden;

    background: rgba(255, 255, 255, 0.92);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.16);

    backdrop-filter: blur(8px);
}

.brandLogo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: scale(1.08);
}

.siteNav {
    display: flex;
    gap: 34px;
    justify-self: center;
    font-size: 0.78rem;
}

.siteNav a {
    opacity: 0.82;
    transition: opacity 0.25s ease;
}

.siteNav a:hover {
    opacity: 1;
}

.headerBookingLink {
    justify-self: end;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    padding-bottom: 6px;
}

.menuToggle {
    display: none;
}


/* HERO */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: var(--white);
}

.heroBackdrop {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(30, 14, 20, 0.80) 0%,
            rgba(38, 18, 24, 0.50) 40%,
            rgba(38, 18, 24, 0.12) 72%,
            rgba(38, 18, 24, 0.05) 100%
        ),
        url("../images/heroBeauty.jpg");

    background-size: cover;
    background-position: center 35%;
    background-repeat: no-repeat;

    transform: scale(1.02);
}

.heroOverlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(21, 9, 13, 0.48),
            transparent 55%
        );
}

.heroContent {
    position: relative;
    z-index: 2;
    width: min(1120px, 88%);
    margin: 0 0 9vh 6%;
}

.heroContent h1 {
    max-width: 980px;
    margin-bottom: 28px;
    font-size: clamp(5rem, 9.5vw, 10.8rem);
    line-height: 0.76;
    letter-spacing: -0.045em;
}

.heroContent h1 span {
    display: block;
    margin-left: 10%;
    font-style: italic;
    font-weight: 400;
}

.heroIntro {
    width: min(470px, 100%);
    margin-left: 10.5%;
    margin-bottom: 34px;
    font-size: 0.93rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.78);
}

.heroActions {
    margin-left: 10.5%;
    display: flex;
    gap: 30px;
    align-items: center;
}

.heroTopLabel {
    position: absolute;
    z-index: 2;
    left: 4.5%;
    top: 145px;
    font-size: 0.67rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.68);
}

.heroSideNote {
    position: absolute;
    z-index: 2;
    right: 4%;
    top: 50%;
    transform: rotate(90deg) translateX(50%);
    transform-origin: right center;
    text-transform: uppercase;
    font-size: 0.64rem;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.55);
}

.scrollIndicator {
    position: absolute;
    z-index: 2;
    right: 4.5%;
    bottom: 44px;
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.6);
}


/* STATEMENT */

.statementSection {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    padding: 150px 8%;
    border-bottom: 1px solid var(--line);
}

.statementContent {
    max-width: 1000px;
}

.statementContent h2 {
    max-width: 900px;
    margin-bottom: 45px;
    font-size: clamp(4.2rem, 7.5vw, 8rem);
    line-height: 0.88;
    letter-spacing: -0.04em;
}

.statementText {
    max-width: 510px;
    margin-left: auto;
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--muted);
}


/* EDITORIAL FEATURE */

.editorialFeature {
    display: grid;
    grid-template-columns: 1.65fr 0.85fr;
    min-height: 720px;
    background: var(--deepWine);
}

.editorialImage {
    position: relative;
    min-height: 720px;
    overflow: hidden;
}

.imageOne {
    background:
        linear-gradient(
            to top,
            rgba(25, 12, 17, 0.28),
            transparent 45%
        ),
        url("../images/signatureGlam1.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.editorialImage::after {
    content: "";
    position: absolute;
    inset: 11% 10%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    pointer-events: none;
}

.imageCaption {
    position: absolute;
    left: 32px;
    bottom: 28px;
    z-index: 2;
    color: rgba(255, 255, 255, 0.78);
    text-transform: uppercase;
    letter-spacing: 0.17em;
    font-size: 0.61rem;
}

.editorialCopy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 85px 11%;
    background:
        linear-gradient(
            160deg,
            #542a34,
            #371b22
        );
    color: #f7efea;
}

.editorialCopy .sectionEyebrow {
    color: #d6aba4;
}

.editorialCopy p {
    max-width: 390px;
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.6rem, 3.4vw, 4.3rem);
    line-height: 0.98;
    letter-spacing: -0.02em;
}


/* SERVICES */

.servicesSection {
    padding: 150px 8%;
}

.servicesIntro {
    display: grid;
    grid-template-columns: 120px 1fr;
    margin-bottom: 90px;
}

.servicesIntro h2,
.eventsHeading h2 {
    margin: 0;
    font-size: clamp(4rem, 6.5vw, 7rem);
    line-height: 0.88;
    letter-spacing: -0.04em;
}

.serviceList {
    border-top: 1px solid var(--line);
}

.serviceRow {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr) 150px 40px;
    gap: 24px;
    align-items: center;
    min-height: 180px;
    border-bottom: 1px solid var(--line);
    transition:
        padding-left 0.35s ease,
        background 0.35s ease;
}

.serviceRow:hover {
    padding-left: 20px;
    background: rgba(255, 255, 255, 0.25);
}

.serviceIndex {
    font-size: 0.7rem;
    color: var(--muted);
}

.serviceMain {
    display: grid;
    grid-template-columns: minmax(200px, 0.8fr) 1fr;
    gap: 50px;
    align-items: center;
}

.serviceMain h3 {
    margin: 0;
    font-size: clamp(2.5rem, 4.2vw, 4.6rem);
}

.serviceMain p {
    max-width: 480px;
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.88rem;
}

.serviceMeta {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.67rem;
    color: var(--muted);
}

.serviceArrow {
    font-size: 1.2rem;
}


/* GLAM EDIT / EDITORIAL GALLERY */

.glamEditSection {
    padding: 145px 7.5% 155px;
    background: #f8f3ed;
}

.glamEditHeader {
    display: grid;
    grid-template-columns:
        minmax(340px, 1.25fr)
        minmax(260px, 0.72fr)
        auto;
    gap: 70px;
    align-items: end;
    margin-bottom: 78px;
}

.sectionMarker {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 0.19em;
    font-size: 0.63rem;
    color: #756763;
}

.markerLine {
    width: 62px;
    height: 1px;
    background: rgba(53, 26, 34, 0.4);
}

.glamEditHeading h2 {
    margin: 0;
    font-size: clamp(4.8rem, 6.7vw, 7.8rem);
    line-height: 0.82;
    letter-spacing: -0.045em;
}

.glamEditHeading h2 em {
    display: block;
    margin-left: 9%;
}

.glamEditIntro {
    align-self: end;
    padding-bottom: 8px;
}

.glamEditIntro p {
    max-width: 390px;
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.85;
    color: #746965;
}

.galleryViewLink {
    align-self: end;
    display: flex;
    align-items: center;
    gap: 18px;
    width: max-content;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(53, 26, 34, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.64rem;
}


/* EDITORIAL MOSAIC */

.editorialGallery {
    display: grid;
    grid-template-columns:
        minmax(0, 1.12fr)
        minmax(0, 0.82fr)
        minmax(0, 0.82fr);
    grid-template-rows:
        370px
        260px;
    gap: 20px;
}

.editorialTile {
    position: relative;
    display: block;
    overflow: hidden;
    background: #d6c5bd;
}

.editorialTile img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition:
        transform 0.9s cubic-bezier(.2, .65, .25, 1),
        filter 0.6s ease;
}

.editorialTile:hover img {
    transform: scale(1.045);
}

.tileShade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(31, 15, 19, 0.58) 0%,
            rgba(31, 15, 19, 0.08) 45%,
            transparent 70%
        );
}

.tileMeta {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.61rem;
}

.tileLine {
    flex: 1;
    max-width: 58px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
}

.editorialTileSignature {
    grid-row: 1 / span 2;
}

.editorialTileSignature img {
    object-position: center;
}

.editorialTileBridal img {
    object-position: center 20%;
}

.editorialTileSoft img {
    object-position: center 25%;
}

.editorialTileTools {
    grid-column: 2;
    grid-row: 2;
}

.editorialTileTools img {
    object-position: center;
}

.editorialQuote {
    grid-column: 3;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 42px 38px;
    background:
        linear-gradient(
            145deg,
            #4f2831 0%,
            #321920 100%
        );
    color: #f6eee8;
}

.editorialQuote p {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 2.7vw, 3.1rem);
    line-height: 0.98;
}

.editorialQuote p em {
    display: block;
    color: #d7aaa4;
}

.editorialQuote > span {
    width: 68px;
    height: 1px;
    background: rgba(255, 255, 255, 0.45);
}


/* BRIDAL */

.bridalFeature {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    min-height: 850px;
}

.bridalContent {
    padding: 110px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #e8d8d2;
}

.bridalContent h2 {
    margin-bottom: 36px;
    font-size: clamp(4.4rem, 6vw, 7rem);
    line-height: 0.84;
    letter-spacing: -0.04em;
}

.bridalContent p {
    max-width: 460px;
    margin-bottom: 40px;
    color: #665955;
    line-height: 1.85;
    font-size: 0.9rem;
}

.bridalVisual {
    background:
        linear-gradient(
            to top,
            rgba(40, 20, 25, 0.22),
            transparent 50%
        ),
        url("../images/bridalPreparation.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* EVENTS */

.eventsSection {
    padding: 150px 8%;
}

.eventsHeading {
    display: grid;
    grid-template-columns: 120px 1fr;
    margin-bottom: 95px;
}

.eventList {
    border-top: 1px solid var(--line);
}

.eventItem {
    display: grid;
    grid-template-columns: 180px 1fr auto;
    gap: 50px;
    align-items: start;
    padding: 48px 0;
    border-bottom: 1px solid var(--line);
}

.eventDate {
    text-transform: uppercase;
    font-size: 0.67rem;
    letter-spacing: 0.16em;
    color: var(--muted);
}

.eventCopy h3 {
    margin-bottom: 14px;
    font-size: 2.5rem;
}

.eventCopy p {
    max-width: 600px;
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
    font-size: 0.88rem;
}

.eventItem > a {
    font-size: 1.2rem;
}


/* TESTIMONIAL */

.testimonialSection {
    min-height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 8%;
    text-align: center;
    background: var(--deepWine);
    color: var(--white);
}

.quoteMark {
    margin-bottom: 10px;
    font-family: "Cormorant Garamond", serif;
    font-size: 5rem;
    line-height: 1;
    color: var(--rose);
}

.testimonialSection blockquote {
    max-width: 950px;
    margin: 0 auto 32px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.3rem, 5.5vw, 6.4rem);
    line-height: 0.98;
}

.testimonialSection p {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.58);
}


/* BOOKING CTA */

.bookingCta {
    min-height: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 8%;
    background: var(--softIvory);
}

.bookingCtaInner {
    width: min(1000px, 100%);
    text-align: center;
}

.bookingCtaInner h2 {
    margin-bottom: 28px;
    font-size: clamp(5rem, 8vw, 9rem);
    line-height: 0.82;
    letter-spacing: -0.05em;
}

.bookingCtaInner p {
    max-width: 480px;
    margin: 0 auto 45px;
    line-height: 1.8;
    color: var(--muted);
}

.bookingButton {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    padding: 19px 26px;
    border-bottom: 1px solid var(--wine);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.72rem;
}


/* FOOTER */

.siteFooter {
    padding: 90px 6% 30px;
    background: #211317;
    color: var(--white);
}

.footerBrand {
    display: flex;
    flex-direction: column;
    margin-bottom: 90px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(4.5rem, 9vw, 10rem);
    line-height: 0.7;
    letter-spacing: -0.05em;
}

.footerBrand span:last-child {
    margin-left: 16%;
    font-style: italic;
}

.footerColumns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 700px;
    margin-left: auto;
    margin-bottom: 80px;
}

.footerColumns > div {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footerLabel {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.42);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.62rem;
}

.footerColumns a {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
}

.footerBottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.45);
}


/* REVEAL */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* TABLET */

@media (max-width: 1050px) {

    .siteHeader {
        grid-template-columns: 1fr auto;
    }

    .siteNav,
    .headerBookingLink {
        display: none;
    }

    .menuToggle {
        display: flex;
        width: 34px;
        flex-direction: column;
        gap: 7px;
        justify-self: end;
        background: none;
        border: 0;
        padding: 6px 0;
        cursor: pointer;
    }

    .menuToggle span {
        display: block;
        width: 100%;
        height: 1px;
        background: var(--white);
    }

    .siteNav.open {
        position: fixed;
        inset: 0;
        z-index: 30;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        background: var(--deepWine);
        font-family: "Cormorant Garamond", serif;
        font-size: 2.5rem;
    }

    .menuToggle {
        position: relative;
        z-index: 31;
    }

    .statementSection,
    .servicesIntro,
    .eventsHeading {
        grid-template-columns: 70px 1fr;
    }

    .editorialFeature,
    .bridalFeature {
        grid-template-columns: 1fr;
    }

    .editorialImage {
        min-height: 620px;
    }

    .editorialCopy {
        min-height: 440px;
        padding: 75px 8%;
    }

    .bridalVisual {
        min-height: 650px;
        order: -1;
    }

    .serviceMain {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .glamEditHeader {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

    .galleryViewLink {
        grid-column: 2;
    }

    .editorialGallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows:
            570px
            340px
            300px;
    }

    .editorialTileSignature {
        grid-column: 1;
        grid-row: 1;
    }

    .editorialTileBridal {
        grid-column: 2;
        grid-row: 1;
    }

    .editorialTileSoft {
        grid-column: 1;
        grid-row: 2;
    }

    .editorialTileTools {
        grid-column: 2;
        grid-row: 2;
    }

    .editorialQuote {
        grid-column: 1 / -1;
        grid-row: 3;
    }

}


/* MOBILE */

@media (max-width: 720px) {

    .siteHeader {
        padding: 20px 6%;
    }

    .brand {
        width: 68px;
        height: 68px;
    }

    .heroContent {
        width: 88%;
        margin: 0 6% 10vh;
    }

    .heroContent h1 {
        font-size: clamp(4.3rem, 19vw, 7rem);
        line-height: 0.78;
    }

    .heroContent h1 span {
        margin-left: 0;
    }

    .heroIntro,
    .heroActions {
        margin-left: 0;
    }

    .heroActions {
        flex-direction: column;
        align-items: flex-start;
    }

    .heroSideNote {
        display: none;
    }

    .heroTopLabel {
        left: 6%;
        top: 112px;
    }

    .statementSection,
    .servicesIntro,
    .eventsHeading {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .statementSection,
    .servicesSection,
    .eventsSection {
        padding-left: 6%;
        padding-right: 6%;
    }

    .statementContent h2 {
        font-size: 4.2rem;
    }

    .statementText {
        margin-left: 0;
    }

    .editorialImage {
        min-height: 520px;
    }

    .editorialCopy {
        min-height: 390px;
        padding: 65px 7%;
    }

    .editorialCopy p {
        font-size: 2.8rem;
    }

    .serviceRow {
        grid-template-columns: 45px 1fr 24px;
        min-height: 170px;
    }

    .serviceMeta {
        display: none;
    }

    .serviceMain h3 {
        font-size: 3rem;
    }

    .glamEditSection {
        padding: 100px 6% 110px;
    }

    .glamEditHeader {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        margin-bottom: 55px;
    }

    .glamEditHeading h2 {
        font-size: 4.3rem;
    }

    .glamEditHeading h2 em {
        margin-left: 0;
    }

    .editorialGallery {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .editorialTile {
        min-height: 420px;
    }

    .editorialTileSignature {
        min-height: 580px;
    }

    .editorialQuote {
        min-height: 310px;
    }

    .bridalContent {
        padding: 95px 6%;
    }

    .bridalContent h2 {
        font-size: 4.3rem;
    }

    .bridalVisual {
        min-height: 560px;
    }

    .eventItem {
        grid-template-columns: 1fr auto;
        gap: 20px;
    }

    .eventDate {
        grid-column: 1 / -1;
    }

    .testimonialSection blockquote {
        font-size: 3.2rem;
    }

    .bookingCtaInner h2 {
        font-size: 4.7rem;
    }

    .footerBrand {
        font-size: 5rem;
    }

    .footerBrand span:last-child {
        margin-left: 8%;
    }

    .footerColumns {
        grid-template-columns: 1fr;
        gap: 45px;
        margin-left: 0;
    }

    .footerBottom {
        flex-direction: column;
    }

}
