/* ========================================
   BLUEWATER STORAGE CO.
   GLOBAL STYLES
========================================= */

:root {
  --navy: #0b1f33;
  --navy-dark: #071725;
  --navy-light: #143653;

  --blue: #1677b8;
  --blue-light: #39a5dc;

  --white: #ffffff;
  --off-white: #f5f7f8;

  --text: #233443;
  --muted: #667785;

  --line: rgba(11, 31, 51, 0.12);

  --container: 1240px;

  --font-main: Arial, Helvetica, sans-serif;
}


/* ========================================
   RESET
========================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--text);
  background: var(--white);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}


/* ========================================
   GLOBAL
========================================= */

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}


/* ========================================
   HEADER
========================================= */

.site-header {
  position: relative;
  z-index: 20;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-right: auto;
}

.brand-mark {
  width: 43px;
  height: 43px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--navy);
  color: var(--white);

  font-size: 1.2rem;
  font-weight: 800;
}

.brand-name {
  display: flex;
  flex-direction: column;

  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;

  color: var(--navy);
}

.brand-name small {
  margin-top: 2px;

  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;

  color: var(--blue);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--navy);
}

.main-nav a:hover {
  color: var(--blue);
}

.header-cta {
  padding: 14px 20px;

  background: var(--navy);
  color: var(--white);

  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.header-cta:hover {
  background: var(--blue);
  transform: translateY(-1px);
}


/* ========================================
   HERO
========================================= */

.hero {
  position: relative;
  min-height: 690px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      rgba(7, 23, 37, 1) 0%,
      rgba(7, 23, 37, 0.97) 32%,
      rgba(7, 23, 37, 0.72) 50%,
      rgba(7, 23, 37, 0.18) 72%,
      rgba(7, 23, 37, 0.02) 100%
),
    url("../assets/images/hero/hero-storage.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::after {
  content: "";

  position: absolute;
  top: -180px;
  right: -100px;

  width: 650px;
  height: 650px;

  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 780px;
}

.eyebrow {
  display: block;
  margin-bottom: 24px;

  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;

  color: var(--blue-light);
}

.hero h1 {
  margin: 0;

  font-size: clamp(4rem, 7vw, 6.7rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.055em;

  color: var(--white);
}

.hero h1 span {
  display: block;
  color: var(--blue-light);
}

.hero-description {
  max-width: 600px;
  margin: 30px 0 0;

  font-size: 1.05rem;
  line-height: 1.7;

  color: rgba(255, 255, 255, 0.72);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 36px;
}


/* ========================================
   BUTTONS
========================================= */

.button {
  min-height: 52px;
  padding: 0 24px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--blue);
  color: var(--white);
}

.button-primary:hover {
  background: var(--blue-light);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--white);
}

.button-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

/* ========================================
   UNIT SIZES
========================================= */

.units-section {
  padding: 110px 0;
  background: var(--off-white);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;

  margin-bottom: 54px;
}

.section-eyebrow {
  display: block;
  margin-bottom: 16px;

  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;

  color: var(--blue);
}

.section-heading h2 {
  margin: 0;

  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.055em;

  color: var(--navy);
}

.section-heading h2 span {
  display: block;
  color: var(--blue);
}

.section-heading > p {
  max-width: 480px;
  margin: 0;

  font-size: 1rem;
  line-height: 1.7;

  color: var(--muted);
}

.unit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.unit-card {
  position: relative;

  min-height: 390px;
  padding: 30px;

  display: flex;
  flex-direction: column;

  background: var(--white);
  border: 1px solid var(--line);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.unit-card:hover {
  transform: translateY(-4px);

  border-color: rgba(22, 119, 184, 0.32);

  box-shadow:
    0 18px 45px rgba(11, 31, 51, 0.08);
}

.featured-unit {
  border-color: rgba(22, 119, 184, 0.42);
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 0;

  padding: 9px 13px;

  background: var(--blue);
  color: var(--white);

  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.unit-card-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.unit-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.15em;

  color: var(--blue);
}

.unit-size {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.05em;

  color: var(--navy);
}

.unit-description {
  margin: 24px 0 0;

  font-size: 0.92rem;
  line-height: 1.65;

  color: var(--muted);
}

.unit-capacity {
  margin-top: 22px;
  padding-top: 18px;

  border-top: 1px solid var(--line);

  font-size: 0.78rem;
  line-height: 1.5;

  color: #70808d;
}

.unit-footer {
  margin-top: auto;
  padding-top: 28px;

  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}

.unit-footer > div {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px;
}

.price-label {
  width: 100%;

  margin-bottom: 4px;

  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.12em;

  color: var(--muted);
}

.unit-footer strong {
  font-size: 2rem;
  color: var(--navy);
}

.unit-footer span:last-child {
  font-size: 0.72rem;
  color: var(--muted);
}

.unit-link {
  white-space: nowrap;

  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;

  color: var(--blue);
}

.unit-link:hover {
  color: var(--navy);
}

/* ========================================
   SIZE FINDER
========================================= */

.size-finder {
  padding: 110px 0;

  background:
    linear-gradient(
      135deg,
      var(--navy-dark),
      var(--navy) 60%,
      var(--navy-light)
    );

  color: var(--white);
}

.size-finder-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}


