:root {
  --color-dark: #7f1d1d;
  --color-text: #374151;
  --color-muted: #6b7280;
  --color-border: #eadede;
  --color-bg: #ffffff;
  --color-soft: #fff7f7;
  --color-primary: #991b1b;
  --color-primary-dark: #450a0a;
  --color-accent: #dc2626;
  --color-accent-soft: #fee2e2;
  --radius: 18px;
  --shadow: 0 20px 50px rgba(127, 29, 29, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

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

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

.container {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}

.topbar {
  background: var(--color-primary);
  color: #fff;
  font-size: 14px;
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--color-text);
}

.logo__mark {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  background: var(--color-primary);
  color: #fff;
  border-radius: 12px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav > a,
.nav-dropdown > a {
  padding: 10px 12px;
  font-weight: 600;
  font-size: 15px;
  color: var(--color-text);
  border-radius: 999px;
}

.main-nav a:hover,
.main-nav a.is-active {
  background: var(--color-soft);
  color: var(--color-primary);
}

.nav-cta {
  background: var(--color-accent) !important;
  color: #fff !important;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 310px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.18s ease;
}

.nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--color-dark);
}

.hero {
  padding: 84px 0;
  background: linear-gradient(135deg, #fff7f7 0%, #ffffff 48%, #fee2e2 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: #991b1b;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 16px;
  color: var(--color-text);
  line-height: 1.15;
}

h1 {
  max-width: 760px;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 22px;
}

p {
  margin: 0 0 16px;
}

.hero__content p,
.page-hero p,
.section-heading p {
  max-width: 720px;
  font-size: 18px;
  color: var(--color-muted);
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  color: var(--color-dark);
  border-color: var(--color-border);
}

.hero__card,
.quote-box,
.contact-card,
.contact-form,
.service-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero__card {
  padding: 32px;
}

.hero__card strong,
.hero__card span,
.hero__card a {
  display: block;
}

.hero__card strong {
  color: var(--color-dark);
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero__card a {
  margin-top: 18px;
  color: #991b1b;
  font-weight: 800;
  font-size: 22px;
}

.section {
  padding: 76px 0;
}

.section-muted {
  background: var(--color-soft);
}

.section-heading {
  margin-bottom: 34px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  padding: 28px;
}

.service-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: var(--color-soft);
  border-radius: 16px;
  font-size: 28px;
}

.service-card p {
  color: var(--color-muted);
}

.service-card a:not(.btn) {
  font-weight: 800;
  color: #991b1b;
}

.service-card--large {
  min-height: 300px;
}

.page-hero {
  padding: 72px 0;
  background: var(--color-soft);
  border-bottom: 1px solid var(--color-border);
}

.split {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.content-narrow {
  max-width: 820px;
}

.content-narrow h2 {
  margin-top: 28px;
  font-size: 30px;
}

.check-list,
.quote-box {
  padding: 28px;
}

.check-list p {
  margin-bottom: 12px;
  font-weight: 700;
  color: var(--color-dark);
}

.simple-list {
  padding-left: 20px;
}

.simple-list li {
  margin-bottom: 10px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  margin: 0;
}

.gallery-placeholder {
  min-height: 220px;
  display: grid;
  place-items: center;
  background: var(--color-soft);
  border: 1px dashed #cbd5e1;
  border-radius: 18px;
  font-weight: 800;
  color: var(--color-muted);
}

.gallery-item figcaption {
  margin-top: 10px;
  font-size: 14px;
  color: var(--color-muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.contact-card,
.contact-form {
  padding: 28px;
}

.form-group {
  margin-bottom: 18px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
  color: var(--color-dark);
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(220, 38, 38, 0.38);
  border-color: transparent;
}

.form-note {
  margin-top: 12px;
  font-size: 14px;
  color: var(--color-muted);
}

.site-footer {
  padding: 56px 0 24px;
  background: var(--color-primary);
  color: #d1d5db;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.9fr;
  gap: 32px;
}

.footer-grid a {
  display: block;
  margin-bottom: 8px;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 900px) {
  .topbar__inner {
    justify-content: center;
    flex-wrap: wrap;
    padding: 8px 0;
  }

  .nav-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-dropdown__menu {
    position: static;
    min-width: auto;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 12px;
  }

  .hero__grid,
  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .section,
  .page-hero {
    padding: 52px 0;
  }
}

/* ================================
   Homepage polish - full width hero
================================ */
.logo__img {
  width: auto;
  max-width: 210px;
  max-height: 66px;
  object-fit: contain;
}

.site-header {
  background: rgba(255, 255, 255, 0.98);
}

.home-hero {
  position: relative;
  min-height: clamp(520px, 72vh, 760px);
  overflow: hidden;
  background: #991b1b;
}

.home-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease,
    transform 1.6s ease;
}

.home-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(69, 10, 10, 0.86) 0%,
    rgba(127, 29, 29, 0.62) 46%,
    rgba(127, 29, 29, 0.2) 100%
  );
}

.home-hero__inner {
  position: relative;
  z-index: 2;
  min-height: clamp(520px, 72vh, 760px);
  display: flex;
  align-items: center;
}

.home-hero__content {
  max-width: 760px;
  color: #fff;
  padding: 48px 0;
}

.home-hero__content h1 {
  color: #fff;
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

.home-hero__content p {
  max-width: 720px;
  font-size: clamp(18px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.88);
}

.eyebrow--light {
  color: #fecaca;
}

.btn-primary--gold {
  background: var(--color-accent);
  color: #fff;
}

.btn-secondary--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(8px);
}

.home-hero__arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(69, 10, 10, 0.46);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.home-hero__arrow--prev {
  left: 24px;
}

.home-hero__arrow--next {
  right: 24px;
}

.home-hero__dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.home-hero__dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.home-hero__dot.is-active {
  width: 34px;
  background: var(--color-accent);
}

.home-intro__grid,
.home-map__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.home-intro p,
.home-trust p,
.home-map p {
  font-size: 18px;
  color: var(--color-muted);
}

.section-heading--center {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.image-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.image-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-soft);
}

