@font-face {
    font-family: 'Audrielle';
    src: url('fonts/audrielle-no-2.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/*
 * EASY DESIGN SETTINGS
 * This file is loaded after the main stylesheet.
 * Change the values below in Dreamweaver, save, then upload this file.
 */

:root {
    /* Main colours */
    --cream: #f3ebdd;
    --stone: #c9bdaa;
    --clay: #a56f56;
    --brown: #332821;
    --sage: #89917d;
    --white: #fffaf4;

    /* Fonts */
    --serif: Fraunces, Georgia, serif;
    --sans: 'DM Sans', Arial, sans-serif;
    --script: 'Audrielle', 'Brush Script MT', cursive;
}

/* Homepage main title */
.hero h1 {
    font-size: clamp(2.5rem, 2.5vw + 2rem, 3rem);
}

/* Homepage introductory sentence */
.hero p:not(.eyebrow) {
    font-size: 1.15rem;
}

/* Ordinary page titles */
.page-heading h1,
.page > h1 {
    font-size: clamp(3.2rem, 7vw, 7rem);
}

/* Wedding and engagement page titles */
.service-hero h1 {
    font-size: clamp(3.6rem, 7.5vw, 8.5rem);
}

/* Ordinary paragraph text */
body {
    font-size: 16px;
}

@media (max-width: 850px) {
    .hero h1 {
        font-size: 3.2rem;
    }

    .service-hero h1 {
        font-size: 3.1rem;
    }
}

/* Expanded location pages */
.location-page {
    max-width: 1480px;
    padding-left: clamp(1.4rem, 6vw, 6rem);
    padding-right: clamp(1.4rem, 6vw, 6rem);
}

.location-page > h1 {
    max-width: 1100px;
}

.location-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
    gap: clamp(2.5rem, 7vw, 7rem);
    align-items: center;
    margin-top: clamp(2.5rem, 5vw, 5rem);
}

.location-intro-grid .prose,
.location-section .prose {
    max-width: 720px;
    margin: 0;
}

.location-feature-image {
    margin: 0;
}

.location-feature-image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
}

.location-feature-image figcaption {
    margin-top: .75rem;
    color: #332821b5;
    font-size: .78rem;
    line-height: 1.5;
    letter-spacing: .06em;
}

.location-section {
    display: grid;
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
    gap: clamp(2rem, 7vw, 7rem);
    align-items: start;
    margin-top: clamp(6rem, 11vw, 11rem);
    padding-top: clamp(2rem, 4vw, 4rem);
    border-top: 1px solid #33282133;
}

.location-section h2,
.location-gallery h2,
.location-faq h2,
.location-cta h2 {
    margin-top: .35rem;
}

.location-gallery,
.location-faq,
.location-cta {
    margin-top: clamp(6rem, 11vw, 11rem);
}

.location-gallery .section-heading,
.location-faq .section-heading {
    margin-bottom: clamp(2rem, 5vw, 4rem);
}

.location-gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(.7rem, 1.5vw, 1.4rem);
}

.location-gallery-grid figure {
    margin: 0;
    min-width: 0;
    overflow: hidden;
}

.location-gallery-grid figure.wide {
    grid-column: 1 / -1;
}

.location-gallery-grid img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
    transition: transform .6s ease;
}

.location-gallery-grid .wide img {
    aspect-ratio: 16 / 8;
}

.location-gallery-grid.portrait-triptych {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.location-gallery-grid.portrait-triptych img {
    aspect-ratio: 2 / 3;
}

.location-gallery-grid figure:hover img {
    transform: scale(1.015);
}

.location-fact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: #33282130;
}

.location-fact-grid article {
    background: #f8f1e7;
    padding: clamp(1.4rem, 3vw, 2.5rem);
}

.location-fact-grid h3 {
    margin: 0 0 .8rem;
    font-family: var(--serif);
    line-height: 1.1;
}

.location-fact-grid p {
    margin: 0;
}

