
:root {
  --cream: #efe2ca;
  --cream-light: #faf3e6;
  --paper: #fffaf0;
  --tan: #d3af7d;
  --wood: #9a6039;
  --wood-deep: #6f4027;
  --brown: #342116;
  --brown-soft: #513524;
  --ink: #22170f;
  --muted: #6c5b4c;
  --line: rgba(74, 47, 29, .18);
  --shadow: 0 22px 60px rgba(59, 37, 22, .14);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--cream-light);
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255,255,255,.8), transparent 28rem),
    linear-gradient(180deg, var(--cream-light), #f4ead9 52rem, var(--cream-light));
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(90deg, rgba(88,55,35,.04) 1px, transparent 1px),
    linear-gradient(rgba(88,55,35,.03) 1px, transparent 1px);
  background-size: 34px 34px;
  z-index: -1;
}

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

.wrap {
  width: min(1180px, calc(100% - 42px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250,243,230,.90);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-mark {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-words {
  line-height: 1;
  letter-spacing: .08em;
}

.brand-words strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  letter-spacing: .03em;
}

.brand-words span {
  display: block;
  margin-top: 4px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .20em;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a {
  text-decoration: none;
  font-size: .88rem;
  font-weight: 700;
}

.small-cta {
  padding: 10px 17px;
  color: var(--cream-light);
  background: var(--brown);
  border-radius: 999px;
}

.hero {
  min-height: 690px;
  display: flex;
  align-items: center;
  padding: 70px 0 78px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 58px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--wood-deep);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(3.6rem, 7vw, 6.6rem);
  font-weight: 700;
  letter-spacing: -.055em;
}

.lead {
  max-width: 660px;
  margin: 25px 0 0;
  color: var(--brown-soft);
  font-size: clamp(1.06rem, 1.5vw, 1.25rem);
}

.launch-note {
  display: flex;
  gap: 14px;
  max-width: 650px;
  margin-top: 28px;
  padding: 17px 20px;
  border: 1px solid var(--line);
  background: rgba(255,250,240,.62);
  border-radius: 14px;
}

.status-dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--wood);
  box-shadow: 0 0 0 5px rgba(154,96,57,.12);
}

.launch-note strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.03rem;
}

.launch-note p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: .94rem;
}

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

.button {
  min-height: 50px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-size: .89rem;
  font-weight: 800;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  color: var(--cream-light);
  background: var(--brown);
  box-shadow: 0 9px 25px rgba(52,33,22,.16);
}

.primary:hover {
  background: var(--wood-deep);
}

.secondary {
  border: 1px solid rgba(52,33,22,.27);
  background: rgba(255,250,240,.42);
}

.hero-logo-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 550px;
}

.logo-halo {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(211,175,125,.35), rgba(211,175,125,.08) 55%, transparent 72%);
  filter: blur(2px);
}

.hero-logo {
  position: relative;
  width: min(540px, 100%);
  filter: drop-shadow(0 24px 18px rgba(72,43,25,.13));
}

.craft-strip {
  color: #efe2ca;
  background: var(--brown);
  border-top: 1px solid #21130c;
  border-bottom: 1px solid #21130c;
}

.strip-items {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .17em;
}

.strip-items i {
  color: var(--tan);
  font-style: normal;
  font-size: .55rem;
}

.section {
  padding: 104px 0;
}

.products {
  background: rgba(255,250,240,.55);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 80px;
}

.section-heading h2,
.about h2,
.opening h2 {
  margin: 0;
  font-size: clamp(2.35rem, 4.4vw, 4.2rem);
  letter-spacing: -.045em;
}