.image-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.image-card:hover .image-card__media img {
  transform: scale(1.06);
}

.image-card__body {
  padding: 24px;
}

.image-card__body p {
  color: var(--color-muted);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #991b1b;
  font-weight: 800;
}

.text-link::after {
  content: "→";
}

.check-list--strong {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-preview {
  position: relative;
  min-height: 340px;
  display: block;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.map-preview__image {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.map-preview__card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(234, 222, 222, 0.9);
  box-shadow: 0 16px 42px rgba(69, 10, 10, 0.16);
  backdrop-filter: blur(10px);
}

.map-preview__pin {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-size: 28px;
}

.map-preview strong,
.map-preview span {
  display: block;
}

.map-preview strong {
  color: var(--color-dark);
  font-size: 22px;
  line-height: 1.2;
}

.map-preview span {
  color: var(--color-muted);
  font-size: 15px;
}

@media (max-width: 900px) {
  .logo__img {
    max-width: 170px;
    max-height: 56px;
  }

  .home-hero,
  .home-hero__inner {
    min-height: 620px;
  }

  .home-hero__arrow {
    display: none;
  }

  .home-intro__grid,
  .home-map__grid,
  .image-cards-grid {
    grid-template-columns: 1fr;
  }

  .home-hero__overlay {
    background: linear-gradient(
      90deg,
      rgba(69, 10, 10, 0.9) 0%,
      rgba(127, 29, 29, 0.76) 100%
    );
  }
}
/* ================================
   About page polish
================================ */

.page-hero--image {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 0;
  background-size: cover;
  background-position: center;
}

.page-hero--about {
  background-image: url("../images/about/about-hero.jpg");
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(69, 10, 10, 0.88) 0%,
    rgba(127, 29, 29, 0.68) 48%,
    rgba(127, 29, 29, 0.24) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 72px 0;
}

.page-hero--image h1 {
  color: #fff;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.page-hero--image p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.88);
}

.about-page {
  background: #fff;
}

.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
  margin-bottom: 72px;
}

.about-split:last-child {
  margin-bottom: 0;
}

.about-split__content h2 {
  max-width: 640px;
}

.about-split__content p {
  font-size: 18px;
  color: var(--color-muted);
}

.about-split__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--color-soft);
}