.location-faq {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.location-cta {
    padding: clamp(3rem, 8vw, 7rem);
    background: var(--brown);
    color: var(--cream);
    text-align: center;
}

.location-cta p:not(.eyebrow) {
    max-width: 650px;
    margin: 1.25rem auto 2rem;
}

.location-cta .button {
    background: var(--clay);
}

.location-cta .button:hover {
    background: var(--cream);
    color: var(--brown);
}

@media (max-width: 850px) {
    .location-intro-grid,
    .location-section {
        grid-template-columns: 1fr;
    }

    .location-feature-image img {
        aspect-ratio: 4 / 4.6;
    }

    .location-gallery-grid {
        grid-template-columns: 1fr;
    }

    .location-gallery-grid.portrait-triptych {
        grid-template-columns: 1fr;
    }

    .location-gallery-grid figure.wide {
        grid-column: auto;
    }

    .location-gallery-grid img,
    .location-gallery-grid .wide img {
        aspect-ratio: 4 / 3;
    }

    .location-fact-grid {
        grid-template-columns: 1fr;
    }

    .location-cta {
        margin-left: -1.4rem;
        margin-right: -1.4rem;
    }
}


/* Static contact panel */
.static-contact{background:#f8f1e7;padding:clamp(1.5rem,4vw,3.5rem);box-shadow:0 24px 70px #33282116}.static-contact h3{font:700 clamp(1.8rem,3vw,3rem)/1.05 var(--serif);margin-top:0}

/* Sticky header: keep the navigation, logo and buttons dark on the cream bar. */
body:has(.hero) header.scrolled,
body:has(.service-hero) header.scrolled,
body > header.scrolled {
    color: var(--brown);
}

body > header.scrolled a,
body > header.scrolled .brand,
body > header.scrolled .mobile-brand,
body > header.scrolled .menu {
    color: var(--brown);
}

/* Force the sticky state above hero-page and inherited link colours. */
html body header#header.scrolled,
html body header#header.scrolled nav,
html body header#header.scrolled #navlinks,
html body header#header.scrolled #navlinks a,
html body header#header.scrolled .brand,
html body header#header.scrolled .brand span,
html body header#header.scrolled .brand small,
html body header#header.scrolled .mobile-brand,
html body header#header.scrolled .mobile-brand small,
html body header#header.scrolled .language,
html body header#header.scrolled .menu {
    color: #332821 !important;
}

/* Homepage hero photograph */
.hero {
    background:
        linear-gradient(
            90deg,
            rgba(31, 25, 20, 0.72),
            rgba(51, 40, 33, 0.15)
        ),
        url("images/homepage-hero.jpg") center / cover no-repeat !important;

    background-position: center-top !important;
}

/* Introductory and page-heading section spacing */
.intro,
.page-heading {
    padding: 6vw 3vw;
}

@media (max-width: 850px) {
    .intro,
    .page-heading {
        padding: 4rem 1.5rem;
    }
}

/* Real photographs replacing the original colour placeholders */
.service-photo,
.split-photo,
.journal-photo,
.service-art,
.gallery-item img {
    display: block;
    width: 100%;
    object-fit: cover;
}

.service-photo,
.split-photo {
    height: 500px;
}

.service-art {
    height: 620px;
}

.journal-photo {
    height: 330px;
}

.gallery-item img {
    height: auto;
}

@media (max-width: 850px) {
    .service-photo,
    .split-photo,
    .service-art {
        height: 460px;
        min-height: 0;
    }
}

/* Heading sizes — edit these values to adjust the site-wide type scale. */
.hero h1 {
    font-size: clamp(3rem, 5vw, 5.25rem);
}

.page-heading h1,
.page > h1,
.service-hero h1 {
    font-size: clamp(3rem, 5vw, 5.25rem);
}

h2,
.service-story h2,
.included h2,
.location-page h2 {
    font-size: clamp(2rem, 3.5vw, 3.8rem);
}

h3,
.static-contact h3,
.package-card h3,
.type-grid h3,
.process-list h3 {
    font-size: clamp(1.35rem, 2vw, 2rem);
}

@media (max-width: 850px) {
    .hero h1,
    .page-heading h1,
    .page > h1,
    .service-hero h1 {
        font-size: 3.2rem;
    }

    h2,
    .service-story h2,
    .included h2,
    .location-page h2 {
        font-size: 2.4rem;
    }
}

/* About Charlotte portrait and introduction */
.about-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: clamp(3rem, 8vw, 9rem);
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 11rem 8vw 9rem;
}

.about-copy h1 {
    margin-bottom: 2rem;
}

.about-quote {
    max-width: 760px;
    margin: 0 0 2.5rem;
    color: #77783f;
    font: 400 clamp(3.4rem, 5.6vw, 6.4rem)/.92 var(--script);
    letter-spacing: .005em;
}

.about-copy .prose {
    max-width: 690px;
    font-size: 1.12rem;
}

.about-portrait {
    margin: 0;
    position: relative;
}

.about-portrait::before {
    content: "";
    position: absolute;
    inset: 1.25rem -1.25rem -1.25rem 1.25rem;
    border: 1px solid var(--clay);
    z-index: -1;
}

.about-portrait img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.about-portrait figcaption {
    margin-top: 1.25rem;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .16em;
    text-transform: uppercase;
}

@media (max-width: 850px) {
    .about-intro {
        grid-template-columns: 1fr;
        padding: 8rem 1.5rem 6rem;
    }

    .about-portrait {
        max-width: 560px;
    }

    .about-quote {
        font-size: clamp(3.2rem, 14vw, 5rem);
        line-height: .96;
    }
}

