:root {
  --hv-font-heading: "Bitter", "Georgia", serif;
  --hv-font-body: "Source Sans Pro", "Helvetica Neue", Arial, sans-serif;
  --hv-color-background: #f3efe5;
  --hv-color-surface: #fffaf1;
  --hv-color-surface-muted: #e8e1cf;
  --hv-color-text: #24120e;
  --hv-color-text-rgb: 36, 18, 14;
  --hv-color-text-muted: rgba(var(--hv-color-text-rgb), 0.72);
  --hv-color-dark: #2b1212;
  --hv-color-dark-alt: #3a1916;
  --hv-color-accent: #d0623c;
  --hv-color-accent-muted: #b65836;
  --hv-color-shadow-rgb: 24, 12, 9;
  --hv-color-accent-rgb: 208, 98, 60;
  --hv-color-deep-rgb: 12, 6, 4;
  --hv-color-white: #ffffff;
  --hv-color-white-rgb: 255, 255, 255;
  --hv-hero-aspect: 2000 / 700;
  --hv-title-aspect: 2000 / 280;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--hv-font-body);
  background: var(--hv-color-background);
  color: var(--hv-color-text);
  line-height: 1.6;
}

a {
  color: var(--hv-color-accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--hv-color-accent-muted);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--hv-font-heading);
  margin: 0 0 0.6em;
  color: var(--hv-color-text);
}

p {
  margin: 0 0 1.2em;
}

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

.site-header {
  position: relative;
  background-image: url("../images/header-static.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  color: var(--hv-color-text);
  padding-bottom: 0;
  aspect-ratio: var(--hv-title-aspect);
  display: flex;
  align-items: stretch;
}

.site-header__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 1.5rem;
}

.branding {
  display: flex;
  flex-direction: column;
}

.branding__title {
  font-size: clamp(1.5rem, 5vw, 4rem);
  font-family: var(--hv-font-heading);
  font-weight: bold;
  letter-spacing: -0.02em;
  color: var(--hv-color-text);
}

.branding__tagline {
  font-size: clamp(0.5rem, 2.2vw, 2rem);
  font-style: italic;
  color: var(--hv-color-accent-muted);
}

.primary-nav-container {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--hv-color-accent);
  box-shadow: 0 6px 18px rgba(var(--hv-color-shadow-rgb), 0.24);
  border-top: none;
  backdrop-filter: blur(5px);
  padding: 0;
}

.primary-nav-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--hv-color-dark), 1);
  opacity: 0.75;
  pointer-events: none;
}

.primary-nav-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(var(--hv-color-white-rgb), 0.4);
  opacity: 0.85;
}

.primary-nav {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
  padding: 0.2rem 1.5rem;
}

.primary-nav__menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin: 0;
  padding: 0;
}

.primary-nav__menu a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0;
  font-weight: 600;
  letter-spacing: 0.07em;
  font-size: 1rem;
  color: rgba(var(--hv-color-white-rgb), 0.82);
}

.primary-nav__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.25rem;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: rgba(var(--hv-color-white-rgb), 0.65);
}

.primary-nav__menu a:hover,
.primary-nav__menu a:focus {
  color: var(--hv-color-white);
  transform: translateY(-1px);
}

.primary-nav__menu a:hover::after,
.primary-nav__menu a:focus::after {
  transform: scaleX(1);
}

.primary-nav__menu .current-menu-item > a,
.primary-nav__menu .current_page_item > a {
  color: var(--hv-color-white);
}

.primary-nav__menu .current-menu-item > a::after,
.primary-nav__menu .current_page_item > a::after {
  transform: scaleX(1);
}

.hero-slider {
  position: relative;
  margin-top: -2rem;
  padding: 0 1.5rem 3rem;
}

.hero-slider--full {
  margin-top: -2rem;
  padding: 0 0 3rem;
}

.hero-slider--full .hero-slider__inner {
  border-radius: 0;
  box-shadow: none;
}

.hero-slider--full .hero-slider__image {
  border-radius: 0;
}

.hero-slider__inner {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(var(--hv-color-shadow-rgb), 0.25);
  aspect-ratio: var(--hv-hero-aspect);
}

.hero-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.hero-slider__slide.is-active {
  opacity: 1;
  position: relative;
}

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

.hero-slider__caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  padding: 0.35rem 0.8rem;
  background: rgba(var(--hv-color-text-rgb), 0.75);
  color: var(--hv-color-white);
  font-size: 0.9rem;
  border-radius: 18px;
}

.hero-full {
  position: relative;
  margin: 0;
  padding-bottom: clamp(3rem, 6vw, 4rem);
}