/* INTRO */

.finder-eyebrow {
  display: block;
  margin-bottom: 18px;

  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;

  color: var(--blue-light);
}

.size-finder-intro h2 {
  margin: 0;

  font-size: clamp(3rem, 4.8vw, 5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.size-finder-intro h2 span {
  display: block;
  color: var(--blue-light);
}

.size-finder-intro p {
  max-width: 450px;
  margin: 26px 0 0;

  font-size: 0.96rem;
  line-height: 1.7;

  color: rgba(255, 255, 255, 0.65);
}


/* TOOL */

.finder-tool {
  padding: 36px;

  border: 1px solid rgba(255, 255, 255, 0.12);

  background: rgba(255, 255, 255, 0.035);
}

.finder-question {
  display: block;
  margin-bottom: 18px;

  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;

  color: rgba(255, 255, 255, 0.62);
}

.finder-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.finder-option {
  min-height: 56px;
  padding: 0 18px;

  border: 1px solid rgba(255, 255, 255, 0.16);

  background: rgba(255, 255, 255, 0.035);
  color: var(--white);

  font: inherit;
  font-size: 0.75rem;
  font-weight: 700;

  cursor: pointer;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.finder-option:hover {
  border-color: var(--blue-light);
  background: rgba(57, 165, 220, 0.08);
}

.finder-option.active {
  border-color: var(--blue-light);
  background: var(--blue);
}

.finder-result {
  margin-top: 26px;
  padding-top: 26px;

  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.result-label {
  display: block;

  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;

  color: var(--blue-light);
}

.finder-result strong {
  display: block;
  margin-top: 8px;

  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1;

  color: var(--white);
}

.result-type {
  display: block;
  margin-top: 8px;

  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;

  color: var(--blue-light);
}

.finder-result p {
  max-width: 500px;
  margin: 16px 0 0;

  font-size: 0.84rem;
  line-height: 1.6;

  color: rgba(255, 255, 255, 0.6);
}

.finder-result-link {
  display: inline-block;
  margin-top: 22px;

  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.09em;

  color: var(--white);
}

.finder-result-link:hover {
  color: var(--blue-light);
}



/* ========================================
   FACILITY FEATURES
========================================= */

.features-section {
  padding: 110px 0;
  background: var(--white);
}

.features-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 60px;
  align-items: center;
}
.features-image {
  min-height: 640px;
  overflow: hidden;
  background: var(--off-white);
}

.features-image img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: 35% center;
}

.features-content h2 {
  margin: 0;

  font-size: clamp(3rem, 4.3vw, 4.6rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.055em;

  color: var(--navy);
}

.features-content h2 span {
  display: block;
  color: var(--blue);
}

.features-intro {
  max-width: 600px;
  margin: 24px 0 0;

  font-size: 0.96rem;
  line-height: 1.7;

  color: var(--muted);
}

.feature-grid {
  margin-top: 44px;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-item {
  min-height: 180px;
  padding: 24px;

  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;

  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-number {
  padding-top: 3px;

  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;

  color: var(--blue);
}

.feature-item h3 {
  margin: 0;

  font-size: 1rem;
  color: var(--navy);
}

.feature-item p {
  margin: 10px 0 0;

  font-size: 0.8rem;
  line-height: 1.6;

  color: var(--muted);
}

/* ========================================
   LOCATIONS
========================================= */

.locations-section {
  padding: 110px 0;
  background: var(--off-white);
}

.locations-heading {
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  margin-bottom: 54px;
}

.locations-heading h2 {
  font-size: clamp(3rem, 4.6vw, 4.8rem);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.location-card {
  position: relative;

  min-height: 430px;
  padding: 30px;

  display: flex;
  flex-direction: column;

  background: var(--white);
  border: 1px solid var(--line);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.location-card:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 119, 184, 0.32);
  box-shadow: 0 18px 45px rgba(11, 31, 51, 0.08);
}

.featured-location {
  border-color: rgba(22, 119, 184, 0.42);
}

.location-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.location-number {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;

  color: var(--blue);
}

.location-status {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.12em;

  color: #3d8d60;
}

.location-card h3 {
  margin: 34px 0 0;

  font-size: 2.2rem;
  line-height: 1;

  color: var(--navy);
}

.location-area {
  display: block;
  margin-top: 9px;

  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;

  color: var(--blue);
}

.location-address {
  margin: 26px 0 0;

  font-size: 0.92rem;
  line-height: 1.65;

  color: var(--muted);
}

.location-details {
  margin-top: 30px;
  padding-top: 24px;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;

  border-top: 1px solid var(--line);
}

.location-details > div {
  display: grid;
  gap: 7px;
}

.location-details span {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.11em;

  color: var(--muted);
}

.location-details strong {
  font-size: 0.76rem;
  color: var(--navy);
}

.location-link {
  margin-top: auto;
  padding-top: 30px;

  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;

  color: var(--blue);
}

.location-link:hover {
  color: var(--navy);
}

/* ========================================
   FAQ
========================================= */

.faq-section {
  padding: 110px 0;
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
  align-items: start;
}

.faq-intro h2 {
  margin: 0;

  font-size: clamp(3rem, 4.8vw, 5rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.055em;

  color: var(--navy);
}

.faq-intro h2 span {
  display: block;
  color: var(--blue);
}

.faq-intro p {
  max-width: 420px;
  margin: 24px 0 0;

  font-size: 0.95rem;
  line-height: 1.7;

  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  padding: 25px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  border: 0;
  background: transparent;

  color: var(--navy);

  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-align: left;

  cursor: pointer;
}

.faq-icon {
  flex-shrink: 0;

  font-size: 1.5rem;
  font-weight: 300;

  color: var(--blue);

  transition: transform 0.25s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;

  transition: max-height 0.3s ease;
}

.faq-answer p {
  max-width: 650px;
  margin: 0;
  padding: 0 44px 24px 0;

  font-size: 0.88rem;
  line-height: 1.7;

  color: var(--muted);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}


/* ========================================
   FINAL CTA
========================================= */

.final-cta {
  padding: 50px 0;

  background:
    linear-gradient(
      135deg,
      var(--navy-dark),
      var(--navy) 60%,
      var(--navy-light)
    );

  color: var(--white);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr;
  gap: 60px;
  align-items: center;
}

.final-cta h2 {
  margin: 0;

  font-size: clamp(3.4rem, 5.8vw, 6rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.final-cta h2 span {
  display: block;
  color: var(--blue-light);
  white-space: nowrap;
}

.final-cta-action {
  display: grid;
  gap: 28px;
  justify-items: start;
}

.final-cta-action p {
  max-width: 430px;
  margin: 0;

  font-size: 0.95rem;
  line-height: 1.7;

  color: rgba(255, 255, 255, 0.67);
}


/* ========================================
   FOOTER
========================================= */

.site-footer {
  background: var(--navy-dark);
  color: var(--white);
}

.footer-main {
  padding: 70px 0;

  display: grid;
  grid-template-columns: 1.6fr repeat(3, 0.7fr);
  gap: 70px;
}

.footer-logo .brand-name {
  color: var(--white);
}

.footer-brand p {
  max-width: 320px;
  margin: 20px 0 0;

  font-size: 0.82rem;
  line-height: 1.7;

  color: rgba(255, 255, 255, 0.5);
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-column > span {
  margin-bottom: 6px;

  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.14em;

  color: var(--blue-light);
}

.footer-column a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.68);
}

.footer-column a:hover {
  color: var(--white);
}

.footer-column strong {
  font-size: 0.88rem;
}

.footer-column p {
  margin: -5px 0 0;

  font-size: 0.75rem;

  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  min-height: 68px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.38);
}
/* ========================================
   RESPONSIVE
========================================= */

@media (max-width: 850px) {

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 620px;
  }

    .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .unit-grid {
    grid-template-columns: 1fr;
  }

    .size-finder-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

    .features-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .features-image,
  .features-image img {
    min-height: 420px;
  }

    .locations-grid {
    grid-template-columns: 1fr;
  }

    .faq-layout,
  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 600px) {

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-inner {
    min-height: 76px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: calc(100vh - 76px);
  }

  .hero h1 {
    font-size: clamp(3.3rem, 15vw, 5rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

    .finder-tool {
    padding: 24px;
  }

  .finder-options {
    grid-template-columns: 1fr;
  }

    .feature-grid {
    grid-template-columns: 1fr;
  }

    .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    padding: 22px 0;
    flex-direction: column;
    align-items: flex-start;
  }

}