
:root {
  --ink: #0b1f2a;
  --deep: #12394b;
  --ocean: #127b8e;
  --teal: #00a6a6;
  --sky: #67c4d4;
  --lime: #a7d35b;
  --gold: #f5c84c;
  --sun: #ffdc72;
  --coral: #f05a49;
  --orange: #f28c38;
  --paper: #fffaf0;
  --cream: #fff4d8;
  --mist: #eaf8fa;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(12, 44, 55, 0.18);
  --soft-shadow: 0 10px 30px rgba(12, 44, 55, 0.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1180px;
  --heading: "Arial Black", "Avenir Next", "Montserrat", Arial, sans-serif;
  --body: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

>!--background color of pages-->

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: #ffffff;
  line-height: 1.55;
}




img, svg { max-width: 100%; height: auto; }
a { color: var(--ocean); text-decoration-thickness: 0.12em; text-underline-offset: 0.18em; }
a:hover { color: var(--coral); }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: white;
  padding: 0.75rem 1rem;
  z-index: 99;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255, 250, 240, 0.88);
  border-bottom: 1px solid rgba(18, 57, 75, 0.12);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1.1rem;
}
.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  text-decoration: none;
  min-width: max-content;
}
.logo-mark {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 6px 12px rgba(18,57,75,0.18));
}
.brand-name {
  font-family: var(--heading);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.brand-tag {
  display: block;
  font-family: var(--body);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ocean);
}
.nav-toggle {
  display: none;
  border: 2px solid var(--deep);
  background: white;
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  font-weight: 900;
  color: var(--deep);
}
.site-nav { display: flex; align-items: center; gap: 0.25rem; }
.site-nav a {
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
}
.site-nav a:hover, .site-nav a.active {
  background: var(--deep);
  color: white;
}

main { min-height: 65vh; }
.section {
  padding: clamp(3.25rem, 7vw, 6rem) 1.15rem;
}
.section.tight { padding-block: clamp(2rem, 4vw, 3.4rem); }
.container {
  max-width: var(--max);
  margin: 0 auto;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--deep);
  background: rgba(255, 220, 114, 0.45);
  border: 1px solid rgba(245, 200, 76, 0.4);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.78rem;
}
.dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: radial-gradient(circle, var(--coral) 0 32%, var(--gold) 33% 60%, var(--teal) 61% 100%);
  display: inline-block;
}
h1, h2, h3 {
  font-family: var(--heading);
  line-height: 0.96;
  letter-spacing: -0.06em;
  margin: 0 0 1rem;
  color: var(--ink);
}
h1 { font-size: clamp(3.1rem, 10vw, 8rem); max-width: 11ch; }
h2 { font-size: clamp(2.15rem, 6vw, 5rem); max-width: 11ch; }
h3 { font-size: clamp(1.35rem, 3vw, 2rem); letter-spacing: -0.04em; }
p { margin: 0 0 1rem; }
.lede {
  font-size: clamp(1.13rem, 2.2vw, 1.55rem);
  font-weight: 650;
  color: #234858;
  max-width: 760px;
}
.text-wide { max-width: 900px; }
.small { font-size: 0.93rem; }
.muted { color: #54717b; }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 1.15rem clamp(3rem, 6vw, 5rem);
  min-height: 76vh;
  display: grid;
  align-items: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/hero-31street-waterfront.svg');
  background-size: cover;
  background-position: center top;
  opacity: 0.96;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,250,240,0.95) 0%, rgba(255,250,240,0.78) 42%, rgba(255,250,240,0.12) 72%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.hero-card {
  max-width: 700px;
  background: rgba(255, 250, 240, 0.76);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: clamp(1.45rem, 3vw, 2.4rem);
}
.hero h1 span {
  display: block;
  color: var(--ocean);
}
.hero-actions, .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.86rem 1.05rem;
  background: var(--deep);
  color: white;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(18, 57, 75, 0.18);
  border: 2px solid var(--deep);
}
.btn:hover { color: white; background: var(--coral); border-color: var(--coral); }
.btn.alt {
  color: var(--deep);
  background: rgba(255,255,255,0.86);
  border-color: var(--deep);
  box-shadow: none;
}
.btn.alt:hover { color: white; background: var(--deep); }
.btn.gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn.gold:hover { background: var(--orange); color: white; border-color: var(--orange); }

