:root {
  --bg: #0B0B0D;
  --bg-raised: #141416;
  --bg-card: #17171A;
  --gold: #C9A24B;
  --gold-soft: rgba(201, 162, 75, 0.35);
  --ivory: #F2EFE9;
  --muted: #8E8A80;
  --line: rgba(201, 162, 75, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: radial-gradient(120% 100% at 50% -10%, #1a1a1d 0%, var(--bg) 55%);
  color: var(--ivory);
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0;
}

h1 em, h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1rem;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.75rem 1.5rem;
}

.wordmark {
  font-family: "Fraunces", serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ivory);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.nav-cta {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ivory);
  text-decoration: none;
  padding: 0.55rem 1.3rem;
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
  border-color: var(--gold);
  background: rgba(201, 162, 75, 0.08);
}

/* Hero */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78vh;
  padding: 4.5rem 1.5rem;
  text-align: center;
}

.hero-inner {
  max-width: 720px;
  animation: rise 0.7s ease both;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  line-height: 1.15;
  color: var(--ivory);
  margin-bottom: 1.6rem;
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 2.6rem;
}

.hero-sub p {
  margin: 0 0 1.1rem;
}

.hero-sub p:last-child {
  margin-bottom: 0;
}

.hero-cta {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--bg);
  background: var(--gold);
  padding: 0.95rem 2.2rem;
  border-radius: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 162, 75, 0.25);
}

.trust-num {
  font-family: "Fraunces", serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1rem;
}

.section-heading {
  font-size: clamp(1.6rem, 3.2vw, 2rem);
  margin-bottom: 2.5rem;
}

/* Categories */
.categories-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 5.5rem 1.5rem 2rem;
  text-align: center;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.1rem;
  text-align: left;
}

.category-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 720px) {
  .category-grid-3 {
    grid-template-columns: 1fr;
  }
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.6rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.category-card:hover {
  border-color: var(--gold-soft);
  transform: translateY(-2px);
}

.category-card h3 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ivory);
  margin: 0 0 0.6rem;
}

.category-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 1.1rem;
}

.price-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
}

.category-note {
  color: var(--muted);
  font-size: 0.82rem;
  font-style: italic;
  margin-top: 2rem;
}

/* Process */
.process-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 5.5rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--line);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: left;
}

.process-step .trust-num {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 0.9rem;
}

.process-step h3 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ivory);
  margin: 0 0 0.5rem;
}

.process-step p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Enquiry section */
.enquiry-section {
  max-width: 640px;
  margin: 0 auto;
  padding: 5rem 1.5rem 6rem;
  text-align: center;
}

.section-sub {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 2.8rem;
  text-align: left;
}

.enquiry-form {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 2.25rem;
  text-align: left;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1.2rem;
}

.field-span {
  grid-column: 1 / -1;
}

.field {
  margin-bottom: 1.3rem;
  display: flex;
  flex-direction: column;
}

.field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.55rem;
}

.field input,
.field select,
.field textarea {
  background: var(--bg);
  border: 1px solid rgba(201, 162, 75, 0.22);
  border-radius: 6px;
  padding: 0.75rem 0.9rem;
  color: var(--ivory);
  font-family: "Inter", sans-serif;
  font-size: 0.96rem;
  resize: vertical;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position: calc(100% - 1.2rem) center, calc(100% - 0.9rem) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #55524b;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.12);
}

.submit-btn {
  width: 100%;
  padding: 0.95rem;
  margin-top: 0.6rem;
  background: var(--gold);
  border: none;
  border-radius: 6px;
  color: var(--bg);
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 162, 75, 0.25);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.form-status {
  margin-top: 1.2rem;
  margin-bottom: 0;
  min-height: 1.4em;
  font-size: 0.92rem;
  text-align: center;
}

.form-status.success {
  color: var(--gold);
}

.form-status.error {
  color: #d97a6c;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 2.5rem 1.5rem;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--line);
}

@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 560px) {
  .field-grid {
    grid-template-columns: 1fr;
  }
  .enquiry-form {
    padding: 1.6rem;
  }
}