.hero-full__inner {
  position: relative;
  aspect-ratio: var(--hv-hero-aspect);
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.hero-full__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.hero-full__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.hero-full__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--hv-color-surface);
  display: block;
}

@supports not (aspect-ratio: 1 / 1) {
  .site-header {
    min-height: clamp(320px, 60vw, 520px);
    padding-bottom: 2.5rem;
  }

  .hero-slider__inner,
  .hero-slider--full .hero-slider__inner,
  .hero-full__inner {
    min-height: clamp(320px, 60vw, 520px);
  }

  .hero-slider__image,
  .hero-full__image {
    position: static;
    height: clamp(320px, 60vw, 520px);
  }
}

.hero-full__caption {
  position: absolute;
  top: calc(100% + 0.5rem);
  padding: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(var(--hv-color-white-rgb), 0.92);
  color: var(--hv-color-text);
  border-radius: 999px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 18px 40px rgba(var(--hv-color-shadow-rgb), 0.2);
  text-decoration: none;
  max-width: min(460px, 85%);
}

.hero-full__caption:hover,
.hero-full__caption:focus {
  background: rgba(var(--hv-color-white-rgb), 0.98);
}

.hero-full__label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--hv-color-accent-muted);
}

.hero-full__title {
  font-size: 1.15rem;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(var(--hv-color-white-rgb), 0.92);
  box-shadow: 0 12px 30px rgba(var(--hv-color-shadow-rgb), 0.2);
  cursor: pointer;
  font-size: 1.75rem;
  color: var(--hv-color-text);
  z-index: 2;
}

.hero-nav--prev {
  left: 24px;
}

.hero-nav--next {
  right: 24px;
}
.site-main {
  width: 100%;
}
.site-main__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 5vw, 2.5rem)
    clamp(3rem, 7vw, 5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}
@media (max-width: 768px) {
  .site-main__inner {
    gap: 2.5rem;
  }
}
.site-main__inner > * {
  width: 100%;
}
.site-main__inner .entry-content {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.5rem);
}
.site-main__inner .entry-content > * {
  margin-left: auto;
  margin-right: auto;
}
.site-main__inner .entry-content > *.alignwide,
.site-main__inner .entry-content > *.alignfull {
  margin-left: 0;
  margin-right: 0;
}
@media (max-width: 480px) {
  .site-main__inner .entry-content {
    gap: 1.75rem;
  }
}
.content-area {
  background: none;
  width: 100%;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.single-post .content-area,
.page .content-area {
  max-width: none;
  margin: 0;
  padding: 0;
}

body.page #primary,
body.single-post #primary {
  width: 100%;
  float: none;
}

body.page #secondary,
body.page .widget-area,
body.page .sidebar,
body.single-post #secondary,
body.single-post .widget-area,
body.single-post .sidebar {
  display: none !important;
}

.card {
  background: var(--hv-color-surface);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: inset 0 0 0 1px rgba(var(--hv-color-text-rgb), 0.06);
}

.card h2 {
  font-size: 1.35rem;
}

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

.card li + li {
  margin-top: 0.6rem;
}

.front-storage-section {
  margin-top: 1.5rem;
}

.front-storage-section h2 {
  font-size: 1.65rem;
  margin-bottom: 1.5rem;
}

.storage-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.storage-card {
  background: var(--hv-color-white);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 9px 24px rgba(var(--hv-color-shadow-rgb), 0.1);
}

.storage-card__media {
  padding-top: 62%;
  position: relative;
  overflow: hidden;
}

.storage-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.storage-card__body {
  padding: 1.5rem;
  flex: 1;
}

.storage-card--highlight {
  border: 2px solid var(--hv-color-accent);
  box-shadow: 0 18px 35px rgba(var(--hv-color-accent-rgb), 0.25);
}

.storage-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.storage-card__meta {
  font-size: 0.95rem;
  color: var(--hv-color-text-muted);
}

.site-footer {
  position: relative;
  background: linear-gradient(
    180deg,
    var(--hv-color-dark),
    var(--hv-color-dark-alt)
  );
  color: rgba(var(--hv-color-white-rgb), 0.88);
  padding: 3.5rem 1.5rem 3rem;
  margin-top: 4rem;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--hv-color-accent-rgb), 0.8);
  opacity: 0.75;
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(var(--hv-color-white-rgb), 0.4);
  opacity: 0.85;
}

.site-footer a {
  color: rgba(var(--hv-color-white-rgb), 0.88);
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  gap: 2.75rem;
}

