  :root {
    /* ink + paper */
    --paper: #f3ebdc;
    --paper-2: #ebe1cd;
    --ink: #1b1814;
    --ink-soft: #4a423a;
    --rule: #1b1814;

    /* accents pulled from billboard + sewing stamp */
    --thread-blue: #8fb6c9;     /* curtain blue */
    --thread-blue-deep: #4f7a90;
    --thread-red: #c14a37;      /* sewing badge red */

    --stitch: 6px;              /* dash length */
    --stitch-gap: 5px;
    --radius: 14px;

    --display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
    --body: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  html { -webkit-text-size-adjust: 100%; }

  body {
    font-family: var(--body);
    color: var(--ink);
    background-color: var(--paper);
    line-height: 1.5;
    font-size: 16px;
  background-image: url("/images/wallpaper.jpg");	
    /* ----- ----- 

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  
  */
  background-repeat: repeat;

    min-height: 100dvh;
  }

  /* a faint scissor + pin motif fixed to the page edges for character */
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    /* subtle vignette so the textured edges feel like paper */
    background:
      radial-gradient(ellipse at center, transparent 55%, rgba(60,40,15,0.10) 100%);
  }
  main.page { position: relative; z-index: 1; }

  ::selection { background: var(--thread-blue); color: var(--ink); }

  a { color: inherit; }

  /* ---------- layout ---------- */
  .page {
    max-width: 560px;
    margin: 0 auto;
    padding: 22px 18px 64px;
    position: relative;
  }

  /* outer stitched frame */
  .frame {
    position: relative;
    border: 1px solid var(--ink);
    border-radius: var(--radius);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0) 240px),
      var(--paper);
    padding: 26px 20px 28px;
    box-shadow:
      0 1px 0 rgba(255,255,255,0.5) inset,
      0 8px 24px -12px rgba(79,122,144,0.35),
      0 30px 60px -30px rgba(60,40,15,0.40);
  }
  .frame::before {
    content: "";
    position: absolute; inset: 6px;
    border: 1px dashed var(--ink);
    border-radius: calc(var(--radius) - 6px);
    pointer-events: none;
    opacity: 0.85;
  }

  /* corner thread dots, like sewn corners */
  .frame::after {
    content: "";
    position: absolute; inset: 0;
    pointer-events: none;
    background:
      radial-gradient(circle at 14px 14px, var(--ink) 2px, transparent 2.5px),
      radial-gradient(circle at calc(100% - 14px) 14px, var(--ink) 2px, transparent 2.5px),
      radial-gradient(circle at 14px calc(100% - 14px), var(--ink) 2px, transparent 2.5px),
      radial-gradient(circle at calc(100% - 14px) calc(100% - 14px), var(--ink) 2px, transparent 2.5px);
  }

  /* ---------- header ---------- */
  header.brand {
    text-align: center;
    padding: 14px 4px 18px;
    position: relative;
  }
  .eyebrow {
    font-family: var(--body);
    font-size: 11px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--ink-soft);
    margin-bottom: 14px;
  }
  .eyebrow .dot {
    display: inline-block;
    width: 6px; height: 6px;
    background: var(--thread-red);
    border-radius: 50%;
    vertical-align: 2px;
    margin: 0 8px;
  }
  .logotype {
    font-family: var(--display);
    font-style: italic;
    font-weight: 600;
    line-height: 0.92;
    color: var(--ink);
    margin: 0;
    letter-spacing: -0.01em;
  }
  .logotype .l1 {
    display: block;
    font-size: clamp(54px, 17vw, 96px);
  }
  .logotype .amp {
    display: inline-block;
    font-size: 0.6em;
    transform: translateY(-0.1em);
    color: var(--thread-red);
    margin: 0 0.18em;
    font-style: italic;
    font-weight: 500;
	width: 100px;
  }
  .logotype .amp > img{
	  width: 100px;
  }
  .logotype .l2 {
    display: block;
    font-size: clamp(54px, 17vw, 96px);
    margin-top: -0.08em;
  }
  /* tape measure rule */
  .tape {
    display: block;
    height: 18px;
    margin: 16px auto 6px;
    width: 78%;
    color: var(--ink);
  }
  .tagline {
    font-family: var(--display);
    font-style: italic;
    font-size: 18px;
    color: var(--ink-soft);
    margin-top: 6px;
  }

  /* ---------- shared section ---------- */
  section {
    margin-top: 22px;
  }
  h2.label, .label {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--body);
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--ink);
    font-weight: 600;
    margin: 0 0 14px;
  }
  p.eyebrow, p.tagline { margin-top: 0; margin-bottom: 0; }
  p.eyebrow { margin-bottom: 14px; }
  p.tagline { margin-top: 6px; }
  .label::before, .label::after {
    content: "";
    flex: 1;
    height: 1px;
    background-image: linear-gradient(to right, var(--ink) 50%, transparent 50%);
    background-size: 8px 1px;
    background-repeat: repeat-x;
    opacity: 0.7;
  }

  /* ---------- primary action: call ---------- */
  .call {
    display: block;
    text-decoration: none;
    color: var(--ink);
    background: var(--thread-blue);/*var(--paper-2);*/
    border: 1.5px dashed var(--ink);
    border-radius: 12px;
    padding: 18px 18px 16px;
    transition: transform 0.15s ease, background 0.2s ease;
  }
  .call:active { transform: translateY(1px); }
  .call:hover { background: #e2d7bf; }
  .call-row {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .call-ico {
    flex: 0 0 auto;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--paper);
    display: grid; place-items: center;
  }
  .call-ico svg { width: 22px; height: 22px; }
  .call-meta {
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-soft);
    line-height: 1.1;
  }
  .call-number {
    font-family: var(--display);
    font-weight: 600;
    font-size: clamp(28px, 8.5vw, 38px);
    letter-spacing: 0.01em;
    line-height: 1.05;
    margin-top: 2px;
  }
  .call-hint {
    margin-top: 10px;
    font-size: 12px;
    color: var(--ink-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .call-hint .pill {
    background: var(--paper-2); /*var(--thread-blue);*/
    color: var(--ink);
    padding: 3px 10px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  /* ---------- hours card ---------- */
  .hours {
    background: var(--ink);
    color: var(--paper);
    border-radius: 12px;
    padding: 20px 18px;
    position: relative;
    overflow: hidden;
  }
  .hours::before {
    content: "";
    position: absolute; inset: 6px;
    border: 1px dashed rgba(243,235,220,0.45);
    border-radius: 8px;
    pointer-events: none;
  }
  .hours-grid {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: baseline;
    gap: 6px 14px;
    position: relative;
  }
  .hours-grid .lbl {
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(243,235,220,0.65);
    white-space: nowrap;
  }
  .hours-grid .dots {
    border-bottom: 1px dotted rgba(243,235,220,0.4);
    transform: translateY(-4px);
  }
  .hours-grid .val {
    font-family: var(--display);
    font-weight: 600;
    font-size: 22px;
    white-space: nowrap;
  }
  .hours-bottom {
    margin-top: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    font-size: 12px;
    color: rgba(243,235,220,0.7);
  }
  .status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--body);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
    color: var(--paper);
  }
  .status .led {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #6ed29a;
    box-shadow: 0 0 0 3px rgba(110,210,154,0.25);
  }
  .status.closed .led { background: var(--thread-red); box-shadow: 0 0 0 3px rgba(193,74,55,0.25); }

  /* ---------- services ---------- */
  .services-card {
    border: 1px dashed var(--ink);
    border-radius: 12px;
    padding: 18px 16px 8px;
  }
  .services {
    list-style: none;
    margin: 0; padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .services li {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 11px 2px;
    border-bottom: 1px dotted rgba(27,24,20,0.25);
    font-size: 16px;
  }
  .services li:last-child { border-bottom: 0; }
  .services .num {
    font-family: var(--display);
    font-style: italic;
    font-size: 13px;
    color: var(--thread-red);
    min-width: 22px;
    font-weight: 600;
  }
  .services .name {
    flex: 1;
    font-weight: 500;
    color: var(--ink);
  }
  .services .tag {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }

  @media (min-width: 460px) {
    .services { grid-template-columns: 1fr 1fr; column-gap: 20px; }
    .services li { padding: 10px 2px; }
  }

  /* ---------- location ---------- */
  .location {
    border: 1.5px solid var(--ink);
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    background: var(--thread-blue); /*var(--paper);*/
  }
  .map-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    background: var(--paper-2);
    border-bottom: 1px dashed var(--ink);
    overflow: hidden;
  }
  .map-wrap iframe {
    width: 100%; height: 100%;
    border: 0;
    display: block;
    filter: grayscale(0.35) sepia(0.18) contrast(0.95);
  }
  .map-pin-overlay {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--paper);
    border: 1px solid var(--ink);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 7px;
  }
  .map-pin-overlay .pin-dot {
    width: 7px; height: 7px;
    background: var(--thread-red);
    border-radius: 50%;
  }
  .loc-body {
    padding: 18px 18px 18px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .pin-ico {
    flex: 0 0 auto;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--paper); /*var(--thread-blue);*/
    border: 1px solid var(--ink);
    display: grid; place-items: center;
  }
  .pin-ico svg { width: 18px; height: 18px; color: var(--ink); }
  .addr {
    flex: 1;
    font-size: 15px;
    line-height: 1.45;
  }
  .addr .shop {
    font-family: var(--display);
    font-weight: 600;
    font-size: 20px;
    display: block;
    margin-bottom: 2px;
  }
  .addr .street {
    display: block;
    color: var(--ink-soft);
  }
  .directions {
    display: block;
    margin: 0 16px 16px;
    text-align: center;
    text-decoration: none;
    padding: 12px 14px;
    border-radius: 10px;
    background: var(--ink);
    color: var(--paper);
    font-size: 12px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid var(--ink);
    transition: background 0.2s ease;
  }
  .directions:hover { background: #2e2820; }

  /* ---------- reviews coming soon ---------- */
  .reviews {
    text-align: center;
    border: 1px dashed var(--ink);
    border-radius: 12px;
    padding: 20px 18px;
    background:
      linear-gradient(0deg, rgba(143,182,201,0.12), rgba(143,182,201,0.12));
    position: relative;
  }
  .stars {
    display: inline-flex;
    gap: 6px;
    margin-bottom: 8px;
    color: var(--ink);
  }
  .stars svg { width: 18px; height: 18px; opacity: 0.85; }
  .reviews h3 {
    font-family: var(--display);
    font-style: italic;
    font-weight: 600;
    font-size: 22px;
    margin: 4px 0 4px;
  }
  .reviews p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 14px;
    max-width: 36ch;
    margin: 0 auto;
  }
  .reviews .ribbon {
    display: inline-block;
    margin-top: 12px;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--thread-red);
    font-weight: 600;
    border-top: 1px dashed var(--thread-red);
    border-bottom: 1px dashed var(--thread-red);
    padding: 4px 10px;
  }

  /* ---------- footer ---------- */
  footer {
    margin-top: 26px;
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  footer .sig {
    font-family: var(--display);
    font-style: italic;
    font-size: 15px;
    letter-spacing: 0;
    text-transform: none;
    color: var(--ink);
    margin-bottom: 6px;
    display: block;
  }

  /* tiny utility */
  .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;
  }

  /* ---------- subtle running stitch underline ---------- */
  .stitch-under {
    background-image: linear-gradient(to right, var(--ink) 50%, transparent 50%);
    background-size: 6px 1.5px;
    background-position: bottom left;
    background-repeat: repeat-x;
    padding-bottom: 6px;
  }
  
footer .footer-line,
footer .creator-credit {
  display: block;
}

footer .creator-credit {
  margin-top: 10px;
  font-size: 10px;
  letter-spacing: 0.14em;
  opacity: 0.85;
}

footer .creator-credit a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px dashed var(--ink-soft);
}

footer .creator-credit a:hover {
  color: var(--thread-red);
  border-bottom-color: var(--thread-red);
}

footer .footer-line,
footer .creator-credit {
  display: block;
}

footer a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px dashed var(--ink-soft);
}

footer a:hover {
  color: var(--thread-red);
  border-bottom-color: var(--thread-red);
}

footer .creator-credit {
  margin-top: 10px;
  font-size: 10px;
  letter-spacing: 0.14em;
  opacity: 0.85;
}