/* Temporary language-button removal and centred desktop navigation */
#navlinks .language {
    display: none !important;
}

@media (min-width: 1351px) {
    nav #navlinks {
        grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(180px, 2fr) repeat(4, minmax(0, 1fr));
    }
}

/* Journal holding page */
.journal-coming-soon {
    min-height: 78svh;
    display: grid;
    place-content: center;
    justify-items: center;
    padding: 11rem 1.5rem 7rem;
    text-align: center;
}

.journal-coming-soon h1 {
    margin: .25rem 0 1rem;
}

.coming-soon-message {
    margin: 0;
    color: var(--clay);
    font: 400 clamp(3.2rem, 7vw, 7rem)/1 var(--script);
}

.journal-coming-soon > p:last-of-type {
    max-width: 590px;
    margin: 1.5rem auto 2.25rem;
    font-size: 1.1rem;
}

/* Journal index and long-form planning guides */
body:has(.journal-index-heading) > header,
body:has(.journal-article) > header {
    color: var(--brown);
}
.journal-index-heading {
    max-width: 980px;
    padding: 11rem 8vw 5rem;
    margin: auto;
    text-align: center;
}
.journal-index-heading h1 { margin: .15em 0; }
.journal-index-heading > p:last-child { max-width: 650px; margin: 1.4rem auto 0; font-size: 1.12rem; }
.journal-index-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.25rem, 3vw, 3rem);
    max-width: 1320px;
    padding: 0 4vw 9vw;
    margin: auto;
}
.journal-card { background: #fff8; }
.journal-card-featured { grid-column: 1 / -1; }
.journal-card a { display: grid; grid-template-columns: .9fr 1fr; color: inherit; text-decoration: none; height: 100%; }
.journal-card-featured a { grid-template-columns: 1.25fr 1fr; }
.journal-card img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; }
.journal-card > a > div { padding: clamp(1.5rem, 4vw, 3.5rem); align-self: center; }
.journal-card h2 { font-size: clamp(2rem, 3.4vw, 3.7rem); }
.journal-card span { display: inline-block; margin-top: 1rem; text-decoration: underline; text-underline-offset: .4rem; }
.journal-article { max-width: 1040px; padding: 11rem 6vw 8rem; margin: auto; }
.journal-article-header {
    position: static;
    width: auto;
    padding: 0;
    margin: 0 0 4rem;
    color: inherit;
    background: transparent;
    box-shadow: none;
    text-align: center;
}
.journal-article-header h1 { font-size: clamp(3rem, 6vw, 6.2rem); }
.journal-article-header .standfirst { max-width: 760px; margin: 1.5rem auto 0; font-size: 1.2rem; }
.journal-article-hero { width: 100%; max-height: 680px; object-fit: cover; margin: 0 0 4rem; }
.journal-prose { max-width: 760px; margin: auto; font-size: 1.08rem; }
.journal-prose h2 { font-size: clamp(2rem, 4vw, 3.5rem); margin: 2.2em 0 .6em; }
.journal-prose h3 { font: 700 clamp(1.45rem, 2.4vw, 2rem)/1.15 var(--serif); margin: 1.8em 0 .5em; }
.journal-prose ul { padding-left: 1.25rem; }
.journal-prose .article-photo { width: calc(100% + 12vw); max-width: none; margin: 3rem -6vw; max-height: 620px; object-fit: cover; }
.journal-cta { margin-top: 4rem; padding: clamp(2rem, 5vw, 4rem); background: var(--brown); color: var(--cream); text-align: center; }
.journal-cta h2 { margin-top: 0; }
.guide-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2rem; max-width: 900px; margin: 3rem auto 0; }
@media (max-width: 850px) {
    .journal-index-heading { padding: 8rem 1.5rem 3.5rem; }
    .journal-index-grid { grid-template-columns: 1fr; padding: 0 1.5rem 5rem; }
    .journal-card-featured { grid-column: auto; }
    .journal-card a, .journal-card-featured a { grid-template-columns: 1fr; }
    .journal-card img { height: 320px; min-height: 0; }
    .journal-article { padding: 8rem 1.5rem 5rem; }
    .journal-article-header { margin-bottom: 2.5rem; }
    .journal-article-hero { margin-bottom: 2.5rem; }
    .journal-prose .article-photo { width: calc(100% + 3rem); margin: 2.5rem -1.5rem; }
}

/* Standalone FAQ page using the wedding-page accordion design */
.standalone-faq {
    min-height: 78svh;
    padding-top: 11rem;
    padding-bottom: 8rem;
}

.standalone-faq .section-heading h1 {
    font-size: clamp(3rem, 5vw, 5.25rem);
    margin: .25em 0;
}