@media (min-width: 960px) {
  .site-footer__inner {
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    align-items: start;
  }
}

.site-footer__brand {
  background: rgba(var(--hv-color-white-rgb), 0.06);
  border-radius: 20px;
  padding: 2.1rem;
  display: grid;
  gap: 1.05rem;
  box-shadow: 0 18px 45px rgba(var(--hv-color-deep-rgb), 0.35);
  position: relative;
  isolation: isolate;
  backdrop-filter: blur(6px);
}

@supports not (backdrop-filter: blur(6px)) {
  .site-footer__brand {
    background: rgba(var(--hv-color-white-rgb), 0.08);
  }
}

.site-footer__brand::before {
  content: "";
  position: absolute;
  border-radius: 16px;
  border: 1px solid rgba(var(--hv-color-white-rgb), 0.16);
  pointer-events: none;
}

.site-footer__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(var(--hv-color-white-rgb), 0.62);
}

.site-footer__title {
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  margin: 0;
  color: var(--hv-color-white);
}

.site-footer__tagline {
  margin: 0;
  color: rgba(var(--hv-color-white-rgb), 0.72);
  font-size: 1rem;
  line-height: 1.5;
}

.site-footer__cta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.75rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  background: rgba(var(--hv-color-white-rgb), 0.12);
  color: var(--hv-color-white);
  font-weight: 600;
  text-decoration: none;
}

.site-footer__cta:hover,
.site-footer__cta:focus {
  background: rgba(var(--hv-color-accent-rgb), 0.9);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(var(--hv-color-deep-rgb), 0.35);
  color: var(--hv-color-white);
}

.site-footer__cta-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.78;
}

.site-footer__cta-detail {
  font-size: 0.95rem;
}

.site-footer__grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.site-footer__grid section {
  background: rgba(var(--hv-color-white-rgb), 0.05);
  border-radius: 18px;
  padding: 1.8rem 1.65rem;
  box-shadow: inset 0 0 0 1px rgba(var(--hv-color-white-rgb), 0.08);
  backdrop-filter: blur(4px);
}

@supports not (backdrop-filter: blur(4px)) {
  .site-footer__grid section {
    background: rgba(var(--hv-color-white-rgb), 0.08);
  }
}

.site-footer__heading {
  font-size: 1.05rem;
  margin: 0 0 1.1rem;
  color: var(--hv-color-white);
  letter-spacing: 0.02em;
}

.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.site-footer__list li {
  position: relative;
  padding-left: 1.1rem;
}

.site-footer__list li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(var(--hv-color-white-rgb), 0.42);
  box-shadow: 0 0 0 2px rgba(var(--hv-color-white-rgb), 0.12);
}

.site-footer__list a {
  color: rgba(var(--hv-color-white-rgb), 0.9);
}

.site-footer__list a:hover,
.site-footer__list a:focus {
  color: var(--hv-color-white);
  transform: translateX(2px);
}

.footer-menu {
  display: grid;
  gap: 0.6rem;
}

.footer-menu li {
  margin: 0;
}

.site-footer__contacts {
  gap: 1rem;
}

.site-footer__contacts li {
  padding-left: 0;
}

.site-footer__contacts li::before {
  display: none;
}

.site-footer__contacts strong {
  display: block;
  font-size: 0.98rem;
  color: var(--hv-color-white);
}

.site-footer__contacts a {
  color: rgba(var(--hv-color-white-rgb), 0.85);
  font-weight: 600;
}

.site-footer__contacts a:hover,
.site-footer__contacts a:focus {
  color: var(--hv-color-white);
}

.copyright {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 2.75rem;
  font-size: 0.85rem;
  color: rgba(var(--hv-color-white-rgb), 0.55);
}

@media (max-width: 768px) {
  .primary-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem;
    padding: 0.1rem 1.2rem;
  }

  .primary-nav__menu {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.75rem 1.25rem;
  }

  .primary-nav__menu a {
    padding: 0.5rem 0;
    font-size: 0.74rem;
  }

  .primary-nav__menu a::after {
    bottom: 0.18rem;
  }

  .branding__tagline {
    display: none;
  }
  .hero-nav {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }

  .site-footer__brand {
    padding: 1.8rem;
  }

  .site-footer__grid section {
    padding: 1.55rem;
  }

  .site-footer__cta {
    justify-content: center;
  }

  .hero-nav--prev {
    left: 16px;
  }

  .hero-nav--next {
    right: 16px;
  }

  .hero-full__caption {
    top: calc(100% + 0.5rem);
    padding: 0.5rem;
  }
}
