/* ============================================================
   THE CANTON COFFEE INDEX — a field guide to Stark County coffee
   Editorial print aesthetic: cream paper, espresso ink, rust accents
   ============================================================ */

:root {
  --paper: #f4ecdc;
  --paper-deep: #ece1cb;
  --card: #f8f2e5;
  --ink: #241a12;
  --ink-soft: #4d4033;
  --ink-faint: #857459;
  --rust: #b4501e;
  --rust-bright: #cf5e1f;
  --pine: #40563f;
  --gold: #c0913c;
  --line: #d9caac;
  --line-dark: #b3a385;
  --press: rgba(36, 26, 18, 0.9);
  --stain-rgb: 140, 82, 34;
  color-scheme: light;

  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Archivo", "Helvetica Neue", sans-serif;
  --mono: "Space Mono", "Courier New", monospace;

  --shadow-press: 4px 4px 0 var(--press);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Dark roast. Applied by explicit choice (data-theme) or system preference. */
:root[data-theme="dark"] {
  --paper: #1c1410;
  --paper-deep: #16100c;
  --card: #251b14;
  --ink: #f0e5d1;
  --ink-soft: #cdbca2;
  --ink-faint: #94805f;
  --rust: #d96f32;
  --rust-bright: #e07d40;
  --pine: #8aa382;
  --gold: #d4a94e;
  --line: #3a2c20;
  --line-dark: #57432e;
  --press: rgba(0, 0, 0, 0.65);
  --stain-rgb: 224, 160, 104;
  color-scheme: dark;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper: #1c1410;
    --paper-deep: #16100c;
    --card: #251b14;
    --ink: #f0e5d1;
    --ink-soft: #cdbca2;
    --ink-faint: #94805f;
    --rust: #d96f32;
    --rust-bright: #e07d40;
    --pine: #8aa382;
    --gold: #d4a94e;
    --line: #3a2c20;
    --line-dark: #57432e;
    --press: rgba(0, 0, 0, 0.65);
    --stain-rgb: 224, 160, 104;
    color-scheme: dark;
  }
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Paper grain over everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.14 0 0 0 0 0.1 0 0 0 0 0.07 0 0 0 0.055 0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

::selection { background: var(--rust); color: var(--paper); }

a { color: inherit; }

/* ---------- top bar ---------- */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 1.5rem;
  border-bottom: 1.5px solid var(--ink);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.topbar .dot { color: var(--rust); }
.topbar span:nth-child(2) { text-align: center; }
.topbar span:last-child { text-align: right; }
@media (max-width: 640px) {
  .topbar span:nth-child(2) { display: none; }
}

/* ---------- theme toggle (coffee mug) ---------- */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
  margin-left: 0.9rem;
  vertical-align: -5px;
}
.theme-toggle svg {
  width: 19px;
  height: 19px;
  display: block;
  transition: transform 0.3s var(--ease-out);
}
.theme-toggle:hover { color: var(--rust); }
.theme-toggle:hover svg { transform: translateY(-1px) rotate(-8deg); }
.theme-toggle:focus-visible { outline: 1.5px solid var(--rust); outline-offset: 3px; }
/* the mug fills with coffee in dark mode */
.mug-coffee { opacity: 0; transition: opacity 0.25s; }
:root[data-theme="dark"] .mug-coffee { opacity: 1; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .mug-coffee { opacity: 1; }
}

/* multiply blending flattens the stamp on dark paper */
:root[data-theme="dark"] .stamp { mix-blend-mode: normal; opacity: 0.95; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .stamp { mix-blend-mode: normal; opacity: 0.95; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6.5rem) 1.5rem clamp(2.5rem, 6vw, 5rem);
  text-align: center;
  border-bottom: 1.5px solid var(--ink);
  overflow: hidden;
}

