﻿:root {
  --ink: #171412;
  --deep-forest: #173d36;
  --blue-green: #2f6473;
  --lake-blue: #436f8a;
  --soft-sage: #dce8dc;
  --mist-blue: #dce9ec;
  --warm-porcelain: #faf8f4;
  --soft-sand: #e9e0d4;
  --mushroom: #a99b8d;
  --guava: #e86f61;
  --muted: #5a625f;
  --paper: var(--warm-porcelain);
  --soft: var(--soft-sage);
  --line: #cbd7d2;
  --white: #ffffff;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --space-page: clamp(18px, 5vw, 72px);
  --space-section: clamp(42px, 6vw, 78px);
  --shadow: 0 18px 44px rgba(23, 61, 54, 0.12);
  --transition: 160ms ease;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(250, 248, 244, 0.94);
  border-bottom: 1px solid rgba(203, 215, 210, 0.82);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  width: clamp(180px, 22vw, 292px);
  height: auto;
  max-height: 54px;
  object-fit: contain;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(10px, 1.5vw, 22px);
  font-size: 14px;
  color: var(--muted);
}

.site-nav a {
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--deep-forest);
}

.hero {
  position: relative;
  min-height: min(680px, calc(100vh - 72px));
  display: grid;
  align-items: end;
  padding: clamp(58px, 8vw, 92px) var(--space-page) clamp(42px, 6vw, 62px);
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(250, 248, 244, 0.96) 0%, rgba(250, 248, 244, 0.86) 34%, rgba(250, 248, 244, 0.22) 72%),
    linear-gradient(0deg, rgba(23, 20, 18, 0.3), rgba(23, 20, 18, 0));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  max-width: 690px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 98px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow) {
  max-width: 58ch;
  margin: 24px 0 0;
  color: #4b403b;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-lg);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(23, 20, 18, 0.13);
}

.button.primary {
  color: var(--white);
  background: var(--deep-forest);
}

.button.secondary {
  color: var(--ink);
  background: rgba(250, 248, 244, 0.78);
}

.scroll-cue {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 24px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.section {
  padding: var(--space-section) var(--space-page);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading.compact {
  max-width: 680px;
}

.section-heading p:not(.eyebrow) {
  margin: 18px auto 0;
  max-width: 68ch;
  color: var(--muted);
  font-size: 18px;
}

.product-grid,
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.product-card,
.work-grid article,
.collection-row article,
.steps article {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.product-card {
  padding: 16px;
}

.product-card p,
.collection-row p,
.steps p,
.work-grid p {
  color: var(--muted);
}

.product-image {
  width: 100%;
  height: 210px;
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  object-fit: cover;
  background: var(--soft);
}

.product-card h3 {
  margin-top: 0;
}
.product-art {
  position: relative;
  height: 190px;
  margin-bottom: 18px;
  border-radius: var(--radius-md);
  background: var(--soft);
  overflow: hidden;
}

.product-art::before,
.product-art::after {
  position: absolute;
  content: "";
}

.product-art.necklace::before {
  inset: 30px 32px auto;
  height: 78px;
  border: 3px solid rgba(184, 135, 69, 0.62);
  border-bottom: 0;
  border-radius: 50% 50% 0 0;
}

.product-art.necklace::after {
  left: 50%;
  bottom: 34px;
  width: 96px;
  height: 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(90deg, #d8b06d, #fff1c6 45%, #aa793c);
  transform: translateX(-50%);
  box-shadow: 0 12px 24px rgba(184, 135, 69, 0.28);
}

.product-art.bracelet::before {
  inset: 34px 34px;
  border: 16px solid #d6aa64;
  border-radius: 50%;
}

.product-art.bracelet::after {
  left: 50%;
  top: 50%;
  width: 44px;
  height: 38px;
  background: var(--blue-green);
  transform: translate(-50%, -50%) rotate(45deg);
  clip-path: polygon(50% 100%, 0 40%, 0 0, 40% 0, 50% 12%, 60% 0, 100% 0, 100% 40%);
}

.product-art.keepsake::before {
  left: 50%;
  top: 30px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 35%, #fff5d8, #d0a45c 62%, #986934);
  transform: translateX(-50%);
}

.product-art.keepsake::after {
  left: 50%;
  bottom: 26px;
  width: 118px;
  height: 4px;
  border-radius: var(--radius-lg);
  background: rgba(23, 20, 18, 0.18);
  transform: translateX(-50%);
}

.product-art.tags::before {
  left: 50%;
  top: 34px;
  width: 78px;
  height: 112px;
  border-radius: 18px 18px 12px 12px;
  background: linear-gradient(135deg, #f4f1ea, #a9b4b0);
  transform: translateX(-50%) rotate(-7deg);
}

.product-art.tags::after {
  left: calc(50% - 10px);
  top: 48px;
  width: 14px;
  height: 14px;
  border: 3px solid var(--paper);
  border-radius: 50%;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  background: var(--mist-blue);
}

.split-section .section-heading {
  margin: 0;
  text-align: left;
}

.example-list,
.occasion-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.example-list span,
.occasion-grid a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(47, 100, 115, 0.24);
  border-radius: var(--radius-lg);
  background: rgba(250, 248, 244, 0.72);
  font-weight: 800;
  text-decoration: none;
}

.process-section,
.gifts-section,
.about-section,
.faq-section {
  background: #fffdf9;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.steps article {
  padding: 24px;
}

.steps span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue-green);
  font-weight: 900;
}

.occasion-grid {
  justify-content: center;
}

.collection-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.collection-row article {
  padding: 22px;
}

.pickup-section,
.business-section,
.contact-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--deep-forest);
  color: var(--white);
}

