:root {
    --cream: #fbfaf7;
    --paper: #f7f2ec;
    --chalk: #fffdf9;
    --linen: #eee6da;
    --sand: #d7c4ad;
    --taupe: #a89179;
    --brown: #776655;
    --ink: #3e352d;
    --muted: #75695d;
    --line: rgba(126, 105, 84, 0.22);
    --shadow: 0 24px 70px rgba(89, 70, 50, 0.13);
    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Montserrat", Arial, sans-serif;
    --script: "Allura", cursive;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    color: inherit;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 30px;
    min-height: 82px;
    padding: 16px clamp(22px, 5vw, 70px);
    border-bottom: 1px solid var(--line);
    background: rgba(251, 250, 247, 0.9);
    backdrop-filter: blur(16px);
}

.brand-mark,
.admin-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--brown);
    font-family: var(--serif);
    font-size: 22px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.brand-symbol {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 1px solid var(--sand);
    border-radius: 50%;
    color: var(--taupe);
    font-family: var(--serif);
    font-size: 28px;
    line-height: 1;
    letter-spacing: 0;
}

.site-nav {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: clamp(14px, 2.4vw, 34px);
    color: var(--brown);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.site-nav a,
.text-link {
    text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
    color: var(--ink);
}

.hero {
    display: grid;
    grid-template-columns: minmax(360px, 0.83fr) minmax(480px, 1.17fr);
    min-height: calc(100vh - 82px);
    border-bottom: 1px solid var(--line);
}

.hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: clamp(50px, 7vw, 110px) clamp(28px, 6vw, 92px);
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.74), rgba(247, 242, 236, 0.9)),
        url("/assets/soft-texture.webp") center / cover;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--brown);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.hero h1,
.portal-page h1,
.login-wrap h1 {
    max-width: 760px;
    margin-bottom: 0;
    color: var(--brown);
    font-family: var(--serif);
    font-size: clamp(62px, 10vw, 148px);
    font-weight: 400;
    line-height: 0.88;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1 .name-word {
    display: inline;
    color: var(--brown);
    font-family: var(--serif);
    font-size: inherit;
    letter-spacing: inherit;
    text-transform: uppercase;
}

.hero h1 .script-word {
    display: block;
    color: var(--taupe);
    font-family: var(--script);
    font-size: clamp(48px, 7vw, 105px);
    letter-spacing: 0;
    text-transform: none;
    transform: translateY(-0.03em);
}

h2 {
    color: var(--ink);
    font-family: var(--serif);
    font-size: clamp(38px, 5vw, 72px);
    font-weight: 400;
    line-height: 1.02;
}

h3 {
    margin-bottom: 10px;
    color: var(--ink);
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.1;
}

.script-line {
    margin: 26px 0 22px;
    color: var(--taupe);
    font-family: var(--script);
    font-size: clamp(38px, 4vw, 62px);
    line-height: 0.95;
}

.intro,
.section-intro p,
.text-panel p,
.portal-section p,
.cake-section p,
.enquiry-copy p {
    color: var(--muted);
    font-size: 18px;
}

.intro {
    max-width: 560px;
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    max-width: 100%;
}

.button,
.admin-action,
.admin-logout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid var(--taupe);
    border-radius: 0;
    background: transparent;
    color: var(--brown);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button.primary,
.admin-action {
    background: var(--brown);
    color: var(--chalk);
}

.button.primary:hover,
.button.primary:focus-visible,
.admin-action:hover,
.admin-action:focus-visible {
    background: var(--ink);
    border-color: var(--ink);
}

.button.quiet {
    background: rgba(255, 255, 255, 0.38);
    color: var(--brown);
}

.hero-image {
    min-height: 620px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.palette-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    padding: 34px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
}

.palette-strip span {
    width: 48px;
    height: 48px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--swatch);
}

