html {
  font-size: 16px;
  min-height: 100%;
  position: relative;
  scroll-behavior: smooth;
}

body {
  background: #fbfaf7;
  color: #211f1c;
  font-family: Georgia, "Times New Roman", serif;
  margin-bottom: 120px;
}

.navbar {
  font-family: Arial, sans-serif;
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: .08rem;
}

main {
  padding-top: 0;
}

.hero-section {
  align-items: center;
  background:
    linear-gradient(115deg, rgba(31, 28, 25, .84), rgba(31, 28, 25, .42)),
    url("https://images.unsplash.com/photo-1515562141207-7a88fb7ce338?auto=format&fit=crop&w=1800&q=80");
  background-position: center;
  background-size: cover;
  color: #fff;
  display: flex;
  min-height: 620px;
  padding: clamp(64px, 10vw, 120px) 0;
}

.hero-content {
  max-width: 760px;
  padding: 0 clamp(20px, 7vw, 96px);
}

.eyebrow {
  color: #b98947;
  font-family: Arial, sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12rem;
  margin-bottom: 14px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-weight: 600;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  line-height: .98;
  margin-bottom: 24px;
  max-width: 900px;
}

.hero-copy {
  font-family: Arial, sans-serif;
  font-size: 1.15rem;
  line-height: 1.75;
  max-width: 660px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn-primary {
  background: #b98947;
  border-color: #b98947;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #9f7339;
  border-color: #9f7339;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 .1rem #fff, 0 0 0 .25rem rgba(185, 137, 71, .45);
}

.section-band {
  padding: 76px 0;
}

.section-heading {
  margin: 0 auto 30px;
  max-width: 1120px;
  padding: 0 20px;
}

.section-action {
  margin: 32px auto 0;
  max-width: 1120px;
  padding: 0 20px;
}

.collection-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 20px;
}

.collection-card {
  background: #fff;
  border: 1px solid rgba(33, 31, 28, .12);
  border-radius: 8px;
  min-height: 230px;
  padding: 28px;
}

.collection-mark {
  color: #b98947;
  display: block;
  font-family: Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 48px;
}

.collection-card p,
.business-strip p {
  color: #5f5a52;
  font-family: Arial, sans-serif;
  line-height: 1.7;
}

.business-strip {
  align-items: center;
  background: #211f1c;
  color: #fff;
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr 1fr;
  margin: 0 calc(50% - 50vw);
  padding: 72px max(20px, calc((100vw - 1120px) / 2));
}

.business-strip p {
  color: #e8e0d4;
  margin: 0;
}

.page-hero {
  background: #211f1c;
  color: #fff;
  padding: 88px 0;
}

.page-hero.compact {
  min-height: 360px;
}

.page-hero__content {
  max-width: 820px;
  padding: 0 clamp(20px, 7vw, 96px);
}

.page-hero__content p,
.lead-copy {
  font-family: Arial, sans-serif;
  font-size: 1.08rem;
  line-height: 1.75;
}

.catalog-section {
  background: #f3efe7;
}

.product-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1240px;
  padding: 0 20px;
}

.product-card {
  background: #fff;
  border: 1px solid rgba(33, 31, 28, .12);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 390px;
  padding: 0 24px 24px;
}

.product-card-body {
  padding-top: 24px;
}

.product-card-image + .product-card-body {
  padding-top: 0;
}

.product-card-image {
  display: block;
  margin: 0 -24px;
  overflow: hidden;
  text-decoration: none;
}

