:root {
  --beige: #e6d7c4;
  --green: #354024;
  --header-height: 86px;
  --card: #f5ece0;
}

* { box-sizing: border-box; }

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--beige);
  color: var(--green);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 1.1rem;
  color: var(--green);
  background: transparent;
  z-index: 100;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: #f4e3c7;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}

.brand-text {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.35rem 0.8rem;
}

.menu-toggle {
  display: none;
  appearance: none;
  border: 1px solid rgba(53, 64, 36, 0.45);
  background: rgba(244, 227, 199, 0.92);
  border-radius: 10px;
  width: 42px;
  height: 38px;
  padding: 0.35rem 0.45rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--green);
  margin: 0.23rem 0;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 90;
}

.nav-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.nav-link {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.08em;
  position: relative;
  padding: 0.16rem 0.5rem 0.02rem;
  border-radius: 0;
  isolation: isolate;
  transition: color 0.2s ease;
}

.nav-link::before {
  content: "";
  position: absolute;
  inset: -6px 0 10px 0;
  background: transparent;
  transition: background-color 0.2s ease;
  z-index: -1;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 10px;
  height: 2px;
  background: transparent;
  transition: background-color 0.2s ease;
}

.nav-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
  position: relative;
  top: 0;
}

.nav-link-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  transform: translateY(-10px);
}

.nav-link.is-active {
  color: inherit;
}

.nav-link-icon.is-active {
  color: inherit;
}

.nav-link.is-active::after,
.nav-link-icon.is-active::after {
  background: var(--green);
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--beige);
}

.nav-link:hover::before,
.nav-link:focus-visible::before {
  background: var(--green);
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  background: var(--green);
}

.content-shell {
  flex: 1 0 auto;
  padding-top: var(--header-height);
}

.hero {
  min-height: calc(100dvh - var(--header-height));
  display: grid;
  align-items: end;
  padding: 2rem 1.2rem;
  background-image:
    linear-gradient(rgba(20, 20, 20, 0.2), rgba(20, 20, 20, 0.42)),
    var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero-content {
  width: min(720px, 100%);
  color: #f4e3c7;
}

.kicker {
  margin: 0;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero h1 {
  margin: 0.4rem 0 0.55rem;
  line-height: 1.1;
  font-size: clamp(1.75rem, 4.5vw, 3.1rem);
}

.hero-copy {
  margin: 0;
  width: min(560px, 100%);
}

.intro-block,
.text-block,
.quick-grid,
.gallery-grid,
.links-list,
.product-grid {
  width: min(980px, 92vw);
  margin: 0 auto;
}

.intro-block {
  text-align: center;
  padding: 2.2rem 0 1.8rem;
}

.intro-block p {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
}

.welcome-icon {
  margin: 0.75rem auto 0;
  display: block;
  width: 42px;
  height: 42px;
  opacity: 0.95;
}

.text-block {
  text-align: center;
  padding: 0.5rem 0 1.8rem;
}

.text-block h1,
.text-block h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
}

.text-block p {
  margin: 0.8rem auto 0;
  width: min(780px, 100%);
  font-size: 1.02rem;
}

.legal-block {
  text-align: left;
}

.legal-block p {
  width: min(860px, 100%);
}

.legal-placeholder {
  color: #b91c1c;
  font-weight: 700;
}

.cta {
  display: inline-block;
  margin-top: 1rem;
  border: 2px solid var(--green);
  border-radius: 999px;
  padding: 0.5rem 1.2rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.cta:hover {
  background: rgba(53, 64, 36, 0.1);
}

.quick-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 320px));
  justify-content: center;
  justify-items: center;
  padding: 0 0 2.5rem;
}

