@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--ink: #1a1a18;
--ink-light: #6b6b66;
--ink-faint: #b0afa8;
--cream: #f7f5f0;
--warm-white: #fdfcf9;
--accent: #2c2c28;
--border: #e2e0d8;
--green: #3a5c3a;
--green-bg: #f0f5f0;
--amber: #7a5c1e;
--amber-bg: #fdf6e8;
--blue: #1e3a5c;
--blue-bg: #eef2f8;
}
body {
font-family: 'DM Sans', sans-serif;
background: var(--warm-white);
color: var(--ink);
font-size: 14px;
line-height: 1.7;
padding: 60px 24px 100px;
max-width: 860px;
margin: 0 auto;
}
/* Header */
.policy-header {
border-bottom: 1px solid var(--border);
padding-bottom: 36px;
margin-bottom: 48px;
}
.brand {
font-family: 'Cormorant Garamond', serif;
font-size: 11px;
font-weight: 400;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--ink-light);
margin-bottom: 16px;
}
.policy-header h1 {
font-family: 'Cormorant Garamond', serif;
font-size: 38px;
font-weight: 300;
letter-spacing: -0.01em;
color: var(--ink);
margin-bottom: 10px;
}
.last-updated {
font-size: 12px;
color: var(--ink-faint);
letter-spacing: 0.05em;
}
/* Section */
.section {
margin-bottom: 48px;
}
.section-label {
font-family: 'Cormorant Garamond', serif;
font-size: 11px;
font-weight: 500;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--ink-faint);
margin-bottom: 20px;
padding-bottom: 8px;
border-bottom: 1px solid var(--border);
}
.section h2 {
font-family: 'Cormorant Garamond', serif;
font-size: 22px;
font-weight: 400;
color: var(--ink);
margin-bottom: 16px;
margin-top: 4px;
}
/* Callout badges */
.badge {
display: inline-flex;
align-items: center;
gap: 6px;
font-size: 11px;
font-weight: 500;
letter-spacing: 0.08em;
text-transform: uppercase;
padding: 4px 10px;
border-radius: 2px;
margin-bottom: 16px;
}
.badge-green { background: var(--green-bg); color: var(--green); }
.badge-amber { background: var(--amber-bg); color: var(--amber); }
.badge-blue { background: var(--blue-bg); color: var(--blue); }
.badge::before {
content: '';
width: 6px;
height: 6px;
border-radius: 50%;
background: currentColor;
opacity: 0.7;
}
/* Shipping table */
.shipping-table {
width: 100%;
border-collapse: collapse;
margin-bottom: 8px;
}
.shipping-table th {
font-family: 'DM Sans', sans-serif;
font-size: 11px;
font-weight: 500;
letter-spacing: 0.1em;
text-transform: uppercase;
color: var(--ink-light);
text-align: left;
padding: 10px 16px;
background: var(--cream);
border-bottom: 1px solid var(--border);
}
.shipping-table td {
padding: 14px 16px;
border-bottom: 1px solid var(--border);
vertical-align: top;
font-size: 13.5px;
color: var(--ink);
}
.shipping-table tr:last-child td {
border-bottom: none;
}
.shipping-table tr:hover td {
background: var(--cream);
}
.destination {
font-weight: 500;
color: var(--ink);
}
.sub {
font-size: 12px;
color: var(--ink-light);
margin-top: 2px;
}
.free-tag {
display: inline-block;
background: var(--green-bg);
color: var(--green);
font-size: 11px;
font-weight: 500;
padding: 2px 8px;
border-radius: 2px;
letter-spacing: 0.05em;
}
.ddp-tag {
display: inline-block;
background: var(--blue-bg);
color: var(--blue);
font-size: 11px;
font-weight: 500;
padding: 2px 8px;
border-radius: 2px;
letter-spacing: 0.05em;
}
/* Info blocks */
.info-block {
padding: 20px 24px;
border-left: 3px solid var(--border);
background: var(--cream);
margin-bottom: 16px;
border-radius: 0 4px 4px 0;
}
.info-block.highlight {
border-left-color: var(--green);
background: var(--green-bg);
}
.info-block.warning {
border-left-color: var(--amber);
background: var(--amber-bg);
}
.info-block.important {
border-left-color: var(--blue);
background: var(--blue-bg);
}
.info-block strong {
display: block;
font-size: 12px;
font-weight: 500;
letter-spacing: 0.08em;
text-transform: uppercase;
margin-bottom: 6px;
color: inherit;
opacity: 0.8;
}
.info-block p {
font-size: 13.5px;
color: var(--ink);
line-height: 1.65;
}
/* Two column grid */
.two-col {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 16px;
margin-bottom: 16px;
}
@media (max-width: 600px) {
.two-col { grid-template-columns: 1fr; }
}
.mini-card {
border: 1px solid var(--border);
padding: 20px;
border-radius: 4px;
background: var(--warm-white);
}
.mini-card .card-label {
font-size: 11px;
font-weight: 500;
letter-spacing: 0.12em;
text-transform: uppercase;
color: var(--ink-faint);
margin-bottom: 8px;
}
.mini-card .card-value {
font-family: 'Cormorant Garamond', serif;
font-size: 20px;
font-weight: 400;
color: var(--ink);
margin-bottom: 6px;
}
.mini-card p {
font-size: 12.5px;
color: var(--ink-light);
line-height: 1.6;
}
/* Legal prose */
.legal-prose p {
font-size: 13.5px;
color: var(--ink);
line-height: 1.75;
margin-bottom: 12px;
}
.legal-prose p:last-child { margin-bottom: 0; }
/* Divider */
.divider {
border: none;
border-top: 1px solid var(--border);
margin: 40px 0;
}
/* Footer */
.policy-footer {
margin-top: 60px;
padding-top: 28px;
border-top: 1px solid var(--border);
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 12px;
}
.policy-footer p {
font-size: 12px;
color: var(--ink-faint);
}
.policy-footer a {
color: var(--ink-light);
text-decoration: none;
border-bottom: 1px solid var(--border);
font-size: 12px;
transition: border-color 0.2s;
}
.policy-footer a:hover {
border-color: var(--ink-light);
}
/* Print */
@media print {
body { padding: 20px; }
.shipping-table tr:hover td { background: none; }
}
Shipping Policy
Last updated: June 2, 2026
01 — Shipping Rates & Free Shipping Thresholds
| Destination |
Free Shipping |
Standard Fee |
Duties & Taxes |
|
France
Metropolitan France
|
Free over €150 |
Calculated at checkout |
Included (VAT) |
|
European Union
All EU member states
|
Free over €150 |
Calculated at checkout |
Included (VAT) |
|
United Kingdom
England, Scotland, Wales, N. Ireland
|
Free over €150 |
Calculated at checkout |
Customer's responsibility |
|
Switzerland
|
Free over €150 |
Calculated at checkout |
Customer's responsibility |
|
United States
All 50 states
|
— |
Calculated at checkout |
DDP — Included |
|
Japan & South Korea
Select wholesale markets
|
— |
Calculated at checkout |
Customer's responsibility |
|
Rest of World
All other destinations
|
— |
Calculated at checkout |
Customer's responsibility |
United States — DDP (Delivered Duty Paid)
For all orders shipped to the United States, the price displayed at checkout is the final price. All applicable import duties and taxes are included. No additional charges will be due upon delivery.
02 — Order Processing & Dispatch
France & Europe
1–3 business days
Orders confirmed before 12:00 CET on a business day are processed the same day when possible.
International
2–7 business days
Processing time before dispatch. Delivery time depends on destination and carrier.
Peak periods
Dispatch times may extend up to 10 business days following new collection launches and during the month of December due to significantly higher order volumes. We will communicate any delays proactively.
Orders are processed Monday to Friday, 10:00–18:00 CET, excluding French public holidays. Orders placed outside these hours will be processed on the next business day. Timothée Paris reserves the right not to process or deliver orders where a PO Box or hotel address has been provided.
03 — Carriers
All orders are shipped via express courier services including UPS, DHL, and FedEx. A tracking number will be provided by email once your order has been dispatched. Timothée Paris reserves the right to select the carrier at its discretion based on destination and order size.
Timothée Paris reserves the right to divide your order into several shipments where necessary. In such cases, your payment card will be charged only in accordance with the goods actually delivered, and delivery costs will be charged as a single fee.
04 — Duties, Taxes & Customs
European Union — VAT Included
All prices displayed to EU customers include VAT at the applicable rate. No additional tax will be applied at checkout or upon delivery.
United States — DDP (Delivered Duty Paid)
Import duties and taxes for all shipments to the United States are prepaid by Timothée Paris. The checkout price is the total price — no customs charges will be collected upon delivery.
UK, Switzerland & Rest of World — Customer's Responsibility
International shipments to destinations other than the EU and United States may be subject to import duties, taxes, and customs clearance fees levied by the destination country. These charges are entirely the responsibility of the customer and are not included in the product price or shipping fee. Timothée Paris has no control over these charges and is unable to predict their amount. We recommend contacting your local customs authority for an estimate before placing your order.
Please note that you are responsible for compliance with all applicable laws and regulations of the country for which the product(s) are destined. Timothée Paris will not be liable for any breach of such laws. All prices for non-EU customers are displayed exclusive of VAT.
05 — Delivery, Risk & Liability
Transfer of risk occurs at the moment of physical delivery of the product to the client. Timothée Paris cannot be held liable for late delivery caused by a force majeure event (including but not limited to: strikes, civil unrest, war, natural disasters, epidemics, or governmental restrictions).
If the delivery time is exceeded without justification by force majeure, the customer may request cancellation of the sale and will receive a full refund within 15 business days. Timothée Paris cannot be held liable for any direct or indirect damage resulting from a delivery delay.
On receipt of your order, please check that the goods are correct and complete. If there are any discrepancies or visible damage, please note this on the delivery receipt and contact us immediately at contact@timotheeparis.com. We cannot accept liability for damage notified after acceptance without reservation.
In the event of failed delivery due to an incorrect or incomplete address provided by the customer, the goods will be returned to Timothée Paris. We will contact the customer to arrange re-delivery, which may incur additional shipping costs.
06 — Force Majeure
Timothée Paris shall not be held liable for any failure or delay in performance of its obligations where such failure or delay results from any cause beyond its reasonable control, including but not limited to: acts of God, war, riot, embargoes, acts of civil or military authority, fire, flood, epidemic, strikes, lockouts, or shortages in transportation. In such circumstances, Timothée Paris will inform the customer within 15 days of the event occurring. If the force majeure event continues for more than 3 months, either party may terminate the contract without compensation.
07 — Contact
Customer Care
For any questions regarding your shipment, please contact us at contact@timotheeparis.com. Our team is available Monday to Friday, 10:00–18:00 CET, excluding French public holidays.
Timothée Paris — SARL Lémon
20 Boulevard de la Bastille, 75012 Paris, France
RCS Paris 829 618 107 — VAT FR 09 829618107
© 2026 Timothée Paris — SARL Lémon. All rights reserved.