/* ==========================================================================
   Storage on Broad — Brochure Site Stylesheet
   Plain CSS, no build step, system font stack only.
   ========================================================================== */

:root {
  --brand: #2097D4;
  --brand-dark: #157BAA;

  --text: #222831;
  --text-muted: #5A6472;
  --border: #E1E5EA;
  --bg: #FFFFFF;
  --bg-alt: #F5F8FA;

  --radius: 12px;
  --radius-sm: 8px;
  --max-width: 1100px;

  --font-system: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
}

/* ---- Reset & base ---- */

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-system);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3 {
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 700;
}

h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  margin-bottom: 0.75em;
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--brand-dark);
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 3rem 0;
}

.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;
}

/* ---- Focus states ---- */

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--brand-dark);
  outline-offset: 2px;
}

/* ---- Buttons ---- */

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background: var(--brand);
  color: #FFFFFF;
  border-color: var(--brand);
}

.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* ---- Header ---- */

.site-header {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
  gap: 1rem;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo {
  height: 48px;
  width: auto;
}

.header-cta {
  white-space: nowrap;
  font-size: 0.95rem;
  padding: 0.65rem 1.1rem;
}

/* ---- Hero ---- */

.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--text);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  background: linear-gradient(
    to bottom,
    rgba(20, 30, 40, 0.55),
    rgba(20, 30, 40, 0.65)
  );
}

.hero-content {
  padding-top: 4rem;
  padding-bottom: 4rem;
  color: #FFFFFF;
}

.hero-subline {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ---- Rates section ---- */

.rates-section {
  background: var(--bg-alt);
}

.rates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.rates-table-wrap h3 {
  margin-bottom: 0.75rem;
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 280px;
}

caption {
  text-align: left;
}

th, td {
  text-align: left;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

thead th {
  background: var(--bg-alt);
  font-weight: 700;
  color: var(--text);
}

tbody tr:last-child td {
  border-bottom: none;
}

.rates-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ---- How it works ---- */

.section-intro {
  max-width: 65ch;
  color: var(--text-muted);
}

.steps {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.step {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--brand);
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step p {
  margin-bottom: 0;
  color: var(--text-muted);
}

/* ---- Photos ---- */

.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.photo-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.photo-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.photo-card figcaption {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  background: var(--bg-alt);
}

/* ---- Hours ---- */

.hours-section {
  background: var(--bg-alt);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.card dl {
  margin: 0;
}

.card dt {
  font-weight: 600;
  color: var(--text);
  margin-top: 0.75rem;
}

.card dt:first-child {
  margin-top: 0;
}

.card dd {
  margin: 0.15rem 0 0;
  color: var(--text-muted);
}

/* ---- Location ---- */

.address {
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.map-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.map-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---- Footer ---- */

.site-footer {
  background: var(--text);
  color: #E4E7EA;
  padding: 2.5rem 0;
  margin-top: 1rem;
}

.footer-inner p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
}

.footer-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: #FFFFFF;
}

.site-footer a {
  color: #FFFFFF;
}

.footer-copyright {
  margin-top: 1rem;
  color: #A9B1B9;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

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

  .steps {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  .hours-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 420px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    gap: 0.5rem;
  }

  .logo {
    height: 36px;
  }

  .header-cta {
    font-size: 0.85rem;
    padding: 0.55rem 0.85rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero-ctas .btn {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 1rem;
  }

  th, td {
    padding: 0.6rem 0.6rem;
    font-size: 0.9rem;
  }
}