/* coffee ring stains */
.stain {
  position: absolute;
  border-radius: 50%;
  border-style: solid;
  border-color: rgba(var(--stain-rgb), 0.18);
  pointer-events: none;
  filter: blur(0.6px);
}
.stain::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(var(--stain-rgb), 0.09);
}
.stain-1 { width: 240px; height: 230px; border-width: 14px 10px 16px 12px; top: -80px; left: -60px; transform: rotate(12deg); }
.stain-2 { width: 150px; height: 145px; border-width: 9px 7px 11px 8px; bottom: 30px; right: 6%; transform: rotate(-8deg); border-color: rgba(var(--stain-rgb), 0.13); }

.hero-kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1.4rem;
}
.hero-kicker::before, .hero-kicker::after { content: "◆"; margin: 0 0.9em; font-size: 0.55rem; vertical-align: 2px; }

.hero h1 {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-size: clamp(3.2rem, 12vw, 8.5rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.hero h1 .amp {
  font-style: italic;
  font-weight: 380;
  color: var(--rust);
  letter-spacing: 0;
}
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--rust);
}

.hero-sub {
  max-width: 34rem;
  margin: 1.6rem auto 0;
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  color: var(--ink-soft);
  text-wrap: balance;
}

.hero-stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 2.4rem;
  border: 1.5px solid var(--ink);
  width: fit-content;
  margin-inline: auto;
  background: var(--card);
  box-shadow: var(--shadow-press);
}
.hero-stats div {
  padding: 0.8rem 1.6rem;
  border-right: 1.5px solid var(--ink);
}
.hero-stats div:last-child { border-right: none; }
.hero-stats b {
  display: block;
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--rust);
}
.hero-stats span {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* steam */
.steam {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 900px;
  pointer-events: none;
  opacity: 0.35;
}
.steam path {
  fill: none;
  stroke: var(--ink-faint);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 6 9;
  animation: steamdrift 14s linear infinite;
}
.steam path:nth-child(2) { animation-duration: 19s; animation-delay: -6s; }
.steam path:nth-child(3) { animation-duration: 23s; animation-delay: -11s; }
@keyframes steamdrift { to { stroke-dashoffset: -300; } }

/* ---------- ticker ---------- */
.ticker {
  border-bottom: 1.5px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  white-space: nowrap;
  padding: 0.55rem 0;
}
.ticker-track {
  display: inline-block;
  animation: tick 60s linear infinite;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ticker-track .sep { color: var(--rust-bright); margin: 0 1.2em; }
@keyframes tick { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .ticker-track, .steam path { animation: none; }
}

/* ---------- filter bar ---------- */
.controls {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1.5px solid var(--ink);
  padding: 0.9rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.4rem;
  align-items: center;
  box-shadow: 0 1px 0 var(--paper);
}

.search-wrap {
  position: relative;
  flex: 1 1 220px;
  max-width: 340px;
}
.search-wrap svg {
  position: absolute;
  left: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  stroke: var(--ink-faint);
  pointer-events: none;
}
#search {
  width: 100%;
  font-family: var(--mono);
  font-size: 0.78rem;
  padding: 0.55rem 0.8rem 0.55rem 2.1rem;
  background: var(--card);
  border: 1.5px solid var(--ink);
  color: var(--ink);
  outline: none;
  transition: box-shadow 0.15s var(--ease-out);
}
#search::placeholder { color: var(--ink-faint); }
#search:focus { box-shadow: 3px 3px 0 var(--press); }

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}
.chip-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-right: 0.2rem;
}
.chip {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  padding: 0.34rem 0.75rem;
  background: transparent;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.14s var(--ease-out);
  user-select: none;
}
.chip:hover { background: var(--paper-deep); transform: translateY(-1px); }
.chip[aria-pressed="true"] { background: var(--ink); color: var(--paper); }
.chip[aria-pressed="true"]:hover { background: var(--ink-soft); }
.chip.feature[aria-pressed="true"] { background: var(--rust); border-color: var(--rust); color: var(--paper); }