.pulse-rings {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: repeating-radial-gradient(circle, rgba(18,123,142,0.08) 0 4px, rgba(245,200,76,0.32) 5px 7px, rgba(0,166,166,0.12) 8px 12px);
  border: 2px solid var(--deep);
}
.pulse-rings::after {
  content: "";
  width: 0.58rem;
  height: 0.58rem;
  background: var(--coral);
  border-radius: 999px;
  box-shadow: 0 0 0 4px var(--gold);
}

.grid { display: grid; gap: 1rem; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: rgba(255,255,255,0.84);
  border: 1px solid rgba(18,57,75,0.12);
  border-radius: var(--radius-lg);
  padding: clamp(1.05rem, 2.4vw, 1.55rem);
  box-shadow: var(--soft-shadow);
}
.card.highlight {
  background: linear-gradient(135deg, rgba(255,220,114,0.6), rgba(103,196,212,0.28));
  border-color: rgba(18,57,75,0.18);
}
.icon-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: var(--mist);
  padding: 0.55rem;
  flex: 0 0 auto;
}

.band {
  background: linear-gradient(135deg, var(--deep), #0b2432);
  color: white;
  position: relative;
  overflow: hidden;
}
.band::before {
  content: "";
  position: absolute;
  width: 40rem;
  height: 40rem;
  border-radius: 999px;
  right: -15rem;
  top: -17rem;
  background: repeating-radial-gradient(circle, rgba(245,200,76,0.16) 0 8px, rgba(103,196,212,0.08) 9px 18px, transparent 19px 34px);
}
.band .container { position: relative; z-index: 1; }
.band h2, .band h3 { color: white; }
.band .lede, .band .muted { color: rgba(255,255,255,0.82); }
.band .card {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
  color: white;
}

.ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.2rem 0 0;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(18,57,75,0.12);
  padding: 0.45rem 0.75rem;
  font-weight: 850;
  color: var(--deep);
}

.timeline {
  display: grid;
  gap: 1rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding-left: 4.4rem;
  min-height: 4rem;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--heading);
  font-size: 1.45rem;
  box-shadow: var(--soft-shadow);
}
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 1.55rem;
  top: 3.2rem;
  bottom: -1.2rem;
  width: 3px;
  background: rgba(18,57,75,0.14);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.visual-panel {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(18,57,75,0.12);
  background: white;
}
.quote-panel {
  border-left: 0.65rem solid var(--gold);
  padding: 1.2rem 1.2rem 1.2rem 1.35rem;
  background: rgba(255,255,255,0.75);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: var(--soft-shadow);
}
.quote-panel p {
  font-size: clamp(1.25rem, 2.6vw, 1.8rem);
  font-weight: 950;
  line-height: 1.15;
  color: var(--deep);
}

.brand-board {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
}
.swatches {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}
.swatch {
  min-height: 118px;
  border-radius: 20px;
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-weight: 950;
  border: 1px solid rgba(18,57,75,0.14);
  box-shadow: var(--soft-shadow);
}
.swatch span { font-size: 0.76rem; opacity: 0.76; font-weight: 850; }
.swatch.ink { background: var(--ink); color: white; }
.swatch.deep { background: var(--deep); color: white; }
.swatch.ocean { background: var(--ocean); color: white; }
.swatch.teal { background: var(--teal); color: white; }
.swatch.sky { background: var(--sky); color: var(--ink); }
.swatch.gold { background: var(--gold); color: var(--ink); }
.swatch.coral { background: var(--coral); color: white; }
.swatch.cream { background: var(--cream); color: var(--ink); }

