/* ============================================================
   style.css — PRAGSANS MUSICAL INC.
   Dark rehearsal-hall suite with score-cream text on a warm
   stage-slate. Reed-copper bell accents, baton-sage details,
   case-olive bands and folio-slate panels. Every decorative
   band is a solid pre-blended hex — no rgba anywhere.
   ============================================================ */

:root {
  --stage-slate: #26262C;
  --score-cream: #F3EDDE;
  --reed-copper: #B06B3A;
  --baton-sage: #7E8B66;
  --folio-slate: #36363E;
  --case-olive: #4A4A3A;
  --sheet-bone: #EDE5CF;
  --wing-black: #1B1B20;
}

html {
  scroll-behavior: smooth;
  line-height: 1.5;
}

body {
  margin: 0;
  font-size: 16px;
  font-family: Georgia, "Times New Roman", "Noto Serif", serif;
  background-color: #26262C;
  color: #F3EDDE;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

* {
  box-sizing: border-box;
}

.page-wrap {
  width: 100%;
  overflow-x: hidden;
}

/* ------------------------------------------------
   STAND-RACK NAV
   A two-band header: a 20px cable-cove strip top with a
   coiled copper cable thread and three sage cable ties, then
   the stand-rack bar. Sticky at the top.
------------------------------------------------ */
.standrack {
  position: sticky;
  top: 0;
  z-index: 30;
  background-color: #36363E;
}

.standrack .cable-cove {
  height: 20px;
  background-color: #1B1B20;
  position: relative;
}

.standrack .cable-cove .copper-run {
  position: absolute;
  top: 7px;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #B06B3A;
  border-radius: 2px;
}

.standrack .cable-cove .cable-tie {
  position: absolute;
  top: 5px;
  width: 7px;
  height: 10px;
  background-color: #7E8B66;
  border-radius: 3px;
  z-index: 1;
}

.standrack .cable-cove .cable-tie.one { left: 18%; }
.standrack .cable-cove .cable-tie.two { left: 50%; }
.standrack .cable-cove .cable-tie.three { left: 82%; }

.standrack .cable-cove::after {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #8E542C;
}

/* Stand-rack bar itself ------------------------------------ */
.standrack .rack-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  background-color: #36363E;
  border-bottom: 5px solid #4A4A3A;
}

.rack-bar .rack-mark {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  gap: 14px;
}

.rack-bar .metronome-glyph {
  width: 46px;
  height: 54px;
  position: relative;
}

.rack-bar .metronome-body {
  position: absolute;
  bottom: 2px;
  left: 8px;
  width: 30px;
  height: 40px;
  background-color: #1B1B20;
  -webkit-clip-path: polygon(12% 0, 88% 0, 100% 100%, 0 100%);
  clip-path: polygon(12% 0, 88% 0, 100% 100%, 0 100%);
}

.rack-bar .metronome-pendulum {
  position: absolute;
  bottom: 8px;
  left: 21px;
  width: 5px;
  height: 38px;
  background-color: #7E8B66;
  border-radius: 3px;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  -webkit-transform: rotate(8deg);
  transform: rotate(8deg);
}

.rack-bar .metronome-beat {
  position: absolute;
  top: 9px;
  left: 15px;
  width: 7px;
  height: 7px;
  background-color: #B06B3A;
  border-radius: 50%;
}

.brand-lockup .brand-name {
  margin: 0;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.55rem;
  letter-spacing: 0.08em;
  color: #F3EDDE;
}

.brand-lockup .brand-sub {
  margin: 0;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #B06B3A;
}

/* Nav links on score tabs ---------------------------------- */
.rack-bar .nav-list {
  display: flex;
  align-items: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 18px;
}