.quick-card {
  background: var(--card);
  border: 1px solid rgba(53, 64, 36, 0.25);
  border-radius: 14px;
  padding: 1rem;
  width: 100%;
  text-align: center;
  box-shadow:
    0 10px 22px rgba(53, 64, 36, 0.24),
    0 3px 8px rgba(53, 64, 36, 0.16);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.quick-card h3 {
  margin: 0;
}

.quick-card p {
  margin: 0.4rem 0 0;
  font-size: 0.95rem;
}

.quick-card:hover,
.quick-card:focus-visible {
  background: var(--green);
  color: var(--beige);
  border-color: var(--green);
}

.home-carousel {
  width: min(980px, 92vw);
  margin: 0 auto;
  padding: 0 0 2.6rem;
}

.home-carousel h2 {
  text-align: center;
  margin: 0 0 0.9rem;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
}

.carousel-empty {
  text-align: center;
  margin: 0;
}

.carousel {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: rgba(53, 64, 36, 0.1);
  border: 1px solid rgba(53, 64, 36, 0.24);
  box-shadow:
    0 10px 22px rgba(53, 64, 36, 0.24),
    0 3px 8px rgba(53, 64, 36, 0.16);
}

.slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide figcaption {
  position: absolute;
  left: 50%;
  bottom: 0.75rem;
  transform: translateX(-50%);
  background: rgba(230, 215, 196, 0.88);
  border-radius: 999px;
  padding: 0.1rem 0.55rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.slide-link {
  display: block;
  width: 100%;
  height: 100%;
}

.about-layout {
  width: min(1100px, 94vw);
  margin: 0 auto;
  padding: 1.25rem 0 2.4rem;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.about-copy-box {
  background: rgba(245, 236, 224, 0.92);
  border: 1px solid rgba(53, 64, 36, 0.25);
  border-radius: 16px;
  padding: clamp(1rem, 1.7vw, 1.7rem);
}

.about-copy-box h1 {
  margin: 0;
  font-size: clamp(1.6rem, 2.8vw, 2.35rem);
}

.about-subline {
  margin: 0.35rem 0 0.9rem;
  font-weight: 700;
}

.about-copy-box p {
  margin: 0.68rem 0 0;
}

.about-image-box {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(53, 64, 36, 0.24);
  background: rgba(216, 199, 173, 0.7);
  min-height: 420px;
}

.about-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.folder-bar {
  width: min(980px, 92vw);
  margin: 0 auto 1rem;
  display: grid;
  gap: 0.65rem;
}

.gallery-separator {
  width: min(980px, 92vw);
  margin: 0 auto 1.1rem;
  border: 0;
  border-top: 2px solid rgba(53, 64, 36, 0.34);
}

.folder-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
}

.folder-card {
  border: 1px solid rgba(53, 64, 36, 0.22);
  border-radius: 12px;
  padding: 0.5rem;
  background: rgba(221, 204, 177, 0.96);
  color: var(--green);
  text-align: center;
  display: block;
  box-shadow:
    0 10px 22px rgba(53, 64, 36, 0.24),
    0 3px 8px rgba(53, 64, 36, 0.16);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.folder-card:hover,
.folder-card:focus-visible {
  background: var(--green);
  border-color: var(--green);
  color: var(--beige);
  box-shadow:
    0 12px 26px rgba(53, 64, 36, 0.22),
    0 4px 10px rgba(53, 64, 36, 0.14);
  transform: translateY(-2px);
}

.folder-card:hover .folder-caption,
.folder-card:focus-visible .folder-caption {
  color: var(--beige);
}

.folder-card:hover .folder-frame,
.folder-card:focus-visible .folder-frame {
  background: rgba(230, 215, 196, 0.18);
  border-color: rgba(230, 215, 196, 0.38);
}

.folder-frame {
  position: relative;
  display: grid;
  place-items: center;
  height: 170px;
  border-radius: 10px;
  padding: 6px;
  overflow: hidden;
  background: rgba(230, 215, 196, 0.92);
  border: 1px solid rgba(53, 64, 36, 0.28);
  font-size: 3rem;
}

.folder-back-frame {
  font-size: 2.2rem;
}

.folder-frame-preview {
  padding: 0;
  background: transparent;
  border: 0;
}

.folder-frame-preview::after {
  content: none;
}

.folder-icon {
  width: 56px;
  height: 56px;
  display: block;
  opacity: 0.9;
}

.folder-preview-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 8px;
}

.folder-caption {
  display: block;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 0.4rem;
  color: var(--green);
  word-break: break-word;
}

.gallery-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  padding-bottom: 2.4rem;
}

.gallery-thumb {
  appearance: none;
  border: 1px solid rgba(53, 64, 36, 0.22);
  border-radius: 12px;
  padding: 0.5rem;
  background: var(--card);
  text-align: left;
  cursor: pointer;
  color: var(--green);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.gallery-thumb:hover,
.gallery-thumb:focus-visible {
  background: var(--green);
  border-color: var(--green);
  color: var(--beige);
  box-shadow:
    0 12px 26px rgba(53, 64, 36, 0.2),
    0 4px 10px rgba(53, 64, 36, 0.12);
  transform: translateY(-2px);
}

.thumb-frame {
  position: relative;
  display: block;
  height: 170px;
  border-radius: 10px;
  padding: 6px;
  overflow: hidden;
  background: rgba(230, 215, 196, 0.92);
  transition: background-color 0.2s ease;
}

.thumb-frame::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 8px;
  border: 1px solid rgba(53, 64, 36, 0.28);
  box-shadow:
    inset 8px 0 8px -8px rgba(53, 64, 36, 0.38),
    inset -8px 0 8px -8px rgba(53, 64, 36, 0.38),
    inset 0 8px 8px -8px rgba(53, 64, 36, 0.38),
    inset 0 -8px 8px -8px rgba(53, 64, 36, 0.38);
  pointer-events: none;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  transition: transform 0.25s ease;
}

.gallery-thumb:hover img,
.gallery-thumb:focus-visible img {
  transform: scale(1.035);
}

.gallery-thumb:hover .thumb-frame,
.gallery-thumb:focus-visible .thumb-frame {
  background: rgba(230, 215, 196, 0.18);
}

.thumb-caption {
  display: block;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 0.4rem;
  word-break: break-word;
}

.gallery-viewer {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.92);
  z-index: 220;
  display: grid;
  place-items: center;
}

