@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
    --ink: #141310;
    --ink-soft: #2a2823;
    --ivory: #f7f4ee;
    --ivory-2: #eee9df;
    --white: #ffffff;
    --gold: #c3a15a;
    --gold-light: #dbc486;
    --gold-dark: #927338;
    --muted: #756f66;
    --line: rgba(31, 28, 22, 0.14);
    --serif: "Bodoni 72", Didot, "Didot LT STD", Georgia, "Times New Roman", serif;
    --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
    --container: 1400px;
    --header-height: 88px;
    --ease-luxury: cubic-bezier(.22, .72, .24, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--white);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.section {
    padding-block: clamp(84px, 9vw, 84px);
}

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 16px;
    transform: translateY(-160%);
    background: var(--white);
    color: var(--ink);
    text-decoration: none;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 2px;
    pointer-events: none;
}

.site-progress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

.announcement {
    position: relative;
    z-index: 50;
    overflow: hidden;
    min-height: 42px;
    background: #1b1b1b;
    color: rgba(255, 255, 255, 0.88);
}

.announcement__track {
    display: flex;
    min-width: max-content;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    gap: clamp(28px, 4vw, 70px);
    padding-inline: 24px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.085em;
    text-transform: uppercase;
}

.announcement__track i {
    width: 38px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    border-bottom: 1px solid rgba(28, 25, 19, 0.08);
    background: rgba(255, 255, 255, 0.96);
    transition: box-shadow 300ms ease, background-color 300ms ease;
    backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
    box-shadow: 0 10px 35px rgba(24, 19, 10, 0.08);
}

.site-header__inner {
    position: relative;
    z-index: 2;
    display: grid;
    width: min(calc(100% - 40px), 1500px);
    min-height: var(--header-height);
    margin-inline: auto;
    grid-template-columns: 120px 1fr auto;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    width: 88px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.brand img {
    width: 88px;
    height: auto;
}

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

.desktop-nav a {
    position: relative;
    padding-block: 10px;
    font-size: 12px;
    font-weight: 650;
    letter-spacing: 0.035em;
    text-decoration: none;
    text-transform: uppercase;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: 4px;
    left: 0;
    height: 1px;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    background: var(--gold-dark);
    transition: transform 280ms var(--ease-luxury);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header-enquire {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 12px 27px;
    background: var(--ink);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.075em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background-color 240ms ease, color 240ms ease, transform 240ms ease;
}

.header-enquire:hover {
    transform: translateY(-2px);
    background: var(--gold);
    color: var(--ink);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
    display: block;
    width: 25px;
    height: 1px;
    margin: 6px auto;
    background: var(--ink);
    transition: transform 280ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 1;
    display: none;
    padding: 34px 24px 30px;
    transform: translateY(-16px);
    background: var(--ivory);
    opacity: 0;
    visibility: hidden;
    transition: opacity 280ms ease, transform 360ms var(--ease-luxury), visibility 280ms ease;
}

.mobile-menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.eyebrow--light {
    color: var(--gold-light);
}

.section-heading {
    max-width: 760px;
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.section-heading h2,
.story__content h2,
.diamond-guide h2,
.craft__content h2,
.faq__intro h2,
.contact__copy h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(42px, 5.2vw, 50px);
    font-weight: 400;
    line-height: 0.99;
    letter-spacing: -0.032em;
}

.section-heading > p:last-child {
    max-width: 650px;
    margin: 24px auto 0;
    color: var(--muted);
    font-family: Georgia, serif;
    font-size: 16px;
    line-height: 1.8;
}

.diamond-rule {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.diamond-rule span {
    width: 36px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(158, 126, 56, 0.65));
}

.diamond-rule span:last-child {
    background: linear-gradient(90deg, rgba(158, 126, 56, 0.65), transparent);
}

.diamond-rule i {
    width: 8px;
    height: 8px;
    transform: rotate(45deg);
    border: 1px solid var(--gold);
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 14px 24px;
    border: 1px solid transparent;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.115em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 280ms var(--ease-luxury), background-color 280ms ease, color 280ms ease, border-color 280ms ease;
}

.button span {
    font-size: 16px;
    line-height: 1;
    transition: transform 280ms ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button:hover span {
    transform: translate(3px, -3px);
}

.button--light {
    background: var(--white);
    color: var(--ink);
}

.button--light:hover {
    background: var(--gold-light);
}

.button--dark {
    background: var(--ink);
    color: var(--white);
}

.button--dark:hover {
    background: var(--gold);
    color: var(--ink);
}

.button--gold {
    border: 0;
    background: var(--gold-light);
    color: var(--ink);
    cursor: pointer;
}

.button--gold:hover {
    background: var(--white);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 5px;
    border-bottom: 1px solid currentColor;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
}

.text-link span {
    transition: transform 260ms ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

.text-link--light {
    color: var(--white);
}

.hero {
    position: relative;
    display: flex;
    min-height: clamp(650px, calc(100svh - 70px), 920px);
    isolation: isolate;
    align-items: center;
    overflow: hidden;
    background: #0c0b09;
    color: var(--white);
}

.hero__image {
    position: absolute;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    animation: heroBreath 12s ease-out both;
}

.hero__veil {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(5, 4, 3, 0.88) 0%, rgba(6, 5, 4, 0.72) 34%, rgba(6, 5, 4, 0.16) 67%, rgba(6, 5, 4, 0.04) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.32));
}

.hero__content {
    width: min(calc(100% - 64px), var(--container));
    margin-inline: auto;
    padding-block: 90px 130px;
}

.hero__content > * {
    max-width: 690px;
}

.hero h1 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(70px, 8vw, 126px);
    font-weight: 400;
    line-height: 0.8;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.hero h1 em,
.hero h1 span {
    display: block;
}

.hero h1 em {
    margin-bottom: 18px;
    font-weight: 400;
    text-transform: none;
}

.hero h1 span {
    white-space: nowrap;
}

.hero__intro {
    max-width: 610px;
    margin: 34px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-family: Georgia, serif;
    font-size: clamp(15px, 1.4vw, 18px);
    line-height: 1.75;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-top: 38px;
}

.hero__scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    display: flex;
    transform: translateX(-50%);
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-decoration: none;
    text-transform: uppercase;
}

.hero__scroll i {
    position: relative;
    width: 54px;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.3);
}

.hero__scroll i::after {
    position: absolute;
    inset: 0;
    content: "";
    transform: translateX(-100%);
    background: var(--white);
    animation: scrollLine 2s ease-in-out infinite;
}

