:root {
  --black: #070707;
  --charcoal: #141414;
  --charcoal-2: #1e1e1e;
  --gold: #c9a24d;
  --gold-soft: #e4c778;
  --cream: #f7f1e3;
  --ivory: #fffaf0;
  --muted: #b9b0a1;
  --line: rgba(201, 162, 77, 0.24);
  --white: #ffffff;
  --danger: #8f2d2d;
  --success: #2f6e4e;
  --shadow: 0 18px 50px rgba(0,0,0,.28);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ivory);
  background: var(--black);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1140px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 7, 7, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img { width: 52px; height: 52px; object-fit: contain; border-radius: 50%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: Georgia, 'Times New Roman', serif; letter-spacing: .08em; font-size: 15px; text-transform: uppercase; }
.brand-tagline { color: var(--gold-soft); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; }
.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav a { color: var(--cream); text-decoration: none; font-size: 14px; opacity: .88; }
.nav a:hover, .nav a.active, .nav a[aria-current='page'] { color: var(--gold-soft); opacity: 1; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); color: var(--cream); border-radius: 12px; padding: 8px 12px; }

.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 750;
  letter-spacing: .02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--gold-soft), var(--gold)); color: #111; box-shadow: 0 12px 30px rgba(201, 162, 77, .22); }
.btn-secondary { background: rgba(255,255,255,.07); color: var(--ivory); border: 1px solid var(--line); }
.btn-dark { background: var(--charcoal); color: var(--ivory); border: 1px solid var(--line); }
.btn-whatsapp { background: #25D366; color: #101010; }
.btn-full { width: 100%; }

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,7,7,.92) 0%, rgba(7,7,7,.76) 42%, rgba(7,7,7,.26) 100%), url('../images/hero-engraving.jpg') center right / cover no-repeat;
  z-index: -2;
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(0deg, var(--black), transparent);
  z-index: -1;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 42px; padding: 78px 0 58px; }