.about-split__media::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: calc(var(--radius) - 6px);
  pointer-events: none;
}

.about-split__media img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.about-split__media:hover img {
  transform: scale(1.04);
}

.about-split--image-left .about-split__media {
  order: 1;
}

.about-split--image-left .about-split__content {
  order: 2;
}

.about-split--image-right .about-split__content {
  order: 1;
}

.about-split--image-right .about-split__media {
  order: 2;
}

@media (max-width: 900px) {
  .page-hero--image {
    min-height: 420px;
  }

  .page-hero__content {
    padding: 54px 0;
  }

  .page-hero__overlay {
    background: linear-gradient(
      90deg,
      rgba(69, 10, 10, 0.92) 0%,
      rgba(127, 29, 29, 0.76) 100%
    );
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 56px;
  }

  .about-split--image-left .about-split__media,
  .about-split--image-right .about-split__media {
    order: 1;
  }

  .about-split--image-left .about-split__content,
  .about-split--image-right .about-split__content {
    order: 2;
  }

  .about-split__media img {
    height: 300px;
  }
}
/* ================================
   Service detail pages
================================ */

.service-hero {
  background-size: cover;
  background-position: center;
}

.service-detail-page {
  background: #fff;
}

.service-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
  margin-bottom: 76px;
}

.service-split:last-child {
  margin-bottom: 0;
}

.service-split__content h2 {
  max-width: 680px;
}

.service-split__content p {
  font-size: 18px;
  color: var(--color-muted);
}

.service-split__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-soft);
  box-shadow: var(--shadow);
}

.service-split__media::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: calc(var(--radius) - 6px);
  pointer-events: none;
}

.service-split__media img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-split__media:hover img {
  transform: scale(1.04);
}

.service-split--no-image {
  max-width: 920px;
  display: block;
  padding: 34px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-soft);
  box-shadow: var(--shadow);
}

.service-split--no-image .service-split__content p {
  max-width: 820px;
}

.service-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.service-bottom-grid p {
  font-size: 18px;
  color: var(--color-muted);
}

.service-bottom-grid__btn {
  margin-top: 18px;
}

@media (max-width: 900px) {
  .service-split,
  .service-bottom-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-split__media {
    order: 1;
  }

  .service-split__content {
    order: 2;
  }

  .service-split__media img {
    height: 300px;
  }

  .service-split--no-image {
    padding: 24px;
  }
}
/* ================================
   Gallery page polish
================================ */

.page-hero--gallery {
  background-image: url("../images/gallery/gallery-hero.jpg");
}

.gallery-page {
  background: #fff;
}

.gallery-grid--four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-soft);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
}

.gallery-card__link {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.gallery-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.92);
}