.rack-bar .nav-list .tab {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rack-bar .nav-list a {
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: #F3EDDE;
  font-weight: 700;
  padding: 8px 14px 7px;
  background-color: #26262C;
  border-bottom: 3px solid #4A4A3A;
}

.rack-bar .nav-list a:hover {
  background-color: #1B1B20;
  border-color: #B06B3A;
}

.rack-bar .nav-list .note-dot {
  width: 6px;
  height: 6px;
  background-color: #B06B3A;
  border-radius: 2px 4px;
  margin-top: 4px;
}

.rack-bar .nav-list a.sets-chip {
  background-color: #4A4A3A;
  border-bottom: 3px solid #B06B3A;
  color: #EDE5CF;
}

.rack-bar .nav-list a.sets-chip:hover {
  background-color: #B06B3A;
  color: #1B1B20;
}

/* Toggle for mobile */
.nav-toggle {
  display: none;
  background-color: #B06B3A;
  color: #1B1B20;
  border: 0;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  padding: 10px 14px;
  cursor: pointer;
}

/*
   Noscript fallback: any element we hide until a reveal token
   stays visible by default when JS gives the html a no-js
   marker at the top of a script-less parse path.
*/
/*
   Scroll-reveal state machine. The html tag begins with a
   no-js class (kept when scripts are blocked) so every target
   stays fully visible without JavaScript. When main.js runs it
   drops no-js and the base rules below put the targets into an
   offscreen pre-reveal pose from which is-visible animates them.
*/
html.no-js .reveal,
html.no-js .hero-flow,
html.no-js .list-reveal,
html.no-js .stat-row-reveal,
html.no-js .stop-plate-reveal {
  opacity: 1;
  visibility: visible;
}

.reveal,
.hero-flow,
.list-reveal,
.stat-row-reveal,
.stop-plate-reveal {
  opacity: 0;
  visibility: hidden;
}

.reveal,
.hero-flow {
  -webkit-transform: translateY(16px);
  transform: translateY(16px);
}

.list-reveal,
.stat-row-reveal,
.stop-plate-reveal {
  -webkit-transform: translateY(12px);
  transform: translateY(12px);
}

.reveal,
.hero-flow,
.list-reveal,
.stat-row-reveal,
.stop-plate-reveal {
  -webkit-transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible,
.hero-flow.is-visible,
.list-reveal.is-visible,
.stat-row-reveal.is-visible,
.stop-plate-reveal.is-visible {
  -webkit-transform: none;
  transform: none;
  opacity: 1;
  visibility: visible;
}

html.no-js .reveal.is-visible,
html.no-js .hero-flow.is-visible,
html.no-js .list-reveal.is-visible,
html.no-js .stat-row-reveal.is-visible,
html.no-js .stop-plate-reveal.is-visible {
  -webkit-transform: none;
  transform: none;
}

/* ------------------------------------------------
   PODIUM-SET HERO
------------------------------------------------ */
.podiumset {
  background-color: #26262C;
}

.podiumset-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  margin: 64px 0 0;
  padding: 8px 18px;
  background-color: #1B1B20;
  color: #7E8B66;
  border-left: 5px solid #B06B3A;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.podiumset h1 {
  margin: 26px auto 0;
  max-width: 940px;
  font-size: 3.3rem;
  line-height: 1.1;
  color: #F3EDDE;
  letter-spacing: 0.01em;
}

.podiumset .hero-lede {
  margin: 22px auto 0;
  max-width: 760px;
  font-size: 1.18rem;
  line-height: 1.7;
  color: #EDE5CF;
}

/* Hall floor band drawn entirely in CSS -------------------- */
.hall-floor {
  height: 150px;
  margin-top: 44px;
  position: relative;
  background-color: #2A2A2F;
}

.hall-inner {
  max-width: 1160px;
  margin: 0 auto;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* conductor podium at the left */
.podium-figure {
  position: absolute;
  left: 3%;
  bottom: 18px;
  width: 120px;
  height: 66px;
  background-color: #36363E;
  border-top: 9px solid #1B1B20;
}

.podium-figure .podium-top {
  position: absolute;
  top: -12px;
  left: 8px;
  right: 8px;
  height: 7px;
  background-color: #4A4A3A;
}

.podium-figure .sage-baton {
  position: absolute;
  top: -8px;
  right: -24px;
  width: 56px;
  height: 4px;
  background-color: #7E8B66;
  -webkit-transform: rotate(-20deg);
  transform: rotate(-20deg);
  border-radius: 3px;
}

.podium-figure::after {
  content: "CONDUCTOR";
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  color: #7E8B66;
}

/* three folding music stands in a row */
.stands-row {
  position: absolute;
  left: 36%;
  bottom: 22px;
  display: flex;
  gap: 44px;
}

.music-stand {
  width: 30px;
  height: 70px;
  position: relative;
}

.music-stand .stand-leg-l {
  position: absolute;
  bottom: 0;
  left: 2px;
  width: 4px;
  height: 60px;
  background-color: #1B1B20;
}

.music-stand .stand-leg-r {
  position: absolute;
  bottom: 0;
  right: 2px;
  width: 4px;
  height: 56px;
  background-color: #1B1B20;
  -webkit-transform: rotate(12deg);
  transform: rotate(12deg);
  -webkit-transform-origin: bottom;
  transform-origin: bottom;
}

.music-stand .stand-rod {
  position: absolute;
  top: 2px;
  left: 13px;
  width: 4px;
  height: 48px;
  background-color: #7E8B66;
}

.music-stand .stand-desk {
  position: absolute;
  top: -14px;
  left: -16px;
  width: 62px;
  height: 26px;
  background-color: #EDE5CF;
  -webkit-transform: perspective(40px) rotateX(10deg);
  transform: perspective(40px) rotateX(10deg);
}

.music-stand .staff-lines {
  position: absolute;
  top: -14px;
  left: -13px;
  width: 52px;
  height: 21px;
  background-image: repeating-linear-gradient(
    to bottom,
    #3A3A40 0,
    #3A3A40 1px,
    transparent 1px,
    transparent 4px
  );
}

/* small copper nut atop desk */
.music-stand .desk-nut {
  position: absolute;
  top: -18px;
  left: -2px;
  width: 5px;
  height: 5px;
  background-color: #B06B3A;
  border-radius: 50%;
}

/* horn resting on its olive case at the right */
.horn-figure {
  position: absolute;
  right: 12%;
  bottom: 20px;
  width: 210px;
  height: 96px;
}

.horn-figure .olive-case {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 210px;
  height: 44px;
  background-color: #4A4A3A;
  border-top: 5px solid #1B1B20;
  border-radius: 6px;
}

.horn-figure .olive-case .latch-l,
.horn-figure .olive-case .latch-r {
  position: absolute;
  top: 12px;
  width: 18px;
  height: 8px;
  background-color: #B06B3A;
}

.horn-figure .olive-case .latch-l { left: 22px; }
.horn-figure .olive-case .latch-r { right: 22px; }
.horn-figure .olive-case .carry-handle {
  position: absolute;
  top: -14px;
  left: 50%;
  margin-left: -18px;
  width: 36px;
  height: 12px;
  border: 5px solid #1B1B20;
  border-radius: 18px 18px 0 0;
}

.horn-figure .horn-bell {
  position: absolute;
  bottom: 26px;
  right: 40px;
  width: 88px;
  height: 56px;
  background-color: #B06B3A;
  border-radius: 0 34px 20px 20px;
  -webkit-transform: rotate(-6deg);
  transform: rotate(-6deg);
}

.horn-figure .horn-tube {
  position: absolute;
  bottom: 42px;
  right: 118px;
  width: 44px;
  height: 14px;
  background-color: #C3875A;
  border-radius: 20px;
}

.horn-figure .horn-curl {
  position: absolute;
  bottom: 40px;
  right: 150px;
  width: 14px;
  height: 34px;
  border: 7px solid #C3875A;
  border-radius: 20px 20px 0 20px;
}

@media (max-width: 900px) {
  .horn-figure,
  .podium-figure,
  .stands-row {
    display: none;
  }
  .hall-inner {
    /* leave the empty floor visible */
  }
}

/* acoustic egg-crate wall panel snippet at far right */
.egg-wall {
  position: absolute;
  right: 1%;
  bottom: 60px;
  width: 72px;
  height: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 7px;
  background-color: #1B1B20;
}

.egg-wall span {
  background-color: #7E8B66;
  border-radius: 4px;
}

.kick-strip {
  background-color: #1B1B20;
}

.kick-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 22px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  justify-content: center;
}

.stat-top {
  display: flex;
  align-items: baseline;
  gap: 10px;
  border-right: 2px solid #B06B3A;
  padding-right: 30px;
}

.stat-top:last-child {
  border-right: 0;
}

.stat-figure {
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: #F3EDDE;
}

.stat-label {
  max-width: 180px;
  font-size: 0.82rem;
  color: #C9C1AE;
  letter-spacing: 0.01em;
}

@media (max-width: 720px) {
  .stat-top {
    border-right: 0;
    flex-basis: 100%;
    justify-content: center;
    padding-right: 0;
  }
}

/* ------------------------------------------------
   SECTION HEADINGS used by many blocks
------------------------------------------------ */
.section-band {
  max-width: 1160px;
  margin: 0 auto;
  padding: 72px 24px 0;
}

.section-label {
  display: inline-block;
  background-color: #1B1B20;
  color: #B06B3A;
  border-left: 7px solid #7E8B66;
  padding: 6px 14px;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.section-title {
  margin: 18px 0 0;
  font-size: 2.2rem;
  color: #F3EDDE;
}

.section-lede {
  max-width: 820px;
  margin: 14px 0 0;
  color: #D7D0BD;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ------------------------------------------------
   SET LEDGER — six score-tab rows (not cards)
------------------------------------------------ */
.set-ledger {
  background-color: #26262C;
}

.ledger-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ledger-list .set-row {
  display: flex;
  flex-wrap: wrap;
  background-color: #36363E;
  margin: 22px auto 0;
  max-width: 1160px;
  padding: 0;
}

.ledger-list .set-row:nth-child(even) {
  margin-left: 44px;
  position: relative;
}

.ledger-list .set-row:nth-child(even)::after {
  /* small sage cable tie at the corner */
  content: "";
  position: absolute;
  top: -7px;
  left: -7px;
  width: 14px;
  height: 14px;
  background-color: #7E8B66;
  border-radius: 3px;
}

.set-row .score-tab {
  padding: 20px 22px;
  background-color: #EDE5CF;
  color: #1B1B20;
  font-family: "Courier New", Courier, monospace;
  font-weight: 700;
  letter-spacing: 0.12em;
  border-bottom: 5px solid #B06B3A;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

.set-row:nth-child(even) .score-tab {
  border-bottom: 0;
  border-top: 5px solid #B06B3A;
}

.set-row .set-content {
  flex: 1 1 0;
  padding: 18px 24px 20px;
  min-width: 240px;
}

.set-content .program-chip {
  display: inline-block;
  background-color: #4A4A3A;
  color: #EDE5CF;
  border-bottom: 3px solid #7E8B66;
  border-radius: 4px;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-bottom: 10px;
}

.set-content h3 {
  margin: 6px 0 4px;
  font-size: 1.35rem;
  color: #F3EDDE;
}

.set-content .set-code {
  color: #B06B3A;
  font-family: "Courier New", Courier, monospace;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}

.set-content p {
  margin: 12px 0 8px;
  color: #D9D3C2;
  line-height: 1.66;
}

.set-content .details-link {
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  color: #FFDDBB;
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid #B06B3A;
}

.set-content .details-link:hover {
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.ledger-list .set-row .note-mark {
  color: #B06B3A;
  font-size: 12px;
  line-height: 1;
  display: inline-block;
  min-height: 18px;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
}

@media (max-width: 680px) {
  .set-row .score-tab {
    -webkit-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    padding: 8px 14px;
    min-width: 100%;
    border-bottom: 3px solid #B06B3A;
  }
  .set-row:nth-child(even) .score-tab {
    border-top: 0;
    border-bottom: 3px solid #B06B3A;
  }
  .ledger-list .set-row:nth-child(even) {
    margin-left: 0;
  }
}

/* ------------------------------------------------
   STATEMENT BAND — reed-copper 500+ takes
------------------------------------------------ */
.statement-row {
  background-color: #B06B3A;
  color: #1B1B20;
  margin-top: 70px;
  padding: 44px 24px;
}

.statement-inner {
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}

.statement-inner .big-figure {
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1;
  color: #EDE5CF;
}

.statement-inner .big-figure span {
  color: #EDE5CF;
}

.statement-inner .pledge-line {
  margin: 18px auto 0;
  max-width: 680px;
  font-size: 1.42rem;
  font-weight: 700;
  color: #1B1B20;
}

.statement-inner .pledge-sub {
  margin: 8px auto 0;
  max-width: 640px;
  font-size: 1.02rem;
  color: #5C4029;
}

/* ------------------------------------------------
   DOWNBEAT FLOW — take stations rail
------------------------------------------------ */
.downbeat-flow {
  background-color: #26262C;
  padding: 70px 0;
}

.downbeat-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 24px 26px;
  background-color: #2E2E33;
  border-top: 6px solid #4A4A3A;
  position: relative;
}

.flow-lane {
  position: relative;
  height: 180px;
}

.bell-marker {
  position: absolute;
  top: 76px;
  left: 8%;
  width: 54px;
  height: 34px;
  background-color: #B06B3A;
  border-radius: 30px 8px 8px 8px;
  -webkit-transform: rotate(14deg);
  transform: rotate(14deg);
  z-index: 2;
}

.bell-marker::after {
  content: "";
  position: absolute;
  top: -12px;
  left: 12px;
  width: 30px;
  height: 12px;
  background-color: #C3875A;
  border-radius: 12px 12px 0 0;
}

.bell-marker::before {
  content: "";
  position: absolute;
  top: -5px;
  right: -12px;
  width: 26px;
  height: 10px;
  background-color: #7E8B66;
}

.return-lane {
  position: absolute;
  bottom: 14px;
  left: 6%;
  right: 6%;
  border-top: 3px dashed #4A4A3A;
  color: #C9C1AE;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-align: center;
  text-transform: uppercase;
  padding-top: 8px;
}

.stations-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 14px;
}

.take-station {
  text-align: center;
}

.take-station .plate-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin: 0 auto 8px;
  background-color: #4A4A3A;
  border: 3px solid #B06B3A;
  border-radius: 50%;
  font-family: "Courier New", Courier, monospace;
  color: #EDE5CF;
  font-weight: 700;
}

.take-station h3 {
  margin: 4px 0 6px;
  font-size: 1.04rem;
  color: #F3EDDE;
  letter-spacing: 0.05em;
}

.take-station p {
  margin: 0;
  font-size: 0.9rem;
  color: #C4BCA9;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .stations-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .stations-row .take-station:last-child {
    grid-column: 1 / -1;
  }
}

/* ------------------------------------------------
   HALL-NOTE accent strip — baton-sage band
------------------------------------------------ */
.hall-note {
  background-color: #7E8B66;
  color: #1B1B20;
  padding: 40px 24px;
}

.hall-note-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hall-note .season-mark {
  display: inline-block;
  background-color: #1B1B20;
  color: #EDE5CF;
  padding: 5px 12px;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 10px;
}

.hall-note .note-line {
  margin: 0;
  font-size: 1.28rem;
  font-weight: 700;
  color: #1B1B20;
}

.hall-note .note-sub {
  margin: 6px 0 0;
  font-size: 1rem;
  color: #3D4633;
}

.hall-note .note-action {
  flex: 0 0 auto;
}

.hall-note .book-btn {
  display: inline-block;
  background-color: #1B1B20;
  color: #EDE5CF;
  text-decoration: none;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 13px 22px;
  border: 3px solid #1B1B20;
}

.hall-note .book-btn:hover {
  background-color: #26262C;
  color: #FFFFFF;
}

/* ------------------------------------------------
   CASE-ROW FOOTER
------------------------------------------------ */
.caserow {
  background-color: #1B1B20;
}

.case-rail {
  background-color: #4A4A3A;
  border-top: 6px solid #7E8B66;
  display: flex;
  justify-content: center;
  gap: 34px;
  padding: 30px 24px 42px;
}

.case-box {
  position: relative;
  width: 150px;
  height: 52px;
  background-color: #36363E;
  border-top: 5px solid #1B1B20;
  border-radius: 8px;
}

.case-box::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  margin-left: -16px;
  width: 32px;
  height: 12px;
  border: 5px solid #1B1B20;
  border-radius: 14px 14px 0 0;
}

