/* Leah Birn — Frame 778 footer + 2700px background canvas — build 2026-08-05 */

@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 100;
    font-display: swap;
    src: url("/assets/fonts/montserrat-latin-100-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 200;
    font-display: swap;
    src: url("/assets/fonts/montserrat-latin-200-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url("/assets/fonts/montserrat-latin-300-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/assets/fonts/montserrat-latin-400-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Montserrat";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("/assets/fonts/montserrat-latin-500-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Corinthia";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/assets/fonts/corinthia-latin-400-normal.woff2") format("woff2");
}

@font-face {
    font-family: "Corinthia";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("/assets/fonts/corinthia-latin-700-normal.woff2") format("woff2");
}

:root {
    --brown: #432816;
    --coffee: #a37246;
    --brown-button: #7f5439;
    --cream: #fffcf9;
    --beige: #e4dacd;
    --white: #fafafa;
    --canvas-width: 2700px;
    --page-width: 1440px;
    --content-width: 1184px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow-x: hidden;
    background: #fff;
    color: var(--brown);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 16px;
    font-weight: 200;
    -webkit-font-smoothing: antialiased;
}

body.lightbox-open {
    overflow: hidden;
}

main {
    width: min(100%, var(--canvas-width));
    margin-inline: auto;
    background: var(--white);
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

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

button,
summary,
select {
    cursor: pointer;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.content-shell {
    width: min(var(--content-width), calc(100% - 64px));
    margin-inline: auto;
}

.button {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 11px 24px;
    border: 1px solid var(--brown);
    border-radius: 0;
    background: transparent;
    color: var(--brown);
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    transition: background-color .2s ease, color .2s ease;
}

.button:hover,
.button:focus-visible {
    background: var(--brown);
    color: var(--white);
}

.button--solid {
    border-color: var(--brown-button);
    background: var(--brown-button);
    color: var(--white);
}

.button--solid:hover,
.button--solid:focus-visible {
    background: var(--brown);
}

.site-header {
    position: relative;
    z-index: 30;
    width: min(100%, var(--canvas-width));
    height: 118px;
    margin-inline: auto;
    background: var(--white);
}

.site-header__inner,
.site-nav {
    width: min(100%, var(--page-width));
    height: 100%;
    margin-inline: auto;
}

.site-nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 72px minmax(0, 1fr);
    align-items: center;
    gap: 64px;
    padding: 24px 128px;
}

.site-nav__group {
    display: flex;
    align-items: center;
    gap: 4.5vw;
}

.site-nav__group--left {
    justify-content: flex-end;
}

.site-nav__group--right {
    justify-content: flex-start;
}

.site-nav__group a {
    position: relative;
    white-space: nowrap;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.3;
}

.site-nav__group a::after {
    position: absolute;
    right: 0;
    bottom: -6px;
    left: 0;
    height: 1px;
    background: var(--coffee);
    content: "";
    opacity: 0;
    transform: scaleX(.4);
    transition: opacity .2s ease, transform .2s ease;
}

.site-nav__group a:hover::after,
.site-nav__group a.is-active::after {
    opacity: .65;
    transform: scaleX(1);
}

.site-logo {
    width: 72px;
    height: 70px;
}

.site-logo img,
.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.menu-toggle {
    display: none;
}

.mobile-logo {
    display: none;
}

.photo-placeholder {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 260px;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: linear-gradient(135deg, #eee5da, #d9cbbb);
    color: rgba(67,40,22,.65);
    text-align: center;
}

.paired-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.paired-heading--left {
    align-items: flex-start;
    text-align: left;
}

.paired-heading h1,
.paired-heading h2 {
    margin: 0 0 -12px;
    font-size: 64px;
    font-weight: 200;
    line-height: 1;
}

.paired-heading p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--coffee);
    font-family: "Corinthia", cursive;
    font-size: 48px;
    font-weight: 400;
    line-height: .92;
}

.section-title {
    margin: 0;
    text-align: center;
    font-size: 64px;
    font-weight: 200;
    line-height: 1;
}

.ready-cta::after {
    background-image: url("../images/wood-footer-strip.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% auto;
}

.story-banner{
    background-color: #E4DACD;    
}

.hero-pl::before {
    background-color: #eadfce;
    background-image: linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.1)), url("/assets/images/wood-texture3.png");
    background-position: center;
    background-size: cover;
}

.hero-pl {
    background-color: #eadfce;
    background-image: linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.1)), url("/assets/images/wood-texture3.png");
    background-position: center;
    background-size: cover;
}

.wood-herogal {
    background-color: #eadfce;
    background-image: linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.1)), url("/assets/images/herogal.png");
    background-position: center;
    background-size: cover;
}

.wood-surface,
.services-section--wood::before {
    background-color: #eadfce;
    background-image: linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.1)), url("/assets/images/wood-texture11.png");
    background-position: center;
    background-size: cover;
}

.wood-surface2 {
    background-color: #eadfce;
    background-image: linear-gradient(rgba(255,255,255,.1), rgba(255,255,255,.1)), url("/assets/images/wood-texture10.png");
    background-position: center;
    background-size: cover;
}

/* Home */
.home-hero {
    position: relative;
    isolation: isolate;
    width: min(100%, var(--canvas-width));
    aspect-ratio: 2700 / 1000;
    margin-inline: auto;
    overflow: visible;
    background: var(--beige);
}

.home-hero::before {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 50%;
    width: min(100vw, var(--canvas-width));
    background: var(--beige);
    content: "";
    transform: translateX(-50%);
}

.home-hero__slides,
.home-hero__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-hero__slide {
    object-fit: cover;
    opacity: 0;
    transition: opacity .8s ease;
}

.home-hero__slides {
    overflow: hidden;
}

.home-hero__slide.is-active {
    opacity: 1;
}


.home-hero__content {
    position: absolute;
    z-index: 2;
    right: 24px;
    bottom: 12.8%;
    left: 24px;
    color: #fff;
    text-align: center;
    pointer-events: none;
}

.home-hero__content h1 {
    margin: 0;
    color: inherit;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: clamp(48px, 6.67vw, 96px);
    font-weight: 200;
    line-height: .95;
    letter-spacing: -.035em;
    white-space: nowrap;
}

.home-hero__content p {
    margin: -5px 0 20px;
    color: inherit;
    font-family: "Corinthia", cursive;
    font-size: clamp(34px, 4.3vw, 62px);
    font-weight: 400;
    line-height: .88;
    white-space: nowrap;
}

.home-hero__button {
    display: inline-flex;
    min-width: 224px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 11px 24px;
    border: 1px solid var(--brown);
    background: var(--brown);
    color: #fff;
    font-size: 17px;
    font-weight: 200;
    line-height: 1;
    pointer-events: auto;
    transition: background-color .2s ease;
}