@media (max-width: 1100px) {
  .gallery-grid--four {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .gallery-grid--four {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (max-width: 460px) {
  .gallery-grid--four {
    grid-template-columns: 1fr;
  }
}
/* ================================
   Gallery lightbox / zoom
================================ */

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(20, 5, 5, 0.88);
  backdrop-filter: blur(8px);
}

.gallery-lightbox.is-open {
  display: flex;
}

.gallery-lightbox__content {
  position: relative;
  max-width: min(1180px, 92vw);
  max-height: 86vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox__image {
  max-width: 100%;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  background: #fff;
}

.gallery-lightbox__close,
.gallery-lightbox__nav {
  position: absolute;
  z-index: 1000;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(127, 29, 29, 0.72);
  color: #fff;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__nav:hover {
  background: var(--color-accent);
  transform: scale(1.04);
}

.gallery-lightbox__close {
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  font-size: 20px;
  line-height: 1;
}

.gallery-lightbox__nav {
  top: 50%;
  width: 52px;
  height: 52px;
  font-size: 20px;
  line-height: 1;
  transform: translateY(-50%);
}

.gallery-lightbox__nav:hover {
  transform: translateY(-50%) scale(1.04);
}

.gallery-lightbox__nav--prev {
  left: 28px;
}

.gallery-lightbox__nav--next {
  right: 28px;
}

body.lightbox-open {
  overflow: hidden;
}

@media (max-width: 700px) {
  .gallery-lightbox {
    padding: 18px;
  }

  .gallery-lightbox__close {
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
  }

  .gallery-lightbox__nav {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .gallery-lightbox__nav--prev {
    left: 12px;
  }

  .gallery-lightbox__nav--next {
    right: 12px;
  }

  .gallery-lightbox__image {
    max-height: 78vh;
  }
}
/* ================================
   Storage page polish
================================ */

.page-hero--storage {
  background-image: url("../images/storage/apothikefseis-hero.jpg");
}

.storage-page {
  background: #fff;
}

.storage-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
  margin-bottom: 76px;
}

.storage-split:last-child {
  margin-bottom: 0;
}

.storage-split__content h2 {
  max-width: 680px;
}

.storage-split__content p {
  font-size: 18px;
  color: var(--color-muted);
}

.storage-split__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-soft);
  box-shadow: var(--shadow);
}

.storage-split__media::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: calc(var(--radius) - 6px);
  pointer-events: none;
}

.storage-split__media img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.storage-split__media:hover img {
  transform: scale(1.04);
}

.storage-check-list {
  margin-top: 24px;
}

.storage-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.storage-cta p {
  max-width: 760px;
  font-size: 18px;
  color: var(--color-muted);
}

