/* Chittenango Self-Storage — concept rebuild
   Palette PIL-sampled from their own logo + facility photos:
   sign maroon #612325 (IMG_6556 sign field) · logo red #a82a14 (chittssfinal2.jpg)
   sign gold trim #b0a188 (IMG_6556 border) · sign-letter cream #e9e3db
   ink #241a1a (sign shadow) · warm paper derived from the sign creams */

@font-face { font-family: 'Young Serif'; src: url('fonts/YoungSerif-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'PT Sans'; src: url('fonts/PTSans-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'PT Sans'; src: url('fonts/PTSans-700.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'PT Sans'; src: url('fonts/PTSans-400i.woff2') format('woff2'); font-weight: 400; font-style: italic; font-display: swap; }

:root {
  --maroon: #612325;
  --maroon-deep: #431619;
  --ink: #241a1a;
  --red: #a82a14;
  --red-dark: #8a2110;
  --gold: #b0a188;
  --gold-dark: #8f7d5f;
  --gold-line: #c8bba0;
  --cream: #f6f1e7;
  --cream-2: #eee7d8;
  --sign-cream: #ece4d4;
  --card: #fffdf8;
  --muted: #6b5f58;
  --radius: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }
html { scroll-behavior: smooth; }
body {
  font-family: 'PT Sans', 'Helvetica Neue', Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
}
h1, h2, h3, .display { font-family: 'Young Serif', 'Georgia', serif; font-weight: 400; line-height: 1.15; }
a { color: var(--red); }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.skip {
  position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff;
  padding: 10px 16px; z-index: 200;
}
.skip:focus { left: 8px; top: 8px; }

/* ---------- buttons: ONE system ---------- */
.btn {
  display: inline-block; font-family: 'PT Sans', sans-serif; font-weight: 700;
  font-size: 16px; letter-spacing: .02em; text-decoration: none; cursor: pointer;
  border-radius: 6px; padding: 13px 26px; border: 2px solid transparent;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  min-height: 44px; text-align: center;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--maroon); border-color: var(--maroon); }
.btn-outline:hover { background: var(--maroon); color: var(--sign-cream); }
.on-dark .btn-outline, .btn-outline.on-dark { color: var(--sign-cream); border-color: var(--gold); }
.on-dark .btn-outline:hover, .btn-outline.on-dark:hover { background: var(--gold); color: var(--ink); }

/* ---------- header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 100; background: #fff;
  border-top: 6px solid var(--maroon);
  border-bottom: 1px solid var(--gold-line);
  box-shadow: 0 1px 0 rgba(96,35,37,.06);
}
.head-in { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 10px 0; }
.brand img { width: 190px; height: auto; }
.nav { display: flex; gap: 4px; align-items: center; flex-wrap: wrap; }
.nav a {
  text-decoration: none; color: var(--ink); font-weight: 700; font-size: 15px;
  padding: 10px 11px; border-radius: 6px;
}
.nav a:hover { background: var(--cream-2); }
.nav a.active { color: var(--red); }
.nav a.nav-cta { background: var(--red); color: #fff; margin-left: 6px; }
.nav a.nav-cta:hover { background: var(--red-dark); }
.menu-btn {
  display: none; background: none; border: 2px solid var(--maroon); color: var(--maroon);
  font: 700 15px 'PT Sans', sans-serif; padding: 9px 14px; border-radius: 6px; cursor: pointer;
  min-height: 44px;
}

/* ---------- hero ---------- */
.hero { position: relative; background: var(--ink); color: var(--sign-cream); overflow: hidden; }
.hero-img { position: absolute; inset: 0; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(36,26,26,.42) 0%, rgba(36,26,26,.28) 40%, rgba(48,20,22,.82) 100%);
}
.hero-in { position: relative; padding: 130px 0 78px; max-width: 780px; }
.hero-center { margin: 0 auto; text-align: center; }
.hero-center .lede { margin-left: auto; margin-right: auto; }
.hero-center .hero-ctas, .hero-center .hero-facts { justify-content: center; }
.hero h1 { font-size: clamp(30px, 5.4vw, 54px); color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,.45); }
.hero .lede { font-size: clamp(17px, 2.2vw, 21px); margin: 18px 0 26px; color: #f2ead9; text-shadow: 0 1px 8px rgba(0,0,0,.5); max-width: 620px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-facts { display: flex; gap: 10px 22px; flex-wrap: wrap; margin-top: 30px; font-weight: 700; font-size: 14.5px; color: #e9ddc4; }
.hero-facts span { display: inline-flex; align-items: center; gap: 7px; }
.hero-facts span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }

/* ---------- painted plaque + hung placard (signature system) ----------
   Echoes their real roadside sign: carved maroon panel, double gold-cream
   border, with the smaller "Climate Controlled Units" placard hung beneath
   (see IMG_6556 — that hung placard is literally how they sign the facility). */
.plaque {
  display: inline-block; background: var(--maroon);
  background-image: linear-gradient(178deg, #6a2829 0%, #5c2022 55%, #521c1e 100%);
  color: var(--sign-cream); border: 3px solid var(--gold);
  box-shadow: inset 0 0 0 2px var(--maroon), inset 0 0 0 4px rgba(236,228,212,.55), 0 3px 10px rgba(36,26,26,.22);
  border-radius: 12px; padding: 14px 30px 16px; text-align: center;
}
.plaque .kicker { display: block; font: italic 400 14px/1 'PT Sans', sans-serif; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-line); margin-bottom: 8px; }
.plaque h2, .plaque .h { font-family: 'Young Serif', serif; font-size: clamp(21px, 3.4vw, 30px); color: var(--sign-cream); }
.sign-group { text-align: center; margin-bottom: 34px; }

/* the hung placard: cream board on two chain links under a plaque */
.hangwrap { display: inline-block; position: relative; }
.placard {
  display: inline-block; position: relative; margin-top: 18px;
  background: var(--sign-cream); color: var(--maroon-deep);
  border: 2px solid var(--gold-dark); border-radius: 6px;
  padding: 7px 22px; font: 700 15px/1.4 'PT Sans', sans-serif; letter-spacing: .04em;
  box-shadow: 0 2px 6px rgba(36,26,26,.18);
}
.placard::before, .placard::after {
  content: ""; position: absolute; top: -17px; width: 3px; height: 16px;
  background: linear-gradient(180deg, var(--gold-dark), var(--gold));
  border-radius: 2px;
}
.placard::before { left: 22%; }
.placard::after { right: 22%; }

/* hang-on motion: placard lifts up onto its hooks and settles level. */
.js .hang-anim .placard { opacity: 0; transform: translateY(14px) rotate(-1.4deg); }
.js .hang-anim.hung .placard {
  opacity: 1; transform: translateY(0) rotate(0deg);
  transition: transform .55s cubic-bezier(.22,1.1,.36,1), opacity .4s ease;
}
@media (prefers-reduced-motion: reduce) {
  .js .hang-anim .placard { opacity: 1; transform: none; transition: none; }
}

