:root {
  --navy: #14213D;
  --navy-soft: #223259;
  --gold: #C9A24B;
  --gold-soft: #E4CD8F;
  --card-white: #FAF8F3;
  --panel-white: #FFFFFF;
  --charcoal: #1F2421;
  --slate: #56606D;
  --crimson: #7A2E2E;
  --border-hairline: rgba(20, 33, 61, 0.14);

  --font-display: "Fraunces", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--card-white);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0;
  font-weight: 500;
}

a { color: inherit; }

/* Header */

.site-header {
  border-bottom: 1px solid var(--border-hairline);
  background: var(--card-white);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.main-nav {
  display: flex;
  gap: 32px;
}

.main-nav a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--slate);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.main-nav a:hover {
  color: var(--navy);
  border-color: var(--gold);
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.kicker {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--crimson);
  margin: 0 0 14px 0;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 15ch;
}

.lede {
  color: var(--slate);
  font-size: 18px;
  max-width: 46ch;
  margin: 0 0 32px 0;
}

.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 3px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.btn-primary {
  background: var(--navy);
  color: var(--card-white);
  transition: background 0.15s ease;
}

.btn-primary:hover { background: var(--navy-soft); }

.stat-panel {
  background: var(--navy);
  border-radius: 4px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.stat-panel::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(201, 162, 75, 0.35);
  border-radius: 2px;
  pointer-events: none;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--gold-soft);
  font-weight: 600;
}

.stat-label {
  font-size: 13px;
  color: rgba(250, 248, 243, 0.7);
}

/* Sections */

section {
  padding: 64px 0;
  border-bottom: 1px solid var(--border-hairline);
}

section h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.section-intro {
  color: var(--slate);
  max-width: 56ch;
  margin: 0 0 36px 0;
}

/* Catalogue */

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

.product-card {
  background: var(--panel-white);
}

.card-frame {
  border: 1.5px solid var(--navy);
  border-radius: 10px;
  padding: 24px;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-frame::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  pointer-events: none;
}

.card-set {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--crimson);
}

.card-frame h3 {
  font-size: 19px;
  line-height: 1.3;
}

.card-frame p {
  color: var(--slate);
  font-size: 15px;
  margin: 0;
  flex-grow: 1;
}

.card-tag {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  border-top: 1px solid var(--border-hairline);
  padding-top: 12px;
  margin-top: 4px;
}

/* About */

.about p {
  color: var(--charcoal);
  max-width: 62ch;
  margin: 0 0 16px 0;
}

/* Contact form */

.inquiry-form {
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

input, textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 11px 13px;
  border: 1px solid var(--border-hairline);
  border-radius: 3px;
  background: var(--panel-white);
  color: var(--charcoal);
  resize: vertical;
}

input:focus, textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
  border-color: var(--navy);
}

.form-status {
  font-size: 14px;
  min-height: 20px;
  margin: 0;
}

.form-status.success { color: #2E6B3E; }
.form-status.error { color: var(--crimson); }

/* Footer */

.site-footer {
  padding: 28px 0;
}

.site-footer .wrap {
  font-size: 13px;
  color: var(--slate);
}

/* Responsive */

@media (max-width: 800px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .hero h1 { font-size: 32px; }
  .card-grid { grid-template-columns: 1fr; }
  .main-nav { gap: 18px; }
  .wrap { padding: 0 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