.mood-section,
.split-section,
.package-section,
.portal-section,
.cake-section,
.enquiry-section,
.portal-page,
.login-wrap {
    padding: clamp(70px, 8vw, 130px) clamp(22px, 5vw, 70px);
}

.section-intro {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(280px, 0.5fr);
    gap: clamp(24px, 5vw, 80px);
    align-items: end;
    margin-bottom: clamp(34px, 5vw, 70px);
}

.section-intro > *,
.split-section > *,
.portal-section > *,
.cake-section > *,
.enquiry-section > *,
.portal-heading,
.unlock-card,
.enquiry-form {
    min-width: 0;
}

.section-intro.narrow {
    display: block;
    max-width: 760px;
}

.mood-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    grid-auto-rows: 240px;
    gap: 18px;
}

.tile {
    overflow: hidden;
    margin: 0;
    background: var(--linen);
}

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

.tile-large {
    grid-row: span 2;
}

.tile-tall {
    grid-row: span 2;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(320px, 0.8fr) minmax(360px, 1fr);
    gap: clamp(30px, 6vw, 90px);
    background: var(--paper);
}

.text-panel {
    align-self: center;
}

.service-list {
    display: grid;
    gap: 16px;
}

.service-list article,
.package-card,
.portal-card,
.unlock-card,
.admin-card {
    border: 1px solid var(--line);
    background: rgba(255, 253, 249, 0.78);
    box-shadow: var(--shadow);
}

.service-list article {
    padding: clamp(24px, 4vw, 42px);
}

.service-list span,
.package-kicker {
    color: var(--taupe);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.package-card {
    padding: 30px;
}

.package-card.featured {
    background: var(--ink);
    color: var(--chalk);
}

.package-card.featured h3,
.package-card.featured p,
.package-card.featured strong,
.package-card.featured li {
    color: var(--chalk);
}

.package-card strong {
    display: block;
    margin: 18px 0;
    color: var(--brown);
    font-family: var(--serif);
    font-size: 34px;
    font-weight: 500;
}

.package-card ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
}

.portal-section {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(280px, 0.5fr);
    gap: clamp(28px, 6vw, 90px);
    align-items: center;
    background:
        linear-gradient(120deg, rgba(62, 53, 45, 0.88), rgba(119, 102, 85, 0.78)),
        url("/assets/linen-2.jpg") center / cover;
    color: var(--chalk);
}

.portal-section h2,
.portal-section p,
.portal-section .eyebrow,
.portal-section .text-link,
.portal-card h3 {
    color: var(--chalk);
}

.portal-card {
    padding: 42px;
    text-align: center;
    background: rgba(255, 253, 249, 0.16);
    backdrop-filter: blur(12px);
}

.portal-card .brand-symbol {
    margin: 0 auto 22px;
    color: var(--chalk);
    border-color: rgba(255, 255, 255, 0.5);
}

.portal-card strong {
    display: inline-flex;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    letter-spacing: 0.24em;
}

.cake-section {
    display: grid;
    grid-template-columns: minmax(300px, 0.8fr) minmax(300px, 0.7fr);
    gap: clamp(30px, 6vw, 90px);
    align-items: center;
}

.cake-section img {
    width: 100%;
    aspect-ratio: 1 / 0.85;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.enquiry-section {
    display: grid;
    grid-template-columns: minmax(320px, 0.7fr) minmax(360px, 0.85fr);
    gap: clamp(30px, 6vw, 90px);
    background: var(--paper);
}

.enquiry-form,
.unlock-card,
.favourite-note,
.form-grid {
    display: grid;
    gap: 18px;
}

.enquiry-form,
.unlock-card {
    padding: clamp(26px, 5vw, 48px);
    background: var(--chalk);
    box-shadow: var(--shadow);
}

label {
    display: grid;
    gap: 8px;
    color: var(--brown);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-size: 15px;
    letter-spacing: 0;
    text-transform: none;
    padding: 14px 16px;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--taupe);
    outline-offset: 3px;
}