.count-readout {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  white-space: nowrap;
}
.count-readout b { color: var(--rust); font-weight: 700; }
@media (max-width: 900px) { .count-readout { margin-left: 0; } }

/* Compact controls on small screens: single-line scrollable chip rows */
@media (max-width: 700px) {
  .controls { padding: 0.65rem 1rem; gap: 0.5rem; }
  .search-wrap { flex-basis: 100%; max-width: none; }
  #search { font-size: 0.72rem; padding: 0.45rem 0.7rem 0.45rem 2rem; }
  .chip-group {
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    /* fade hint that the row scrolls */
    mask-image: linear-gradient(to right, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, #000 92%, transparent);
    padding-bottom: 2px;
  }
  .chip-group::-webkit-scrollbar { display: none; }
  .chip-label { flex-shrink: 0; }
  .chip {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 0.6rem;
    padding: 0.24rem 0.6rem;
  }
  .count-readout { font-size: 0.6rem; }
}

/* ---------- directory grid ---------- */
.directory {
  padding: clamp(1.6rem, 4vw, 3rem) 1.5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.4rem;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1.5px solid var(--ink);
  padding: 1.3rem 1.3rem 1.1rem;
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out);
  animation: cardin 0.5s var(--ease-out) backwards;
}
.card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--press);
}
@keyframes cardin {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .card { animation: none; }
  .card:hover { transform: none; }
}

.card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.8rem;
}
.card-num {
  font-family: var(--mono);
  font-size: 0.66rem;
  color: var(--ink-faint);
  letter-spacing: 0.1em;
  padding-top: 0.35rem;
}
.card h3 {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 580;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0.15rem 0 0.1rem;
}
.card h3 a { text-decoration: none; }
.card h3 a:hover { color: var(--rust); }

.card-area {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pine);
  margin-bottom: 0.7rem;
}
.card-area::before { content: "⌖ "; color: var(--rust); }

.card-desc {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 0.95rem;
  flex-grow: 0;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.tag {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.18rem 0.5rem;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--paper);
}

.meta {
  margin-top: auto;
  border-top: 1px solid var(--line-dark);
  padding-top: 0.75rem;
  font-size: 0.76rem;
}
.meta-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 0.3rem;
}
.meta-row .k {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  flex-shrink: 0;
}
.meta-row .leader {
  flex: 1;
  border-bottom: 1.5px dotted var(--line-dark);
  transform: translateY(-3px);
  min-width: 12px;
}
.meta-row .v { text-align: right; color: var(--ink-soft); max-width: 65%; }

.card-links {
  display: flex;
  gap: 0.9rem;
  margin-top: 0.8rem;
}
.card-links a {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--rust);
  border-bottom: 1.5px solid transparent;
  padding-bottom: 1px;
  transition: border-color 0.14s;
}
.card-links a:hover { border-color: var(--rust); }
.card-links a::after { content: " ↗"; }

/* roaster stamp */
.stamp {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  font-family: var(--mono);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  border: 2px double var(--rust);
  border-radius: 3px;
  padding: 0.28rem 0.45rem;
  transform: rotate(6deg);
  opacity: 0.85;
  mix-blend-mode: multiply;
  pointer-events: none;
  line-height: 1.25;
  text-align: center;
}

.price { color: var(--gold); letter-spacing: 0.1em; font-family: var(--mono); font-size: 0.7rem; }
.card:has(.stamp) .price { margin-right: 4.2rem; }

/* ---------- empty state ---------- */
.empty {
  text-align: center;
  padding: 4rem 1rem;
  display: none;
}
.empty.show { display: block; }
.empty .cup { font-size: 2.6rem; }
.empty h4 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 580;
  margin: 0.6rem 0 0.3rem;
}
.empty p { color: var(--ink-soft); font-size: 0.9rem; }
.empty button {
  margin-top: 1.1rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.55rem 1.2rem;
  background: var(--ink);
  color: var(--paper);
  border: none;
  cursor: pointer;
}
.empty button:hover { background: var(--rust); }

