:root {
--cream: #F9F7F3;
--warm-white: #fcf7f5;
--ink: #1C1A17;
--ink-light: #4A4640;
--ink-muted: #8A857E;
--gold: #B8965A;
--gold-light: #D4AF7A;
--border: #E4DDD4;
--section-bg: #FFF4F0;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: 'Jost', sans-serif;
font-weight: 300;
background: var(--warm-white);
color: var(--ink);
font-size: 15px;
line-height: 1.8;
}
/* ── PREVIEW HEADER ── */
.preview-bar {
background: var(--ink);
color: #B8965A;
text-align: center;
padding: 10px 20px;
font-size: 11px;
letter-spacing: .18em;
text-transform: uppercase;
font-weight: 400;
}
/* ── PAGE WRAPPER ── */
.page {
max-width: 860px;
margin: 0 auto;
padding: 10px 32px 100px;
}
/* ── PAGE TITLE ── */
.page-eyebrow {
font-size: 11px;
letter-spacing: .2em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 14px;
font-weight: 400;
}
.page-title {
font-family: 'Cormorant Garamond', serif;
font-size: clamp(36px, 5vw, 52px);
font-weight: 300;
letter-spacing: .01em;
line-height: 1.1;
margin-bottom: 18px;
color: var(--ink);
}
.page-intro {
font-size: 15px;
color: var(--ink-light);
max-width: 640px;
line-height: 1.85;
margin-bottom: 48px;
padding-bottom: 48px;
border-bottom: 1px solid var(--border);
}
/* ── SECTION ── */
.section {
margin-bottom: 56px;
}
.section-title {
font-family: 'Cormorant Garamond', serif;
font-size: 22px;
font-weight: 400;
letter-spacing: .02em;
color: var(--ink);
margin-bottom: 6px;
}
.section-rule {
width: 36px;
height: 1px;
background: var(--gold);
margin-bottom: 20px;
}
.section-body {
color: var(--ink-light);
line-height: 1.85;
}
.section-body p { margin-bottom: 14px; }
.section-body p:last-child { margin-bottom: 0; }
.section-body strong { color: var(--ink); font-weight: 500; }
/* ── REGION GRID ── */
.region-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1px;
background: var(--border);
border: 1px solid var(--border);
margin: 32px 0;
}
.region-card {
background: var(--warm-white);
padding: 28px 28px 24px;
}
.region-card.full-width {
grid-column: 1 / -1;
}
.region-flag {
font-size: 20px;
margin-bottom: 10px;
display: block;
}
.region-name {
font-family: 'Cormorant Garamond', serif;
font-size: 17px;
font-weight: 500;
color: var(--ink);
margin-bottom: 4px;
letter-spacing: .02em;
}
.region-tag {
display: inline-block;
font-size: 10px;
letter-spacing: .12em;
text-transform: uppercase;
padding: 2px 8px;
border: 0.5px solid var(--gold);
color: var(--gold);
font-weight: 400;
margin-bottom: 12px;
}
.region-body {
font-size: 13.5px;
color: var(--ink-light);
line-height: 1.75;
}
.region-body strong { color: var(--ink); font-weight: 500; }
/* ── PROMISE BAR ── */
.promise-bar {
background: var(--section-bg);
border: 1px solid var(--border);
padding: 28px 32px;
display: flex;
gap: 32px;
margin: 40px 0;
flex-wrap: wrap;
}
.promise-item {
flex: 1;
min-width: 160px;
}
.promise-icon {
font-size: 18px;
margin-bottom: 8px;
display: block;
}
.promise-label {
font-size: 11px;
letter-spacing: .14em;
text-transform: uppercase;
color: var(--gold);
font-weight: 400;
margin-bottom: 4px;
display: block;
}
.promise-text {
font-size: 13px;
color: var(--ink-light);
line-height: 1.6;
}
/* ── FAQ ACCORDION ── */
.faq-list { margin-top: 8px; }
.faq-item {
border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
width: 100%;
background: none;
border: none;
padding: 18px 0;
text-align: left;
font-family: 'Jost', sans-serif;
font-weight: 400;
font-size: 14px;
color: var(--ink);
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
letter-spacing: .01em;
}
.faq-q span.icon {
color: var(--gold);
font-size: 18px;
font-weight: 300;
transition: transform .25s ease;
flex-shrink: 0;
margin-left: 16px;
}
.faq-item.open .faq-q span.icon { transform: rotate(45deg); }
.faq-a {
display: none;
font-size: 13.5px;
color: var(--ink-light);
line-height: 1.8;
padding: 0 0 18px;
max-width: 680px;
}
.faq-a p { margin-bottom: 10px; }
.faq-a p:last-child { margin-bottom: 0; }
.faq-item.open .faq-a { display: block; }
/* ── NOTE CALLOUT ── */
.callout {
border-left: 2px solid var(--gold);
padding: 14px 20px;
background: var(--section-bg);
font-size: 13px;
color: var(--ink-light);
line-height: 1.7;
margin: 24px 0;
}
.callout strong { color: var(--ink); font-weight: 500; }
/* ── COPY SECTION DIVIDER ── */
.copy-divider {
text-align: center;
margin: 64px 0 32px;
position: relative;
}
.copy-divider::before {
content: '';
position: absolute;
top: 50%;
left: 0;
right: 0;
height: 1px;
background: var(--border);
}
.copy-divider span {
position: relative;
background: var(--warm-white);
padding: 0 20px;
font-size: 11px;
letter-spacing: .2em;
text-transform: uppercase;
color: var(--ink-muted);
font-weight: 400;
}
@media (max-width: 600px) {
.region-grid { grid-template-columns: 1fr; }
.promise-bar { gap: 20px; }
.page { padding: 40px 20px 80px; }
}
Delivered to
your door, with care
Every Santinni piece is dispatched from our London atelier and delivered via FedEx Express to over 50 countries worldwide. We ship on a fully Delivered Duty Paid (DDP) basis — meaning all applicable duties and taxes are settled before your order leaves us, so you will never face an unexpected charge upon delivery.
✦ No surprises
All duties and taxes are handled upfront. What you pay at checkout is the final amount — nothing more on delivery.
✦ FedEx Express
All international orders are dispatched via FedEx Express for reliable, tracked delivery with full visibility from dispatch to door.
✦ London atelier
In-stock orders dispatched within 1–2 working days (pre-order designs shipped within 5-9 working days), carefully packaged in our signature pink presentation box.