@media (max-width: 900px) {
  .storage-split,
  .storage-cta {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .storage-split__media {
    order: 1;
  }

  .storage-split__content {
    order: 2;
  }

  .storage-split__media img {
    height: 300px;
  }

  .storage-cta .btn {
    width: fit-content;
  }
}
/* ================================
   Contact page polish - no form
================================ */

.page-hero--contact {
  background-image: url("../images/contact/epikoinonia-hero.jpg");
}

.contact-page {
  background: #fff;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: stretch;
}

.contact-info-card,
.contact-details-card,
.contact-map-card,
.contact-cta-box {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-info-card {
  padding: 38px;
}

.contact-info-card h2 {
  max-width: 680px;
}

.contact-info-card p {
  max-width: 720px;
  font-size: 18px;
  color: var(--color-muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.contact-details-card {
  padding: 28px;
  display: grid;
  gap: 18px;
}

.contact-detail {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 16px;
  background: var(--color-soft);
  border: 1px solid rgba(234, 222, 222, 0.72);
}

.contact-detail__icon,
.contact-map-card__pin {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
}

.contact-detail__icon {
  width: 58px;
  height: 58px;
}

.contact-detail__icon svg {
  width: 25px;
  height: 25px;
  display: block;
  fill: currentColor;
}

.contact-map-card__pin {
  position: relative;
  z-index: 2;
  width: 78px;
  height: 78px;
  box-shadow: 0 20px 48px rgba(127, 29, 29, 0.24);
}

.contact-map-card__pin svg {
  width: 36px;
  height: 36px;
  display: block;
  fill: currentColor;
}

.contact-detail strong,
.contact-detail a,
.contact-detail span:not(.contact-detail__icon) {
  display: block;
}

.contact-detail strong {
  color: var(--color-dark);
  font-size: 15px;
  margin-bottom: 4px;
}

.contact-detail a,
.contact-detail span:not(.contact-detail__icon) {
  color: var(--color-text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
}

.contact-detail a:hover {
  color: var(--color-accent);
}

.contact-location-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.contact-location-grid p {
  max-width: 760px;
  font-size: 18px;
  color: var(--color-muted);
}

.contact-service-list {
  margin-top: 24px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-service-list p {
  margin-bottom: 12px;
  font-size: 17px;
  font-weight: 800;
  color: var(--color-dark);
}

.contact-service-list p:last-child {
  margin-bottom: 0;
}

.contact-map-card {
  display: block;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-map-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(127, 29, 29, 0.15);
}

.contact-map-card__visual {
  min-height: 280px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(
      circle at 50% 46%,
      rgba(220, 38, 38, 0.22) 0 12%,
      transparent 13%
    ),
    linear-gradient(135deg, #fff7f7 0%, #fee2e2 100%);
  position: relative;
}

.contact-map-card__visual::before,
.contact-map-card__visual::after {
  content: "";
  position: absolute;
  inset: 40px;
  border: 2px dashed rgba(153, 27, 27, 0.18);
  border-radius: 38% 62% 58% 42%;
}

.contact-map-card__visual::after {
  inset: 78px;
  border-radius: 62% 38% 44% 56%;
}

.contact-map-card__body {
  padding: 26px;
}

.contact-map-card__body strong,
.contact-map-card__body span,
.contact-map-card__body em {
  display: block;
}

.contact-map-card__body strong {
  color: var(--color-dark);
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.contact-map-card__body span {
  color: var(--color-muted);
  margin-bottom: 14px;
}

.contact-map-card__body em {
  color: var(--color-accent);
  font-style: normal;
  font-weight: 800;
}

.contact-cta-section {
  padding-top: 0;
}

.contact-cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
  background: linear-gradient(
    135deg,
    rgba(255, 247, 247, 0.95),
    rgba(255, 255, 255, 0.95)
  );
}

.contact-cta-box p {
  max-width: 720px;
  font-size: 18px;
  color: var(--color-muted);
}

@media (max-width: 900px) {
  .contact-info-grid,
  .contact-location-grid,
  .contact-cta-box {
    grid-template-columns: 1fr;
  }

  .contact-info-card,
  .contact-details-card,
  .contact-cta-box {
    padding: 24px;
  }

  .contact-detail {
    grid-template-columns: 48px 1fr;
    padding: 14px;
  }

  .contact-detail__icon {
    width: 48px;
    height: 48px;
  }

  .contact-detail__icon svg {
    width: 21px;
    height: 21px;
  }

  .contact-detail a,
  .contact-detail span:not(.contact-detail__icon) {
    font-size: 16px;
  }

  .contact-map-card__visual {
    min-height: 220px;
  }

  .contact-map-card__pin {
    width: 66px;
    height: 66px;
  }

  .contact-map-card__pin svg {
    width: 31px;
    height: 31px;
  }

  .contact-cta-box .btn {
    width: fit-content;
  }
}
/* ================================
   Services listing page polish
================================ */

.page-hero--services {
  background-image: url("../images/services/ypiresies-hero.jpg");
}

.services-page {
  background: var(--color-soft);
}

.services-image-cards-grid {
  align-items: stretch;
}

.services-image-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.services-image-card .image-card__media {
  flex: 0 0 auto;
}

.services-image-card .image-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.services-image-card h3 {
  min-height: 54px;
}

.services-image-card .image-card__body p {
  flex: 1;
  color: var(--color-muted);
}

.services-image-card .text-link {
  margin-top: 12px;
}

.services-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(127, 29, 29, 0.14);
}

.services-image-card {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

@media (max-width: 900px) {
  .services-image-card h3 {
    min-height: auto;
  }

  .services-image-card .image-card__body {
    padding: 22px;
  }
}