.pickup-section p,
.business-section p,
.contact-section p {
  max-width: 70ch;
  color: rgba(255, 255, 255, 0.78);
}

.pickup-section .eyebrow,
.business-section .eyebrow,
.contact-section .eyebrow {
  color: #b7d9df;
}

.custom-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.custom-copy {
  position: sticky;
  top: 104px;
}

.custom-copy p {
  color: var(--muted);
  font-size: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  padding: 14px 16px;
  border-left: 4px solid var(--lake-blue);
  background: var(--white);
}

.request-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow);
}

.request-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.request-form input,
.request-form textarea,
.request-form select {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: #fffdf9;
  font: inherit;
}

.request-form textarea {
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.work-grid article {
  padding: 16px;
}

.work-grid span {
  display: block;
  height: 170px;
  margin-bottom: 18px;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.9) 0 16px, transparent 17px),
    linear-gradient(135deg, rgba(67, 111, 138, 0.24), rgba(220, 232, 220, 0.9)),
    var(--soft);
}

.about-panel {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(28px, 6vw, 70px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  text-align: center;
}

.about-panel p:not(.eyebrow) {
  margin: 18px auto 0;
  max-width: 72ch;
  color: var(--muted);
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
  margin: 0 auto;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px var(--space-page);
  color: rgba(255, 255, 255, 0.78);
  background: #1b1714;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--white);
}

@media (max-width: 1080px) {
  .site-nav {
    position: fixed;
    top: 72px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 10px 8px;
  }

  .nav-toggle {
    display: inline-grid;
  }

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

@media (max-width: 820px) {
  .hero {
    min-height: 620px;
    align-items: start;
    padding-top: 62px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(250, 248, 244, 0.97) 0%, rgba(250, 248, 244, 0.84) 44%, rgba(250, 248, 244, 0.2) 100%),
      linear-gradient(0deg, rgba(23, 20, 18, 0.28), rgba(23, 20, 18, 0));
  }

  .hero-media img {
    object-position: 62% center;
  }

  h1 {
    max-width: 10ch;
  }

  .split-section,
  .custom-layout,
  .collection-row {
    grid-template-columns: 1fr;
  }

  .custom-copy {
    position: static;
  }

  .pickup-section,
  .business-section,
  .contact-section,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .brand-logo {
  width: clamp(180px, 22vw, 292px);
  height: auto;
  max-height: 54px;
  object-fit: contain;
}
  .product-grid,
  .steps,
  .work-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .scroll-cue {
    right: 18px;
  }
}

.button.secondary:hover,
.button.secondary:focus {
  border-color: var(--blue-green);
}




/* Refined visual polish: elegant, fresh, and lightly whimsical. */
body {
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(47, 100, 115, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 100, 115, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
}

.site-header {
  box-shadow: 0 8px 28px rgba(23, 61, 54, 0.08);
}

.site-nav a {
  position: relative;
  font-weight: 750;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--lake-blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}

.site-nav a:hover::after,
.site-nav a:focus::after {
  transform: scaleX(1);
}

.hero {
  min-height: min(650px, calc(100vh - 72px));
  align-items: center;
}

.hero::before {
  position: absolute;
  top: 18%;
  left: clamp(18px, 6vw, 84px);
  z-index: -1;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--lake-blue);
  box-shadow:
    44px 78px 0 rgba(47, 100, 115, 0.62),
    156px -34px 0 rgba(23, 61, 54, 0.34),
    64vw 118px 0 rgba(47, 100, 115, 0.34);
  transform: rotate(45deg);
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(250, 248, 244, 0.98) 0%, rgba(250, 248, 244, 0.9) 38%, rgba(220, 233, 236, 0.34) 70%, rgba(250, 248, 244, 0.08) 100%),
    linear-gradient(0deg, rgba(23, 61, 54, 0.32), rgba(23, 61, 54, 0));
}

