/* ==================
   Print: spec sheet
   ================== */
.spec-sheet{
  display: none;
}
@media print {

  @page { size: Letter portrait; margin: 0; }
  html, body {
    margin: 0; padding: 0;
    width: 100%; 
    height: 100%;
    background: #F5F2EF;
    -webkit-print-color-adjust: exact;
    color: #1A1A1A;
    font-family:"EB Garamond", 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif;
  }


  body * { display: none; }
  .spec-sheet, .spec-sheet * { display: block; }


  .spec-sheet {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
  }

  .ss-header {
    width: 100%;
    padding: 20px 60px 20px;
    box-sizing: border-box;
    text-align: center;
  }
  .ss-header .ss-title h1 {
    margin: 0;
    font-family:"EB Garamond", 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif;
    font-size: 30px;              /* same vertical scale as PPT */
    font-weight: 400;             /* normal, not bold */
    text-transform: uppercase;     /* ensure all‐caps */
    letter-spacing: 2px;           /* a little breathing room */
    line-height: 1;
    color: #1A1A1A;
  }
  .ss-header .ss-subtitle {
    margin-top: 5px;
    font-family:"EB Garamond", 'Helvetica Neue', Arial, 'Lucida Grande', sans-serif;
    font-size: 16px;              /* matches PPT subtitle size */
    font-style: normal;           /* non-italic in PPT */
  }

  /* 2) Main area */
  .ss-main {
    /* flex: 1;
    display: flex; */
    background: #D6CFC6;
    padding: 20px 40px;
  }

  .ss-details {
    /* flex: 1; */
    max-width: 100%;
    padding-right: 60px;
  }
  .ss-details h2 {
    margin-top: 0;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
  }
  .ss-details dl {
    margin: 16px 0;
  }
  .ss-details dt {
    font-weight: bold;
    margin-top: 8px;
    font-size: 13px;
    letter-spacing: 0.5px;
  }
  .ss-details dd {
    margin: 2px 0 8px 0;
    font-size: 13px;
  }

  .ss-image {
    flex: 1;
    text-align: right;
  }
  .ss-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border: none;
  }

  /* 3) Notes section */
  .ss-notes {
    background: #F5F2EF;
    padding: 10px 40px;
    font-size: 12px;
    line-height: 1.4;
  }
  .ss-notes ul {
    margin: 0;
    padding-left: 20px;
  }
  .ss-notes li {
    margin-bottom: 4px;
  }

  /* 4) Footer */
  .ss-footer {
    position: absolute;
    bottom: 20px;
    right: 0;
    left: 0;    
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    border-top: 1px solid #DDD;
    font-size: 12px;
    line-height: 1.2;
  }
  .ss-contact div {
    margin-bottom: 2px;
  }
  .ss-logo img {
    height: 32px;
    object-fit: contain;
  }
  .ss-footer .ss-logo {
    text-align: right;
  }

  .ss-footer .ss-logo {
    text-align: right;
  }

  .ss-image {
    position: absolute;
    top: -60px;
    right: -80px;
    width: 300px;
    height: 300px;
  }

  .ss-main {
    position: relative;
    width: 85%;
  }

  .ss-header {
    margin-bottom: 70px;
  }

  .women-owned{max-width: 70px;}
  dl {
    display: grid !important;
    grid-template-columns: 1.5fr 3fr;
  }

  .ss-details dt {
    margin: 0;
  }

  .ss-details dd {
    margin: 0;
  }

  .ss-details dl {
    align-items: center;
    gap: 3px;
  }
}