.case-box .copper-clasp {
  position: absolute;
  top: 14px;
  width: 18px;
  height: 8px;
  background-color: #B06B3A;
}

.case-box .clasp-left { left: 20px; }
.case-box .clasp-right { right: 20px; }

.footer-cols {
  background-color: #36363E;
  padding: 44px 24px 30px;
}

.footer-cols-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  justify-content: space-between;
}

.footer-col {
  min-width: 200px;
}

.footer-col h4 {
  margin: 0 0 14px;
  color: #B06B3A;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.86rem;
  border-bottom: 2px solid #4A4A3A;
  padding-bottom: 8px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin: 8px 0;
  font-size: 0.96rem;
}

.footer-col a {
  color: #EDE5CF;
  text-decoration: none;
}

.footer-col a:hover {
  color: #FFFFFF;
  text-decoration: underline;
}

.footer-base-bell {
  background-color: #B06B3A;
  padding: 34px 24px;
}

.base-inner {
  max-width: 1160px;
  margin: 0 auto;
  text-align: center;
}

.base-inner .org-name {
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 1.2rem;
  color: #1B1B20;
}

.base-inner .org-addr {
  margin: 8px auto 0;
  color: #5C3E2A;
  font-size: 0.93rem;
  letter-spacing: 0.03em;
}