/* ---------- area dividers ---------- */
.area-heading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.2rem 0 0.2rem;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--ink);
}
.area-heading:first-child { margin-top: 0; }
.area-heading .rule { flex: 1; border-bottom: 1.5px solid var(--ink); }
.area-heading .n {
  font-family: var(--mono);
  font-style: normal;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
}

/* ---------- shop landing pages ---------- */
.plain { text-decoration: none; }
.plain:hover { color: var(--rust); }

.crumbs {
  padding: 0.7rem 1.5rem;
  border-bottom: 1.5px solid var(--ink);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.crumbs a { text-decoration: none; color: var(--rust); }
.crumbs a:hover { text-decoration: underline; }
.crumb-sep { margin: 0 0.6em; color: var(--ink-faint); }

.shop-page {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) 1.5rem 4rem;
}
.shop-hero { position: relative; text-align: left; }
.shop-hero .hero-kicker { text-align: left; margin-bottom: 0.8rem; }
.shop-hero .hero-kicker::before, .shop-hero .hero-kicker::after { content: none; }
.shop-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.shop-stamp { top: 0; right: 0; transform: rotate(6deg) scale(1.25); transform-origin: top right; }
.shop-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--ink-soft);
  max-width: 60ch;
  margin-bottom: 1.6rem;
}
.shop-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.btn {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  padding: 0.55rem 1rem;
  background: var(--card);
  transition: all 0.15s var(--ease-out);
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 3px 3px 0 var(--press); }
.btn-solid { background: var(--ink); color: var(--paper); }
.btn-solid:hover { background: var(--rust); border-color: var(--rust); }

.shop-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
  border-top: 1.5px solid var(--ink);
  padding-top: 1.8rem;
}
.detail-block h2 {
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.5rem;
}
.detail-block p { font-size: 0.92rem; color: var(--ink-soft); }
.detail-block .fine { font-size: 0.72rem; color: var(--ink-faint); margin-top: 0.4rem; }
.feature-list { list-style: none; font-size: 0.92rem; color: var(--ink-soft); }
.feature-list li::before { content: "◆ "; color: var(--rust); font-size: 0.6rem; vertical-align: 2px; }

.siblings { margin-top: 3rem; }
.mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}
.mini-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.9rem 1rem;
  background: var(--card);
  border: 1.5px solid var(--ink);
  text-decoration: none;
  transition: all 0.15s var(--ease-out);
}
.mini-card:hover { transform: translate(-2px, -2px); box-shadow: 3px 3px 0 var(--press); }
.mini-name { font-family: var(--serif); font-weight: 580; font-size: 1.05rem; line-height: 1.15; }
.mini-addr { font-family: var(--mono); font-size: 0.62rem; color: var(--ink-faint); }

/* ---------- footer ---------- */
footer {
  border-top: 1.5px solid var(--ink);
  background: #241a12;
  color: var(--paper-deep);
  padding: 3rem 1.5rem 2.2rem;
  position: relative;
  overflow: hidden;
}
footer .stain { border-color: rgba(244, 236, 220, 0.1); }
footer .stain::after { border-color: rgba(244, 236, 220, 0.06); }
.foot-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 720px) { .foot-inner { grid-template-columns: 1fr; } }
footer h5 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  color: #f4ecdc;
  margin-bottom: 0.7rem;
}
footer h5 em { color: #e07d40; font-style: italic; font-weight: 400; }
footer p {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(244, 236, 220, 0.72);
  max-width: 46ch;
}
footer p + p { margin-top: 0.7rem; }
.foot-meta {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 2.1;
  color: rgba(244, 236, 220, 0.55);
}
.foot-meta b { color: #f4ecdc; font-weight: 400; }
.foot-bottom {
  max-width: 1200px;
  margin: 2.5rem auto 0;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(244, 236, 220, 0.18);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 236, 220, 0.45);
}