.hero-copy {
  position: relative;
  padding-left: clamp(0px, 1.6vw, 22px);
}

.hero-copy::before {
  position: absolute;
  top: 4px;
  bottom: 8px;
  left: 0;
  width: 3px;
  content: "";
  background: linear-gradient(var(--lake-blue), var(--soft-sage));
  border-radius: 99px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof span,
.example-list span,
.occasion-grid a {
  border-color: rgba(47, 100, 115, 0.22);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(23, 61, 54, 0.08);
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(47, 100, 115, 0.22);
  border-radius: var(--radius-md);
  color: var(--deep-forest);
  font-size: 13px;
  font-weight: 850;
}

.button {
  border-radius: var(--radius-md);
}

.button.primary {
  border-color: var(--deep-forest);
  background: linear-gradient(135deg, var(--deep-forest), var(--blue-green));
}

.button.secondary {
  border-color: rgba(47, 100, 115, 0.28);
  background: rgba(255, 255, 255, 0.82);
}

.section {
  position: relative;
}

.ornamental-section::before {
  position: absolute;
  top: 22px;
  right: var(--space-page);
  width: 78px;
  height: 22px;
  content: "";
  border-top: 2px solid rgba(67, 111, 138, 0.3);
  border-bottom: 2px solid rgba(67, 111, 138, 0.18);
  transform: rotate(-2deg);
}

.section-heading h2::after {
  display: block;
  width: 76px;
  height: 3px;
  margin: 16px auto 0;
  content: "";
  background: linear-gradient(90deg, var(--soft-sage), var(--lake-blue), var(--soft-sage));
  border-radius: 99px;
}

.split-section .section-heading h2::after,
.business-section .section-heading h2::after {
  margin-right: 0;
  margin-left: 0;
}

.product-card,
.work-grid article,
.collection-row article,
.steps article,
details,
.about-panel,
.request-form {
  box-shadow: 0 16px 34px rgba(23, 61, 54, 0.08);
}

.product-card,
.work-grid article,
.collection-row article,
.steps article {
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-card::before,
.collection-row article::before,
.steps article::before,
.work-grid article::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--soft-sage), var(--lake-blue), var(--deep-forest));
}

.product-card:hover,
.work-grid article:hover,
.collection-row article:hover,
.steps article:hover {
  border-color: rgba(47, 100, 115, 0.38);
  box-shadow: 0 22px 44px rgba(23, 61, 54, 0.14);
  transform: translateY(-3px);
}

.product-image,
.work-image {
  transition: transform 240ms ease, filter 240ms ease;
}

.product-card:hover .product-image,
.work-grid article:hover .work-image {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.025);
}