.base-inner .org-contact {
  margin: 12px auto 0;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  font-size: 1.02rem;
  color: #1B1B20;
}

.base-inner .org-contact a {
  color: #321F14;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid #7E8B66;
}

.copyright-band {
  background-color: #1B1B20;
  color: #C4BCA9;
  text-align: center;
  padding: 18px 24px 22px;
}

.copyright-band small {
  letter-spacing: 0.03em;
  font-size: 0.88rem;
}

/* ------------------------------------------------
   SERVICES PAGE SPECIFIC
------------------------------------------------ */
.service-intro,
.service-process {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.service-list-detail {
  list-style: none;
  margin: 30px 0 20px;
  padding: 0;
}

.service-block {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  background-color: #36363E;
  border-left: 8px solid #B06B3A;
  margin-top: 18px;
  padding: 22px 24px;
}

.service-block .service-no {
  font-family: "Courier New", Courier, monospace;
  color: #7E8B66;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.service-block h2 {
  margin: 0 0 8px;
  color: #F3EDDE;
  font-size: 1.6rem;
}

.service-block p {
  margin: 0 0 12px;
  color: #DBD4C2;
  line-height: 1.7;
  flex: 1 1 340px;
}

.process-steps {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.process-steps li {
  counter-increment: step;
  background-color: #2E2E33;
  padding: 20px 18px;
}

.process-steps li::before {
  content: "00" counter(step);
  display: block;
  font-family: "Courier New", Courier, monospace;
  color: #B06B3A;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.process-steps h3 {
  color: #EDE5CF;
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.process-steps p {
  color: #C0B9A7;
  font-size: 0.94rem;
  margin: 0;
  line-height: 1.5;
}

.cta-land-v2 {
  background-color: #B06B3A;
  margin: 70px 0 0;
}

.cta-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 50px 24px 46px;
  text-align: center;
}

.cta-inner h2 {
  margin: 0 0 12px;
  font-size: 2.2rem;
  color: #401F10;
}

.cta-inner p {
  margin: 0 auto 22px;
  max-width: 720px;
  color: #6B4527;
  font-size: 1.06rem;
}

.cta-inner .cta-btn {
  display: inline-block;
  background-color: #1B1B20;
  color: #F3EDDE;
  padding: 14px 26px;
  text-decoration: none;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.cta-inner .cta-btn:hover {
  background-color: #26262C;
  color: #FFFFFF;
}

/* ------------------------------------------------
   CONTACT PAGE SPECIFIC
------------------------------------------------ */
.contact-grid {
  max-width: 1160px;
  margin: 0 auto;
  padding: 50px 24px 10px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
}

.contact-info-block .info-card {
  background-color: #36363E;
  border-left: 7px solid #7E8B66;
  padding: 22px;
  margin-bottom: 18px;
}

.contact-info-block h3 {
  margin: 0 0 8px;
  color: #B06B3A;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  letter-spacing: 0.06em;
  font-size: 1.02rem;
  text-transform: uppercase;
}

.contact-info-block p {
  color: #EDE5CF;
  margin: 4px 0;
  line-height: 1.6;
}

.contact-info-block a {
  color: #FFDDBB;
}

.contact-hours {
  display: grid;
  gap: 4px;
}

.contact-hours span {
  display: flex;
  justify-content: space-between;
  color: #D9D3C2;
}

.contact-form-block form {
  background-color: #36363E;
  border: 2px solid #4A4A3A;
  padding: 26px;
}

.contact-form-block label {
  display: block;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  color: #EDE5CF;
  letter-spacing: 0.03em;
  font-size: 0.9rem;
  margin: 16px 0 6px;
}

.contact-form-block input,
.contact-form-block textarea {
  width: 100%;
  border: 2px solid #4A4A3A;
  background-color: #1B1B20;
  color: #F3EDDE;
  padding: 12px;
  font-family: Georgia, serif;
  font-size: 1rem;
}

.contact-form-block input:focus,
.contact-form-block textarea:focus {
  outline: none;
  border-color: #7E8B66;
}

.contact-form-block textarea {
  min-height: 150px;
}

.submit-send {
  margin-top: 22px;
  background-color: #B06B3A;
  border: 0;
  color: #1B1B20;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 13px 26px;
  cursor: pointer;
  font-size: 0.98rem;
  text-transform: uppercase;
}

.submit-send:hover {
  background-color: #C3875A;
}

.mailto-hint {
  margin-top: 12px;
  color: #C4BCA9;
  font-size: 0.86rem;
}

.faq-block {
  max-width: 1160px;
  margin: 0 auto;
  padding: 54px 24px 10px;
}

.faq-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.faq-item {
  background-color: #2E2E33;
  border-left: 6px solid #7E8B66;
  padding: 18px 22px;
  margin-top: 14px;
}

.faq-item h3 {
  color: #EDE5CF;
  font-size: 1.08rem;
  margin: 0 0 8px;
}

.faq-item p {
  margin: 0;
  color: #C9C1AE;
  line-height: 1.55;
}

/* generic utilities */
.container-pad {
  padding-left: 24px;
  padding-right: 24px;
}

.affordance-line {
  margin-top: 28px;
}

/* small utility so stacked structural bands breathe */
@media (min-width: 680px) {
  .contact-grid {
    grid-template-columns: 1fr 1.4fr;
  }
}

@media (max-width: 680px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
