@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,500&family=Work+Sans:wght@400;500;600&display=swap");

:root {
  --navy: #1b2a45;
  --terracotta: #e1604f;
  --terracotta-dark: #c94f3f;
  --cream: #fbf6ee;
  --sand: #f3e9dc;
  --border: #e9dfce;
  --border-strong: #e1d6c2;
  --text: #2b2620;
  --text-muted: #5a5148;
  --text-faint: #8a8074;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Work Sans", sans-serif;
  color: var(--text);
  background: var(--cream);
}
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--terracotta); }
img { display: block; }
h1, h2, h3 { font-family: "Lora", serif; margin: 0; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1300px; margin: 0 auto; padding: 0 56px; }
@media (max-width: 900px) {
  .container { padding: 0 20px; }
}

/* --- Header --- */
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 56px; background: var(--cream); border-bottom: 1px solid var(--border);
}
.site-header.overlay {
  position: absolute; top: 0; left: 0; right: 0; z-index: 10;
  background: transparent; border-bottom: none;
}
.site-header .logo { font-family: "Lora", serif; font-size: 24px; font-weight: 600; color: var(--navy); }
.site-header.overlay .logo { color: #fff; }
.site-header nav { display: flex; align-items: center; gap: 28px; font-size: 15px; font-weight: 500; }
.site-header.overlay nav a { color: #fff; }
.cart-link { border: 1.5px solid var(--navy); padding: 8px 16px; border-radius: 999px; }
.site-header.overlay .cart-link { border-color: rgba(255,255,255,0.6); }
@media (max-width: 900px) {
  .site-header { padding: 16px 20px; flex-wrap: wrap; gap: 12px; }
  .site-header nav { gap: 14px; font-size: 13px; flex-wrap: wrap; }
}

/* --- Buttons --- */
.btn {
  display: inline-block; border-radius: 999px; font-size: 15px; font-weight: 600;
  padding: 14px 30px; border: none; text-align: center;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--terracotta); color: #fff; }
.btn-accent { background: var(--terracotta); color: #fff; }
.btn-accent:hover { background: var(--terracotta-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-block { display: block; width: 100%; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; }

/* --- Footer --- */
.site-footer { background: var(--sand); padding: 64px 56px 32px; }
.site-footer .grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.site-footer .brand { font-family: "Lora", serif; font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 14px; }
.site-footer .muted { font-size: 14px; color: #7a7062; }
.site-footer .col-title { font-weight: 600; font-size: 14px; color: var(--navy); margin-bottom: 14px; }
.site-footer .links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; color: #7a7062; }
.site-footer .bottom { max-width: 1300px; margin: 40px auto 0; padding-top: 24px; border-top: 1px solid var(--border-strong); font-size: 13px; color: #9a8f80; }
@media (max-width: 900px) {
  .site-footer { padding: 40px 20px 24px; }
  .site-footer .grid { grid-template-columns: 1fr; gap: 28px; }
}

/* --- Home --- */
.hero { position: relative; height: 47vh; min-height: 340px; }
.hero img { width: 100%; height: 100%; object-fit: cover; }
.hero .scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(27,42,69,0.05) 0%, rgba(27,42,69,0.55) 100%); }
.hero .copy { position: absolute; bottom: 64px; left: 56px; right: 56px; }
.hero h1 { font-size: clamp(32px, 6vw, 76px); line-height: 1.08; font-weight: 600; color: #fff; margin: 0 0 24px; max-width: 900px; }

.trust-bar { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; padding: 28px 56px; background: var(--sand); text-align: center; font-size: 14px; color: var(--text-muted); }
.trust-bar strong { color: var(--terracotta); }
@media (max-width: 900px) { .trust-bar { grid-template-columns: 1fr; padding: 20px; } }

.intro { padding: 90px 56px 70px; max-width: 820px; margin: 0 auto; text-align: center; }
.intro p { font-family: "Lora", serif; font-size: 28px; line-height: 1.5; color: var(--navy); font-weight: 500; margin: 0; }

.occasions { padding: 0 56px 90px; max-width: 1200px; margin: 0 auto; }
.occasions .row { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 20px; }
.occasions figure { margin: 0; text-align: center; }
.occasions img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; margin: 0 auto 12px; }
.occasions figcaption { font-size: 14px; font-weight: 500; color: var(--navy); }
@media (max-width: 900px) {
  .occasions { padding: 0 20px 60px; }
  .occasions .row { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
}

.product-feature { display: grid; grid-template-columns: 1.3fr 1fr; align-items: center; }
.product-feature.reverse { grid-template-columns: 1fr 1.3fr; }
.product-feature .img-wrap { width: 100%; height: 410px; overflow: hidden; }
.product-feature.reverse .img-wrap { order: 2; }
.product-feature img { width: 100%; height: 100%; object-fit: cover; }
.product-feature .copy { padding: 0 72px; }
.product-feature.reverse .copy { order: 1; }
.product-feature h2 { font-size: 36px; font-weight: 600; color: var(--navy); margin: 0 0 18px; }
.product-feature p { font-size: 17px; line-height: 1.7; color: var(--text-muted); margin: 0 0 24px; }
.product-feature .from-price { font-size: 14px; color: var(--text-faint); margin-bottom: 24px; }
@media (max-width: 900px) {
  .product-feature, .product-feature.reverse { grid-template-columns: 1fr; }
  .product-feature .img-wrap, .product-feature.reverse .img-wrap { height: 260px; order: 1; }
  .product-feature .copy, .product-feature.reverse .copy { padding: 32px 20px; order: 2; }
}

.gallery { padding: 90px 56px; max-width: 1300px; margin: 0 auto; }
.gallery .eyebrow { text-align: center; font-size: 14px; font-weight: 600; color: var(--terracotta); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.gallery h2 { text-align: center; font-size: 32px; font-weight: 600; color: var(--navy); margin-bottom: 44px; }
.gallery .pair { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; margin-bottom: 32px; }
.gallery .pair img { width: 100%; height: 210px; object-fit: cover; }
.gallery .pair figcaption { font-size: 13px; color: var(--text-faint); margin-top: 10px; }
.gallery .pair .sculpt-slot { width: 100%; height: 210px; background: var(--sand); display: flex; align-items: center; justify-content: center; color: var(--text-faint); font-size: 13px; }
@media (max-width: 900px) { .gallery { padding: 60px 20px; } }

.atmosphere { position: relative; height: 35vh; min-height: 240px; margin-top: 40px; }
.atmosphere img { width: 100%; height: 100%; object-fit: cover; }
.atmosphere .scrim { position: absolute; inset: 0; background: rgba(27,42,69,0.28); }
.atmosphere .quote { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 24px; }
.atmosphere .quote p { font-family: "Lora", serif; font-style: italic; font-size: clamp(22px, 3.4vw, 42px); color: #fff; max-width: 760px; line-height: 1.4; margin: 0; }

.testimonials { padding: 90px 56px; max-width: 1200px; margin: 0 auto; }
.testimonials h2 { text-align: center; font-size: 30px; font-weight: 600; color: var(--navy); margin-bottom: 44px; }
.testimonials .grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; text-align: center; }
.testimonials .stars { color: var(--terracotta); font-size: 15px; margin: 0 0 12px; }
.testimonials blockquote { font-family: "Lora", serif; font-size: 18px; line-height: 1.5; color: var(--navy); margin: 0 0 14px; }
.testimonials .name { font-size: 14px; color: var(--text-faint); }
@media (max-width: 900px) { .testimonials { padding: 50px 20px; } .testimonials .grid { grid-template-columns: 1fr; gap: 32px; } }

.cta-band { background: var(--navy); padding: 90px 56px; text-align: center; }
.cta-band h2 { font-size: 34px; font-weight: 600; color: #fff; margin: 0 0 28px; max-width: 640px; margin-left: auto; margin-right: auto; }

/* --- Product page --- */
.breadcrumb { font-size: 14px; color: var(--text-faint); padding: 20px 56px 0; max-width: 1400px; margin: 0 auto; }
.product-detail { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; padding: 28px 56px 64px; max-width: 1400px; margin: 0 auto; }
.product-detail .main-image { width: 100%; height: 620px; border-radius: 24px; overflow: hidden; background: var(--sand); }
.product-detail .main-image img { width: 100%; height: 100%; object-fit: cover; }
.product-badge { display: inline-block; background: #f3d9ce; color: #b5432f; font-size: 13px; font-weight: 600; padding: 6px 16px; border-radius: 999px; margin-bottom: 16px; }
.product-detail h1 { font-size: 32px; font-weight: 600; color: var(--navy); margin: 0 0 12px; line-height: 1.2; }
.product-detail .price { font-family: "Lora", serif; font-size: 28px; font-weight: 600; color: var(--navy); margin-bottom: 20px; }
.product-detail .desc { font-size: 15px; line-height: 1.7; color: var(--text-muted); margin: 0 0 26px; }
.size-picker { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.size-chip { padding: 12px 20px; border-radius: 12px; font-size: 14px; font-weight: 600; cursor: pointer; border: 1.5px solid var(--border-strong); background: #fff; color: var(--text-muted); }
.size-chip.active { border-color: var(--navy); background: var(--navy); color: #fff; }
.product-detail .perks { display: flex; flex-direction: column; gap: 10px; padding-top: 22px; border-top: 1px solid var(--border); font-size: 14px; color: var(--text-muted); }
@media (max-width: 900px) {
  .product-detail { grid-template-columns: 1fr; padding: 20px; gap: 28px; }
  .product-detail .main-image { height: 320px; }
}

.how-it-works { padding: 56px; background: var(--sand); }
.how-it-works h2 { text-align: center; font-size: 26px; font-weight: 600; color: var(--navy); margin-bottom: 36px; }
.how-it-works .grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 36px; text-align: center; }
.how-it-works .num { width: 52px; height: 52px; border-radius: 50%; background: var(--navy); color: #fff; font-family: "Lora", serif; font-size: 18px; font-weight: 600; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.how-it-works .step-title { font-weight: 600; font-size: 15px; color: var(--navy); margin-bottom: 6px; }
.how-it-works .step-desc { font-size: 14px; color: var(--text-muted); }
@media (max-width: 900px) { .how-it-works { padding: 40px 20px; } .how-it-works .grid { grid-template-columns: 1fr; gap: 28px; } }

/* --- Cart / Checkout --- */
.page-title { font-size: 32px; font-weight: 600; color: var(--navy); margin: 0 0 36px; }
.cart-layout { display: grid; grid-template-columns: 1.7fr 1fr; gap: 48px; padding: 40px 56px 90px; max-width: 1300px; margin: 0 auto; }
@media (max-width: 900px) { .cart-layout { grid-template-columns: 1fr; padding: 24px 20px 60px; gap: 32px; } }

.cart-item { display: grid; grid-template-columns: 100px 1fr auto; gap: 18px; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--border); }
.cart-item .thumb { width: 100px; height: 100px; border-radius: 14px; background: var(--sand); object-fit: cover; }
.cart-item .name { font-family: "Lora", serif; font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.cart-item .meta { font-size: 13px; color: var(--text-faint); margin-bottom: 12px; }
.qty-control { display: flex; align-items: center; gap: 12px; }
.qty-control .box { display: flex; align-items: center; border: 1px solid var(--border-strong); border-radius: 10px; }
.qty-control button { width: 30px; height: 30px; background: none; border: none; font-size: 16px; color: var(--navy); }
.qty-control .val { width: 28px; text-align: center; font-size: 14px; font-weight: 600; color: var(--navy); }
.remove-link { font-size: 13px; color: var(--text-faint); cursor: pointer; text-decoration: underline; }
.cart-item .line-total { font-family: "Lora", serif; font-size: 17px; font-weight: 600; color: var(--navy); white-space: nowrap; }

.empty-cart { padding: 50px 0; text-align: center; color: var(--text-faint); }

.summary-box { background: var(--sand); border-radius: 20px; padding: 30px; }
.summary-box h2 { font-size: 19px; font-weight: 600; color: var(--navy); margin-bottom: 22px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--text-muted); margin-bottom: 12px; }
.summary-total { display: flex; justify-content: space-between; font-family: "Lora", serif; font-size: 19px; font-weight: 600; color: var(--navy); padding-top: 14px; border-top: 1px solid var(--border-strong); margin-bottom: 22px; }
.summary-note { font-size: 13px; color: var(--text-faint); margin-top: 14px; }

.checkout-form { background: #fff; border-radius: 20px; padding: 30px; margin-top: 24px; }
.checkout-form h2 { font-size: 19px; font-weight: 600; color: var(--navy); margin-bottom: 20px; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 11px 14px; border-radius: 10px; border: 1.5px solid var(--border-strong);
  font-size: 14px; font-family: inherit; color: var(--text);
}
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 500px) { .form-row-2 { grid-template-columns: 1fr; } }
.billing-toggle { display: flex; gap: 10px; margin-bottom: 18px; }
.billing-toggle button { flex: 1; padding: 10px; border-radius: 10px; border: 1.5px solid var(--border-strong); background: #fff; font-size: 14px; font-weight: 600; color: var(--text-muted); }
.billing-toggle button.active { border-color: var(--navy); background: var(--navy); color: #fff; }
.form-error { color: var(--terracotta-dark); font-size: 14px; margin-top: 12px; }
.hidden { display: none !important; }

.pickup-results { position: relative; z-index: 5; background: #fff; border: 1.5px solid var(--border-strong); border-radius: 10px; margin-top: -10px; margin-bottom: 14px; max-height: 260px; overflow-y: auto; }
.pickup-result:hover { background: var(--sand); }
.shipping-method-picker { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; margin-bottom: 16px; }
@media (max-width: 500px) { .shipping-method-picker { grid-template-columns: 1fr; } }
.shipping-method-chip { padding: 12px 14px; border-radius: 10px; border: 1.5px solid var(--border-strong); background: #fff; font-size: 14px; font-weight: 600; color: var(--text-muted); cursor: pointer; text-align: center; }
.shipping-method-chip.active { border-color: var(--navy); background: var(--navy); color: #fff; }

/* --- Order status --- */
.status-page { max-width: 760px; margin: 0 auto; padding: 48px 56px 90px; }
@media (max-width: 900px) { .status-page { padding: 32px 20px 60px; } }
.status-pill { display: inline-block; background: var(--navy); color: #fff; font-size: 13px; font-weight: 600; padding: 8px 18px; border-radius: 999px; margin-bottom: 20px; }
.status-timeline { display: flex; justify-content: space-between; margin: 28px 0 40px; position: relative; }
.status-timeline::before { content: ""; position: absolute; top: 13px; left: 0; right: 0; height: 2px; background: var(--border-strong); z-index: 0; }
.status-step { position: relative; z-index: 1; text-align: center; flex: 1; }
.status-step .dot { width: 26px; height: 26px; border-radius: 50%; background: #fff; border: 2px solid var(--border-strong); margin: 0 auto 8px; }
.status-step.done .dot { background: var(--navy); border-color: var(--navy); }
.status-step .label { font-size: 12px; color: var(--text-faint); }
.status-step.done .label { color: var(--navy); font-weight: 600; }
.card { background: #fff; border-radius: 18px; padding: 26px; margin-bottom: 20px; box-shadow: 0 4px 16px rgba(27,42,69,0.06); }
.card h3 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 14px; }
.photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: 12px; margin-bottom: 16px; }
.photo-grid img { width: 100%; height: 110px; object-fit: cover; border-radius: 10px; }
.dropzone { border: 2px dashed var(--border-strong); border-radius: 14px; padding: 28px; text-align: center; color: var(--text-faint); font-size: 14px; cursor: pointer; }
.dropzone.drag { border-color: var(--terracotta); color: var(--terracotta); }

/* --- Legal / simple content pages --- */
.legal-page { max-width: 780px; margin: 0 auto; padding: 48px 56px 90px; line-height: 1.7; color: var(--text-muted); }
.legal-page h1 { font-size: 30px; color: var(--navy); margin-bottom: 24px; }
.legal-page h2 { font-size: 20px; color: var(--navy); margin: 28px 0 12px; }

.spinner-line { text-align: center; padding: 60px 0; color: var(--text-faint); }