.mockups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.mockup {
  min-height: 220px;
  border-radius: 28px;
  background: white;
  border: 1px solid rgba(18,57,75,0.12);
  box-shadow: var(--soft-shadow);
  position: relative;
  overflow: hidden;
  padding: 1rem;
}
.mockup::before {
  content: "";
  position: absolute;
  inset: auto -2rem -4rem auto;
  width: 11rem;
  height: 11rem;
  border-radius: 999px;
  background: repeating-radial-gradient(circle, rgba(18,123,142,0.18) 0 7px, rgba(245,200,76,0.26) 8px 11px, transparent 12px 22px);
}
.mockup h3 { font-size: 1.25rem; position: relative; z-index: 1; }
.business-card {
  background: linear-gradient(135deg, var(--deep), var(--ocean));
  color: white;
}
.business-card h3, .business-card p { color: white; position: relative; z-index: 1; }
.letterhead {
  background: linear-gradient(180deg, var(--white) 0 18%, var(--cream) 18% 100%);
}
.envelope {
  background: linear-gradient(145deg, #fff 0 52%, var(--cream) 53% 100%);
}
.cup {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cup-shape {
  width: 138px;
  height: 145px;
  border-radius: 16px 16px 42px 42px;
  border: 7px solid var(--deep);
  background: var(--cream);
  position: relative;
  display: grid;
  place-items: center;
  font-family: var(--heading);
  color: var(--deep);
}
.cup-shape::after {
  content: "";
  position: absolute;
  right: -52px;
  top: 34px;
  width: 56px;
  height: 68px;
  border: 7px solid var(--deep);
  border-left: 0;
  border-radius: 0 28px 28px 0;
}
.shirt {
  display: grid;
  place-items: center;
  background: var(--deep);
}
.shirt-shape {
  width: 175px;
  height: 160px;
  clip-path: polygon(22% 0, 38% 0, 44% 11%, 56% 11%, 62% 0, 78% 0, 100% 21%, 84% 40%, 84% 100%, 16% 100%, 16% 40%, 0 21%);
  background: var(--sky);
  display: grid;
  place-items: center;
  font-family: var(--heading);
  font-size: 1.15rem;
  color: var(--ink);
}
.hat {
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, var(--mist), white);
}
.hat-shape {
  width: 190px;
  height: 90px;
  background: var(--deep);
  border-radius: 90px 90px 26px 26px;
  position: relative;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-family: var(--heading);
}
.hat-shape::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 22px;
  width: 210px;
  height: 24px;
  background: var(--deep);
  border-radius: 999px;
}
.sticker {
  display: grid;
  place-items: center;
  background: var(--cream);
}
.sticker-shape {
  width: 165px;
  height: 165px;
  border-radius: 999px;
  background: white;
  border: 7px solid var(--gold);
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--heading);
  color: var(--deep);
  box-shadow: inset 0 0 0 8px var(--sky);
}

.notice {
  background: rgba(255,220,114,0.32);
  border: 1px solid rgba(245,200,76,0.5);
  border-radius: var(--radius-lg);
  padding: 1rem;
}
.form-card {
  background: white;
  padding: clamp(1.2rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 1px solid rgba(18,57,75,0.12);
}
.field-grid { display: grid; gap: 0.9rem; }
label { font-weight: 900; display: block; margin-bottom: 0.35rem; }
input, textarea, select {
  width: 100%;
  border: 2px solid rgba(18,57,75,0.2);
  border-radius: 14px;
  padding: 0.8rem 0.9rem;
  font: inherit;
  background: #fff;
}
textarea { min-height: 150px; resize: vertical; }
input:focus, textarea:focus, select:focus {
  outline: 3px solid rgba(245,200,76,0.8);
  border-color: var(--deep);
}

.footer {
  background: var(--ink);
  color: white;
  padding: 2.6rem 1.15rem;
}
.footer a { color: var(--sun); }
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
}
.footer h2, .footer h3 { color: white; }
.footer .brand-link { color: white; }
.footer .brand-tag { color: var(--sun); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
  align-items: flex-start;
}
.footer-links a {
  color: white;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
}
.footer-links a:hover { background: white; color: var(--ink); }