.gallery-viewer[hidden] {
  display: none;
}

.viewer-image {
  max-width: min(96vw, 1800px);
  max-height: 86dvh;
  object-fit: contain;
}

.viewer-caption {
  position: absolute;
  left: 50%;
  bottom: 0.9rem;
  transform: translateX(-50%);
  color: #f3f4f6;
  margin: 0;
  text-align: center;
  max-width: 94vw;
  word-break: break-word;
}

.viewer-close,
.viewer-nav {
  appearance: none;
  border: 0;
  border-radius: 10px;
  background: rgba(17, 24, 39, 0.78);
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.viewer-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.55rem 0.75rem;
}

.viewer-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  font-size: 1.8rem;
  line-height: 1;
}

.viewer-prev {
  left: 1rem;
}

.viewer-next {
  right: 1rem;
}

.viewer-close:hover,
.viewer-close:focus-visible,
.viewer-nav:hover,
.viewer-nav:focus-visible {
  background: rgba(53, 64, 36, 0.96);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.24);
}

.viewer-close:hover,
.viewer-close:focus-visible {
  transform: translateY(-1px);
}

.viewer-nav:hover,
.viewer-nav:focus-visible {
  transform: translateY(-50%) scale(1.04);
}

.gallery-item {
  margin: 0;
  background: var(--card);
  border: 1px solid rgba(53, 64, 36, 0.22);
  border-radius: 12px;
  overflow: hidden;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.gallery-item:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--beige);
  box-shadow:
    0 12px 26px rgba(53, 64, 36, 0.2),
    0 4px 10px rgba(53, 64, 36, 0.12);
  transform: translateY(-2px);
}

.gallery-item img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.gallery-item figcaption {
  text-align: center;
  font-size: 0.84rem;
  padding: 0.3rem;
  font-weight: 700;
}

.links-list,
.product-grid {
  display: grid;
  gap: 0.75rem;
  padding-bottom: 2.4rem;
}

.link-item,
.product-card {
  background: var(--card);
  border: 1px solid rgba(53, 64, 36, 0.25);
  border-radius: 12px;
  padding: 0.9rem 1rem;
}