/* ---------- sections ---------- */
.section { padding: 70px 0; }
.section.alt { background: var(--cream-2); }
.section.dark {
  background: var(--maroon-deep) linear-gradient(180deg, #4a181b, #3c1315);
  color: var(--sign-cream); position: relative;
}
/* faint board-and-batten ribs — echo of their maroon steel buildings */
.section.dark::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(90deg, rgba(236,228,212,.028) 0 3px, transparent 3px 46px);
}
.section.dark > * { position: relative; }
.section.dark a { color: #e6cfa6; }
.gold-rule { border: none; height: 6px; margin: 0; background:
  linear-gradient(var(--gold), var(--gold)) 0 0/100% 1px no-repeat,
  linear-gradient(var(--gold), var(--gold)) 0 100%/100% 1px no-repeat;
  opacity: .65;
}
.lede { font-size: 19px; max-width: 720px; }
.center { text-align: center; }
.muted { color: var(--muted); }
.dark .muted { color: #cbb9a4; }

/* scroll reveals — quiet */
.js .reveal { opacity: 0; transform: translateY(14px); }
.js .reveal.in { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- cards ---------- */
.grid { display: grid; gap: 22px; }
.grid.g2 { grid-template-columns: 1fr 1fr; }
.grid.g3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--card); border: 1px solid var(--gold-line); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 2px 8px rgba(96,35,37,.07);
  transition: transform .2s ease, box-shadow .2s ease;
  color: var(--ink);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(96,35,37,.14); }
.card .card-body { padding: 20px 22px 24px; }
.card h3 { font-size: 21px; margin-bottom: 8px; color: var(--maroon); }
.card img { aspect-ratio: 9/5; object-fit: cover; width: 100%; }
.tag {
  display: inline-block; background: var(--cream-2); border: 1px solid var(--gold-line);
  color: var(--maroon-deep); font: 700 13px/1 'PT Sans', sans-serif; letter-spacing: .05em;
  padding: 6px 10px; border-radius: 999px; margin-bottom: 10px;
}

/* ---------- rate board ---------- */
.rateboard {
  background: var(--maroon); background-image: linear-gradient(178deg, #6a2829, #521c1e);
  border: 3px solid var(--gold); border-radius: 14px;
  box-shadow: inset 0 0 0 2px var(--maroon), inset 0 0 0 4px rgba(236,228,212,.5), 0 6px 18px rgba(36,26,26,.25);
  color: var(--sign-cream); padding: 30px 30px 24px;
}
.rateboard h3 { color: var(--sign-cream); font-size: 22px; margin-bottom: 4px; }
.rateboard .sub { color: var(--gold); font-style: italic; font-size: 14.5px; margin-bottom: 14px; }
.rate-row {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 10px; padding: 9px 0;
  border-bottom: 1px dotted rgba(176,161,136,.45); font-size: 17px;
}
.rate-row:last-of-type { border-bottom: none; }
.rate-row .size { font-weight: 700; white-space: nowrap; }
.rate-row .dots { flex: 1; border-bottom: 2px dotted rgba(176,161,136,.55); transform: translateY(-4px); }
.rate-row .price { font-family: 'Young Serif', serif; font-size: 18px; white-space: nowrap; }
.rate-row .note { flex-basis: 100%; font-size: 13.5px; color: #d9c9ae; font-style: italic; margin-top: -4px; }
.rate-foot { font-size: 13.5px; font-style: italic; color: #d9c9ae; margin-top: 14px; }

/* ---------- gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery figure { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--gold-line); background: var(--card); margin: 0; }
.gallery img { aspect-ratio: 9/5; object-fit: cover; width: 100%; transition: transform .35s ease; }
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption { font-size: 13.5px; padding: 8px 12px; color: var(--muted); }

/* ---------- office status chip (quiet, utility) ---------- */
.status {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card); border: 1px solid var(--gold-line); border-radius: 999px;
  padding: 7px 14px; font-size: 14px; font-weight: 700; color: var(--ink);
}
.status .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold-dark); }
.status.open .dot { background: #4c7a3f; }
.status.closed .dot { background: var(--muted); }
.dark .status { background: rgba(236,228,212,.08); border-color: rgba(176,161,136,.4); color: var(--sign-cream); }

/* ---------- estimate ---------- */
.est-wrap { max-width: 860px; margin: 0 auto; }
.est-panel {
  background: var(--card); border: 1px solid var(--gold-line); border-radius: 14px;
  box-shadow: 0 4px 18px rgba(96,35,37,.08); padding: 28px; margin-top: 26px;
}
.field-label { display: block; font: 700 14px/1 'PT Sans', sans-serif; letter-spacing: .1em; text-transform: uppercase; color: var(--maroon); margin: 22px 0 10px; }
.type-pick { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.type-btn {
  position: relative; text-align: left; cursor: pointer; background: var(--cream);
  border: 2px solid var(--gold-line); border-radius: 10px; padding: 14px 16px;
  font: 700 17px/1.3 'PT Sans', sans-serif; color: var(--ink);
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
  min-height: 44px;
}
.type-btn small { display: block; font-weight: 400; font-style: italic; font-size: 13.5px; color: var(--muted); margin-top: 4px; }
.type-btn:hover { border-color: var(--gold-dark); }
.type-btn[aria-pressed="true"] {
  background: #fff; border-color: var(--maroon);
  box-shadow: inset 0 0 0 2px var(--maroon), 0 3px 10px rgba(96,35,37,.12);
}
.type-btn[aria-pressed="true"]::after {
  content: "✓"; position: absolute; top: 10px; right: 12px; color: var(--red); font-weight: 700;
}
.size-list { display: grid; gap: 8px; }
.size-row {
  display: flex; align-items: baseline; gap: 10px; width: 100%; text-align: left; cursor: pointer;
  background: var(--cream); border: 2px solid var(--gold-line); border-radius: 8px;
  padding: 11px 14px; font: 400 16.5px/1.4 'PT Sans', sans-serif; color: var(--ink);
  transition: border-color .15s ease, background .15s ease; min-height: 44px; flex-wrap: wrap;
}
.size-row:hover { border-color: var(--gold-dark); }
.size-row[aria-pressed="true"] { background: #fff; border-color: var(--maroon); box-shadow: inset 0 0 0 1px var(--maroon); }
.size-row .size { font-weight: 700; min-width: 108px; }
.size-row .dots { flex: 1; border-bottom: 2px dotted var(--gold-line); transform: translateY(-4px); min-width: 30px; }
.size-row .price { font-weight: 700; color: var(--maroon); }
.size-row .note { flex-basis: 100%; font-size: 13.5px; font-style: italic; color: var(--muted); }
.stepper { display: inline-flex; align-items: center; gap: 0; border: 2px solid var(--gold-line); border-radius: 8px; overflow: hidden; background: var(--cream); }
.stepper button {
  width: 48px; height: 48px; border: none; background: var(--cream-2); color: var(--maroon);
  font: 700 22px/1 'PT Sans', sans-serif; cursor: pointer;
}
.stepper button:hover { background: var(--gold-line); }
.stepper output { min-width: 110px; text-align: center; font: 700 18px/1 'PT Sans', sans-serif; }
.est-out {
  margin-top: 26px; background: var(--cream); border: 2px solid var(--gold-line);
  border-radius: 10px; padding: 20px 22px;
}
.est-out .line { display: flex; justify-content: space-between; gap: 14px; padding: 6px 0; font-size: 17px; flex-wrap: wrap; }
.est-out .line .math { font-weight: 400; }
.est-out .total-row { border-top: 2px solid var(--gold-dark); margin-top: 8px; padding-top: 12px; font-size: 19px; font-weight: 700; display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 8px; }
.est-out .total-row .amt { font-family: 'Young Serif', serif; font-size: 27px; color: var(--maroon); }
.est-fine { font-size: 13.5px; color: var(--muted); font-style: italic; margin-top: 12px; line-height: 1.55; }
.est-fine strong { color: var(--maroon-deep); }
.compare-note { margin-top: 12px; font-size: 14.5px; background: #fff; border: 1px dashed var(--gold-dark); border-radius: 8px; padding: 10px 14px; }
.est-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.est-empty { color: var(--muted); font-style: italic; }

/* ---------- forms ---------- */
form.contact label { display: block; font-weight: 700; margin: 16px 0 6px; }
form.contact input, form.contact textarea {
  width: 100%; padding: 12px 14px; border: 2px solid var(--gold-line); border-radius: 8px;
  font: 400 16px 'PT Sans', sans-serif; background: #fff; color: var(--ink);
}
form.contact input:focus, form.contact textarea:focus { outline: 2px solid var(--maroon); outline-offset: 1px; }

/* ---------- footer ---------- */
.site-foot { background: var(--maroon-deep); color: var(--sign-cream); padding: 54px 0 90px; border-top: 4px solid var(--gold); }
.site-foot a { color: #e6cfa6; }
.foot-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 34px; }
.site-foot h3 { font-size: 17px; color: var(--gold); margin-bottom: 12px; font-family: 'PT Sans', sans-serif; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.foot-links { list-style: none; }
.foot-links li { margin-bottom: 8px; }
.foot-base { margin-top: 38px; padding-top: 18px; border-top: 1px solid rgba(176,161,136,.35); font-size: 14.5px; color: #cbb9a4; }
address { font-style: normal; line-height: 1.8; }

/* sticky mobile call bar */
.callbar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; display: none;
  grid-template-columns: 1fr 1fr; box-shadow: 0 -3px 12px rgba(36,26,26,.25);
}
.callbar a { display: flex; align-items: center; justify-content: center; min-height: 52px; font: 700 15.5px 'PT Sans', sans-serif; text-decoration: none; }
.callbar .cb-tel { background: var(--maroon); color: var(--sign-cream); }
.callbar .cb-est { background: var(--red); color: #fff; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .grid.g3 { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .menu-btn { display: block; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%; background: #fff;
    border-bottom: 2px solid var(--gold-line); flex-direction: column; align-items: stretch;
    padding: 8px 14px 16px; display: none; box-shadow: 0 10px 20px rgba(36,26,26,.15);
  }
  .nav.open { display: flex; }
  .nav a { padding: 13px 10px; }
  .brand img { width: 150px; }
  .hero-in { padding: 84px 0 96px; }
  .grid.g2, .grid.g3 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .type-pick { grid-template-columns: 1fr; }
  .section { padding: 52px 0; }
  .callbar { display: grid; }
  .site-foot { padding-bottom: 120px; }
}