.home-hero__button:hover,
.home-hero__button:focus-visible {
    background: #2f1b0f;
}

.home-hero__button-hit {
    position: absolute;
    z-index: 2;
    bottom: 13%;
    left: 50%;
    width: 190px;
    height: 48px;
    transform: translateX(-50%);
}

.home-hero__dots {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 18px;
    left: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.home-hero__dots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 1px solid rgba(255,255,255,.9);
    border-radius: 50%;
    background: transparent;
}

.home-hero__dots button.is-active {
    background: #fff;
}

.services-section {
    position: relative;
    padding: 72px 0 96px;
    text-align: center;
    overflow: hidden;
}

.services-section--wood {
    padding-top: 72px;
}

.services-section--wood::before {
    position: absolute;
    inset: 0 0 auto;
    height: 277px;
    content: "";
    opacity: .75;
}

.services-section .content-shell {
    position: relative;
    z-index: 1;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 310px);
    justify-content: center;
    gap: 64px 48px;
    margin: 64px auto;
}

.service-card {
    position: relative;
    display: block;
    width: 310px;
    height: 403px;
    overflow: hidden;
    background: var(--beige);
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .45s ease;
}

.service-card:hover img {
    transform: scale(1.025);
}

.photo-tag {
    position: absolute;
    z-index: 2;
    right: 14px;
    bottom: 11px;
    display: flex;
    height: 39.34px;
    align-items: stretch;
    gap: 6.45px;
    border-radius: 0;
    background: transparent;
    font-size: 15.48px;
    font-weight: 500;
    line-height: 1;
}

.photo-tag__name,
.photo-tag__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(12px) brightness(1.08);
    backdrop-filter: blur(12px) brightness(1.08);
}

.photo-tag__name {
    width: 109.65px;
    min-width: 109.65px;
    padding: 8.38px;
    border-radius: 0 9.03px;
    background: rgba(250, 250, 250, .7);
    letter-spacing: .02em;
}