@media (max-width: 920px) {
  .grid.three, .grid.four, .mockups, .brand-board, .split, .footer-inner { grid-template-columns: 1fr; }
  .grid.two { grid-template-columns: 1fr; }
  .swatches { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-links { justify-content: flex-start; }
}
@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    inset: 100% 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255,250,240,0.98);
    border: 1px solid rgba(18,57,75,0.12);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 0.55rem;
  }
  .site-nav.open { display: flex; }
  .site-nav a { border-radius: 16px; }
  .hero { min-height: 0; }
  .hero::after { background: linear-gradient(180deg, rgba(255,250,240,0.96) 0%, rgba(255,250,240,0.78) 58%, rgba(255,250,240,0.4) 100%); }
  .hero-card { background: rgba(255,250,240,0.88); }
  h1 { font-size: clamp(3rem, 17vw, 5rem); }
  h2 { font-size: clamp(2.1rem, 12vw, 3.8rem); }
}
@media print {
  .site-header, .footer, .hero-actions, .actions { display: none; }
  body { background: white; color: black; }
  .section { padding: 1rem 0; }
  .card, .form-card, .quote-panel { box-shadow: none; border: 1px solid #888; }
}

/* 31Street wide image banner */
.brand-banner {
  width: 100%;
  background: #ffffff;
  overflow: hidden;
  border-bottom: 1px solid rgba(18, 57, 75, 0.12);
}
.brand-banner img {
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 700px) {
  .brand-banner img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
  }
}


/* Full banner, no crop version */
.brand-banner {
  width: 100%;
  background: #ffffff;
  overflow: visible;
}

.brand-banner img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: center center;
}

/* ================================
   PULSE / 31Street Colour Theme
   About Page
================================ */

:root {
  --deep-navy: #071E3A;
  --ocean-blue: #006FBB;
  --bright-blue: #1EA7E1;
  --coastal-teal: #0096A6;
  --mountain-purple: #5B3FA6;
  --soft-purple: #8F73D8;
  --burnt-orange: #F05A28;
  --soft-white: #F7FAFC;
  --light-sky: #EAF7FF;
  --line-grey: #DDE7EF;
}

/* Whole page background */
body.pulse-theme {
  background: #ffffff;
  color: var(--deep-navy);
}

/* Header */
body.pulse-theme .site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--line-grey);
}

body.pulse-theme .brand-name {
  color: var(--deep-navy);
}

body.pulse-theme .brand-tag {
  color: var(--coastal-teal);
}

/* Navigation */
body.pulse-theme .site-nav a {
  color: var(--deep-navy);
}

body.pulse-theme .site-nav a:hover,
body.pulse-theme .site-nav a.active {
  color: var(--burnt-orange);
}

/* Banner */
body.pulse-theme .brand-banner {
  background: #ffffff;
}

/* Main sections */
body.pulse-theme .section {
  background: #ffffff;
}

body.pulse-theme .section.band {
  background: linear-gradient(135deg, var(--light-sky), #ffffff);
}

/* Headings */
body.pulse-theme h1,
body.pulse-theme h2,
body.pulse-theme h3 {
  color: var(--deep-navy);
}

/* Accent eyebrow */
body.pulse-theme .eyebrow {
  color: var(--coastal-teal);
}

body.pulse-theme .dot {
  background: var(--burnt-orange);
}

/* Cards */
body.pulse-theme .card {
  background: #ffffff;
  border: 1px solid var(--line-grey);
  border-top: 5px solid var(--coastal-teal);
  box-shadow: 0 12px 30px rgba(7, 30, 58, 0.08);
}

body.pulse-theme .card h3 {
  color: var(--mountain-purple);
}

/* Visual image panel */
body.pulse-theme .visual-panel {
  background: linear-gradient(135deg, var(--ocean-blue), var(--mountain-purple));
  border-radius: 22px;
  padding: 10px;
}

/* Footer */
body.pulse-theme .footer {
  background: var(--deep-navy);
  color: #ffffff;
}

body.pulse-theme .footer a {
  color: #ffffff;
}

body.pulse-theme .footer a:hover {
  color: var(--burnt-orange);
}

!-- This is a note to myself BELOW IS FOR THE NEWST BUTTONS-->