@media (max-width: 850px) {
    .standalone-faq {
        padding: 8rem 1.5rem 5rem;
    }

    .standalone-faq .section-heading h1 {
        font-size: 3.2rem;
    }
}

/* Contact enquiry form */
.contact-form { position: relative; }
.contact-form label > span { display: inline; font-size: .66rem; letter-spacing: .03em; text-transform: none; opacity: .7; }
.contact-form .form-notice { grid-column: 1 / -1; margin: 0 0 .5rem; padding: 1rem 1.15rem; border: 1px solid currentColor; font-size: .95rem; }
.contact-form .success { color: #245f48; background: #eef7f1; }
.contact-form .error { color: #8a3029; background: #fff1ef; }
.contact-form .consent { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: .75rem; font-size: .82rem; line-height: 1.55; letter-spacing: 0; text-transform: none; }
.contact-form .consent input { width: 1.05rem; height: 1.05rem; margin: .18rem 0 0; padding: 0; accent-color: var(--brown); }
.contact-form .consent span { font-size: inherit; letter-spacing: inherit; opacity: 1; }
.contact-form .consent a, .contact-alternative a { text-decoration: underline; text-underline-offset: .2em; }
.contact-form button.button { width: fit-content; cursor: pointer; }

/* Stronger homepage call to action */
.hero .button {
    background: #c56f4f;
    color: #fffaf4;
    border: 1px solid #efc3aa;
    box-shadow: 0 12px 34px rgba(20, 12, 8, .35);
    font-weight: 600;
}

.hero .button:hover,
.hero .button:focus-visible {
    background: #dc8563;
    transform: translateY(-3px);
}

/* More compact homepage polaroid cards */
.services {
    max-width: 1440px;
    margin: 0 auto;
    gap: clamp(2rem, 4vw, 4.5rem);
    padding: 2rem 8vw 7rem;
}

.services article {
    padding: clamp(1rem, 1.5vw, 1.5rem);
}

.services article:nth-child(2) {
    margin-top: 5rem;
}

.services article .service-photo {
    height: clamp(330px, 38vw, 450px);
    margin: -1.5rem -1.5rem 1.5rem;
    width: calc(100% + 3rem);
    max-width: none;
}

/* Wedding and engagement image showcases */
.work-showcase {
    padding: clamp(5rem, 9vw, 9rem) 6vw;
    background: #f8f1e7;
}

.work-showcase .section-heading {
    max-width: 760px;
    margin: 0 auto clamp(2.5rem, 5vw, 5rem);
    text-align: center;
    color: var(--brown);
}

.work-showcase .section-heading p:last-child {
    max-width: 570px;
    margin: 1rem auto 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: clamp(180px, 17vw, 300px);
    grid-auto-flow: dense;
    gap: clamp(.65rem, 1.25vw, 1.25rem);
    max-width: 1500px;
    margin: 0 auto;
}

.showcase-grid figure {
    grid-column: span 4;
    margin: 0;
    overflow: hidden;
    background: var(--stone);
}

.showcase-grid .showcase-tall { grid-row: span 2; }
.showcase-grid .showcase-wide { grid-column: span 8; }
.wedding-showcase .showcase-wide { grid-row: span 2; }
.work-showcase:not(.wedding-showcase) .showcase-wide { grid-column: span 12; }
.showcase-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.showcase-grid img.focus-lower { object-position: center 68%; }
.showcase-grid img.focus-hands { object-position: center 58%; }
.showcase-grid img.focus-right { object-position: 64% center; }
.showcase-grid img.focus-ring { object-position: 62% 58%; }
.showcase-grid img.focus-confetti { object-position: center 42%; }
.showcase-grid img.focus-faces { object-position: center 38%; }
.showcase-grid figure:hover img { transform: scale(1.025); }
.showcase-link { display: block; width: fit-content; margin: 2.25rem auto 0; text-underline-offset: .35rem; }

@media (max-width: 850px) {
    .services { padding: 1rem 1.5rem 5rem; }
    .services article:nth-child(2) { margin-top: 1rem; }
    .services article .service-photo { height: 360px; margin: -1rem -1rem 1.25rem; width: calc(100% + 2rem); max-width: none; }
    .work-showcase { padding: 5rem 1.25rem; }
    .showcase-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
    .showcase-grid figure { grid-column: span 1; }
    .showcase-grid .showcase-tall { grid-row: span 2; }
    .showcase-grid .showcase-wide { grid-column: span 2; }
    .wedding-showcase .showcase-wide { grid-row: span 1; }
    .work-showcase:not(.wedding-showcase) .showcase-wide { grid-column: span 2; }
}

@media (max-width: 520px) {
    .showcase-grid { grid-auto-rows: 170px; }
}
