:root {
  --black: #11100e;
  --ink: #2a2420;
  --gold: #b9873d;
  --gold-dark: #8c642c;
  --gold-light: #ead7b8;
  --ivory: #fffdf8;
  --cream: #f8f3ea;
  --champagne: #efe2cf;
  --muted: #776c61;
  --line: #e7d8bf;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(50, 33, 12, 0.10);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", sans-serif;
  background: var(--ivory);
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }

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

.announcement {
  height: 32px;
  background: linear-gradient(90deg, #9a6b2f, #c99b54, #9a6b2f);
  color: white;
  font-size: 11px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 104px;
  background: rgba(255,253,248,0.96);
  backdrop-filter: blur(18px);
  display: grid;
  grid-template-columns: 260px 1fr 230px;
  align-items: center;
  padding: 0 6.5%;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-family: "Cormorant Garamond", serif;
  font-size: 25px;
  line-height: 0.9;
}

.brand img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--gold-light);
}

.navbar nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.navbar nav a {
  font-family: "Cormorant Garamond", serif;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-size: 15px;
  color: var(--black);
  transition: color .2s ease;
}

.navbar nav a:hover { color: var(--gold-dark); }

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

.nav-actions button,
.nav-actions a,
.mobile-menu {
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--black);
  font-size: 18px;
}

.mobile-menu { display: none; }

.cart-button {
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  font-size: 12px !important;
  letter-spacing: 1.5px;
}

.cart-button span {
  display: inline-flex;
  background: var(--gold);
  color: white;
  width: 22px;
  height: 22px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-left: 5px;
}

.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  padding: 80px 6.5%;
  background:
    radial-gradient(circle at 85% 20%, rgba(221,185,127,.34), transparent 34%),
    linear-gradient(90deg, #fffdf8 0%, #fbf4ea 54%, #f2e4d0 100%);
  overflow: hidden;
}

.eyebrow {
  text-transform: uppercase;
  color: var(--gold-dark);
  letter-spacing: 3px;
  font-size: 12px;
  margin-bottom: 18px;
  font-weight: 700;
}

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

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

h1 {
  font-size: clamp(50px, 6vw, 92px);
  line-height: .92;
  letter-spacing: 1px;
  color: var(--black);
}

h1 span { color: var(--gold-dark); }

.hero-text {
  margin: 24px 0 34px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  max-width: 480px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.gold-btn, .outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  min-height: 50px;
  border: 1px solid var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all .24s ease;
}

.gold-btn {
  background: linear-gradient(135deg, var(--gold), #cfa55f);
  color: white;
  box-shadow: 0 12px 35px rgba(185,135,61,.25);
}

.gold-btn:hover { transform: translateY(-2px); }

.gold-btn.small { min-height: 44px; padding: 12px 24px; }

.outline-btn {
  background: rgba(255,255,255,.5);
  color: var(--gold-dark);
}

.outline-btn.dark {
  background: transparent;
  color: var(--black);
  border-color: var(--line);
}

.full { width: 100%; }

.mini-signature {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 58px;
  color: var(--gold-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 11px;
}

.mini-signature img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-card.large {
  position: absolute;
  right: -5%;
  top: 4%;
  width: 82%;
  height: 500px;
  border-radius: 260px 260px 0 0;
  overflow: hidden;
  border: 1px solid var(--gold-light);
  box-shadow: var(--shadow);
}

.hero-card img, .floating-card img { width: 100%; height: 100%; object-fit: cover; }

.floating-card {
  position: absolute;
  border: 10px solid var(--ivory);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: white;
}

.card-one {
  left: 3%;
  bottom: 8%;
  width: 230px;
  height: 180px;
}

.card-two {
  right: 0;
  bottom: 0;
  width: 200px;
  height: 210px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--black);
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-size: 12px;
  text-align: center;
}

.trust-strip div {
  padding: 18px 10px;
  border-right: 1px solid rgba(255,255,255,.12);
}

.section { padding: 80px 6.5%; }

.section-heading {
  text-align: center;
  margin-bottom: 36px;
}

.section-heading.row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  text-align: left;
}

.section-heading h2,
.editorial-panel h2,
.story-copy h2,
.checkout-section h2 {
  font-size: clamp(36px, 4vw, 58px);
  color: var(--black);
}

.ornament {
  color: var(--gold);
  display: block;
  margin-top: 8px;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.collection-card {
  background: white;
  border: 1px solid var(--line);
  padding: 10px 10px 22px;
  text-align: center;
  transition: .25s ease;
}

.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.collection-card img {
  height: 160px;
  width: 100%;
  object-fit: cover;
  margin-bottom: 18px;
}

.collection-card h3 {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 19px;
}

.collection-card p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.shop-section { background: linear-gradient(#fffdf8, #fbf6ef); }

.text-link {
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
}

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.product {
  position: relative;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 14px 45px rgba(78, 54, 20, .06);
  overflow: hidden;
  transition: .25s ease;
}

.product:hover { transform: translateY(-7px); box-shadow: var(--shadow); }

.product .heart {
  position: absolute;
  top: 16px;
  right: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.84);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-dark);
  z-index: 1;
}

.product img {
  height: 310px;
  width: 100%;
  object-fit: cover;
}

.product-info {
  padding: 24px;
  text-align: center;
}

.product-info .category {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--gold-dark);
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.product h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.product p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  min-height: 48px;
}