United Kingdom
We offer standard and express delivery across mainland UK, with options for Northern Ireland, the Scottish Highlands, the Channel Islands and the Isle of Man.
Delivery rates are calculated at checkout based on the weight of your order. As a UK-based brand, all prices displayed on our website include 20% VAT — no additional taxes apply to domestic orders.
International Delivery
We ship worldwide via FedEx Express. Delivery costs are calculated at checkout based on the volumetric weight of your order and your destination country. Estimated delivery timeframes are shown at checkout.
We ship on a Delivered Duty Paid (DDP) basis to all international destinations. This means that any import duties, customs charges and local taxes applicable to your order are either included in your checkout total or settled on your behalf — you will never receive a customs bill or unexpected charge when your order arrives.
Please see below for details on how duties and taxes are handled in your region.
Duties & Taxes
Customs & Taxes
Transparent pricing,
wherever you are
We ensure that all duties, customs fees and local taxes are calculated accurately and settled in full at checkout — so your Santinni piece arrives without complication, regardless of where in the world you call home.
By region
🇬🇧
United Kingdom
VAT Inclusive
All prices on our website are displayed inclusive of 20% UK VAT. No additional taxes or import duties apply to domestic orders. Your checkout total is the final price.
🇺🇸/🇨🇦
United States/Canada
DDP — Duties & Taxes at Checkout
Prices shown exclude UK VAT. Any applicable import duties and sales tax will be calculated and collected at checkout, so you know your complete total before placing your order. Your purchase is shipped DDP — no charges on delivery, ever.
🇪🇺 /🇨🇭
Europe/Switzerland
VAT-Inclusive Pricing
Prices across European countries are displayed inclusive of local VAT, applied automatically for your country. Where import duties apply, these will be shown and collected separately at checkout. The total you see at checkout is final — no further charges on delivery.
🇦🇺 🇳🇿
Australia & New Zealand
DDP — Duties & Taxes at Checkout
Applicable import duties will be calculated and collected at checkout. Shipments under AUD/NZD 1,000 are not subject to taxes or duties.
🇦🇪 🇸🇦 🇶🇦 🇰🇼
GCC — UAE, Saudi Arabia, Qatar & Kuwait
All-Inclusive Pricing
For our Gulf customers, prices are displayed fully inclusive of all applicable import duties and local VAT. The price you see is the complete price — there are no additional charges at checkout or on delivery.
🌍
Rest of World
DDP — Duties & Taxes at Checkout
For all other international destinations, UK VAT is removed from your order total and any applicable import duties and local taxes will be calculated and displayed at checkout before you complete your purchase. As always, your order ships DDP — what you pay is what you pay, with no surprises on delivery.
Any import duties and taxes prepaid at checkout are non-refundable. These charges are collected on behalf of and remitted directly to your local customs authority at the time of import
You may, however, be able to recover these charges independently by contacting your local customs authority directly.
Any orders rejected by Customers upon delivery, or packages that were unable to be delivered due to erroneous information provided by the customer, will be returned to us. In such cases, since we will have to bear the original and return shipping fee, as well as any unrecoverable import charges levied by the customs authorities, the value of these will be deducted from the refund.
Delivery Specifics
When placing your order, please ensure that all the details concerning the billing and shipping details are correct and in English, as we are unable to redirect packages once the courier has processed an order.
Please note that once an order is dispatched the delivery address cannot be changed.
Every order will require a signature of receipt and this signature will signify successful delivery and fulfilment. Our courier usually delivers from Monday to Friday during business hours. Once your item has been delivered and signed for, the responsibility of these goods passes to you.
Santinni is not liable for lost or missing orders that have been signed for, for example at an office address that has been provided for delivery.