.hidden-field {
    position: absolute;
    left: -9999px;
}

.field-error {
    color: #a94442;
    font-size: 12px;
    letter-spacing: 0;
    text-transform: none;
}

.notice {
    margin: 18px clamp(22px, 5vw, 70px);
    padding: 14px 18px;
    border: 1px solid rgba(89, 122, 86, 0.28);
    background: #f3f7ef;
    color: #4c6546;
}

.site-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 40px clamp(22px, 5vw, 70px);
    border-top: 1px solid var(--line);
    color: var(--brown);
}

.site-footer div {
    display: flex;
    align-items: center;
    gap: 14px;
}

.portal-page {
    background: var(--paper);
    min-height: calc(100vh - 82px);
}

.portal-heading {
    max-width: 860px;
    margin-bottom: 38px;
}

.portal-page h1,
.login-wrap h1 {
    font-size: clamp(42px, 7vw, 92px);
}

.unlock-card {
    max-width: 560px;
    width: 100%;
}

.gallery-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.gallery-grid {
    column-count: 3;
    column-gap: 18px;
}

.proof-card {
    break-inside: avoid;
    display: block;
    margin-bottom: 18px;
    background: var(--chalk);
    box-shadow: var(--shadow);
    cursor: pointer;
}

.proof-card img {
    width: 100%;
}

.proof-card span {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px;
}

.proof-card input {
    width: auto;
}

.favourite-note {
    max-width: 760px;
    margin-top: 32px;
    padding: 26px;
    background: var(--chalk);
    box-shadow: var(--shadow);
}

.login-wrap {
    display: grid;
    place-items: center;
    min-height: calc(100vh - 82px);
}

.admin-body {
    display: grid;
    grid-template-columns: 290px 1fr;
    min-height: 100vh;
    background: #f5f0e9;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
    height: 100vh;
    padding: 28px;
    border-right: 1px solid var(--line);
    background: #fffaf4;
}

.admin-brand {
    font-size: 18px;
    letter-spacing: 0.08em;
}

.admin-sidebar nav {
    display: grid;
    gap: 8px;
}

.admin-sidebar nav a,
.row-link {
    display: block;
    padding: 12px 14px;
    border: 1px solid transparent;
    color: var(--brown);
    text-decoration: none;
}

.admin-sidebar nav a:hover,
.admin-sidebar nav a:focus-visible,
.row-link:hover,
.row-link:focus-visible {
    border-color: var(--line);
    background: var(--paper);
}

.admin-logout {
    width: 100%;
    margin-top: auto;
}

.admin-main {
    padding: clamp(24px, 4vw, 56px);
}

.admin-page-title {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: end;
    margin-bottom: 28px;
}

.admin-page-title h1 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 500;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.stat-grid article {
    padding: 24px;
    border: 1px solid var(--line);
    background: var(--chalk);
}

.stat-grid strong {
    display: block;
    font-family: var(--serif);
    font-size: 44px;
    line-height: 1;
}

.stat-grid span,
small {
    color: var(--muted);
}

.admin-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.admin-card {
    padding: 24px;
    background: rgba(255, 253, 249, 0.9);
}

.admin-card h2 {
    margin-bottom: 18px;
    font-size: 34px;
}

.row-link + .row-link {
    border-top: 1px solid var(--line);
}