.product .price {
  color: var(--black);
  font-weight: 700;
  font-size: 18px;
  margin: 18px 0;
}

.product button {
  width: 100%;
  background: var(--black);
  color: white;
  border: 0;
  padding: 14px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  cursor: pointer;
  transition: .2s ease;
}

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

.editorial-grid,
.story-section {
  margin: 20px 6.5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.editorial-panel,
.story-copy {
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.editorial-panel p,
.story-copy p {
  color: var(--muted);
  line-height: 1.8;
  margin: 20px 0 28px;
}

.editorial-image img,
.story-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.story-section {
  grid-template-columns: 1.1fr .9fr;
}

.story-image img { filter: grayscale(1); }

.testimonials {
  padding: 80px 6.5%;
  background: var(--ivory);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

blockquote {
  padding: 34px 28px;
  text-align: center;
  color: var(--gold-dark);
  background: white;
  line-height: 1.8;
}

blockquote span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
}

.checkout-section {
  padding: 80px 6.5%;
  background: var(--cream);
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.order-form,
.summary {
  background: white;
  border: 1px solid var(--line);
  padding: 36px;
  box-shadow: 0 16px 45px rgba(78,54,20,.06);
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 18px;
}

input, textarea {
  width: 100%;
  margin-top: 8px;
  padding: 15px 14px;
  border: 1px solid var(--line);
  background: #fffdf9;
  font-family: inherit;
}

textarea { min-height: 100px; resize: vertical; }

.secure-note { color: var(--muted); margin-top: 14px; font-size: 14px; }

.summary h3 { font-size: 32px; margin-bottom: 20px; }

.checkout-item {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  color: var(--muted);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
}

.summary-line.total { font-size: 22px; border-top: 1px solid var(--line); }

.cart-panel {
  position: fixed;
  right: -430px;
  top: 0;
  z-index: 90;
  height: 100vh;
  width: 410px;
  max-width: 94%;
  background: var(--ivory);
  box-shadow: -20px 0 65px rgba(0,0,0,.18);
  padding: 26px;
  display: flex;
  flex-direction: column;
  transition: .3s ease;
}

.cart-panel.open { right: 0; }

.cart-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 22px;
}

.cart-header h3 { font-size: 34px; }

.cart-header button {
  background: none;
  border: 0;
  font-size: 36px;
  cursor: pointer;
}

#cartItems { flex: 1; overflow-y: auto; }

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  gap: 12px;
}

.cart-item small { color: var(--muted); }

.qty {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 10px;
}

.qty button, .remove {
  border: 1px solid var(--line);
  background: white;
  padding: 5px 9px;
  cursor: pointer;
}

.remove { color: #8d1515; }

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 24px;
  margin: 18px 0;
}

.cart-footer .outline-btn { margin-top: 12px; }

.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: white;
  border: 1px solid var(--gold);
  padding: 14px 24px;
  border-radius: 50px;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: .25s;
}

.toast.show { opacity: 1; }

.footer {
  padding: 70px 6.5%;
  display: grid;
  grid-template-columns: 1.3fr .8fr .9fr 1.3fr;
  gap: 40px;
  background: white;
  border-top: 1px solid var(--line);
}

.footer img {
  width: 115px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.footer h4 {
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.footer a,
.footer p {
  display: block;
  color: var(--muted);
  line-height: 1.9;
  font-size: 14px;
}

.newsletter {
  display: flex;
  margin: 18px 0;
}

.newsletter input { margin: 0; }

.newsletter button {
  width: 50px;
  border: 0;
  background: var(--gold);
  color: white;
  cursor: pointer;
}

.footer small {
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.copyright {
  border-top: 1px solid var(--line);
  padding: 18px 6.5%;
  background: white;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

@media (max-width: 1050px) {
  .navbar { grid-template-columns: 1fr auto auto; height: auto; min-height: 88px; }
  .mobile-menu { display: block; }
  .navbar nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 88px;
    background: white;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 22px 6.5%;
    display: none;
  }
  .navbar nav.open { display: flex; }
  .nav-actions { gap: 10px; }
  .hero, .editorial-grid, .story-section, .checkout-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 440px; margin-top: 30px; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .products { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid, .footer { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .announcement { font-size: 9px; padding: 0 8px; }
  .navbar { padding: 12px 5%; }
  .brand span { display: none; }
  .brand img { width: 60px; height: 60px; }
  .hero { padding: 58px 5%; min-height: auto; }
  h1 { font-size: 48px; }
  .hero-card.large { position: relative; right: auto; width: 100%; height: 360px; }
  .floating-card { display: none; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .section, .checkout-section, .testimonials { padding: 60px 5%; }
  .collection-grid, .products { grid-template-columns: 1fr; }
  .editorial-grid, .story-section { margin: 16px 5%; }
  .editorial-panel, .story-copy { padding: 34px; }
  .copyright { flex-direction: column; gap: 8px; }
}