.service-strip {
    display: grid;
    width: min(100%, 1600px);
    margin-inline: auto;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.service-strip__item {
    display: flex;
    min-height: 126px;
    align-items: center;
    justify-content: center;
    gap: 17px;
    padding: 24px;
    border-right: 1px solid var(--line);
}

.service-strip__item:last-child {
    border-right: 0;
}

.service-strip__item svg {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    fill: none;
    stroke: var(--gold-dark);
    stroke-width: 1.25;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-strip__item strong,
.service-strip__item span {
    display: block;
}

.service-strip__item strong {
    font-family: Georgia, serif;
    font-size: 15px;
    font-weight: 500;
}

.service-strip__item span {
    margin-top: 2px;
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 0.05em;
}

.collections {
    background: var(--ivory);
}

.collection-grid {
    display: grid;
    margin-top: clamp(48px, 6vw, 50px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.collection-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(37, 32, 25, 0.1);
    background: var(--white);
    transition: transform 500ms var(--ease-luxury), box-shadow 500ms ease;
}

.collection-card:hover {
    z-index: 1;
    transform: translateY(-9px);
    box-shadow: 0 24px 55px rgba(50, 39, 22, 0.12);
}

.collection-card__media {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1.04;
    overflow: hidden;
    background: #e9e2d8;
}

.collection-card__media::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 68%, rgba(14, 11, 7, 0.12));
}

.collection-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 900ms var(--ease-luxury), filter 500ms ease;
}

.collection-card:hover .collection-card__media img {
    transform: scale(1.06);
    filter: saturate(1.04);
}

.collection-card__number {
       position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    border: 1px solid #ffb40d;
    border-radius: 50%;
    background: rgb(255 255 255);
    color: #ffb40d;
    font-family: Georgia, serif;
    font-size: 14px;
    backdrop-filter: blur(6px);
}

.collection-card__body {
    padding: 28px 24px 30px;
    text-align: center;
}

.collection-card__body > p {
    margin: 0 0 7px;
    color: var(--gold-dark);
    font-family: Georgia, serif;
    font-size: 12px;
    font-style: italic;
}

.collection-card__body h3 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(21px, 1.9vw, 30px);
    font-weight: 400;
    line-height: 1.15;
    text-transform: uppercase;
}

.collection-card__body a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 19px;
    padding-bottom: 4px;
    border-bottom: 1px solid currentColor;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-decoration: none;
    text-transform: uppercase;
}

.collection-card__body a span {
    transition: transform 240ms ease;
}

.collection-card__body a:hover span {
    transform: translateX(4px);
}

.story {
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.story::after {
    position: absolute;
    top: 9%;
    right: -10%;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(169, 139, 72, 0.14);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.story__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 0.86fr);
    align-items: center;
    gap: clamp(60px, 9vw, 145px);
}

.story__visual {
    position: relative;
    max-width: 620px;
    padding: 0 42px 44px 0;
}

.story__frame {
    position: relative;
    z-index: 1;
    aspect-ratio: 4 / 5.35;
    overflow: hidden;
    background: var(--ivory-2);
}

.story__frame::after {
    position: absolute;
    inset: 0;
    content: "";
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

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

.story__visual::before {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 72%;
    height: 72%;
    border: 1px solid rgba(157, 125, 59, 0.35);
    content: "";
}

.story__seal {
    position: absolute;
    right: 3px;
    bottom: 74px;
    z-index: 3;
    display: grid;
    width: 106px;
    height: 106px;
    place-content: center;
    transform: rotate(6deg);
    border: 1px solid var(--gold);
    border-radius: 50%;
    background: var(--ivory);
    color: var(--gold-dark);
    text-align: center;
}

.story__seal::before {
    position: absolute;
    inset: 7px;
    border: 1px solid rgba(158, 126, 56, 0.35);
    border-radius: inherit;
    content: "";
}

.story__seal span {
    font-family: var(--serif);
    font-size: 28px;
    line-height: 1;
}

.story__seal small {
    margin-top: 6px;
    font-size: 6px;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.story__caption {
    position: absolute;
    bottom: 50px;
    left: 28px;
    z-index: 2;
    margin: 0;
    color: var(--white);
    font-family: Georgia, serif;
    font-size: 14px;
    font-style: italic;
    line-height: 1.5;
}

.story__content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.story__content h2 em,
.contact__copy h2 em {
    color: var(--gold-dark);
    font-weight: 400;
}

.story__lead {
    margin: 36px 0 17px;
    color: var(--ink-soft);
    font-family: Georgia, serif;
    font-size: clamp(18px, 1.7vw, 23px);
    line-height: 1.65;
}

.story__content > p:not(.eyebrow):not(.story__lead) {
    max-width: 590px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.85;
}

.story__values {
    display: grid;
    margin: 38px 0;
    grid-template-columns: repeat(3, 1fr);
    border-block: 1px solid var(--line);
}

.story__values > div {
    padding: 22px 14px 22px 0;
    border-right: 1px solid var(--line);
}

.story__values > div:not(:first-child) {
    padding-left: 20px;
}

.story__values > div:last-child {
    border-right: 0;
}

.story__values strong,
.story__values span {
    display: block;
}

.story__values strong {
    font-family: Georgia, serif;
    font-size: 15px;
    font-weight: 500;
}

.story__values span {
    margin-top: 4px;
    color: var(--muted);
    font-size: 9px;
    letter-spacing: 0.03em;
}

.diamond-guide {
    position: relative;
    overflow: hidden;
    background: #151410;
    color: var(--white);
}

.diamond-guide::before {
    position: absolute;
    top: -36%;
    right: -8%;
    width: 680px;
    height: 680px;
    border: 1px solid rgba(208, 178, 108, 0.13);
    border-radius: 50%;
    content: "";
}

.diamond-guide__intro {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    align-items: end;
    gap: 80px;
}

.diamond-guide__intro > p {
    max-width: 560px;
    margin: 0 0 5px;
    color: rgba(255, 255, 255, 0.62);
    font-family: Georgia, serif;
    font-size: 16px;
    line-height: 1.8;
}

.four-c-grid {
    position: relative;
    display: grid;
    margin-top: 70px;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.four-c-card {
    position: relative;
    min-height: 350px;
    padding: 38px 30px 36px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    transition: background-color 350ms ease;
}

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

.four-c-card:hover {
    background: rgba(205, 173, 101, 0.08);
}

.four-c-card > span {
    position: absolute;
    top: 27px;
    right: 28px;
    color: rgba(255, 255, 255, 0.35);
    font-family: Georgia, serif;
    font-size: 11px;
}

.four-c-card svg {
    width: 42px;
    height: 42px;
    margin-top: 25px;
    fill: none;
    stroke: var(--gold-light);
    stroke-width: 1.1;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.four-c-card h3 {
    margin: 40px 0 16px;
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 400;
}

.four-c-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-family: Georgia, serif;
    font-size: 13px;
    line-height: 1.75;
}

.diamond-guide__link {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 18px;
    margin: 38px 0 0 auto;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.65);
    color: rgba(255, 255, 255, 0.8);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-decoration: none;
    text-transform: uppercase;
}

.diamond-guide__link span {
    font-size: 15px;
}

.craft {
    background: var(--ivory);
}

.craft__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
    align-items: center;
    gap: clamp(60px, 8vw, 130px);
}

.craft__media {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background: var(--ink);
}

.craft__media::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, transparent 60%, rgba(4, 3, 2, 0.55));
}