.product-card {
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-card:hover,
.product-card:focus-within {
  background: rgba(245, 236, 224, 0.98);
  border-color: rgba(53, 64, 36, 0.42);
  box-shadow:
    0 10px 22px rgba(53, 64, 36, 0.16),
    0 3px 8px rgba(53, 64, 36, 0.1);
  transform: translateY(-2px);
}

.link-item {
  display: block;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.link-item-profile {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.link-avatar {
  width: 54px;
  height: 54px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  flex: 0 0 54px;
  border: 1px solid rgba(53, 64, 36, 0.18);
  overflow: hidden;
}

.link-avatar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(53, 64, 36, 0.08);
}

.link-avatar-icon svg {
  display: block;
  width: 28px;
  height: 28px;
}

.link-copy {
  display: block;
  min-width: 0;
}

.link-copy > span,
.link-item:not(.link-item-profile) > span {
  display: block;
  font-weight: 700;
}

.link-item:hover,
.link-item:focus-visible {
  background: var(--green);
  color: var(--beige);
  border-color: var(--green);
}

.link-item small {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.84rem;
}

.product-card h3 {
  margin: 0;
}

.product-card p {
  margin: 0.45rem 0;
}

.product-card a {
  font-weight: 700;
  text-decoration: underline;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.65rem;
}

.product-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border: 1px solid rgba(53, 64, 36, 0.32);
  border-radius: 10px;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 250, 243, 0.72);
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-actions a:hover,
.product-actions a:focus-visible {
  background: var(--green);
  color: var(--beige);
  border-color: var(--green);
  box-shadow: 0 7px 16px rgba(53, 64, 36, 0.14);
  transform: translateY(-1px);
}

.contact-shell {
  width: min(980px, 92vw);
  margin: 0 auto;
  padding: 0 0 2.4rem;
}

.contact-form {
  width: min(720px, 100%);
  margin: 0 auto;
  background: var(--card);
  border: 1px solid rgba(53, 64, 36, 0.25);
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(53, 64, 36, 0.12);
  padding: 1.2rem;
  display: grid;
  gap: 0.9rem;
}

.contact-alert {
  border-radius: 12px;
  padding: 0.85rem 1rem;
}

.contact-alert p {
  margin: 0;
}

.contact-alert p + p {
  margin-top: 0.45rem;
}

.contact-alert-error {
  background: #fce8e6;
  border: 1px solid #d84a3a;
  color: #8a1f17;
}

.contact-alert-success {
  background: #e8f5e9;
  border: 1px solid #4d8b5b;
  color: #1f5a2d;
}

.contact-field {
  display: grid;
  gap: 0.35rem;
}

.contact-field label {
  font-weight: 700;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(53, 64, 36, 0.28);
  border-radius: 12px;
  background: #fffaf1;
  color: var(--green);
  padding: 0.85rem 0.95rem;
  font: inherit;
}

.contact-field textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  outline: 2px solid rgba(53, 64, 36, 0.24);
  outline-offset: 1px;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.94rem;
  line-height: 1.45;
}

.contact-consent input {
  margin: 0.15rem 0 0;
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.contact-consent span {
  display: block;
}

.contact-consent .required-tail {
  display: inline;
  white-space: nowrap;
}

.contact-consent .required-mark {
  display: inline;
}

.contact-consent a {
  text-decoration: underline;
}

.required-mark {
  color: #b42318;
  font-weight: 700;
}

.contact-submit {
  justify-self: stretch;
  width: 100%;
  border: 2px solid var(--green);
  background: transparent;
  color: var(--green);
  border-radius: 14px;
  padding: 0.75rem 1.15rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: var(--green);
  color: var(--beige);
}

.contact-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.contact-required-note {
  margin: -0.15rem 0 0;
  font-size: 0.88rem;
  color: rgba(53, 64, 36, 0.82);
}

.site-footer {
  border-top: 1px solid rgba(53, 64, 36, 0.3);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-size: 0.92rem;
}

.footer-claim {
  margin: 0;
}

.footer-separator {
  line-height: 1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem 1.3rem;
}

@media (max-width: 920px) {
  .site-header {
    height: var(--header-height);
    padding-top: 0.55rem;
    padding-bottom: 0.55rem;
    flex-direction: row;
    align-items: center;
  }

  .content-shell {
    padding-top: var(--header-height);
  }

  .hero {
    min-height: calc(88dvh - var(--header-height));
  }

  .menu-toggle {
    display: inline-block;
    margin-left: auto;
    z-index: 110;
  }

  .main-nav {
    position: fixed;
    right: 0;
    top: 0;
    height: 100dvh;
    width: min(78vw, 320px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 6rem 1.2rem 1.2rem;
    background: #f4e3c7;
    box-shadow: -10px 0 28px rgba(0, 0, 0, 0.16);
    transform: translateX(104%);
    transition: transform 0.25s ease;
    z-index: 100;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav .nav-link {
    font-size: 0.92rem;
  }

  .main-nav .nav-link::before {
    inset: 0 0 0 0;
  }

  .main-nav .nav-link::after {
    bottom: 0;
  }

  .main-nav .nav-link-icon {
    width: 2.7rem;
    height: 2.7rem;
  }

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

  .about-layout {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding-top: 1rem;
  }

  .about-image-box {
    min-height: 320px;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
  }

  .footer-separator {
    display: none;
  }
}