.photo-tag__arrow {
    position: relative;
    width: 38.05px;
    min-width: 38.05px;
    overflow: hidden;
    border-radius: 9.03px 9.03px 9.03px 0;
    background: rgba(228, 218, 205, .7);

    /* IMPORTANT: SVG uses currentColor */
    color: var(--brown-button);

    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.photo-tag__arrow svg {
    display: block;
    width: 27px;
    height: 27px;
    overflow: visible;
    flex: 0 0 auto;
}

/* Service-card hover: separate the label slightly and cycle the diagonal arrow. */
.photo-tag__name {
    transition: transform .36s cubic-bezier(.22, 1, .36, 1);
}

/* Completely remove the old font/Unicode arrows */
.photo-tag__arrow::before,
.photo-tag__arrow::after {
    content: none !important;
    display: none !important;
}

.service-card:hover .photo-tag__name,
.service-card:focus-visible .photo-tag__name {
    transform: translateX(-6px);
}

/* SVG arrow cycle */
.service-card:hover .photo-tag__arrow svg,
.service-card:focus-visible .photo-tag__arrow svg {
    animation: photo-arrow-cycle .38s cubic-bezier(.22, 1, .36, 1);
}

@keyframes photo-arrow-cycle {
    0% {
        transform: translate3d(0, 0, 0);
    }

    45% {
        transform: translate3d(105%, -105%, 0);
    }

    46% {
        transform: translate3d(-105%, 105%, 0);
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .photo-tag__name {
        transition: none;
    }

    .service-card:hover .photo-tag__arrow svg,
    .service-card:focus-visible .photo-tag__arrow svg {
        animation: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .photo-tag__name,
    .photo-tag__arrow::before,
    .photo-tag__arrow::after {
        transition: none;
    }
}

.story-banner {
    display: flex;
    width: min(100%, var(--canvas-width));
    min-height: 277px;
    margin-inline: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.story-banner h2 {
    margin: 0 0 -16px;
    font-size: 88px;
    font-weight: 200;
    line-height: 1;
}

.story-banner p {
    margin: 0;
    color: var(--coffee);
    font-family: "Corinthia", cursive;
    font-size: 56px;
    line-height: 1;
}

.approach-section {
    display: grid;
    width: min(100%, var(--page-width));
    min-height: 765px;
    margin-inline: auto;
    grid-template-columns: 300px minmax(0, 1fr) 300px;
    align-items: center;
    gap: 64px;
    padding: 96px 0;
}

.approach-section__media {
    position: relative;
    width: 300px;
    height: 470px;
    overflow: hidden;
}

.approach-section__media img {
    width: 100%;
    height: 126%;
    object-fit: cover;
    object-position: center top;
}

.approach-section__copy {
    max-width: 720px;
    text-align: center;
}

.approach-section__copy .paired-heading h2 {
    white-space: nowrap;
}

.approach-section__copy > p {
    margin: 32px auto;
    font-size: 20px;
    line-height: 1.25;
}

/* About */
.image-hero {
    position: relative;
    isolation: isolate;
    width: min(100%, var(--canvas-width));
    aspect-ratio: 2700 / 800;
    margin-inline: auto;
    background-position: center;
    background-size: cover;
}

.image-hero::before {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 50%;
    width: min(100vw, var(--canvas-width));
    background-color: var(--beige);
    background-image: inherit;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    transform: translateX(-50%);
}

.image-hero--about {
    background-image: url("/assets/images/heroabout4.webp");
}

.about-intro {
    position: relative;
    width: min(100%, var(--page-width));
    min-height: 1000px;
    margin-inline: auto;
    overflow: visible;
}

.about-intro__band {
  position: absolute;
  top: 146px;
  left: 60%;
  width: var(--canvas-width);
  height: 164px;
  background: var(--beige);
  transform: translateX(-50%);
  max-width: 1190px;
}

.about-intro__inner {
    position: relative;
    display: grid;
    grid-template-columns: 450px minmax(0, 606px);
    align-items: center;
    justify-content: center;
    gap: 128px;
    min-height: 1000px;
    padding: 103px 0;
}

.about-intro__portrait {
    width: 450px;
    height: 794px;
    overflow: hidden;
    border-radius: 225px;
}

.about-intro__portrait img {
    width: 100%;
    max-width: none;
    height: 100%;
    margin-left: 0;
    object-fit: cover;
    object-position: center top;
}

.about-intro__copy {
    width: 606px;
    padding-top: 0;
    font-size: 24px;
    line-height: 1.15;
    font-weight:300;
}

.about-intro__copy .paired-heading {
  width: 521px;
  max-width: 100%;
  margin-bottom: 106px;
  margin-top: 40px;
}

@media (min-width: 901px) {
    .about-intro__copy .paired-heading {
        transform: translateY(37px);
    }
}

.about-intro__copy .paired-heading p {
    width: 521px;
    max-width: none;
    color: var(--brown);
    font-size: 40px;
    line-height: 1;
    white-space: nowrap;
    opacity: .5;
}

.about-intro__copy p {
    margin-bottom: 28px;
}

/* Gallery */
.wood-herogal {
    display: flex;
    width: min(100%, var(--canvas-width));
    min-height: 210px;
    margin-inline: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.wood-hero h1 {
    margin: 0;
    font-size: 80px;
    font-weight: 200;
    line-height: 1;
}

.wood-hero p {
    max-width: 740px;
    margin: 20px auto 0;
    font-family: "Corinthia", cursive;
    font-size: 44px;
    line-height: 1;
}

.wood-hero--category {
    min-height: 210px;
}

.gallery-overview {
    width: min(100%, var(--page-width));
    margin-inline: auto;
}

.gallery-category {
    display: grid;
    height: 480px;
    min-height: 480px;
    grid-template-columns: 1fr 1fr;
}

.gallery-category:nth-child(even) .gallery-category__image {
    order: 2;
}

.gallery-category__image {
    height: 480px;
    min-height: 480px;
    overflow: hidden;
    background: var(--beige);
}

.gallery-category__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.gallery-category__image:hover img {
    transform: scale(1.02);
}

.gallery-category__copy {
    display: flex;
    height: 480px;
    min-height: 480px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px;
    text-align: center;
}

.gallery-category__copy h2 {
    margin: 0 0 -8px;
    font-size: 56px;
    font-weight: 200;
    line-height: 1;
}

.gallery-category__copy p {
    margin: 0 0 30px;
    color: var(--coffee);
    font-family: "Corinthia", cursive;
    font-size: 36px;
    line-height: 1;
}

.gallery-status {
    padding: 100px 32px;
    text-align: center;
}

.single-gallery {
    width: min(1248px, calc(100% - 64px));
    margin: 64px auto 120px;
    margin-bottom: 0;
    padding-bottom: 64px;
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 48px;
}

.category-pill {
    padding: 9px 16px;
    border: 1px solid rgba(67,40,22,.35);
    font-size: 14px;
}

.category-pill:hover,
.category-pill.is-active {
    background: var(--brown-button);
    color: var(--white);
}

.masonry-gallery {
    columns: 3;
    column-gap: 22px;
}

.masonry-item {
    display: block;
    width: 100%;
    margin: 0 0 22px;
    padding: 0;
    break-inside: avoid;
    border: 0;
    background: var(--beige);
}

.masonry-item img {
    width: 100%;
    height: auto;
}

.lightbox {
    position: fixed;
    z-index: 100;
    inset: 0;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 72px;
    align-items: center;
    background: rgba(27, 17, 10, .94);
}

.lightbox[hidden] {
    display: none;
}

.lightbox figure {
    display: flex;
    max-width: calc(100vw - 180px);
    max-height: calc(100vh - 80px);
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
}

.lightbox figure img {
    max-width: 100%;
    max-height: calc(100vh - 120px);
    object-fit: contain;
}

.lightbox figcaption {
    padding-top: 12px;
    color: #fff;
}

.lightbox__close,
.lightbox__arrow {
    border: 0;
    background: transparent;
    color: #fff;
    font-family: Arial, sans-serif;
}

.lightbox__close {
    position: absolute;
    top: 20px;
    right: 26px;
    font-size: 42px;
}

.lightbox__arrow {
    font-size: 60px;
}

/* Contact */
.contact-section {
    position: relative;
    isolation: isolate;
    display: grid;
    width: min(100%, var(--page-width));
    min-height: 1172px;
    margin-inline: auto;
    grid-template-columns: 586px minmax(0, 691px);
    align-items: end;
    gap: 64px;
    padding: 120px 49px 128px;
    background: var(--cream);
}

.contact-section::before {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 50%;
    width: min(100vw, var(--canvas-width));
    background: var(--cream);
    content: "";
    transform: translateX(-50%);
}

.contact-section__image,
.contact-section__content {
    height: 924px;
}

.contact-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-section__content {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.contact-heading h1 {
    font-size: 48px;
}

.contact-heading p {
    font-size: 77px;
    line-height: .84;
}

.contact-form {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 28px;
}

.contact-form label {
    display: block;
    flex: 1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 52px;
    padding: 16px 24px;
    border: 0;
    border-bottom: 1px solid var(--coffee);
    border-radius: 0;
    outline: 0;
    background: transparent;
    font-size: 20px;
    font-weight: 300;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-bottom-color: var(--brown);
    box-shadow: 0 1px 0 var(--brown);
}

.contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-form__row {
    display: flex;
    gap: 28px;
}

.contact-form__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.form-status {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.form-status.is-error {
    color: #8d2d20;
}

.form-status.is-success {
    color: #496a3e;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
}

/* Planning */
.planning-hero {
  display: flex;
  width: min(100%, var(--canvas-width));
  min-height: 380px;
  margin-inline: auto;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 100px;
  text-align: center;
}

.planning-hero h1 {
    margin-bottom: 38px;
    font-size: 92px;
    font-weight: 200;
    line-height: 1;
}

.planning-hero p {
    max-width: 760px;
    margin-bottom: 36px;
    font-size: 20px;
    line-height: 1.2;
    font-weight:400;
}

.booking-title {
    display: flex;
    min-height: 240px;
    align-items: center;
    justify-content: center;
    border-bottom: 0;/*42px solid var(--beige);*/
}

.booking-title h2 {
    font-size: 88px;
}

.booking-details {
    padding: 64px 0 24px;
}

.booking-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
    margin-bottom: 96px;
}

.booking-detail--reverse .booking-detail__copy {
    grid-column: 2;
    grid-row: 1;
}

.booking-detail__copy {
    grid-column: 1;
    grid-row: 1;
    padding: 36px;
}

.booking-detail__copy h3 {
    margin-bottom: 20px;
    color: var(--coffee);
    font-family: "Corinthia", cursive;
    font-size: 64px;
    font-weight: 400;
    line-height: 1;
}

.booking-detail__copy p {
    font-size: 17px;
    line-height: 1.35;
    font-weight: 500;
}

.booking-detail img {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 100px 0 100px 0;
}

.booking-detail--reverse img {
    grid-column: 1;
    grid-row: 1;
}

.session-process {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 52px;
    padding: 48px 0 88px;
    background: var(--white);
    text-align: center;
}

.session-process article {
    position: relative;
}

.session-process article:not(:last-child)::after {
    position: absolute;
    top: 47px;
    left: calc(50% + 64px);
    width: calc(100% - 76px);
    height: 18px;
    border-top: 1px solid rgba(163, 114, 70, .55);
    border-radius: 50%;
    content: "";
}

.session-process article > span {
    display: inline-flex;
    width: 72px;
    height: 72px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--beige);
    font-family: "Corinthia", cursive;
    font-size: 44px;
}

.session-process h3 {
    margin: 12px 0 -4px;
    color: var(--coffee);
    font-family: "Corinthia", cursive;
    font-size: 52px;
    font-weight: 400;
}

.session-process small {
    color: var(--coffee);
    font-size: 10px;
    letter-spacing: .7px;
}

.session-process p {
    max-width: 315px;
    margin: 24px auto 0;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 500;
}

.delivery-section {
  position: relative;
  width: min(100%, var(--canvas-width));
  margin-inline: auto;
  padding-bottom: 0;
  background-color: var(--white);
  background-image: linear-gradient( to bottom, var(--white) 0, var(--white) 18%, transparent 16%, transparent 35%, var(--white) 28%, var(--white) 100% ), linear-gradient( rgba(255,255,255,.1), rgba(255,255,255,.1) ), url("/assets/images/wood-texture4.png");
  background-position: center top, center top, center top;
  background-size: 100% 100%, cover, cover;
}

.delivery-card {
  display: grid;
  min-height: 240px;
  grid-template-columns: 253px 1px minmax(0, 1fr);
  align-items: center;
  gap: 52px;
  padding: 0 67px 0 103px;
  border: 1px solid #d9d0c5;
  border-radius: 120px 0 120px 0;
  background: linear-gradient(95.15deg, #fafafa 15.28%, #f7efe6 95.33%);
}

.delivery-card .ready-cta__divider {
    height: 150px;
}

.delivery-card .paired-heading h2 {
    margin-bottom: 0;
    color: var(--coffee);
    font-family: "Corinthia", cursive;
    font-size: 92px;
    font-weight: 400;
    line-height: .55;
}

.delivery-card .paired-heading p {
    margin-top: 18px;
    padding-left: 31px;
    color: var(--coffee);
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: .7px;
    line-height: 1;
}

.delivery-card > p {
    margin: 0;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
}

.faq-section {
    padding: 120px 0;
}

.faq-section .paired-heading h2 {
    color: var(--coffee);
    font-family: "Corinthia", cursive;
    font-size: 56px;
    font-weight: 400;
}

.faq-list {
    margin-top: 56px;
}

.faq-list details {
    border-bottom: 1px solid rgba(67,40,22,.25);
}

.faq-list summary {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    padding: 12px 4px;
    list-style: none;
    font-size: 17px;
    font-weight:500;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "⌄";
    color: var(--brown-button);
    font-size: 32px;
    transition: transform .2s ease;
}

.faq-list details[open] summary::after {
    transform: rotate(180deg);
}

.faq-list details p {
    max-width: 850px;
    padding: 0 4px 22px;
    line-height: 1.5;
    font-weight:400;
}

/* Packages and pricing */
.packages-hero,
.pricing-hero {
    display: flex;
    width: min(100%, var(--canvas-width));
    min-height: 372px;
    margin-inline: auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.packages-hero h1 {
    font-size: 96px;
}

.packages-hero .paired-heading p {
    font-size: 64px;
    line-height: 1;
    opacity: .5;
}

.package-choices {
    position: relative;
    width: min(100%, var(--page-width));
    height: 765px;
    margin-inline: auto;
    background: var(--white);
}

.package-choice__copy {
    position: absolute;
    display: flex;
    width: 50%;
    height: 296px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 64px;
}

.package-choice__copy--newborn {
    top: 0;
    left: 0;
}

.package-choice__copy--milestone {
    right: 0;
    bottom: 0;
}

.package-choice__copy h2 {
    margin-bottom: 0;
    font-size: 64px;
}

.package-choice__copy .paired-heading p {
    font-size: 40px;
    line-height: 1;
    opacity: .75;
}

.package-choice__image {
    position: absolute;
    width: 50%;
    height: 469px;
    object-fit: cover;
    object-position: center;
}

.package-choice__image--milestone {
    top: 0;
    right: 0;
}

.package-choice__image--newborn {
    bottom: 0;
    left: 0;
    object-position: center top;
}

.packages-page .ready-cta {
    background: var(--beige);
}

.packages-page .ready-cta::before {
    background: var(--beige);
}

.packages-page .ready-cta::after {
    top: 0;
    bottom: auto;
    height: 80px;
}

.ready-cta--packages::after {
    background-image: url("../images/wood-texture3.png");
}

.pricing-hero {
    min-height: 372px;
    gap: 38px;
}

.pricing-hero h1 {
    font-size: 72px;
}

.pricing-list {
    padding: 110px 0 80px;
}

.pricing-card {
    max-width: 920px;
    margin: 0 auto 32px;
    border: 1px solid rgba(163,114,70,.45);
}

.pricing-card > header {
    display: flex;
    min-height: 86px;
    align-items: center;
    justify-content: space-between;
    padding: 16px 42px;
}

.pricing-card header h2 {
    font-size: 36px;
}

.pricing-card header p {
    font-size: 24px;
}

.pricing-card header strong {
    font-size: 24px;
    font-weight: 300;
}

.pricing-card ul {
    margin: 0;
    padding: 32px 68px 38px;
    line-height: 1.55;
    font-weight: 500;
}

.custom-session {
    position: relative;
    isolation: isolate;
    display: grid;
    width: min(100%, var(--page-width));
    height: 750px;
    margin-inline: auto;
    grid-template-columns: 250px 550px;
    align-items: center;
    justify-content: center;
    gap: 128px;
    padding: 128px;
    overflow: visible !important;
}

.custom-session::before {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 50%;
    width: min(100vw, var(--canvas-width));
    background-color: #e5ddd2;
    background-image: url("/assets/images/custom-session-background.png");
    background-position: center;
    background-size: cover;
    content: "";
    transform: translateX(-50%);
    aspect-ratio:1349/500;
}

.custom-session .paired-heading {
    width: 250px;
}

.custom-session h2 {
    font-size: 48px;
}

.custom-session .paired-heading p {
    font-size: 40px;
    line-height: 1;
    opacity: .5;
}

.custom-session > p {
    width: 550px;
    margin: 0;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
}

.custom-session > p strong {
    font-weight: 400;
}

.custom-session > img {
    display: none;
}

.additional-info {
    padding: 80px 0 100px;
}

.additional-info h2 {
    font-size: 54px;
}

.additional-info ul {
    max-width: 980px;
    margin: 50px auto 24px;
    line-height: 1.7;
    font-weight: 400;
}

.additional-info > p {
    max-width: 980px;
    margin-inline: auto;
    font-weight: 400;    
}

/* CTA and footer */
.ready-cta {
    position: relative;
    isolation: isolate;
    width: min(100%, var(--page-width));
    margin: 0 auto;
    padding: 82px 128px 0;
    overflow: hidden;
}

.ready-cta::after {
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 50%;
    width: min(100vw, var(--canvas-width));
    height: 96px;
    content: "";
    transform: translateX(-50%);
}

.ready-cta::before {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 50%;
    width: min(100vw, var(--canvas-width));
    background: var(--white);
    content: "";
    transform: translateX(-50%);
}

.ready-cta__inner {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: 325px;
    grid-template-columns: 253px 1px minmax(0, 1fr);
    grid-template-rows: minmax(90px, auto) 44px;
    align-items: center;
    column-gap: 52px;
    row-gap: 19px;
    padding: 80px 67px 80px 103px;
    border: 1px solid rgba(163,114,70,.25);
    border-radius: 120px 0 120px 0;
    background: linear-gradient(95.15deg, #fafafa 15.28%, #f7efe6 95.33%);
}

.ready-cta__title {
    grid-column: 1;
    grid-row: 1 / 3;
    display: flex;
    width: 253px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.ready-cta__title strong {
    display: flex;
    height: 39px;
    align-items: center;
    font-family: "Corinthia", cursive;
    font-size: 124px;
    font-weight: 400;
    line-height: 39px;
    white-space: nowrap;
}

.ready-cta__title span {
    align-self: flex-start;
    width: 222px;
    padding-top: 22px;
    padding-left: 0 !important;
    margin-left: 0 !important;
    color: #99795c;
    font-size: 23px;
    font-weight: 300;
    line-height: 23px;
}

.ready-cta__divider {
    grid-column: 2;
    grid-row: 1;
    width: 1px;
    height: 150px;
    background: #c39a75;
    opacity: 1;
    margin-top:30px;
    margin-top: -48px;
}

.ready-cta__inner > p {
    grid-column: 3;
    grid-row: 1;
    align-self: flex-start;
    margin: 0;
    font-size: 19px;
    font-weight: 300;
    line-height: 1.5;
}

.ready-cta__inner > .button {
    grid-column: 3;
    grid-row: 2;
    width: 164px;
    min-height: 44px;
    justify-self: center;
    padding: 12px 24px;
    font-size: 20px;
    white-space: nowrap;
}

.site-footer {
    position: relative;
    isolation: isolate;
    width: min(100%, var(--page-width));
    margin-inline: auto;
    padding: 116px 96px 32px;
    background: var(--beige);
}

.site-footer::before {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 50%;
    width: min(100vw, var(--canvas-width));
    background: var(--beige);
    content: "";
    transform: translateX(-50%);
}

.site-footer__main {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr) 420px;
    align-items: center;
    gap: 64px;
}

.footer-logo {
    width: 103px;
    height: 100px;
}

.footer-nav {
    display: flex;
    align-items: flex-end;
    gap: 54px;
}

.footer-nav > div {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a,
.footer-contact a {
    font-size: 17px;
    font-weight: 300;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 24px;
    opacity: .5;
}

.social-links a {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    color: var(--brown);
}

.social-links svg {
    display: block;
    width: 30px;
    height: 30px;
}

.site-footer__legal {
    margin-top: 48px;
    padding-top: 20px;
    border-top: 1px solid rgba(67,40,22,.5);
    text-align: center;
    font-size: 13px;
    opacity: .5;
    font-weight: 500;
}

@media (min-width: 1181px) {
    .ready-cta {
        z-index: 2;
        height: 312px;
        padding: 0;
        overflow: visible;
        background: var(--white);
    }

    .ready-cta::after {
        top: 281px;
        bottom: auto;
        height: 38px;
    }

  .ready-cta__inner {
    position: absolute;
    z-index: 3;
    top: 70px;
    left: 50%;
    width: min(1190px, calc(100% - 250px));
    height: 280px;
    min-height: 280px;
    border-radius: 120px 0;
    background: linear-gradient(95.15deg, #fafafa 15.28%, #f7efe6 95.33%);
    transform: translateX(-50%);
  }


    .ready-cta + .site-footer {
        position: relative;
        z-index: 1;
        height: 398px;
        margin-top: -31px;
        padding: 151px 96px 48px;
    }

    .ready-cta + .site-footer .site-footer__inner {
        display: flex;
        flex-direction: column;
        gap: 64px;
    }

    .ready-cta + .site-footer .site-footer__legal {
        height: 30px;
        margin-top: 0;
        padding-top: 16px;
    }
}

@media (max-width: 1180px) {
    .site-nav {
        gap: 34px;
        padding-inline: 48px;
    }

    .site-nav__group a {
        font-size: 15px;
    }

    .contact-section {
        grid-template-columns: minmax(340px, .85fr) minmax(0, 1fr);
        gap: 44px;
        padding-inline: 64px;
    }

    .about-intro__inner {
        width: min(1050px, calc(100% - 64px));
        grid-template-columns: 390px minmax(0, 1fr);
        gap: 64px;
    }

    .about-intro__portrait {
        width: 390px;
        height: 690px;
    }
}

@media (max-width: 900px) {
    .site-header {
        height: 84px;
    }

    .site-header__inner {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .site-nav {
        position: absolute;
        top: 84px;
        right: 0;
        left: 0;
        display: none;
        height: auto;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 28px 24px 36px;
        background: var(--white);
        box-shadow: 0 16px 28px rgba(67,40,22,.1);
    }

    .site-nav.is-open {
        display: grid;
    }

    .site-logo {
        position: absolute;
        top: -72px;
        left: 50%;
        width: 62px;
        height: 60px;
        transform: translateX(-50%);
    }

    .mobile-logo {
        display: block;
        width: 62px;
        height: 60px;
    }

    .mobile-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .site-nav__group {
        flex-direction: column;
        gap: 18px;
    }

    .site-nav__group--left,
    .site-nav__group--right {
        justify-content: center;
    }

    .site-nav__group--right {
        margin-top: 18px;
    }

    .site-nav__group a {
        font-size: 17px;
    }

    .menu-toggle {
        position: absolute;
        z-index: 2;
        left: 24px;
        display: flex;
        width: 40px;
        height: 40px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 0;
        border: 0;
        background: transparent;
    }

    .menu-toggle > span:not(.sr-only) {
        width: 24px;
        height: 1px;
        background: var(--brown);
    }

    .section-title,
    .paired-heading h1,
    .paired-heading h2 {
        font-size: 48px;
    }

    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 310px));
        gap: 32px;
    }

    .service-card {
        width: 100%;
        height: auto;
        aspect-ratio: 310 / 403;
    }

    .story-banner h2 {
        font-size: 58px;
    }

    .approach-section {
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 64px 0 0;
    }

    .approach-section__copy {
        grid-column: 1 / -1;
        grid-row: 1;
        max-width: 720px;
        margin: 0 auto;
        padding: 0 32px 64px;
    }

    .approach-section__media {
        width: 100%;
        height: 420px;
    }

    .about-intro__band {
        top: 0;
    }

    .about-intro__inner {
        display: flex;
        width: min(720px, calc(100% - 48px));
        flex-direction: column;
        padding-top: 50px;
    }

    .about-intro__portrait {
        width: min(450px, 100%);
        height: auto;
        aspect-ratio: 450 / 794;
    }

    .about-intro__copy {
        width: 100%;
        padding-top: 0;
    }

    .about-intro__copy .paired-heading {
        width: 100%;
    }

    .about-intro__copy .paired-heading p {
        width: auto;
        max-width: 100%;
        white-space: normal;
        font-size:6vw;
    }
    
    .about-intro__copy .paired-heading {
      margin-bottom: 0;
    }    
    
.about-intro__inner {
  padding-bottom: 40px;
}    

    .packages-hero h1 {
        font-size: 64px;
    }

    .packages-hero .paired-heading p {
        font-size: 48px;
    }

    .package-choices {
        display: flex;
        height: auto;
        flex-direction: column;
    }

    .package-choice__copy,
    .package-choice__image {
        position: static;
        width: 100%;
    }

    .package-choice__copy {
        height: 296px;
    }

    .package-choice__image {
        height: auto;
        aspect-ratio: 720 / 469;
    }

    .package-choice__copy--newborn {
        order: 1;
    }

    .package-choice__image--newborn {
        order: 2;
    }

    .package-choice__copy--milestone {
        order: 3;
    }

    .package-choice__image--milestone {
        order: 4;
    }

    /*
    .gallery-category,
    .gallery-category:nth-child(even) {
        height: auto;
        grid-template-columns: 1fr;
    }

    .gallery-category:nth-child(even) .gallery-category__image {
        order: 0;
    }

    .gallery-category__image,
    .gallery-category__copy {
        height: 400px;
        min-height: 400px;
    }
    */

    .masonry-gallery {
        columns: 2;
    }

    .contact-section {
        display: flex;
        padding: 64px 48px 80px;
        flex-direction: column;
    }

    .contact-section__image,
    .contact-section__content {
        width: 100%;
        height: auto;
    }

    .contact-section__image {
        max-height: 720px;
    }

    .contact-section__image img {
        max-height: 720px;
    }

    .contact-heading {
        margin-top: 14px;
    }

    .planning-hero h1 {
        font-size: 64px;
    }

    .booking-detail {
        gap: 28px;
    }

    .session-process {
        gap: 28px;
    }

    .delivery-card {
        grid-template-columns: 1fr;
        padding: 64px 54px;
        text-align: center;
    }

    .delivery-card .paired-heading {
        align-items: center;
    }

    .delivery-card .ready-cta__divider {
        grid-column: auto;
        grid-row: auto;
        width: 120px;
        height: 1px;
        margin-inline: auto;
    }

    .custom-session {
        height: auto;
        min-height: 424px;
        grid-template-columns: 220px minmax(0, 550px);
        gap: 48px;
        padding: 72px 48px;
    }

    .custom-session .paired-heading {
        width: 220px;
    }

    .custom-session > p {
        width: auto;
        font-size: 20px;
        line-height: 1.15;
    }

    .custom-session > img {
        display: none;
    }

    .ready-cta {
        padding-inline: 48px;
    }

    .ready-cta__inner {
        grid-template-columns: 220px 1px minmax(0, 1fr);
        padding: 64px 48px;
    }

    .ready-cta__title {
        width: 220px;
    }

    .ready-cta__title strong {
        font-size: 100px;
    }

    .ready-cta__title span {
        width: 205px;
        padding-top: 18px;
        font-size: 19px;
        line-height: 19px;
    }

    .ready-cta__inner .button {
        grid-column: 3;
        justify-self: center;
    }

    .site-footer {
        padding-inline: 48px;
    }

    .site-footer__main {
        grid-template-columns: 90px 1fr 260px;
        gap: 36px;
    }
}

@media (max-width: 640px) {
    .content-shell {
        width: calc(100% - 40px);
        margin-left: 8%;
        padding-right: 5%;        
    }
    
    .home-hero {
        aspect-ratio: 4 / 3;
    }

    .home-hero__slide {
        object-position: center;
    }


    .home-hero__content {
        right: 0;
        bottom: 0;
        left: 0;
        padding: 0 20px 48px;
    }

    .home-hero__content h1 {
        font-size: clamp(27px, 8.4vw, 36px);
        letter-spacing: -.04em;
        white-space: nowrap;
    }

    .home-hero__content p {
        margin: 0 0 13px;
        font-size: clamp(23px, 7.3vw, 32px);
        white-space: normal;
    }

    .home-hero__button {
        min-width: 150px;
        min-height: 42px;
        padding: 10px 18px;
        font-size: 14px;
    }

    .home-hero__button-hit {
        bottom: 13%;
        width: 145px;
        height: 42px;
    }

    .services-section {
        padding-block: 56px 72px;
    }

    .section-title,
    .paired-heading h1,
    .paired-heading h2 {
        font-size: 38px;
    }

    .paired-heading p {
        font-size: 36px;
    }

    .approach-section__copy .paired-heading h2 {
        white-space: normal;
    }

    .photo-tag {
        right: 4px;
        bottom: 6px;
        height: 26px;
        gap: 4px;
        font-size: 10px;
    }

    .photo-tag__name {
        width: 68px;
        min-width: 68px;
        padding: 0 8px;
        border-radius: 0 7px;
    }

    .photo-tag__arrow {
        width: 26px;
        min-width: 26px;
        border-radius: 7px 7px 7px 0;
        font-size: 18px;
    }

    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        margin: 40px 0;
    }

    .story-banner {
        min-height: 190px;
        padding: 32px 20px;
    }

    .story-banner h2 {
        margin-bottom: -8px;
        font-size: 28px !important;
    }

    .story-banner p {
        font-size: 38px;
    }

    .approach-section__media {
        height: 290px;
    }

    .approach-section__copy > p {
        font-size: 16px;
    }

    .image-hero {
        aspect-ratio: 4 / 3;
        background-position: center;
    }

    .image-hero::before {
        background-size: cover;
    }

    .about-intro__copy {
        font-size: 16px;
    }

    .wood-herogal {
        min-height: 200px;
    }

    .wood-herogal h1 {
        font-size: 56px;
    }
/*
    .gallery-category__image,
    .gallery-category__copy {
        height: 300px;
        min-height: 300px;
    }

    .gallery-category__copy h2 {
        font-size: 42px;
    }

    .masonry-gallery {
        columns: 1;
    }
*/
    .lightbox {
        grid-template-columns: 44px minmax(0, 1fr) 44px;
    }

    .lightbox figure {
        max-width: calc(100vw - 100px);
    }

    .contact-section {
        padding: 32px 20px 64px;
    }

    .contact-section__content {
        gap: 42px;
    }

    .contact-heading h1 {
        font-size: 26px;
    }

    .contact-heading p {
        font-size: 42px;
    }

    .contact-form,
    .contact-form__row {
        gap: 18px;
    }

    .contact-form__row {
        flex-direction: column;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding-inline: 8px;
        font-size: 15px;
    }

    .contact-form__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .planning-hero {
        min-height: 396px;
        padding: 32px 8%;
    }
    
    .planning-hero h1 {
        font-size: 48px;
    }

    .planning-hero p {
        font-size: 16px;
    }
    
.booking-title {
    min-height: 160px;
}    

    .booking-detail,
    .booking-detail--reverse {
        grid-template-columns: 1fr;
        margin-bottom: 52px;
    }

    .booking-detail__copy,
    .booking-detail--reverse .booking-detail__copy {
        grid-column: 1;
        grid-row: auto;
        order: 0;
    }

    .booking-detail img,
    .booking-detail--reverse img {
        grid-column: 1;
        grid-row: auto;
        order: 1;
    }

    .booking-detail__copy {
        padding: 8px;
    }

    .booking-detail img {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .session-process {
        grid-template-columns: 1fr;
    }

    .session-process article:not(:last-child)::after {
        display: none;
    }

    .delivery-card {
        padding: 44px 26px;
        border-radius: 50px 0 50px 0;
    }

    .delivery-section {
        padding-bottom: 56px;
    }

    .package-choice__copy {
        height: 220px;
        padding: 40px 24px;
    }

    .package-choice__copy h2 {
        font-size: 42px;
    }

    .package-choice__copy .paired-heading p {
        font-size: 34px;
    }

    .packages-hero h1,
    .pricing-hero h1 {
        font-size: 45px;
    }

    .packages-hero .paired-heading p {
        font-size: 36px;
    }

    .pricing-list {
        width: calc(100% - 32px);
        padding-top: 64px;
    }

    .pricing-card > header {
        padding-inline: 22px;
    }

    .pricing-card ul {
        padding: 26px 38px 32px;
        font-size: 14px;
    }

    .custom-session {
        display: flex;
        min-height: 560px;
        padding: 56px 24px;
        flex-direction: column;
        justify-content: center;
        gap: 36px;
        text-align: center;
    }

    .custom-session::before {
        background-image: linear-gradient(rgba(250,250,250,.72), rgba(250,250,250,.72)), url("/assets/images/custom-session-background.png");
        background-position: 68% center;
    }

    .custom-session .paired-heading {
        width: auto;
    }

    .custom-session h2 {
        font-size: 42px;
    }

    .custom-session .paired-heading p {
        font-size: 36px;
    }

    .custom-session > p {
        font-size: 18px;
        line-height: 1.25;
    }

    .additional-info {
        padding-inline: 0;
    }

    .ready-cta {
        padding: 56px 20px 0;
    }

    .ready-cta__inner {
        display: flex;
        min-height: 0;
        padding: 42px 28px;
        flex-direction: column;
        border-radius: 54px 0 54px 0;
        text-align: center;
    }

    .ready-cta__title {
        width: auto;
        align-items: center;
        justify-content: center;
    }

    .ready-cta__title strong {
        font-size: 86px;
    }

    .ready-cta__title span {
        width: auto;
        padding-top: 16px;
        padding-left: 0;
        font-size: 18px;
        line-height: 18px;
    }

    .ready-cta__divider {
        width: 120px;
        height: 1px;
    }

    .site-footer {
        padding: 48px 24px 28px;
    }

    .site-footer__main {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-nav {
        align-items: flex-start;
    }

    .footer-contact {
        align-items: center;
    }
    
    .ready-cta__inner > p {
        font-size: 14px;
        font-weight: 300;
        line-height: 1.25;
    }    
    
    .ready-cta__inner > .button {
      min-height: 30px;
      padding: 10px 20px;
      font-size: 16px;
    }    
    
    .ready-cta__title span {
        width: auto;
        padding-top: 16px;
        padding-left: 0;
        font-size: 16px;
        line-height: 15px;
    }    

    .ready-cta__divider {
        width: 96%;
        height: 2px;
        margin-top: 0px;
    }
    
    .approach-section__copy .paired-heading h2 {
        font-size: 28px !important;
    } 
    
    .approach-section__copy .button {
        width: 66% !important;
        font-size: 16px !important;
    }
    
}

@media (max-width: 600px) {
    .gallery-overview {
      width: 100%;
    }        

    .gallery-category {
      height: 36vw;
      min-height: 36vw;
    }
    
    .gallery-category__image {
      height: 36vw;
      min-height: 36vw;
    }    

    .gallery-category__copy {
      height: 36vw !important;
      min-height: 36vw !important;
      padding:0;
    }

    .gallery-category__copy h2 {
        font-size: 6vw;
        margin: 0;      
    }

    .gallery-category__copy p {
      margin: 0;
      margin-bottom: 0px;
      font-size: 5.2vw;
      line-height: 1;
      margin-bottom: 2.5vw;
    }

    .button {
      min-height: 7vw;
      padding: 2vw 2vw;
      font-size: 3vw;
      font-weight: 300;
      line-height: 1;
    }

    /* single gallery*/
    .wood-herogal {
        min-height: 174px;
    }

    .single-gallery {
      width: 88%;
      margin: 5vw auto;
      margin-bottom: 5vw;
      margin-bottom: 0;
      padding-bottom: 0;
    }    
    
    .category-pills {
      margin-bottom: 5vw;
    }    

  .masonry-gallery {
    columns: 2 !important;
    column-gap: 12px !important;
  }

  .masonry-item {
    margin-bottom: 12px !important;
  }

    .packages-hero, .pricing-hero {
      min-height: 174px;
    }
    
    .packages-hero h1 {
        font-size: 6vw;
    }
    

}

/* Plan-your-session Figma alignment — 2026-08-05 */
.planning-page .session-process article:not(:last-child)::after {
    top: 40px;
    left: calc(50% + 92px);
    width: clamp(128px, 16vw, 232px);
    height: 32px;
    border: 0;
    border-radius: 0;
    background: center / 100% 100% no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 232 32'%3E%3Cpath d='M1 27C48 32 70 23 103 10C139-4 169 1 231 3' fill='none' stroke='%23A37246' stroke-width='1.25' stroke-linecap='round'/%3E%3C/svg%3E");
    content: "";
}

.planning-page .session-process h3 {
    margin: 12px 0 0;
    line-height: .72;
}

.planning-page .session-process small {
    display: block;
    margin-top: -1px;
    line-height: 1;
}

.planning-page .faq-section {
    position: relative;
    z-index: 0;
    padding-top: 78px;
    padding-bottom: 78px;
    background: #fafafa;
}

.planning-page .faq-section::before {
    position: absolute;
    z-index: -1;
    inset: 0 50%;
    width: min(100vw, var(--canvas-width));
    background: #fafafa;
    content: "";
    transform: translateX(-50%);
}

.planning-page .faq-section__leaves {
    display: block;
    width: 52px;
    height: auto;
    margin: 0 auto 28px;
    color: #e7ebe8;
}

.planning-page .faq-list {
    margin-top: 48px;
}

.planning-page .faq-list details {
    border-bottom-color: #dce6ec;
}

.planning-page .faq-list summary {
    padding-right: 10px;
    color: #b7957f;
    font-weight: 500;
}

.planning-page .faq-list summary::after {
    width: 15px;
    height: 15px;
    margin: -7px 5px 0 24px;
    flex: 0 0 15px;
    border: 0;
    border-right: 2px solid #8d5c3b;
    border-bottom: 2px solid #8d5c3b;
    background: none;
    content: "";
    transform: rotate(45deg);
    transform-origin: center;
    transition: transform .2s ease;
}

.planning-page .faq-list details[open] summary::after {
    margin-top: 7px;
    transform: rotate(225deg);
}

.planning-page .ready-cta::before {
    background: #fff;
}

@media (max-width: 900px) {
    .planning-page .session-process article:not(:last-child)::after {
        left: calc(50% + 72px);
        width: clamp(96px, 13vw, 150px);
    }
}

@media (max-width: 640px) {
    .planning-page .faq-section {
        padding-top: 62px;
        padding-bottom: 62px;
    }

    .planning-page .faq-section__leaves {
        width: 46px;
        margin-bottom: 22px;
    }

    .planning-page .faq-list {
        margin-top: 34px;
    }
}

/* Homepage personal approach — exact Frame 618 desktop composition */
.approach-section {
    position: relative;
    display: flex;
    isolation: isolate;
    width: min(100%, var(--page-width));
    height: 714px;
    min-height: 714px;
    margin-inline: auto;
    align-items: center;
    justify-content: center;
    gap: 128px;
    padding: 60px 128px;
    overflow: hidden;
    background: #fafafa;
}

.approach-section__copy {
    position: relative;
    z-index: 3;
    display: flex;
    width: 672px;
    max-width: 672px;
    flex: 0 0 672px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.approach-section__copy .paired-heading {
    width: 649px;
    max-width: 100%;
}

.approach-section__copy .paired-heading h2 {
    margin: 0 0 -12px;
    color: #432816;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 64px;
    font-weight: 200;
    line-height: 1;
    white-space: nowrap;
}

.approach-section__copy .paired-heading p {
    margin: 0;
    color: #432816;
    font-family: "Corinthia", cursive;
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
    opacity: .75;
}

.approach-section__copy > p {
    width: 672px;
    max-width: 100%;
    margin: 32px 0;
    color: #432816;
    font-family: "Montserrat", Arial, sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 1.15;
    text-align: center;
}

.approach-section__copy .button {
    width: 174px;
    height: 40px;
    min-height: 40px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 300;
}

.approach-section__media {
    position: absolute;
    z-index: 2;
    top: 160.5px;
    width: 340px;
    height: 420px;
    overflow: hidden;
}

.approach-section__media--left {
    left: -42px;
}

.approach-section__media--right {
    right: -42px;
}

.approach-section__media img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

/* Scale the 1440px Figma frame proportionally on intermediate desktop widths. */
@media (min-width: 901px) and (max-width: 1439px) {
    .approach-section {
        height: 49.583333vw;
        min-height: 49.583333vw;
        gap: 8.888889vw;
        padding: 4.166667vw 8.888889vw;
    }

    .approach-section__copy {
        width: 46.666667vw;
        max-width: 46.666667vw;
        flex-basis: 46.666667vw;
    }

    .approach-section__copy .paired-heading {
        width: 45.069444vw;
    }

    .approach-section__copy .paired-heading h2 {
        margin-bottom: -.833333vw;
        font-size: 4.444444vw;
    }

    .approach-section__copy .paired-heading p {
        font-size: 2.777778vw;
    }

    .approach-section__copy > p {
        width: 46.666667vw;
        margin: 2.222222vw 0;
        font-size: 1.666667vw;
    }

    .approach-section__copy .button {
        width: 11.875vw;
        height: 2.777778vw;
        min-height: 2.777778vw;
        padding: .833333vw 1.666667vw;
        font-size: 1.111111vw;
    }

    .approach-section__media {
        top: 11.145833vw;
        width: 23.611111vw;
        height: 29.166667vw;
    }

    .approach-section__media--left {
        left: -2.916667vw;
    }

    .approach-section__media--right {
        right: -2.916667vw;
    }
}

@media (max-width: 900px) {
    .approach-section {
        display: grid;
        width: 100%;
        height: auto;
        min-height: 0;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 64px 0 0;
        overflow: hidden;
    }

    .approach-section__copy {
        width: min(720px, 100%);
        max-width: 720px;
        flex-basis: auto;
        grid-column: 1 / -1;
        grid-row: 1;
        margin: 0 auto;
        padding: 0 32px 64px;
    }

    .approach-section__copy .paired-heading {
        width: 100%;
    }

    .approach-section__copy .paired-heading h2 {
        font-size: 48px;
    }

    .approach-section__copy .paired-heading p {
        font-size: 40px;
    }

    .approach-section__copy > p {
        width: 100%;
        margin: 32px 0;
        font-size: 18px;
    }

    .approach-section__copy .button {
        width: 171px;
        height: 40px;
        min-height: 40px;
        padding: 12px 24px;
        font-size: 16px;
    }

    .approach-section__media {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        width: 100%;
        height: auto;
        aspect-ratio: 340 / 420;
    }
}

@media (max-width: 640px) {
    .approach-section__copy .paired-heading h2 {
        font-size: 38px;
        white-space: normal;
    }

    .approach-section__copy .paired-heading p {
        font-size: 34px;
    }

    .approach-section__copy > p {
        font-size: 16px;
    }
}

@media (max-width: 540px) {
 .home-hero__content p {
    margin: 0 0 13px;
    font-size: 6vw;
    white-space: normal;
  }    
   .mobile-contact-button {
        position: absolute;
        z-index: 3;
        right: 8%;
   }
}

@media (max-width: 500px) {
    .mobile-logo {
        display: block;
        width: 20vw;
        height: 20vw;
    }
    .site-header {
        height: 114px;
    }  
    .menu-toggle > span:not(.sr-only) {
        width: 34px;
        height: 2px;
    }    
}

@media (max-width: 440px) {
 .home-hero__content p {
    font-size: 5.7vw;
  }        
}

@media (max-width: 380px) {
  .section-title, .paired-heading h1, .paired-heading h2 {
    font-size: 9vw;
  }
}  
  
  
  