.craft__media img {
    width: 100%;
    height: 100%;
    min-height: 680px;
    object-fit: cover;
}

.craft__media > span {
    position: absolute;
    bottom: 29px;
    left: 30px;
    z-index: 2;
    color: var(--white);
    font-family: Georgia, serif;
    font-size: 15px;
    font-style: italic;
}

.craft__content > p:not(.eyebrow) {
    max-width: 600px;
    margin: 32px 0 0;
    color: var(--muted);
    font-family: Georgia, serif;
    font-size: 15px;
    line-height: 1.85;
}

.process-list {
    margin: 42px 0 0;
    padding: 0;
    list-style: none;
}

.process-list li {
    display: grid;
    padding: 22px 0;
    grid-template-columns: 54px 1fr;
    border-top: 1px solid var(--line);
}

.process-list li:last-child {
    border-bottom: 1px solid var(--line);
}

.process-list > li > span {
    color: var(--gold-dark);
    font-family: Georgia, serif;
    font-size: 11px;
}

.process-list h3 {
    margin: 0;
    font-family: Georgia, serif;
    font-size: 18px;
    font-weight: 500;
}

.process-list p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.7;
}

.why-us {
    background: var(--white);
}

.benefit-grid {
    display: grid;
    margin-top: 70px;
    grid-template-columns: repeat(3, 1fr);
    border-block: 1px solid var(--line);
}

.benefit-grid article {
    position: relative;
    min-height: 325px;
    padding: 47px clamp(28px, 4vw, 64px);
    border-right: 1px solid var(--line);
}

.benefit-grid article:last-child {
    border-right: 0;
}

.benefit-grid__index {
    position: absolute;
    top: 29px;
    right: 30px;
    color: #a8a199;
    font-family: Georgia, serif;
    font-size: 10px;
}

.benefit-grid svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: var(--gold-dark);
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.benefit-grid h3 {
    margin: 40px 0 15px;
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
}

.benefit-grid p {
    margin: 0;
    color: var(--muted);
    font-family: Georgia, serif;
    font-size: 13px;
    line-height: 1.75;
}

.manifesto {
    position: relative;
    display: grid;
    min-height: 530px;
    place-content: center;
    overflow: hidden;
    padding: 90px 24px;
    background:
        radial-gradient(circle at 50% 45%, rgba(202, 168, 92, 0.19), transparent 33%),
        linear-gradient(135deg, #0d0c0a, #1d1912 54%, #0b0a09);
    color: var(--white);
    text-align: center;
}

.manifesto::before,
.manifesto::after {
    position: absolute;
    width: 360px;
    height: 360px;
    transform: rotate(45deg);
    border: 1px solid rgba(217, 188, 117, 0.12);
    content: "";
}

.manifesto::before {
    top: -240px;
    left: -120px;
}

.manifesto::after {
    right: -120px;
    bottom: -240px;
}

.manifesto > p {
    margin: 0 0 10px;
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.manifesto h2 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(48px, 7vw, 98px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.04em;
}

.manifesto h2 em {
    color: var(--gold-light);
    font-weight: 400;
}

.manifesto__marks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.5);
    font-family: Georgia, serif;
    font-size: 10px;
}

.manifesto__marks i {
    width: 34px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.faq {
    background: var(--ivory);
}

.faq__grid {
    display: grid;
    grid-template-columns: 0.68fr 1fr;
    gap: clamp(60px, 9vw, 145px);
}

.faq__intro {
    align-self: start;
}

.faq__intro > p:not(.eyebrow) {
    max-width: 470px;
    margin: 30px 0 26px;
    color: var(--muted);
    font-family: Georgia, serif;
    font-size: 15px;
    line-height: 1.85;
}

.accordion {
    border-top: 1px solid var(--line);
}

.accordion__item {
    border-bottom: 1px solid var(--line);
}

.accordion__item h3 {
    margin: 0;
}

.accordion__item button {
    display: grid;
    width: 100%;
    min-height: 78px;
    padding: 23px 4px;
    grid-template-columns: 1fr 26px;
    align-items: center;
    gap: 20px;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.accordion__item button span {
    font-family: Georgia, serif;
    font-size: 17px;
}

.accordion__item button i {
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
}

.accordion__item button i::before,
.accordion__item button i::after {
    position: absolute;
    top: 8px;
    left: 2px;
    width: 14px;
    height: 1px;
    content: "";
    background: var(--ink);
    transition: transform 220ms ease;
}

.accordion__item button i::after {
    transform: rotate(90deg);
}

.accordion__item.is-open button i::after {
    transform: rotate(0deg);
}

.accordion__panel {
    padding: 0 55px 26px 4px;
}

.accordion__panel p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.contact {
    position: relative;
    overflow: hidden;
    padding-block: clamp(90px, 10vw, 150px);
    background: #12110e;
    color: var(--white);
}

.contact::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, transparent 49.9%, rgba(255, 255, 255, 0.08) 50%, transparent 50.1%),
        radial-gradient(circle at 14% 40%, rgba(200, 163, 82, 0.13), transparent 32%);
}

.contact__glow {
    position: absolute;
    top: -240px;
    left: -200px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(210, 177, 100, 0.12);
    border-radius: 50%;
}

.contact__inner {
    position: relative;
    display: grid;
    grid-template-columns: 0.86fr 1fr;
    align-items: center;
    gap: clamp(60px, 9vw, 140px);
}

.contact__copy h2 em {
    color: var(--gold-light);
}

.contact__copy > p:not(.eyebrow) {
    max-width: 560px;
    margin: 34px 0 0;
    color: rgba(255, 255, 255, 0.62);
    font-family: Georgia, serif;
    font-size: 16px;
    line-height: 1.85;
}

.contact__notes {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 38px;
}

.contact__notes span {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.6);
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.enquiry-form {
    padding: clamp(28px, 4vw, 52px);
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(8px);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.enquiry-form label {
    display: block;
    margin-bottom: 23px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    display: block;
    width: 100%;
    margin-top: 8px;
    padding: 11px 0 13px;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 0;
    outline: none;
    background: transparent;
    color: var(--white);
    font-family: Georgia, serif;
    font-size: 14px;
    text-transform: none;
    transition: border-color 200ms ease;
}

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

.enquiry-form select {
    color: rgba(255, 255, 255, 0.7);
}

.enquiry-form select option {
    background: var(--ink);
    color: var(--white);
}

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

.enquiry-form textarea {
    min-height: 92px;
    resize: vertical;
}

.enquiry-form__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 10px;
}

.enquiry-form__footer > p {
    max-width: 330px;
    margin: 0;
    color: rgba(255, 255, 255, 0.34);
    font-size: 9px;
    line-height: 1.6;
}

.form-status {
    min-height: 22px;
    margin: 18px 0 0;
    color: var(--gold-light);
    font-family: Georgia, serif;
    font-size: 12px;
}