.row-link strong,
.row-link span,
.row-link small {
    display: block;
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 14px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

th {
    color: var(--brown);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.status-pill {
    display: inline-flex;
    padding: 4px 10px;
    border: 1px solid var(--line);
    color: var(--brown);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.detail-card dl {
    display: grid;
    gap: 16px;
    margin: 0;
}

.detail-card dt {
    color: var(--brown);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.detail-card dd {
    margin: 4px 0 0;
}

.inline-form {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: end;
    margin-top: 24px;
}

.form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.check-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-row input {
    width: auto;
}

.admin-proof-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.admin-proof-grid article {
    border: 1px solid var(--line);
    background: var(--paper);
}

.admin-proof-grid img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.admin-proof-grid p,
.admin-proof-grid form {
    margin: 0;
    padding: 12px;
}

.admin-proof-grid button {
    border: 0;
    background: none;
    color: #9d3f35;
    cursor: pointer;
}

.construction-body {
    min-height: 100vh;
    background:
        linear-gradient(135deg, rgba(251, 250, 247, 0.92), rgba(238, 230, 218, 0.82)),
        url("/assets/soft-texture.webp") center / cover;
    overflow-x: hidden;
}

.construction-shell {
    display: grid;
    min-height: 100vh;
    padding: clamp(18px, 4vw, 54px);
    place-items: center;
}

.construction-card {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.75fr);
    width: min(1180px, 100%);
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(126, 105, 84, 0.28);
    background: rgba(255, 253, 249, 0.88);
    box-shadow: 0 30px 90px rgba(89, 70, 50, 0.16);
}

.construction-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: min(720px, calc(100vh - 108px));
    min-width: 0;
    padding: clamp(30px, 5vw, 66px);
}

.construction-brand {
    align-self: flex-start;
    margin-bottom: clamp(30px, 5vw, 58px);
}

.construction-copy h1 {
    max-width: 760px;
    margin: 0 0 24px;
    color: var(--brown);
    font-family: var(--serif);
    font-size: clamp(44px, 6vw, 86px);
    font-weight: 400;
    line-height: 0.94;
    letter-spacing: 0.055em;
    text-transform: uppercase;
}

.construction-intro {
    max-width: 650px;
    margin-bottom: 34px;
    color: var(--muted);
    font-size: clamp(17px, 2vw, 21px);
}

.construction-form {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto;
    gap: 12px;
    width: min(650px, 100%);
    align-items: end;
    margin-bottom: 18px;
}

.construction-form label {
    display: grid;
    gap: 8px;
    color: var(--brown);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.construction-form input {
    width: 100%;
    min-height: 54px;
    border: 1px solid var(--line);
    background: #fffdf9;
    color: var(--ink);
    padding: 0 18px;
    font-size: 16px;
    letter-spacing: 0.02em;
}

.construction-form input:focus-visible {
    outline: 2px solid rgba(168, 145, 121, 0.45);
    outline-offset: 2px;
}

.construction-form .field-error {
    grid-column: 1 / -1;
}

.construction-note,
.construction-admin-link {
    color: var(--muted);
    font-size: 13px;
}

.construction-admin-link {
    align-self: flex-start;
    margin-top: 4px;
    color: var(--brown);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.construction-image {
    position: relative;
    min-height: 100%;
    background: var(--linen);
}

.construction-image::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    background: linear-gradient(180deg, rgba(62, 53, 45, 0.05), rgba(62, 53, 45, 0.28));
}

.construction-image img {
    width: 100%;
    height: 100%;
    min-height: min(720px, calc(100vh - 108px));
    object-fit: cover;
}

.construction-image-caption {
    position: absolute;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    max-width: 280px;
    padding: 16px 18px;
    border: 1px solid rgba(255, 253, 249, 0.55);
    background: rgba(62, 53, 45, 0.32);
    color: #fffdf9;
    font-family: var(--serif);
    font-size: 24px;
    line-height: 1.05;
}

@media (max-width: 1100px) {
    .package-grid,
    .stat-grid,
    .admin-proof-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-body {
        grid-template-columns: 230px 1fr;
    }
}

@media (max-width: 820px) {
    .site-header,
    .hero,
    .section-intro,
    .split-section,
    .portal-section,
    .cake-section,
    .enquiry-section,
    .admin-columns,
    .form-grid,
    .admin-page-title {
        grid-template-columns: 1fr;
    }

    .site-header {
        position: static;
        gap: 18px;
    }

    .site-nav {
        justify-self: start;
        flex-wrap: wrap;
        gap: 12px 18px;
    }

    .construction-card {
        grid-template-columns: 1fr;
        width: min(100%, calc(100vw - 28px));
    }

    .construction-copy {
        min-height: auto;
    }

    .construction-image img {
        min-height: 360px;
    }

    .hero {
        min-height: auto;
    }

    .hero-image {
        min-height: 420px;
    }

    .mood-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 190px;
    }

    .gallery-grid {
        column-count: 2;
    }

    .admin-body {
        display: block;
    }

    .admin-sidebar {
        position: static;
        height: auto;
    }
}

@media (max-width: 560px) {
    body {
        font-size: 15px;
    }

    .brand-mark {
        font-size: 18px;
        letter-spacing: 0.1em;
    }

    .brand-symbol {
        width: 46px;
        height: 46px;
        font-size: 23px;
    }

    .site-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        font-size: 11px;
        letter-spacing: 0.1em;
    }

    .hero h1,
    .portal-page h1,
    .login-wrap h1 {
        max-width: 100%;
        font-size: clamp(42px, 17vw, 62px);
        letter-spacing: 0.04em;
        overflow-wrap: normal;
    }

    .eyebrow {
        font-size: 10px;
        letter-spacing: 0.18em;
        line-height: 1.55;
    }

    .script-line {
        font-size: clamp(34px, 11vw, 44px);
        line-height: 1.05;
    }

    .script-line span {
        display: block;
    }

    .intro,
    .section-intro p,
    .text-panel p,
    .portal-section p,
    .cake-section p,
    .enquiry-copy p {
        font-size: 16px;
    }

    .intro {
        max-width: 31ch;
    }

    .hero h1 .name-word {
        display: block;
    }

    .hero h1 .script-word {
        font-size: clamp(42px, 16vw, 60px);
    }

    h2,
    .admin-card h2 {
        font-size: 34px;
    }

    .portal-page h1 {
        max-width: 8.8ch;
        font-size: 46px;
        letter-spacing: 0.02em;
        line-height: 0.98;
    }

    .unlock-card {
        max-width: calc(100vw - 36px);
        width: min(310px, calc(100vw - 54px));
        padding: 26px;
    }

    .construction-shell {
        display: block;
        width: 100%;
        max-width: 390px;
        margin: 0;
        padding: 14px;
    }

    .construction-copy {
        padding: 26px;
        max-width: 100%;
        overflow: hidden;
    }

    .construction-brand {
        align-items: center;
        width: 100%;
        margin-bottom: 34px;
        gap: 11px;
    }

    .construction-copy h1 {
        max-width: 300px;
        font-size: clamp(33px, 9vw, 40px);
        line-height: 1.04;
        letter-spacing: 0.02em;
        overflow-wrap: break-word;
    }

    .construction-brand span:last-child {
        flex: 1;
        min-width: 0;
        font-size: 13px;
        letter-spacing: 0.08em;
        line-height: 1.35;
    }

    .construction-intro {
        max-width: 300px;
        font-size: 15px;
        overflow-wrap: break-word;
    }

    .construction-form {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 300px;
    }

    .construction-form .button {
        width: 100%;
    }

    .construction-image {
        display: none;
    }

    .construction-note {
        max-width: 300px;
    }

    .construction-image-caption {
        right: 18px;
        bottom: 18px;
        font-size: 20px;
    }

    .unlock-card h2 {
        max-width: 11ch;
        font-size: 30px;
        line-height: 1.12;
    }

    .portal-heading p,
    .unlock-card p {
        max-width: 31ch;
        font-size: 15px;
    }

    .hero-copy,
    .mood-section,
    .split-section,
    .package-section,
    .portal-section,
    .cake-section,
    .enquiry-section,
    .portal-page,
    .login-wrap {
        padding: 48px 18px;
    }

    .package-grid,
    .stat-grid,
    .admin-proof-grid,
    .mood-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        column-count: 1;
    }
}