.eyebrow { color: var(--gold-soft); text-transform: uppercase; letter-spacing: .24em; font-size: 12px; font-weight: 800; }
h1, h2, h3 { line-height: 1.08; margin: 0; }
h1 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(44px, 7vw, 86px); letter-spacing: -.04em; max-width: 800px; }
h2 { font-family: Georgia, 'Times New Roman', serif; font-size: clamp(34px, 4.8vw, 58px); letter-spacing: -.035em; }
h3 { font-size: 21px; margin-bottom: 10px; }
p { margin: 0; color: rgba(255,250,240,.8); }
.lead { font-size: clamp(18px, 2vw, 22px); max-width: 660px; margin-top: 22px; }
.hero .lead strong { color: var(--ivory); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero-card {
  justify-self: end;
  width: min(420px, 100%);
  background: rgba(20,20,20,.76);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}
.hero-card img { border-radius: 18px; }
.price-pill {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  padding: 14px 16px;
}
.price-pill span { color: var(--muted); font-size: 13px; }
.price-pill strong { color: var(--gold-soft); font-size: 22px; }

.section { padding: 92px 0; }
.section-alt { background: linear-gradient(180deg, var(--charcoal), #0e0e0e); }
.section-head { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 34px; }
.section-head p { max-width: 560px; }
.gold { color: var(--gold-soft); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: rgba(255,255,255,.045);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
}
.card-number { color: var(--gold-soft); font-weight: 900; font-size: 13px; letter-spacing: .16em; }
.card p, .policy-card li { color: rgba(255,250,240,.76); }

.product-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: start; }
.gallery { display: grid; gap: 16px; }
.gallery img { border-radius: var(--radius); border: 1px solid var(--line); background: #111; }
.product-panel {
  position: sticky;
  top: 96px;
  background: var(--ivory);
  color: #18140d;
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.product-panel p { color: #514a3d; }
.product-panel .eyebrow { color: #8c6b24; }
.product-panel h2 { color: #0b0b0b; }
.feature-list { margin: 22px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.feature-list li { display: flex; gap: 10px; color: #3d3529; }
.feature-list li::before { content: '✦'; color: #9e771d; font-weight: 800; }
.colour-dots { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 18px; }
.dot { display: inline-flex; align-items: center; gap: 7px; padding: 8px 11px; border: 1px solid rgba(0,0,0,.12); border-radius: 999px; color: #1d1a14; font-weight: 700; font-size: 13px; background: rgba(255,255,255,.5); }
.swatch { width: 15px; height: 15px; border-radius: 50%; border: 1px solid rgba(0,0,0,.2); }
.gold-s { background: #d7b257; }
.silver-s { background: #d8d8d8; }
.rose-s { background: #c98f83; }
.black-s { background: #0e0e0e; }
.blue-s { background: #2f5d91; }

.order-wrap { display: grid; grid-template-columns: 1fr .48fr; gap: 24px; align-items: start; }
.form-card, .summary-card {
  background: rgba(255,255,255,.055);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 14px 34px rgba(0,0,0,.16);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-group { display: grid; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
label { font-weight: 760; color: var(--ivory); font-size: 14px; }
.hint { color: var(--muted); font-size: 13px; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  color: var(--ivory);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  outline: none;
}
select option { color: #111; }
textarea { min-height: 108px; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--gold-soft); box-shadow: 0 0 0 4px rgba(201,162,77,.12); }
.checkbox { display: flex; align-items: flex-start; gap: 12px; }
.checkbox input { width: auto; margin-top: 6px; }
.summary-card { position: sticky; top: 96px; }
.summary-row { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.09); }
.summary-row.total { font-size: 20px; font-weight: 900; color: var(--gold-soft); border-bottom: 0; }
.pay-note { margin-top: 18px; background: rgba(201,162,77,.12); border: 1px solid var(--line); border-radius: 16px; padding: 14px; color: rgba(255,250,240,.8); font-size: 14px; }

.policy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.policy-card { background: rgba(255,255,255,.045); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.policy-card ul { margin-bottom: 0; }

.footer {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background: #050505;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 24px; }
.footer a { color: var(--muted); text-decoration: none; display: inline-block; margin: 3px 0; }
.footer a:hover { color: var(--gold-soft); }
.footer small { color: #7f776a; }

.page-hero { padding: 76px 0 52px; background: linear-gradient(180deg, #111, #050505); border-bottom: 1px solid var(--line); }
.page-hero p { max-width: 760px; margin-top: 14px; }
.notice { padding: 18px; border-radius: 16px; border: 1px solid var(--line); background: rgba(201,162,77,.12); color: var(--ivory); margin: 20px 0; }
.notice.error { border-color: rgba(143,45,45,.55); background: rgba(143,45,45,.16); }
.notice.success { border-color: rgba(47,110,78,.55); background: rgba(47,110,78,.18); }
.order-review { background: var(--ivory); color: #18140d; border-radius: 26px; padding: 26px; margin: 26px 0; }
.order-review p, .order-review li { color: #514a3d; }
.order-review h2, .order-review h3 { color: #111; }
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.review-box { border: 1px solid rgba(0,0,0,.12); border-radius: 18px; padding: 18px; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav { display: none; position: absolute; top: 82px; left: 16px; right: 16px; flex-direction: column; align-items: stretch; background: rgba(7,7,7,.96); padding: 16px; border: 1px solid var(--line); border-radius: 18px; }
  .nav.open { display: flex; }
  .hero-grid, .product-grid, .order-wrap, .footer-grid { grid-template-columns: 1fr; }
  .hero-card, .summary-card, .product-panel { position: static; }
  .cards, .policy-grid { grid-template-columns: 1fr; }
  .tag-items-intro, .tag-item-head { flex-direction: column; align-items: stretch; }
  .section-head { display: block; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 22px, 1140px); }
  .brand-name { font-size: 13px; }
  .brand-tagline { font-size: 10px; }
  .hero { min-height: auto; }
  .hero-grid { padding: 54px 0 38px; }
  .section { padding: 64px 0; }
  .form-grid, .review-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; }
}


.tag-items-intro {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  background: rgba(255,255,255,.05);
}
.tag-items-intro p { margin-top: 6px; color: var(--muted); }
.tag-items { display: grid; gap: 18px; }
.tag-item {
  border: 1px solid rgba(201,162,77,.28);
  border-radius: 24px;
  padding: 20px;
  background: rgba(255,255,255,.04);
}
.tag-item-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 18px;
}
.compact-grid { gap: 16px; }
.remove-tag { padding: 9px 14px; }
.review-items { display: grid; gap: 16px; margin-top: 16px; }
.review-item p { margin-top: 8px; }

.payfast-form {
  margin: 22px 0 10px;
}

.form-note {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 10px;
}


/* Optional customer sign-up box */
.signup-box {
  background: rgba(201,162,77,.10);
  border: 1px solid rgba(201,162,77,.28);
  border-radius: 18px;
  padding: 15px;
}
.signup-box label span {
  color: var(--muted);
  font-weight: 500;
}

/* Click-to-open policy sections */
.policy-accordion {
  display: grid;
  gap: 16px;
  max-width: 980px;
}
.policy-dropdown {
  padding: 0;
  overflow: hidden;
}
.policy-dropdown summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 26px;
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.policy-dropdown summary::-webkit-details-marker { display: none; }
.policy-dropdown summary::after {
  content: '+';
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(201,162,77,.45);
  color: var(--gold-soft);
  font-family: var(--sans);
  font-size: 24px;
  flex: 0 0 auto;
}
.policy-dropdown[open] summary::after { content: '−'; }
.policy-content {
  padding: 0 26px 26px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.policy-content p:first-child { margin-top: 20px; }