.section-intro {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 1.05rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.product-card {
  position: relative;
  min-height: 255px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #f7ecda;
  box-shadow: 0 10px 35px rgba(71,44,27,.06);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: auto -12% -40% 28%;
  height: 78%;
  transform: rotate(-7deg);
  opacity: .13;
  background:
    repeating-linear-gradient(4deg,
      rgba(76,45,25,.8) 0 1px,
      transparent 1px 11px);
  border-radius: 50%;
}

.product-card > * { position: relative; z-index: 2; }

.number {
  color: var(--wood);
  font-family: Georgia, "Times New Roman", serif;
  font-size: .82rem;
  font-weight: 700;
}

.product-card h3 {
  margin: 0 0 9px;
  font-size: 1.65rem;
}

.product-card p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

.product-card.engraving { background: #ead4b5; }
.product-card.print { background: #eee0c7; }
.product-card.market { background: #dfc39b; }

.about {
  border-top: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 85px;
}

.medallion-panel {
  position: relative;
  min-height: 510px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 45%, #fff4df, #e8d2ad 72%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.medallion-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .10;
  background:
    repeating-linear-gradient(0deg,
      rgba(87,53,30,.7) 0 1px,
      transparent 1px 7px);
}

.medallion-panel img {
  position: relative;
  width: min(390px, 80%);
  filter: drop-shadow(0 22px 18px rgba(75,45,27,.14));
}

.about-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.signature {
  margin-top: 30px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
  color: var(--wood-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.opening {
  padding: 0 0 95px;
}

.opening-card {
  padding: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  color: var(--cream-light);
  background:
    linear-gradient(135deg, rgba(95,58,35,.40), transparent 48%),
    var(--brown);
  border: 1px solid #21130c;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.light-eyebrow {
  color: #dcb887;
}

.opening-card h2 {
  max-width: 760px;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.opening-card p:last-child {
  max-width: 730px;
  margin-bottom: 0;
  color: #decfbf;
}

.opening-actions {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.button.cream {
  color: var(--brown);
  background: var(--cream);
}

.opening-actions span {
  color: #c9b4a1;
  font-size: .78rem;
  letter-spacing: .08em;
}

footer {
  padding: 30px 0 34px;
  border-top: 1px solid var(--line);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.footer-brand strong,
.footer-brand small {
  display: block;
}

.footer-brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: .92rem;
  letter-spacing: .06em;
}

.footer-brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .13em;
}

.footer-meta {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: .82rem;
}

@media (max-width: 930px) {
  .hero {
    min-height: auto;
    padding-top: 55px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .hero-copy {
    text-align: center;
  }

  .lead, .launch-note {
    margin-left: auto;
    margin-right: auto;
  }

  .actions {
    justify-content: center;
  }

  .hero-logo-wrap {
    min-height: 480px;
  }

  .hero-logo {
    width: min(500px, 78vw);
  }

  .section-heading,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .medallion-panel {
    min-height: 440px;
  }

  .opening-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .opening-actions {
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    min-height: 70px;
  }

  .brand-mark {
    width: 47px;
    height: 47px;
  }

  .brand-words strong {
    font-size: 1.25rem;
  }

  nav a:not(.small-cta) {
    display: none;
  }

  .small-cta {
    padding: 9px 14px;
  }

  .hero {
    padding: 48px 0 50px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .hero-logo-wrap {
    min-height: 350px;
  }

  .logo-halo {
    width: 350px;
    height: 350px;
  }

  .strip-items {
    justify-content: center;
    flex-wrap: wrap;
    padding: 15px 0;
    line-height: 1;
  }

  .strip-items i {
    display: none;
  }

  .section {
    padding: 72px 0;
  }

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

  .product-card {
    min-height: 220px;
  }

  .medallion-panel {
    min-height: 350px;
  }

  .opening {
    padding-bottom: 65px;
  }

  .opening-card {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .opening-actions {
    width: 100%;
  }

  .opening-actions .button {
    width: 100%;
  }

  .footer-row,
  .footer-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    gap: 4px;
  }
}

.phone-link {
  color: var(--cream);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: .04em;
}

.phone-link:hover {
  text-decoration: underline;
}

.footer-meta a {
  color: var(--muted);
  text-decoration: none;
}

.footer-meta a:hover {
  color: var(--wood-deep);
  text-decoration: underline;
}


.heritage-line {
  margin-top: 28px;
  padding: 18px 20px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
  color: var(--brown);
  background: rgba(211, 175, 125, .22);
  border: 1px solid rgba(111, 64, 39, .20);
  border-radius: 12px;
}

.heritage-line span {
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .18em;
}

.heritage-line strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  letter-spacing: .06em;
}

.about-copy strong {
  color: var(--brown);
}

.about .signature {
  max-width: 620px;
  line-height: 1.45;
}

@media (max-width: 680px) {
  .heritage-line {
    display: flex;
  }

  .heritage-line strong {
    width: 100%;
  }
}

.story-turn {
  margin: 30px 0 24px !important;
  color: var(--brown) !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem) !important;
  font-weight: 700;
  font-style: italic;
  line-height: 1.35;
}
.story-motto {
  margin-top: 30px;
  padding: 24px 0 5px;
  border-top: 1px solid var(--line);
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 700;
  line-height: 1.55;
}
.story-motto span { display: block; }