.site-footer {
    padding: 72px 0 24px;
    background: #090908;
    color: var(--white);
}

.site-footer__top {
    display: grid;
    padding-bottom: 44px;
    grid-template-columns: 180px 1fr auto;
    align-items: center;
    gap: 45px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__brand {
    width: 118px;
}

.site-footer__brand img {
    width: 118px;
}

.site-footer__top > p {
    max-width: 510px;
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-family: Georgia, serif;
    font-size: 14px;
}

.footer-enquire {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    color: rgba(255, 255, 255, 0.78);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-decoration: none;
    text-transform: uppercase;
}

.site-footer__links {
    display: grid;
    padding-block: 52px;
    grid-template-columns: repeat(3, 0.8fr) 1.4fr;
    gap: 50px;
}

.site-footer__links h3 {
      margin: 0 0 20px;
    color: var(--gold-light);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.site-footer__links a {
    display: block;
    width: fit-content;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.54);
    font-family: Georgia, serif;
    font-size: 15px;
    text-decoration: none;
    transition: color 180ms ease;
}

.site-footer__links a:hover {
    color: var(--white);
}

.site-footer__newsletter > p {
    max-width: 360px;
    margin: 0;
    color: rgba(255, 255, 255, 0.46);
    font-family: Georgia, serif;
    font-size: 12px;
}

.site-footer__newsletter form {
    display: flex;
    margin-top: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.site-footer__newsletter input {
    width: 100%;
    padding: 10px 0;
    border: 0;
    outline: none;
    background: transparent;
    color: var(--white);
    font-family: Georgia, serif;
    font-size: 13px;
}

.site-footer__newsletter button {
    width: 38px;
    border: 0;
    background: transparent;
    color: var(--gold-light);
    font-size: 18px;
    cursor: pointer;
}

.site-footer__newsletter > span {
    display: block;
    min-height: 16px;
    margin-top: 9px;
    color: var(--gold-light);
    font-size: 10px;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.site-footer__bottom p,
.site-footer__bottom a {
    margin: 0;
    color: rgba(255, 255, 255, 0.36);
    font-size: 9px;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
}

.site-footer__bottom > div {
    display: flex;
    gap: 24px;
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 60;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    transform: translateY(20px);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: rgba(18, 17, 14, 0.88);
    color: var(--gold-light);
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
    transition: opacity 250ms ease, transform 250ms ease, visibility 250ms ease;
    backdrop-filter: blur(8px);
}

.back-to-top.is-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
}

.js-enabled [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: opacity 850ms var(--ease-luxury), transform 850ms var(--ease-luxury);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.js-enabled [data-reveal].is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@keyframes heroBreath {
    from { transform: scale(1.035); }
    to { transform: scale(1); }
}

@keyframes scrollLine {
    0% { transform: translateX(-100%); }
    50%, 100% { transform: translateX(100%); }
}

@media (max-width: 1220px) {
    :root {
        --header-height: 78px;
    }

    .site-header__inner {
        grid-template-columns: 100px 1fr auto;
        gap: 18px;
    }

    .brand,
    .brand img {
        width: 76px;
    }

    .desktop-nav {
        gap: 21px;
    }

    .desktop-nav a {
        font-size: 10px;
    }

    .header-enquire {
        min-height: 42px;
        padding-inline: 19px;
        font-size: 9px;
    }

    .collection-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .collection-card__media {
        aspect-ratio: 3 / 2;
    }

    .four-c-card {
        padding-inline: 23px;
    }
}

@media (max-width: 980px) {
    .announcement__track {
        justify-content: flex-start;
        animation: announcementMarquee 24s linear infinite;
    }

    .desktop-nav,
    .header-enquire {
        display: none;
    }

    .site-header__inner {
        grid-template-columns: 1fr auto;
    }

    .menu-toggle,
    .mobile-menu {
        display: block;
    }

    .mobile-menu nav {
        display: grid;
    }

    .mobile-menu nav a {
        display: flex;
        align-items: baseline;
        gap: 19px;
        padding: 13px 0;
        border-bottom: 1px solid var(--line);
        font-family: var(--serif);
        font-size: clamp(28px, 6vw, 42px);
        line-height: 1.1;
        text-decoration: none;
    }

    .mobile-menu nav a span {
        color: var(--gold-dark);
        font-family: Georgia, serif;
        font-size: 9px;
    }

    .mobile-menu__footer {
        display: flex;
        align-items: end;
        justify-content: space-between;
        gap: 20px;
        margin-top: 28px;
    }

    .mobile-menu__footer p {
        margin: 0;
        color: var(--muted);
        font-family: Georgia, serif;
        font-size: 13px;
        font-style: italic;
    }

    .mobile-menu__footer a {
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 0.09em;
        text-decoration: none;
        text-transform: uppercase;
    }

    .hero__image {
        object-position: 66% center;
    }

    .hero__veil {
        background: linear-gradient(90deg, rgba(5, 4, 3, 0.92) 0%, rgba(6, 5, 4, 0.7) 45%, rgba(6, 5, 4, 0.15) 100%);
    }

    .hero h1 {
        font-size: clamp(64px, 11vw, 102px);
    }

    .service-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-strip__item:nth-child(2) {
        border-right: 0;
    }

    .service-strip__item:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .story__grid,
    .craft__grid,
    .faq__grid,
    .contact__inner {
        grid-template-columns: 1fr;
    }

    .story__visual {
        width: min(100%, 640px);
        margin-inline: auto;
    }

    .story__content,
    .faq__intro {
        max-width: 720px;
    }

    .diamond-guide__intro {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .four-c-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .four-c-card:nth-child(2) {
        border-right: 0;
    }

    .four-c-card:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .craft__media,
    .craft__media img {
        min-height: 540px;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .benefit-grid article {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .benefit-grid article:last-child {
        border-bottom: 0;
    }

    .contact::before {
        background: radial-gradient(circle at 14% 20%, rgba(200, 163, 82, 0.13), transparent 35%);
    }

    .contact__copy {
        max-width: 760px;
    }

    .site-footer__links {
        grid-template-columns: repeat(2, 1fr);
    }

    @keyframes announcementMarquee {
        to { transform: translateX(-48%); }
    }
}

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding-block: 78px;
    }

    .announcement {
        min-height: 36px;
    }

    .announcement__track {
        min-height: 36px;
        font-size: 9px;
    }

    .site-header__inner {
        width: calc(100% - 24px);
    }

    .brand,
    .brand img {
        width: 69px;
    }

    .hero {
        min-height: calc(100svh - 36px);
        align-items: flex-end;
    }

    .hero__image {
        object-position: 69% center;
    }

    .hero__veil {
        background:
            linear-gradient(180deg, rgba(4, 3, 2, 0.1) 12%, rgba(4, 3, 2, 0.42) 45%, rgba(4, 3, 2, 0.94) 100%),
            linear-gradient(90deg, rgba(4, 3, 2, 0.25), transparent 80%);
    }

    .hero__content {
        width: calc(100% - 28px);
        padding: 250px 0 85px;
    }

    .hero h1 {
        font-size: clamp(53px, 15vw, 76px);
        line-height: 0.88;
    }

    .hero h1 em {
        margin-bottom: 9px;
    }

    .hero h1 span {
        white-space: normal;
    }

    .hero__intro {
        margin-top: 22px;
        font-size: 14px;
        line-height: 1.65;
    }

    .hero__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
        margin-top: 28px;
    }

    .hero__scroll {
        display: none;
    }

    .service-strip {
        grid-template-columns: 1fr;
    }

    .service-strip__item {
        min-height: 96px;
        justify-content: flex-start;
        padding-inline: 28px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .service-strip__item:nth-child(3) {
        border-bottom: 1px solid var(--line);
    }

    .service-strip__item:last-child {
        border-bottom: 0;
    }

    .section-heading h2,
    .story__content h2,
    .diamond-guide h2,
    .craft__content h2,
    .faq__intro h2,
    .contact__copy h2 {
        font-size: clamp(40px, 12vw, 30px);
    }

    .collection-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .collection-card__media {
        aspect-ratio: 3 / 2;
    }

    .story__grid,
    .craft__grid,
    .faq__grid,
    .contact__inner {
        gap: 55px;
    }

    .story__visual {
        padding: 0 22px 25px 0;
    }

    .story__seal {
        right: -2px;
        bottom: 55px;
        width: 88px;
        height: 88px;
    }

    .story__values {
        grid-template-columns: 1fr;
    }

    .story__values > div,
    .story__values > div:not(:first-child) {
        padding: 15px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .story__values > div:last-child {
        border-bottom: 0;
    }

    .four-c-grid {
        margin-top: 48px;
        grid-template-columns: 1fr;
    }

    .four-c-card,
    .four-c-card:nth-child(2) {
        min-height: auto;
        padding: 32px 24px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .four-c-card:last-child {
        border-bottom: 0;
    }

    .four-c-card h3 {
        margin-top: 25px;
    }

    .diamond-guide__link {
        margin-left: 0;
    }

    .craft__media,
    .craft__media img {
        min-height: 390px;
    }

    .process-list li {
        grid-template-columns: 44px 1fr;
    }

    .benefit-grid {
        margin-top: 48px;
    }

    .benefit-grid article {
        padding: 40px 24px;
    }

    .manifesto {
        min-height: 430px;
    }

    .accordion__item button span {
        font-size: 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .enquiry-form__footer {
        align-items: stretch;
        flex-direction: column;
        gap: 20px;
    }

    .enquiry-form__footer .button {
        width: 100%;
    }

    .site-footer__top {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .site-footer__links {
        grid-template-columns: 1fr 1fr;
        gap: 38px 24px;
    }

    .site-footer__newsletter {
        grid-column: 1 / -1;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer__bottom > div {
        flex-wrap: wrap;
        gap: 14px 20px;
    }

    .back-to-top {
        right: 14px;
        bottom: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .js-enabled [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* ========================================================================== 
   2026 LIGHT ATELIER EDITION
   A calm ivory, champagne and ink system layered over the original structure.
   ========================================================================== */

:root {
    --ink: #191713;
    --ink-soft: #343029;
    --ivory: #fbf8f2;
    --ivory-2: #f2ece2;
    --pearl: #fffdf9;
    --white: #ffffff;
    --gold: #b6924d;
    --gold-light: #dcc58f;
    --gold-dark: #8a682c;
    --muted: #726c62;
    --line: rgba(61, 52, 38, 0.13);
    --soft-shadow: 0 24px 80px rgba(81, 61, 29, 0.1);
    --header-height: 88px;
}

body {
    background: var(--pearl);
}

html.menu-open,
body.menu-open {
    overflow: hidden;
}

::selection {
    background: #e8d7b4;
    color: var(--ink);
}

.announcement {
    min-height: 38px;
    border-bottom: 1px solid rgba(122, 93, 43, 0.14);
    background: #eee1cc;
    color: #5f4c2b;
}

.announcement__track {
    min-height: 38px;
    font-size: 9px;
    letter-spacing: 0.14em;
}

.announcement__track i {
    width: 6px;
    height: 6px;
    transform: rotate(45deg);
    border: 1px solid rgba(111, 83, 34, 0.55);
    background: transparent;
}

.site-header {
    border-bottom-color: rgba(67, 54, 35, 0.1);
    /*background: rgba(255, 253, 249, 0.92);*/
    background: #fff;
}

.site-header.is-scrolled {
    background: rgba(255, 253, 249, 0.98);
    box-shadow: 0 13px 45px rgba(59, 44, 20, 0.09);
}

.site-header__inner {
    width: min(calc(100% - 48px), 1480px);
    grid-template-columns: 118px 1fr auto;
}

.brand,
.brand img {
    width: 92px;
}

.brand img {
    transition: transform 500ms var(--ease-luxury), filter 400ms ease;
}

.brand:hover img {
    transform: translateY(-2px);
    filter: drop-shadow(0 7px 13px rgba(139, 104, 43, 0.18));
}

.desktop-nav a {
      color: #3a352e;
    font-size: 13px;
    font-weight: 500;
}

.header-enquire {
    min-height: 44px;
    padding-inline: 24px;
    border: 1px solid var(--ink);
    background: transparent;
    color: var(--ink);
}

.header-enquire:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--white);
}

.mobile-menu {
    display: none;
}

.hero {
    min-height: clamp(650px, calc(100svh - 126px), 870px);
    align-items: center;
    background: #eadfce;
    color: var(--ink);
}

.hero::before {
    position: absolute;
    inset: 22px;
    z-index: -1;
    border: 1px solid rgba(116, 85, 35, 0.16);
    content: "";
    pointer-events: none;
}

.hero__picture {
    position: absolute;
    inset: 0;
    z-index: -3;
    display: block;
    overflow: hidden;
}

.hero__image {
    z-index: 0;
    object-position: center center;
    animation: heroLightReveal 1.7s var(--ease-luxury) both, heroBreath 14s 1.7s ease-in-out alternate infinite;
}

.hero__veil {
    background:
        linear-gradient(90deg, rgba(255, 253, 249, 0.97) 0%, rgba(255, 252, 246, 0.88) 30%, rgba(255, 251, 243, 0.54) 44%, rgba(255, 250, 241, 0.06) 65%, transparent 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(101, 72, 25, 0.06));
}

.hero__content {
    width: min(calc(100% - 96px), 1420px);
    padding: 95px 0 128px;
}

.hero__copy {
    width: min(50%, 675px);
}

.hero .eyebrow {
    margin-bottom: 24px;
    color: var(--gold-dark);
}

.hero h1 {
    color: var(--ink);
    font-size: clamp(66px, 7.15vw, 112px);
    line-height: 0.83;
    letter-spacing: -0.06em;
}

.hero h1 em {
    margin: 0 0 16px 0.32em;
    color: var(--gold-dark);
    font-size: 0.66em;
    font-style: italic;
    letter-spacing: -0.025em;
}

.hero h1 span {
    white-space: normal;
}

.hero__intro {
    max-width: 550px;
    margin-top: 30px;
    color: #625c52;
    font-size: clamp(14px, 1.2vw, 17px);
}

.hero__actions {
    margin-top: 31px;
}

.hero .button--dark {
    min-width: 208px;
    box-shadow: 0 14px 32px rgba(32, 27, 20, 0.12);
}

.hero .text-link {
    color: #3c372f;
}

.hero__proof {
    display: grid;
    max-width: 575px;
    margin-top: 43px;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid rgba(59, 47, 30, 0.18);
}

.hero__proof > div {
    padding: 18px 18px 0 0;
    border-right: 1px solid rgba(59, 47, 30, 0.13);
}

.hero__proof > div:not(:first-child) {
    padding-left: 18px;
}

.hero__proof > div:last-child {
    border-right: 0;
}

.hero__proof strong,
.hero__proof span {
    display: block;
}

.hero__proof strong {
    font-family: Georgia, serif;
    font-size: 13px;
    font-weight: 500;
}

.hero__proof span {
    margin-top: 2px;
    color: var(--muted);
    font-size: 8px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero__editorial-note {
    position: absolute;
    right: clamp(32px, 4vw, 72px);
    bottom: 52px;
    display: grid;
    width: 150px;
    height: 150px;
    place-content: center;
    border: 1px solid rgba(74, 54, 22, 0.28);
    border-radius: 50%;
    background: rgba(255, 253, 249, 0.66);
    color: #4d402d;
    text-align: center;
    box-shadow: 0 15px 45px rgba(61, 43, 14, 0.09);
    backdrop-filter: blur(9px);
    animation: noteFloat 5s ease-in-out infinite;
}

.hero__editorial-note::before {
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(124, 91, 38, 0.18);
    border-radius: inherit;
    content: "";
}

.hero__editorial-note > span {
    color: var(--gold-dark);
    font-family: var(--serif);
    font-size: 24px;
    line-height: 1;
}

.hero__editorial-note p {
    margin: 8px 0 0;
    font-family: Georgia, serif;
    font-size: 9px;
    font-style: italic;
    line-height: 1.45;
}

.hero__scroll {
    bottom: 27px;
    color: rgba(43, 36, 27, 0.64);
}

.hero__scroll i {
    background: rgba(44, 36, 24, 0.23);
}

.hero__scroll i::after {
    background: var(--gold-dark);
}

.service-strip {
    position: relative;
    z-index: 3;
    width: min(calc(100% - 64px), 1420px);
    margin-top: -22px;
    border: 1px solid rgba(76, 59, 35, 0.12);
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--soft-shadow);
}

.service-strip__item {
    min-height: 116px;
}

.service-strip__item strong {
    font-size: 14px;
}

.collections {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 4%, rgba(205, 178, 122, 0.14), transparent 24%),
        var(--ivory);
}

.collections::after {
    position: absolute;
    top: 70px;
    right: -130px;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(145, 108, 46, 0.12);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.collection-grid {
    gap: 22px;
}

.collection-card {
    border-color: rgba(72, 57, 35, 0.12);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 35px rgba(70, 51, 23, 0.045);
}

.collection-card:nth-child(even) {
    margin-top: 34px;
}

.collection-card__media::before {
    position: absolute;
    inset: -25%;
    z-index: 2;
    content: "";
    transform: translateX(-135%) rotate(14deg);
    background: linear-gradient(90deg, transparent 40%, rgba(255, 255, 255, 0.5), transparent 62%);
    transition: transform 950ms var(--ease-luxury);
    pointer-events: none;
}

.collection-card:hover .collection-card__media::before {
    transform: translateX(135%) rotate(14deg);
}

.collection-card__body {
    padding-block: 25px 27px;
}

.story {
    background: var(--pearl);
}

.story::before {
    position: absolute;
    top: 12%;
    left: -160px;
    width: 330px;
    height: 520px;
    border: 1px solid rgba(148, 110, 46, 0.12);
    border-radius: 50%;
    content: "";
}

.story__frame {
    box-shadow: 0 26px 70px rgba(74, 52, 21, 0.13);
}

.story__seal {
    background: rgba(255, 253, 248, 0.94);
    box-shadow: 0 12px 28px rgba(65, 45, 17, 0.12);
}

.diamond-guide {
    background:
        radial-gradient(circle at 90% 8%, rgba(214, 190, 140, 0.16), transparent 28%),
        #f7f1e7;
    color: var(--ink);
}

.diamond-guide::before {
    border-color: rgba(131, 95, 35, 0.12);
}

.diamond-guide .eyebrow--light {
    color: var(--gold-dark);
}

.diamond-guide__intro > p {
    color: var(--muted);
}

.four-c-grid {
    border-color: rgba(67, 52, 30, 0.14);
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 20px 70px rgba(69, 47, 17, 0.06);
}

.four-c-card {
    border-right-color: rgba(67, 52, 30, 0.14);
    background: transparent;
}

.four-c-card:hover {
    background: linear-gradient(145deg, rgba(230, 212, 174, 0.46), rgba(255, 255, 255, 0.7));
}

.four-c-card > span {
    color: rgba(56, 44, 28, 0.38);
}

.four-c-card svg {
    stroke: var(--gold-dark);
}

.four-c-card p {
    color: var(--muted);
}

.diamond-guide__link {
    border-bottom-color: rgba(47, 39, 28, 0.6);
    color: var(--ink-soft);
}

.craft {
    background: #fffdfa;
}

.craft__media {
    box-shadow: 0 28px 75px rgba(63, 44, 18, 0.14);
}

.process-list li {
    transition: padding-left 300ms var(--ease-luxury), background-color 300ms ease;
}

.process-list li:hover {
    padding-left: 12px;
    background: linear-gradient(90deg, rgba(220, 197, 143, 0.14), transparent);
}

.why-us {
    background: var(--ivory);
}

.benefit-grid {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.62);
}

.benefit-grid article {
    transition: transform 420ms var(--ease-luxury), background-color 350ms ease, box-shadow 420ms ease;
}

.benefit-grid article:hover {
    z-index: 1;
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: 0 22px 60px rgba(65, 45, 17, 0.1);
}

.manifesto {
    min-height: 510px;
    border-block: 1px solid rgba(105, 78, 35, 0.13);
    background:
        radial-gradient(circle at 50% 45%, rgba(211, 183, 122, 0.28), transparent 28%),
        linear-gradient(135deg, #fbf8f1, #efe5d5 54%, #fdfbf7);
    color: var(--ink);
}

.manifesto::before,
.manifesto::after {
    border-color: rgba(120, 87, 34, 0.15);
}

.manifesto > p,
.manifesto h2 em {
    color: var(--gold-dark);
}

.manifesto__marks {
    color: rgba(44, 37, 27, 0.5);
}

.manifesto__marks i {
    background: rgba(54, 43, 27, 0.2);
}

.faq {
    background: var(--pearl);
}

.accordion__item button {
    transition: color 220ms ease, padding-left 300ms var(--ease-luxury);
}

.accordion__item button:hover {
    padding-left: 12px;
    color: var(--gold-dark);
}

.contact {
    background:
        radial-gradient(circle at 5% 10%, rgba(208, 177, 112, 0.26), transparent 28%),
        linear-gradient(135deg, #f3eadc, #fbf8f2 62%, #eee1cc);
    color: var(--ink);
}

.contact::before {
    background:
        linear-gradient(90deg, transparent 49.9%, rgba(88, 67, 33, 0.11) 50%, transparent 50.1%),
        radial-gradient(circle at 14% 40%, rgba(200, 163, 82, 0.14), transparent 32%);
}

.contact__glow {
    border-color: rgba(139, 102, 42, 0.15);
}

.contact .eyebrow--light,
.contact__copy h2 em {
    color: var(--gold-dark);
}

.contact__copy > p:not(.eyebrow) {
    color: var(--muted);
}

.contact__notes span {
    border-color: rgba(68, 53, 30, 0.17);
    background: rgba(255, 255, 255, 0.42);
    color: #655c4f;
}

.enquiry-form {
    border-color: rgba(81, 61, 31, 0.13);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 28px 90px rgba(77, 55, 22, 0.1);
    backdrop-filter: blur(12px);
}

.enquiry-form label {
    color: #807567;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    border-bottom-color: rgba(60, 48, 32, 0.2);
    color: var(--ink);
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
    color: rgba(42, 36, 27, 0.38);
}

.enquiry-form select {
    color: #665f55;
}

.enquiry-form select option {
    background: var(--white);
    color: var(--ink);
}

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

.enquiry-form__footer > p {
    color: rgba(50, 42, 31, 0.48);
}

.form-status {
    color: var(--gold-dark);
}

.site-footer {
    border-top: 1px solid rgba(67, 52, 30, 0.12);
    background: #fffdf9;
    color: var(--ink);
}

.site-footer__top {
    border-bottom-color: var(--line);
}

.site-footer__top > p {
    color: var(--muted);
}

.footer-enquire {
    border-bottom-color: rgba(41, 34, 25, 0.62);
    color: var(--ink-soft);
}

.site-footer__links h3 {
    color: var(--gold-dark);
}

.site-footer__links a,
.site-footer__newsletter > p {
    color: #746d63;
}

.site-footer__links a:hover {
    color: var(--gold-dark);
}

.site-footer__newsletter form {
    border-bottom-color: rgba(50, 41, 29, 0.22);
}

.site-footer__newsletter input {
    color: var(--ink);
}

.site-footer__newsletter button,
.site-footer__newsletter > span {
    color: var(--gold-dark);
}

.site-footer__bottom {
    border-top-color: var(--line);
}

.site-footer__bottom p,
.site-footer__bottom a {
    color: #8b8378;
}

.back-to-top {
    border-color: rgba(31, 27, 21, 0.2);
    background: rgba(255, 253, 249, 0.94);
    color: var(--ink);
    box-shadow: 0 12px 30px rgba(52, 39, 18, 0.13);
}

.js-enabled [data-reveal] {
    opacity: 0;
    transform: translate3d(0, 32px, 0);
    transition: opacity 900ms var(--ease-luxury), transform 900ms var(--ease-luxury);
    transition-delay: var(--reveal-delay, 0ms);
}

.js-enabled [data-reveal="left"] {
    transform: translate3d(-34px, 0, 0);
}

.js-enabled [data-reveal="right"] {
    transform: translate3d(34px, 0, 0);
}

.js-enabled [data-reveal="scale"] {
    transform: scale(0.94);
}

.js-enabled [data-reveal].is-revealed {
    opacity: 1;
    transform: none;
}

@keyframes heroLightReveal {
    from { opacity: 0; transform: scale(1.06); }
    to { opacity: 1; transform: scale(1.02); }
}

@keyframes noteFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-8px) rotate(1deg); }
}

@media (max-width: 1220px) {
    .site-header__inner {
        width: min(calc(100% - 36px), 1420px);
    }

    .hero__copy {
        width: 54%;
    }

    .collection-card:nth-child(even) {
        margin-top: 0;
    }
}

@media (max-width: 980px) {
    .site-header {
        z-index: 110;
    }

    .site-header__inner {
        grid-template-columns: 1fr auto;
    }

    .menu-toggle {
        position: relative;
        z-index: 112;
        display: block;
        border: 1px solid rgba(57, 45, 28, 0.13);
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.72);
    }

    .mobile-menu {
        position: fixed;
        top: var(--menu-top, var(--header-height));
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 105;
        display: block;
        padding: 0;
        transform: none;
        background: transparent;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 280ms ease, visibility 280ms ease;
    }

    .mobile-menu.is-open {
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-menu__backdrop {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        padding: 0;
        border: 0;
        background: rgba(30, 25, 18, 0.28);
        opacity: 0;
        cursor: pointer;
        backdrop-filter: blur(5px);
        transition: opacity 300ms ease;
    }

    .mobile-menu.is-open .mobile-menu__backdrop {
        opacity: 1;
    }

    .mobile-menu__panel {
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        width: min(88vw, 460px);
        height: 100%;
        overflow-y: auto;
        padding: 30px clamp(22px, 5vw, 40px) 28px;
        transform: translate3d(104%, 0, 0);
        background:
            radial-gradient(circle at 95% 5%, rgba(207, 181, 126, 0.28), transparent 24%),
            #fbf7ef;
        flex-direction: column;
        box-shadow: -22px 0 70px rgba(45, 31, 10, 0.15);
        transition: transform 500ms var(--ease-luxury);
        overscroll-behavior: contain;
    }

    .mobile-menu.is-open .mobile-menu__panel {
        transform: translate3d(0, 0, 0);
    }

    .mobile-menu__label {
        display: flex;
        justify-content: space-between;
        margin-bottom: 18px;
        padding-bottom: 14px;
        border-bottom: 1px solid var(--line);
        color: #8c816f;
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    .mobile-menu nav {
        display: grid;
    }

    .mobile-menu nav a {
        gap: 16px;
        padding: 11px 0;
        font-size: clamp(28px, 5.8vw, 39px);
    }

    .mobile-menu nav a span {
        width: 18px;
        color: var(--gold-dark);
    }

    .mobile-menu__footer {
        margin-top: auto;
        padding-top: 28px;
        border-top: 1px solid var(--line);
    }

    .mobile-menu__footer a {
        text-align: right;
    }

    .hero {
        min-height: clamp(700px, calc(100svh - 112px), 830px);
    }

    .hero__image {
        object-position: 67% center;
    }

    .hero__veil {
        background: linear-gradient(90deg, rgba(255, 253, 249, 0.97) 0%, rgba(255, 252, 246, 0.86) 42%, rgba(255, 250, 241, 0.14) 75%, transparent 100%);
    }

    .hero__content {
        width: calc(100% - 52px);
    }

    .hero__copy {
        width: 62%;
    }

    .hero__editorial-note {
        right: 28px;
        bottom: 38px;
        width: 126px;
        height: 126px;
    }

    .service-strip {
        width: calc(100% - 36px);
    }

    .four-c-card:nth-child(-n+2) {
        border-bottom-color: rgba(67, 52, 30, 0.14);
    }

    .contact::before {
        background: radial-gradient(circle at 14% 20%, rgba(200, 163, 82, 0.14), transparent 35%);
    }
}

@media (max-width: 680px) {
    :root {
        --header-height: 72px;
    }

    .announcement,
    .announcement__track {
        min-height: 34px;
    }

    .announcement__track {
        gap: 25px;
        padding-inline: 18px;
        font-size: 8px;
    }

    .site-header__inner {
        width: calc(100% - 20px);
        min-height: var(--header-height);
    }

    .brand,
    .brand img {
        width: 70px;
    }

    .menu-toggle {
        width: 44px;
        height: 44px;
    }

    .mobile-menu__panel {
        width: min(92vw, 430px);
        padding-top: 22px;
    }

    .mobile-menu nav a {
        padding-block: 10px;
        font-size: clamp(27px, 8.8vw, 36px);
    }

    .hero {
        min-height: 790px;
        align-items: flex-end;
    }

    .hero::before {
        inset: 10px;
    }

    .hero__image {
        object-position: center top;
    }

    .hero__veil {
        background:
            linear-gradient(180deg, rgba(255, 253, 248, 0.04) 0%, rgba(255, 251, 244, 0.03) 32%, rgba(251, 246, 237, 0.84) 59%, #fbf7ef 76%, #fbf7ef 100%),
            linear-gradient(90deg, rgba(255, 253, 249, 0.08), transparent 80%);
    }

    .hero__content {
        width: calc(100% - 32px);
        padding: 400px 0 48px;
    }

    .hero__copy {
        width: 100%;
    }

    .hero .eyebrow {
        margin-bottom: 15px;
        font-size: 8px;
        letter-spacing: 0.17em;
    }

    .hero h1 {
        max-width: 360px;
        font-size: clamp(48px, 14.4vw, 67px);
        line-height: 0.86;
    }

    .hero h1 em {
        margin: 0 0 8px 0.18em;
    }

    .hero__intro {
        max-width: 440px;
        margin-top: 18px;
        font-size: 13px;
        line-height: 1.55;
    }

    .hero__actions {
        display: grid;
        margin-top: 23px;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 20px;
    }

    .hero .button--dark {
        min-width: 0;
        min-height: 48px;
        padding-inline: 17px;
        font-size: 9px;
    }

    .hero .text-link {
        font-size: 8px;
    }

    .hero__proof {
        margin-top: 27px;
    }

    .hero__proof > div,
    .hero__proof > div:not(:first-child) {
        padding: 13px 8px 0;
    }

    .hero__proof > div:first-child {
        padding-left: 0;
    }

    .hero__proof > div:last-child {
        padding-right: 0;
    }

    .hero__proof strong {
        font-size: 10px;
    }

    .hero__proof span {
        font-size: 6px;
        line-height: 1.4;
    }

    .hero__editorial-note,
    .hero__scroll {
        display: none;
    }

    .service-strip {
        width: calc(100% - 28px);
        margin-top: -12px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-strip__item {
        min-height: 118px;
        padding: 20px 14px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 11px;
        border-right: 1px solid var(--line);
        border-bottom: 1px solid var(--line);
    }

    .service-strip__item:nth-child(2n) {
        border-right: 0;
    }

    .service-strip__item:nth-child(n+3) {
        border-bottom: 0;
    }

    .service-strip__item svg {
        width: 26px;
        height: 26px;
    }

    .service-strip__item strong {
        font-size: 12px;
    }

    .service-strip__item span {
        font-size: 8px;
        line-height: 1.35;
    }

    .collections .container {
        width: 100%;
    }

    .collections .section-heading {
        width: calc(100% - 28px);
        margin-inline: auto;
    }

    .collection-grid {
        display: flex;
        overflow-x: auto;
        margin-top: 40px;
        padding: 0 14px 24px;
        gap: 14px;
        scroll-padding-inline: 14px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        overscroll-behavior-inline: contain;
    }

    .collection-grid::-webkit-scrollbar {
        display: none;
    }

    .collection-card,
    .collection-card:nth-child(even) {
        width: min(82vw, 350px);
        min-width: min(82vw, 350px);
        margin-top: 0;
        scroll-snap-align: center;
    }

    .collection-card__media {
        aspect-ratio: 1 / 1.02;
    }

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

    .four-c-card,
    .four-c-card:nth-child(2) {
        min-height: 280px;
        padding: 25px 18px;
        border-right: 1px solid rgba(67, 52, 30, 0.14);
        border-bottom: 1px solid rgba(67, 52, 30, 0.14);
    }

    .four-c-card:nth-child(2n) {
        border-right: 0;
    }

    .four-c-card:nth-child(n+3) {
        border-bottom: 0;
    }

    .four-c-card svg {
        width: 35px;
        height: 35px;
        margin-top: 18px;
    }

    .four-c-card h3 {
        margin: 23px 0 10px;
        font-size: 31px;
    }

    .four-c-card p {
        font-size: 11px;
        line-height: 1.6;
    }

    .benefit-grid article:hover,
    .process-list li:hover {
        transform: none;
    }

    .manifesto {
        min-height: 410px;
    }

    .contact::before {
        display: none;
    }

    .enquiry-form {
        padding: 25px 20px;
    }

    .site-footer {
        padding-top: 58px;
    }
}

@media (max-width: 390px) {
    .hero {
        min-height: 760px;
    }

    .hero__content {
        padding-top: 370px;
    }

    .hero__actions {
        grid-template-columns: 1fr;
        justify-items: start;
        gap: 16px;
    }

    .hero .button--dark {
        width: 100%;
    }

    .four-c-grid {
        grid-template-columns: 1fr;
    }

    .four-c-card,
    .four-c-card:nth-child(2),
    .four-c-card:nth-child(2n),
    .four-c-card:nth-child(n+3) {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(67, 52, 30, 0.14);
    }

    .four-c-card:last-child {
        border-bottom: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__image,
    .hero__editorial-note {
        animation: none !important;
    }

    .js-enabled [data-reveal],
    .js-enabled [data-reveal="left"],
    .js-enabled [data-reveal="right"],
    .js-enabled [data-reveal="scale"] {
        opacity: 1;
        transform: none;
    }
}