.product-card-image img,
.product-detail-image img {
  aspect-ratio: 4 / 3;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.product-card-image img {
  transition: transform .24s ease;
}

.product-card-image:hover img,
.product-card-image:focus img {
  transform: scale(1.025);
}

.product-card h2 {
  font-size: 1.45rem;
  line-height: 1.18;
}

.product-card h3 {
  font-size: 1.28rem;
  line-height: 1.2;
}

.product-card p,
.engraving-panel p,
.personalization-hint {
  color: #5f5a52;
  font-family: Arial, sans-serif;
  line-height: 1.65;
}

.product-category {
  color: #9f7339;
  font-family: Arial, sans-serif;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08rem;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.product-tag-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.product-tag-strip li {
  background: #f3efe7;
  border-radius: 999px;
  color: #5f5a52;
  font-family: Arial, sans-serif;
  font-size: .82rem;
  padding: 6px 10px;
}

.personalization-hint {
  background: #f3efe7;
  border-left: 3px solid #b98947;
  margin-top: 20px;
  padding: 14px 16px;
}

.detail-intent-strip {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 22px;
  max-width: 720px;
}

.detail-intent-group {
  background: #fff;
  border: 1px solid rgba(33, 31, 28, .1);
  border-radius: 8px;
  padding: 16px;
}

.detail-intent-group span {
  color: #746d62;
  display: block;
  font-family: Arial, sans-serif;
  font-size: .78rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.detail-intent-group ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.detail-intent-group li {
  background: #f3efe7;
  border-radius: 999px;
  color: #4d463d;
  font-family: Arial, sans-serif;
  font-size: .86rem;
  line-height: 1.25;
  padding: 7px 10px;
}

.product-facts,
.detail-facts {
  display: grid;
  gap: 12px;
  margin: auto 0 0;
}

.product-facts div,
.detail-facts div {
  border-top: 1px solid rgba(33, 31, 28, .12);
  padding-top: 12px;
}

.product-facts dt,
.detail-facts dt {
  color: #746d62;
  font-family: Arial, sans-serif;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.product-facts dd,
.detail-facts dd {
  margin: 0;
}

.product-detail-hero {
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 392px);
  margin: 0 auto;
  max-width: 1240px;
  padding: 56px 20px 0;
}

.product-detail-main {
  display: grid;
  gap: 0 28px;
  grid-template-columns: minmax(260px, .9fr) minmax(320px, 1fr);
  align-self: start;
  grid-column: 1;
  grid-row: 1;
}

.product-detail-main .back-link {
  grid-column: 1 / -1;
}

.product-detail-main h1 {
  font-size: clamp(2.25rem, 4.2vw, 4rem);
  line-height: 1.04;
  margin-bottom: 20px;
  max-width: 720px;
}

.product-detail-main .lead-copy {
  color: #3a3630;
  max-width: 720px;
}

.product-detail-image {
  align-self: start;
  background: #fff;
  border: 1px solid rgba(33, 31, 28, .12);
  border-radius: 8px;
  margin: 0;
  overflow: hidden;
}

.product-detail-image figcaption {
  color: #6c655b;
  font-family: Arial, sans-serif;
  font-size: .84rem;
  margin: 0;
  padding: 12px 14px;
}

.image-status-note {
  border-top: 1px solid rgba(33, 31, 28, .1);
  line-height: 1.55;
}

.image-status-note--provided {
  background: #f9f5ed;
}

.back-link {
  color: #76542d;
  display: inline-block;
  font-family: Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 26px;
  text-decoration: none;
}

.detail-facts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.detail-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: 28px;
}

.detail-actions span {
  color: #5f5a52;
  font-family: Arial, sans-serif;
  font-size: .94rem;
  line-height: 1.5;
}

.engraving-panel {
  background: rgba(255, 253, 249, .72);
  border: 1px solid rgba(33, 31, 28, .1);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(33, 31, 28, .045);
  grid-column: 2;
  grid-row: 1;
  padding: 22px;
}

.engraving-panel h2 {
  font-size: 1.18rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.engraving-panel p {
  font-size: .94rem;
}

.field-helper {
  color: #6c655b;
  font-family: Arial, sans-serif;
  font-size: .88rem;
  line-height: 1.55;
  margin: 7px 0 0;
}

.panel-intro {
  border-bottom: 1px solid rgba(33, 31, 28, .1);
  margin-bottom: 18px;
  padding-bottom: 18px;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  font-family: Arial, sans-serif;
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.engraving-panel .form-control {
  background: #fff;
  border-color: rgba(33, 31, 28, .16);
  font-family: Arial, sans-serif;
}

.detail-fieldset {
  border: 1px solid rgba(33, 31, 28, .12);
  border-radius: 8px;
  margin: 8px 0 20px;
  padding: 16px;
}

.detail-fieldset legend {
  float: none;
  color: #3a3630;
  font-size: .98rem;
  font-weight: 700;
  margin-bottom: 8px;
  width: auto;
}

.detail-fieldset p {
  margin-bottom: 14px;
}

.detail-fieldset .form-check {
  font-family: Arial, sans-serif;
  margin-bottom: 10px;
}

.b2b-logo-fields {
  border-color: rgba(185, 137, 71, .26);
}

.product-support {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .72), rgba(243, 239, 231, .96)),
    radial-gradient(circle at 18% 18%, rgba(185, 137, 71, .16), transparent 34%),
    #f3efe7;
  box-shadow: 0 0 0 100vmax #f3efe7;
  clip-path: inset(0 -100vmax);
  color: #211f1c;
  display: grid;
  gap: 32px;
  grid-column: 1 / -1;
  grid-row: 2;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  margin: 0;
  padding: 70px max(20px, calc((100% - 1120px) / 2));
}

.support-copy {
  max-width: 780px;
}

.product-story-copy {
  grid-column: 1 / -1;
  grid-row: 1;
}

.product-proof-copy {
  grid-column: 1 / -1;
  grid-row: 3;
}

.support-copy h2 {
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  line-height: 1.07;
  margin-bottom: 18px;
  max-width: 760px;
}

.support-copy p {
  color: #49443d;
  font-family: Arial, sans-serif;
  font-size: 1.03rem;
  line-height: 1.8;
  margin: 0;
}

.product-story-visual {
  align-self: stretch;
  background:
    linear-gradient(145deg, rgba(33, 31, 28, .92), rgba(58, 54, 48, .84)),
    #211f1c;
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(33, 31, 28, .16);
  color: #fff;
  display: grid;
  grid-column: 1 / -1;
  grid-row: 2;
  min-height: 300px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 48px);
  position: relative;
}

.product-story-visual::before {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  content: "";
  height: 240px;
  position: absolute;
  right: -70px;
  top: -72px;
  width: 240px;
}

.engraving-preview {
  align-self: center;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  max-width: 880px;
  padding: clamp(24px, 4vw, 44px);
  position: relative;
  width: min(100%, 880px);
  z-index: 1;
}

.engraving-preview span,
.engraving-preview small {
  color: #e9dcc8;
  font-family: Arial, sans-serif;
}

.engraving-preview span {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12rem;
  text-transform: uppercase;
}

.engraving-preview strong {
  font-size: clamp(2.2rem, 5.8vw, 5.2rem);
  font-weight: 600;
  line-height: 1.02;
  overflow-wrap: break-word;
  word-break: normal;
}

.engraving-preview small {
  line-height: 1.55;
}

.engraving-preview .preview-note {
  color: #f2e7d8;
}

.story-line {
  background: rgba(255, 255, 255, .14);
  height: 1px;
  position: absolute;
  right: 34px;
  width: 34%;
}

.story-line--one {
  bottom: 82px;
}

.story-line--two {
  bottom: 60px;
  width: 30%;
}

.product-proof-steps {
  align-self: start;
  display: grid;
  gap: 16px;
  grid-column: 1 / -1;
  grid-row: 4;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-proof-steps div {
  align-items: start;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(33, 31, 28, .1);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  min-height: 150px;
  padding: 22px;
}

.product-proof-steps span {
  color: #b98947;
  font-family: Arial, sans-serif;
  font-weight: 800;
}

.product-proof-steps p {
  color: #4f4941;
  font-family: Arial, sans-serif;
  line-height: 1.55;
  margin: 0;
}

.support-note {
  border-left: 3px solid #b98947;
  color: #5f5a52;
  font-family: Arial, sans-serif;
  grid-column: 1 / -1;
  line-height: 1.7;
  max-width: 780px;
  padding-left: 18px;
}

.seo-hero .btn {
  margin-top: 12px;
}

.seo-content {
  background: #fbfaf7;
}

.seo-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 20px;
}

.seo-grid article {
  border-top: 1px solid rgba(33, 31, 28, .16);
  padding-top: 22px;
}

.seo-grid p:not(.eyebrow) {
  color: #5f5a52;
  font-family: Arial, sans-serif;
  line-height: 1.7;
}

.education-steps {
  background: #f3efe7;
}

.step-list {
  counter-reset: step;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0 auto;
  max-width: 1120px;
  padding: 0 20px;
}

.step-list li {
  background: #fff;
  border: 1px solid rgba(33, 31, 28, .12);
  border-radius: 8px;
  counter-increment: step;
  min-height: 260px;
  padding: 26px;
}

.step-list li::before {
  color: #b98947;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 24px;
}

.step-list h3 {
  font-size: 1.24rem;
  line-height: 1.22;
}

.step-list p,
.seo-cta p {
  color: #5f5a52;
  font-family: Arial, sans-serif;
  line-height: 1.7;
}

.name-list-example {
  margin: 0 auto;
  max-width: 1120px;
  overflow-x: auto;
  padding: 0 20px;
}

.name-list-example table {
  background: #fff;
  border: 1px solid rgba(33, 31, 28, .12);
  border-collapse: collapse;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  min-width: 720px;
  overflow: hidden;
  width: 100%;
}

.name-list-example th,
.name-list-example td {
  border-bottom: 1px solid rgba(33, 31, 28, .1);
  padding: 16px 18px;
  text-align: left;
  vertical-align: top;
}

.name-list-example th {
  color: #746d62;
  font-size: .78rem;
  letter-spacing: .08rem;
  text-transform: uppercase;
}

.name-list-example td {
  color: #3a3630;
}

.seo-cta {
  background: #211f1c;
  color: #fff;
}

.seo-cta__content {
  margin: 0 auto;
  max-width: 920px;
  padding: 0 20px;
}

.seo-cta p {
  color: #e8e0d4;
  max-width: 720px;
}

.landing-product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer {
  background: #fff;
  bottom: 0;
  font-family: Arial, sans-serif;
  position: absolute;
  width: 100%;
}

.footer-content {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.footer-links a {
  color: #5f5a52;
  font-size: .9rem;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #76542d;
  text-decoration: underline;
}

.admin-shell {
  margin: 0 auto;
  max-width: 1180px;
  padding: 64px 20px 96px;
}

.admin-login-shell {
  max-width: 760px;
}

.admin-login-form {
  background: #fff;
  border: 1px solid rgba(33, 31, 28, .12);
  border-radius: 8px;
  margin-top: 28px;
  max-width: 460px;
  padding: 28px;
}

.inquiry-summary-shell {
  margin: 0 auto;
  max-width: 1180px;
  padding: 64px 20px 96px;
}

.inquiry-summary-grid {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
}

.inquiry-items {
  display: grid;
  gap: 16px;
}

.inquiry-item {
  align-items: start;
  background: #fff;
  border: 1px solid rgba(33, 31, 28, .12);
  border-radius: 8px;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 24px;
}

.inquiry-item h2 {
  font-size: 1.35rem;
  line-height: 1.2;
}

.inquiry-item-edit {
  margin-top: 18px;
}

.inquiry-item-edit .form-field {
  margin-bottom: 14px;
}

.summary-facts {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.summary-facts div {
  border-top: 1px solid rgba(33, 31, 28, .12);
  padding-top: 10px;
}

.summary-facts dt {
  color: #746d62;
  font-family: Arial, sans-serif;
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.summary-facts dd {
  color: #3a3630;
  font-family: Arial, sans-serif;
  margin: 0;
}

.admin-heading {
  max-width: 720px;
}

.admin-heading p,
.empty-state {
  color: #5f5a52;
  font-family: Arial, sans-serif;
  line-height: 1.7;
}

.empty-state,
.admin-table-wrap {
  background: #fff;
  border: 1px solid rgba(33, 31, 28, .12);
  border-radius: 8px;
  margin-top: 28px;
}

.empty-state {
  padding: 28px;
}

.admin-table {
  font-family: Arial, sans-serif;
  margin: 0;
}

.admin-table th {
  color: #7a7166;
  font-size: .78rem;
  letter-spacing: .08rem;
  text-transform: uppercase;
}

.admin-table td {
  min-width: 130px;
  vertical-align: top;
}

.admin-table td span,
.admin-table td a {
  color: #5f5a52;
  display: block;
  margin-top: 4px;
}

.admin-status-message {
  margin-top: 28px;
}

.admin-status-form {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  min-width: 180px;
}

.status-pill {
  background: rgba(185, 137, 71, .14);
  border-radius: 999px;
  color: #795725 !important;
  display: inline-block !important;
  font-weight: 700;
  margin: 0 !important;
  padding: 4px 10px;
}

@media (max-width: 800px) {
  .hero-section {
    min-height: 560px;
  }

  .collection-grid,
  .business-strip,
  .product-grid,
  .seo-grid,
  .step-list,
  .detail-intent-strip,
  .product-detail-hero,
  .detail-facts,
  .product-support,
  .inquiry-summary-grid,
  .inquiry-item {
    grid-template-columns: 1fr;
  }

  .product-detail-hero {
    padding-top: 42px;
  }

  .detail-actions .btn {
    width: 100%;
  }

  .product-detail-main,
  .engraving-panel,
  .product-support {
    grid-column: 1;
  }

  .product-detail-main {
    gap: 0;
    grid-template-columns: 1fr;
  }

  .product-detail-main .back-link {
    grid-column: 1;
  }

  .product-detail-copy {
    margin-top: 28px;
  }

  .product-detail-main {
    grid-row: 1;
  }

  .product-support {
    grid-row: 2;
    gap: 28px;
    padding-bottom: 54px;
    padding-top: 54px;
  }

  .product-story-copy,
  .product-story-visual,
  .product-proof-copy,
  .product-proof-steps,
  .support-note {
    grid-column: 1;
    grid-row: auto;
  }

  .product-story-visual {
    min-height: 230px;
    padding: 24px;
  }

  .engraving-preview {
    max-width: none;
  }

  .product-proof-steps {
    grid-template-columns: 1fr;
  }

  .product-proof-steps div {
    grid-template-columns: 1fr;
  }

  .engraving-panel {
    grid-row: 3;
    margin-bottom: 64px;
  }
}

@media (min-width: 801px) and (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