.card-kicker {
  margin: 0 0 6px;
  color: var(--lake-blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card h3,
.collection-row h3,
.steps h3,
.work-grid h3 {
  color: var(--deep-forest);
}

.split-section {
  background:
    linear-gradient(135deg, rgba(220, 233, 236, 0.96), rgba(220, 232, 220, 0.92)),
    var(--mist-blue);
}

.process-section,
.gifts-section,
.about-section,
.faq-section,
.work-section {
  background: rgba(255, 253, 249, 0.88);
}

.steps span {
  font-size: 24px;
  font-family: Georgia, "Times New Roman", serif;
}

.custom-section {
  background:
    linear-gradient(180deg, rgba(250, 248, 244, 0.92), rgba(220, 233, 236, 0.6)),
    var(--paper);
}

.check-list li {
  border-left-color: var(--blue-green);
  box-shadow: 0 10px 24px rgba(23, 61, 54, 0.07);
}

.work-grid article {
  padding: 16px;
}

.work-image {
  width: 100%;
  height: 190px;
  margin-bottom: 18px;
  border-radius: var(--radius-md);
  object-fit: cover;
  background: var(--soft);
}

.work-grid span {
  display: none;
}

.site-footer {
  background: linear-gradient(135deg, #171412, #173d36);
}

@media (max-width: 820px) {
  .hero {
    align-items: start;
    min-height: 650px;
  }

  .hero-copy {
    padding-left: 14px;
  }

  .hero::before {
    top: 12%;
    opacity: 0.7;
  }

  .hero-proof {
    gap: 8px;
  }
}

@media (max-width: 620px) {
  .hero-proof span {
    flex: 1 1 calc(50% - 8px);
    justify-content: center;
  }

  .ornamental-section::before {
    display: none;
  }
}

/* Product pages and black sample engraving text. */
.product-media-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-card h3 a {
  color: inherit;
  text-decoration: none;
}

.product-card h3 a:hover,
.product-card h3 a:focus,
.product-card-footer a:hover,
.product-card-footer a:focus,
.related-link-row a:hover,
.related-link-row a:focus {
  color: var(--lake-blue);
}

.engraving-preview {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.engraving-preview .product-image {
  margin-bottom: 0;
}

.sample-engraving {
  position: absolute;
  top: 48%;
  left: 50%;
  z-index: 2;
  color: #000000;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 2.3vw, 27px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.7);
  transform: translate(-50%, -50%) rotate(-4deg);
  pointer-events: none;
}

.product-card .engraving-preview {
  margin-bottom: 16px;
}

.product-card .sample-engraving {
  font-size: 20px;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(203, 215, 210, 0.78);
  font-size: 14px;
  font-weight: 850;
}

.product-card-footer span {
  color: var(--deep-forest);
}

.product-card-footer a {
  color: var(--blue-green);
  text-decoration: none;
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.product-listing-hero {
  padding-top: clamp(54px, 8vw, 96px);
  padding-bottom: clamp(36px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(220, 233, 236, 0.88), rgba(220, 232, 220, 0.62)),
    var(--paper);
}

.product-listing-hero h1,
.product-detail h1 {
  max-width: 13ch;
}

.product-listing-hero .section-heading p:not(.eyebrow) {
  font-size: 20px;
}

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

.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(250, 248, 244, 0.96), rgba(220, 233, 236, 0.58)),
    var(--paper);
}

.product-detail-media {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 22px 54px rgba(23, 61, 54, 0.12);
}

.product-detail-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.large-preview .sample-engraving {
  color: #000000;
  font-size: clamp(24px, 4vw, 48px);
}

.product-detail-copy {
  max-width: 680px;
}

.product-detail-copy > p:not(.eyebrow):not(.product-price) {
  color: var(--muted);
  font-size: 19px;
}

.product-price {
  margin: 18px 0;
  color: var(--deep-forest);
  font-size: 28px;
  font-weight: 900;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

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

.product-facts div {
  display: grid;
  grid-template-columns: minmax(130px, 0.42fr) minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(203, 215, 210, 0.9);
}

.product-facts dt {
  color: var(--deep-forest);
  font-weight: 900;
}

.product-facts dd {
  margin: 0;
  color: var(--muted);
}

.product-info-section,
.related-products {
  background: rgba(255, 253, 249, 0.88);
}

.related-link-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.related-link-row a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(47, 100, 115, 0.22);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  color: var(--deep-forest);
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(23, 61, 54, 0.07);
}

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

@media (max-width: 820px) {
  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-detail h1,
  .product-listing-hero h1 {
    max-width: 11ch;
  }
}

@media (max-width: 620px) {
  .product-grid-wide {
    grid-template-columns: 1fr;
  }

  .product-actions,
  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .product-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
