:root{
  --section-gap: 56px;
  --page-bg: #faefda;
  --text-strong: #2f241b;
  --text-soft: #65584d;
  --shadow-soft: 0 14px 34px rgba(45, 22, 29, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0; padding:0;
}

html{
  scroll-behavior: smooth;
}

body{
  background:
    radial-gradient(circle at top, rgba(255,255,255,0.34), transparent 30%),
    var(--page-bg);
  color: var(--text-strong);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.is-loading{
  overflow: hidden;
}

.welcome-loader{
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255,255,255,.56), transparent 28%),
    radial-gradient(circle at 50% 72%, rgba(123,30,58,.10), transparent 34%),
    linear-gradient(180deg, #fff7e9 0%, var(--page-bg) 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity .52s ease, visibility .52s ease;
}

.welcome-loader.is-hidden{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.welcome-loader__content{
  position: relative;
  width: min(620px, 100%);
  height: clamp(250px, 44vh, 360px);
  text-align: center;
  color: #7b1e3a;
  animation: welcomeRise .72s ease both;
}

.welcome-loader__brand{
  position: absolute;
  top: clamp(4px, 3vh, 36px);
  left: 50%;
  padding: 4px 18px 2px;
  transform: translateX(-50%) translateY(0) scale(1);
  opacity: 1;
  transition:
    opacity .44s ease,
    transform .58s cubic-bezier(.2,.8,.2,1);
}

.welcome-loader__brand::before,
.welcome-loader__brand::after{
  content: "";
  position: absolute;
  top: 50%;
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(123,30,58,.44));
  transition: opacity .36s ease, transform .54s cubic-bezier(.2,.8,.2,1);
}

.welcome-loader__brand::before{
  right: 100%;
}

.welcome-loader__brand::after{
  left: 100%;
  transform: rotate(180deg);
}

.welcome-loader__logo{
  width: clamp(190px, 44vw, 320px);
  height: auto;
  display: block;
  filter: drop-shadow(0 14px 28px rgba(123,30,58,.12));
}

.welcome-loader__message{
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
}

.welcome-loader.is-transitioning .welcome-loader__brand{
  opacity: 0;
  transform: translateX(-50%) translateY(-30px) scale(.82);
}

.welcome-loader.is-transitioning .welcome-loader__brand::before,
.welcome-loader.is-transitioning .welcome-loader__brand::after{
  opacity: 0;
  transform: scaleX(.72);
}

.welcome-loader__text{
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(560px, 92vw);
  margin: 0;
  font-family: "Playfair Display", serif;
  font-style: italic;
  transition: opacity .42s ease, transform .48s cubic-bezier(.2,.8,.2,1), filter .42s ease;
}

.welcome-loader__text--intro{
  top: calc(50% + clamp(48px, 10vh, 78px));
  color: rgba(47,36,27,.76);
  font-size: clamp(17px, 4vw, 24px);
  font-weight: 500;
  opacity: 1;
  transform: translate(-50%, -50%);
}

.welcome-loader__text--enjoy{
  top: 50%;
  color: #7b1e3a;
  font-size: clamp(32px, 8vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  opacity: 0;
  transform: translate(-50%, calc(-50% + 18px)) scale(.97);
  filter: blur(5px);
  text-shadow: 0 16px 34px rgba(123,30,58,.10);
}

.welcome-loader.is-transitioning .welcome-loader__text--intro{
  opacity: 0;
  transform: translate(-50%, calc(-50% + 24px));
  filter: blur(2px);
}

.welcome-loader.is-welcome .welcome-loader__text--enjoy{
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  filter: blur(0);
}

.welcome-loader__line{
  position: absolute;
  left: 50%;
  bottom: clamp(10px, 3vh, 34px);
  width: 156px;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(123,30,58,.12);
  transform: translateX(-50%);
  transition: opacity .3s ease, transform .3s ease;
}

.welcome-loader.is-transitioning .welcome-loader__line,
.welcome-loader.is-welcome .welcome-loader__line{
  opacity: .58;
  transform: translateX(-50%) scaleX(.72);
}

.welcome-loader__line span{
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(123,30,58,.16), rgba(123,30,58,.84), rgba(123,30,58,.16));
  animation: welcomeLine 1.28s ease-in-out infinite;
}

@keyframes welcomeRise{
  from{
    opacity: 0;
    transform: translateY(10px) scale(.985);
  }
  to{
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes welcomeLine{
  0%{ transform: translateX(-115%); }
  100%{ transform: translateX(250%); }
}

@media (max-width: 480px){
  .welcome-loader{
    padding: 24px;
  }

  .welcome-loader__content{
    height: min(330px, 48vh);
  }

  .welcome-loader__brand::before,
  .welcome-loader__brand::after{
    width: 24px;
  }

  .welcome-loader__text--enjoy{
    font-size: clamp(34px, 11vw, 46px);
  }
}

@media (max-height: 620px){
  .welcome-loader__content{
    height: min(280px, 62vh);
  }

  .welcome-loader__logo{
    width: clamp(142px, 30vw, 204px);
  }

  .welcome-loader__text--intro{
    top: calc(50% + clamp(54px, 10vh, 70px));
  }

  .welcome-loader__text--enjoy{
    font-size: clamp(30px, 7vw, 46px);
  }
}

@media (prefers-reduced-motion: reduce){
  .welcome-loader,
  .welcome-loader__content,
  .welcome-loader__line span{
    animation: none;
    transition: none;
  }
}

::selection{
  background: rgba(123, 30, 58, 0.18);
  color: #2b1b0e;
}

a,
button{
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible{
  outline: 2px solid rgba(123, 30, 58, 0.5);
  outline-offset: 3px;
}

.header-nav ul{
  display: flex;
  list-style: none;
  gap: 15px;
}

.header-nav a{
  text-decoration: none;
  padding: 5px;
  color: #003366;
  transition: 0.3s;
}

.header-nav a:hover{
  background-color: #003366;
  color: white;
  border-radius: 5px;
}

.header-nav-index ul{
  display: flex;
  list-style: none;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(20, 14, 8, 0.34);
  border: 1px solid rgba(245, 232, 199, 0.35);
  backdrop-filter: blur(6px);
}

.header-nav-index li{
  display: flex;
  align-items: center;
}

.header-nav-index a{
  text-decoration: none;
  padding: 10px 14px;
  color: #f5e8c7;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.25s ease;
}

.home-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.home-icon__svg{
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
  transform: translateY(-1px);
}

.header-nav-index a:hover{
  background-color: rgba(245, 232, 199, 0.2);
}

.header-nav-index a[aria-current="page"],
.header-nav-index a.is-active{
  background-color: #f5e8c7;
  color: #2b1b0e;
}

.header-lang{
  margin-top: 10px;
}

.language-label{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  margin: 20px auto 6px;
  padding: 6px 12px;
  color: #fffaf0;
  background: rgba(43, 27, 14, 0.42);
  border: 1px solid rgba(245, 232, 199, 0.28);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.language-label::before,
.language-label::after{
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  background: rgba(245, 232, 199, 0.78);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
}

.header-lang ul{
  justify-content: center;
  display: flex;
  list-style: none;
  gap: 12px;
}

.header-lang a.flag-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 6px;
  border: 1px solid rgba(245, 232, 199, 0.3);
  border-radius: 50%;
  overflow: hidden; 
  background: rgba(43, 27, 14, 0.42);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform .22s ease, border-color .22s ease, background-color .22s ease, box-shadow .22s ease;
}

.header-lang a.flag-icon::before{
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  opacity: 0;
  border: 1px solid rgba(245, 232, 199, 0.88);
  box-shadow:
    0 0 0 4px rgba(245, 232, 199, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  transition: opacity .22s ease, transform .22s ease;
  pointer-events: none;
  z-index: 1;
}

.header-lang a.flag-icon::after{
  content: "";
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0;
  background: #f5e8c7;
  border: 2px solid rgba(43, 27, 14, 0.78);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
  transition: opacity .22s ease, transform .22s ease;
  z-index: 2;
}

.header-lang a.flag-icon img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: relative;
  z-index: 0;
}

.header-lang a:hover{
  background-color: rgba(43, 27, 14, 0.58);
  border-color: rgba(245, 232, 199, 0.78);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.header-lang a.flag-icon:focus-visible{
  outline: 2px solid #f5e8c7;
  outline-offset: 4px;
}

.header-lang a.flag-icon.is-selected{
  border-color: rgba(245, 232, 199, 0.92);
  background: rgba(43, 27, 14, 0.58);
  box-shadow:
    0 0 0 1px rgba(245, 232, 199, 0.24),
    0 16px 34px rgba(0, 0, 0, 0.34);
  transform: translateY(-2px);
}

.header-lang a.flag-icon.is-selected::before{
  opacity: 1;
}

.header-lang a.flag-icon.is-selected::after{
  opacity: 1;
  transform: scale(1);
}

main {
  border-bottom: 2px solid #7b1e3a;
  padding-top: 0;
}

.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: 28px;
  padding: 18px 16px;
  color: #fff9ef;
  background:
    radial-gradient(circle at top left, rgba(244, 188, 94, 0.2), transparent 34%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(135deg, #5b1429 0%, #7b1e3a 50%, #35101d 100%);
}

.site-footer__glow {
  position: absolute;
  inset: auto -8% -90px auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 210, 120, 0.12);
  filter: blur(8px);
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 22px 24px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 60px rgba(18, 6, 10, 0.28);
  display: grid;
  gap: 16px;
}

.site-footer__brand {
  text-align: center;
}

.site-footer__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  font-weight: 700;
  color: #ffd98f;
}

.site-footer__brand h2 {
  margin: 14px 0 10px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1;
  color: #fff;
}

.site-footer__brand p {
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.55;
  color: rgba(255, 249, 239, 0.86);
}

.site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.site-footer__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 11px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff9ef;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(20, 7, 11, 0.18);
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-footer__pill:hover {
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(255, 224, 160, 0.22), rgba(255, 255, 255, 0.12));
  border-color: rgba(255, 217, 143, 0.42);
  box-shadow: 0 14px 28px rgba(20, 7, 11, 0.24);
}

.site-footer .footerLinks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer .footerLinks a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-height: 42px;
  padding: 0;
  border-radius: 18px;
  color: #fff;
  text-decoration: none;
  background: rgba(16, 9, 11, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

.site-footer .footerLinks a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 217, 143, 0.32);
}

.site-footer .footerLinks svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer .footerLinks li:nth-child(2) svg,
.site-footer .footerLinks li:nth-child(3) svg {
  fill: currentColor;
  stroke: none;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  color: rgba(255, 249, 239, 0.8);
}

.site-footer__bottom p {
  margin: 0;
}

.page-layout {
  display: flex;
  flex-direction: row;     
  min-height: 100vh;      
}

.logo{
  text-align: center;
  display: inline-block;
  color: #003366;
}

.logo-index{
  text-align: center;
  display: inline-block;
  color: #f5e8c7;
}

.brand{
  font-family: pacifico, sans-serif;
  font-size: 52px;
  line-height: 1;
  letter-spacing: 1px;
}

.meta{
  margin-top: 6px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 6px;
}

.est{
  font-family: 'Times New Roman', Times, serif;
}

.hero{
  min-height: 78vh;
  background-image: url(../images/index_images/hero_img_compressed.webp);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 0;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(95,61,24,0.35), rgba(44,24,5,0.65));
  mix-blend-mode: multiply;
  pointer-events: none;
}

.hero-inner{
  position: relative;
  z-index: 2;
  padding: 3.5rem 1rem;
  color: #fff;
  max-width: 900px;
}

.Welcome{
  margin: 0 0 0.6rem;
  color: white;
  font-weight: bold;
  letter-spacing: 1px;
  display: block;
  color: #fff;
  opacity:0.95;
  font-style: italic;
  font-family: 'Playfair Display',serif;
  font-size: clamp(0.9rem, 2.5vw, 1.4rem);
}

.hero-title{
  margin: 0 0 1rem;
  font-family: merriweather;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #fff;
}

.hero-cta{
  display: flex;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: rgba(0,0,0,0);
  border-bottom: none;
  box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  justify-content: space-between; 
  align-items: center; 
  padding: 10px 40px; 
}

.site-header br{
  display: none;
}

.feature-section{
  background-color: #f6f1eb;
  color: #2e1b0e;
}

.features{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin: var(--section-gap) auto;
  flex-wrap: wrap;
  max-width: 1100px;
  text-align: center;
  border-bottom: 1px solid #7b1e3a;
  border-top: 1px solid #7b1e3a;
}

.feature{
  flex: 1 1 300px;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.feature-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 0.8rem;
  background: rgba(209, 160, 98, 0.1);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(123, 30, 58, 0.08);
}

.feature-icon img{
  width: 32px;
  height: 32px;
  filter: brightness(0) saturate(100%) invert(73%) sepia(53%) saturate(280%) hue-rotate(358deg) brightness(91%) contrast(92%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.feature:hover .feature-icon img{
  transform: translateY(-4px);
  filter: brightness(1.2);
}


.flag-icon img{
  width: 32px;
  height: 32px;
}

/*----------*/

.photo-slider-container {
  position: relative;
  max-width: 560px;
  margin: auto;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(123, 30, 58, 0.12);
  background:
    radial-gradient(circle at top left, rgba(255, 219, 165, 0.16), transparent 28%),
    linear-gradient(180deg, #fffaf2 0%, #f6eadb 100%);
  box-shadow: 0 26px 60px rgba(47, 21, 29, 0.18);
  max-height: 720px;
  padding: 14px;
}

.photo-slider__glow {
  position: absolute;
  inset: auto -10% -60px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(123, 30, 58, 0.12);
  filter: blur(18px);
  pointer-events: none;
}

.photo-slider__frame {
  position: absolute;
  inset: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  pointer-events: none;
  z-index: 1;
}

.photo-slider__fade {
  position: absolute;
  inset: auto 14px 14px 14px;
  height: 130px;
  background: linear-gradient(180deg, rgba(27, 14, 18, 0) 0%, rgba(27, 14, 18, 0.58) 100%);
  border-radius: 0 0 22px 22px;
  pointer-events: none;
  z-index: 1;
}

.photo-slide {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: none;
  transition: opacity 0.8s ease-in-out;
  border-radius: 22px;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  background: rgba(250, 239, 218, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: background-color 0.3s, transform 0.3s, border-color 0.3s;
}

.slide-btn:hover {
  background: rgba(123, 30, 58, 0.62);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-50%) scale(1.05);
}

.slide-btn.left { left: 28px; }
.slide-btn.right { right: 28px; }

.dots {
  text-align: center;
  position: absolute;
  bottom: 32px;
  width: calc(100% - 28px);
  z-index: 2;
}

.dot {
  height: 9px;
  width: 28px;
  margin: 0 4px;
  background-color: rgba(255,255,255,0.45);
  border-radius: 999px;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.active, .dot:hover {
  background-color: #fff;
  transform: scaleX(1.08);
}

.site-header.scrolled {
    background-color: rgba(250, 239, 218, 0.92);
    box-shadow: 0 8px 24px rgba(20, 14, 8, 0.08);
    backdrop-filter: blur(8px);
}

/*CSS για αλλαγη χρωματος header στο scroll, βλεπε JS*/
#header-logo.scrolled .brand,
#header-logo.scrolled .meta {
    color: #7b1e3a;
}

.header-nav-index.scrolled a {
    color: #7b1e3a;
}

.header-nav-index.scrolled a:hover {
    color: #7b1e3a;
    background-color: rgba(123, 30, 58, 0.09);
}

.header-nav-index.scrolled ul{
    background: rgba(123, 30, 58, 0.06);
    border-color: rgba(123, 30, 58, 0.18);
}

.header-nav-index.scrolled a[aria-current="page"],
.header-nav-index.scrolled a.is-active{
    color: #faefda;
    background-color: #7b1e3a;
}



/* ======= REVIEWS SLIDER ======= */

.review-title{
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: var(--section-gap) auto 18px;
  padding: 0 20px;
  text-align: center;
}

.reviews-header{
  color: #7b1e3a;
  margin: 0 0 6px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.05;
}

.review-source{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px 14px;
  border-radius: 999px;
  background: #f8efe0;
  border: 1px solid rgba(123, 30, 58, 0.08);
  color: #5d4632;
  font-size: 12px;
}

.review-source a{
  text-decoration: none;
  color: #7b1e3a;
  font-weight: 700;
}

.review-source a:hover{
  color: #3a1020;
  text-decoration: underline;
}

.reviews-slider {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto var(--section-gap);
  padding: 8px 62px;
  display: flex;
  align-items: center;
}

.reviews-slider .slides {
  display: flex;
  gap: 22px;
  transition: transform 0.5s ease-in-out;
}

.reviews-slider .review {
  position: relative;
  min-width: 250px;
  max-width: 300px;
  min-height: 240px;
  padding: 24px 22px 20px;
  margin-right: 0;
  flex-shrink: 0;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(198, 167, 94, 0.18), transparent 30%),
    linear-gradient(180deg, #fffdf9 0%, #f8efe0 100%);
  border: 1px solid rgba(123, 30, 58, 0.08);
  box-shadow: 0 16px 34px rgba(44,20,28,0.10);
  opacity: 0.82;
  transform: scale(0.98);
  transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.reviews-slider .review.is-active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(123, 30, 58, 0.14);
  box-shadow: 0 20px 42px rgba(44,20,28,0.14);
}

.reviews-slider .review::before {
  content: "\201C";
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  line-height: 1;
  color: rgba(123, 30, 58, 0.12);
}

.reviews-slider .review h4 {
  position: relative;
  margin: 0 0 14px;
  padding-top: 28px;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  color: #7b1e3a;
}

.reviews-slider .review h4::before {
  content: "★★★★★";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 12px;
  letter-spacing: 0.24em;
  color: #c6a75e;
}

.reviews-slider .review p {
  margin: 0;
  font-size: 0.96rem;
  color: #4f463f;
  line-height: 1.75;
}

/* controls */
.reviews-slider .prev,
.reviews-slider .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(250, 239, 218, 0.92);
  color: #7b1e3a;
  border: 1px solid rgba(123, 30, 58, 0.12);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(44, 20, 28, 0.12);
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.reviews-slider .prev:hover,
.reviews-slider .next:hover {
  background: #7b1e3a;
  color: #fff6e8;
  transform: translateY(-50%) scale(1.05);
}

.reviews-slider .prev { left: 2px; }
.reviews-slider .next { right: 2px; }

.view-menu {
    text-align: center;
    margin: 34px 0 8px;
}

.view-menu a {
    display: inline-block;
    padding: 11px 22px;
    font-size: 15px;
    letter-spacing: 0.3px;
    font-weight: 600;
    color: #f5e8c7;
    text-decoration: none;
    background: rgba(20, 14, 8, 0.34);
    border: 1px solid rgba(245, 232, 199, 0.45);
    border-radius: 999px;
    backdrop-filter: blur(6px);
    box-shadow: 0 8px 18px rgba(20, 14, 8, 0.12);
    transition: 0.25s ease;
}

.view-menu a:hover {
    background: #f5e8c7;
    color: #2b1b0e;
    border-color: #f5e8c7;
    transform: translateY(-2px);
}

.view-menu a:focus-visible{
    outline: 2px solid #f5e8c7;
    outline-offset: 3px;
}

.hero-content{
  position: relative;
  z-index: 2;
  margin-top: 132px;
}

.hero-slide-cue{
  display: none;
}

.Cat ul li a .icon {
  width: 100px;                        
  height: 20px;
  color: #3b2f1d;                      /* αρχικό χρώμα SVG */
  transition: color 0.3s ease;
}

/* SVG paths */
.Cat ul li a .icon-path {
  fill: currentColor;                  /* για να αλλάζει το color */
}

/* Όταν hover το li, το SVG γίνεται ασπροσ για να φαίνεται πάνω στο λευκό background */
.Cat ul li:hover a .icon {
  color: white;
  transform: translateY(-2px);
}

/* Fade-in animation */
/* αρχική κατάσταση */
.our-story,
.feature,
.review {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* όταν μπει στο viewport */
.our-story.visible,
.feature.visible,
.review.visible {
    opacity: 1;
    transform: translateY(0);
} 

.our-story {
  padding: var(--section-gap) 0;
  font-family: 'Times New Roman', Times, serif;
}

.our-story__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Text */
.our-story__subtitle {
  display: block;
  font-family: pacifico,'Georgia', serif;
  font-style: italic;
  font-size: 28px;
  color: #c6a75e;
  margin-bottom: 10px;
}

.our-story__title {
  font-size: 36px;
  letter-spacing: 4px;
  margin-bottom: 30px;
}

.our-story__text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.our-story__toggle{
  display: none;
}

/* Images */
.our-story__images {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.our-story__image {
  overflow: hidden;
  border-radius: 4px;
}

.our-story__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.contact-page{
  --bg-dark: #081a2a;
  --accent: #f5e8c7;
  --card-border: #eef0f3;
  --shadow: 0 10px 30px rgba(0,0,0,.10);
}

/* container override only inside contact page */
.contact-page .container{
  width: min(1100px, calc(100% - 40px));
  margin-inline: auto;
}

/* HERO */
.contact-page .hero{
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background-image:
    linear-gradient(180deg, rgba(95,61,24,0.22), rgba(44,24,5,0.58)),
    url("../images/index_images/hero_img_compressed.webp");
  background-size: cover;
  background-position: center 42%;
}

.contact-page .hero__overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 18, 26, 0.22) 0%, rgba(13, 18, 26, 0.58) 100%),
    radial-gradient(circle at top center, rgba(255, 236, 199, 0.18), transparent 30%);
}

.contact-page .hero__content{
  position: relative;
  padding: 132px 0 56px;
  max-width: 760px;
}

.contact-page .hero__eyebrow{
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: #f6dfae;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 700;
}

.contact-page .hero__title{
  margin: 18px 0 0;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 0.95;
  letter-spacing: 1.5px;
  font-weight: 800;
  color: var(--accent);
}

.contact-page .hero__dots{
  margin: 14px auto 18px;
  display: inline-flex;
  gap: 10px;
  opacity: .9;
}
.contact-page .hero__dots span{
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.85);
}

.contact-page .hero__subtitle{
  margin: 0 auto;
  max-width: 640px;
  color: rgba(255,255,255,.9);
  line-height: 1.7;
  font-size: 16px;
}

.contact-page .hero__actions{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.contact-page .hero__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
}

.contact-page .hero__btn:hover{
  transform: translateY(-2px);
}

.contact-page .hero__btn--primary{
  background: #f5e8c7;
  color: #2b1b0e;
  border: 1px solid transparent;
}

.contact-page .hero__btn--secondary{
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}

.contact-page .hero__btn--secondary:hover{
  background: rgba(255,255,255,0.14);
}

/* CARDS */
.contact-page .cards{
  background: linear-gradient(180deg, #fff 0%, #fcf9f3 100%);
  padding: 34px 0 12px;
}

.contact-page .cards__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-page .card{
  position: relative;
  padding: 34px 28px 28px;
  text-align: center;
  border: 1px solid rgba(123, 30, 58, 0.08);
  background:
    radial-gradient(circle at top right, rgba(198, 167, 94, 0.14), transparent 30%),
    linear-gradient(180deg, #fffdf9 0%, #f8efe0 100%);
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(44, 24, 5, 0.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.contact-page .card:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(44, 24, 5, 0.12);
  border-color: rgba(123, 30, 58, 0.14);
}
.contact-page .card:first-child{ border-left: 1px solid rgba(123, 30, 58, 0.08); }

.contact-page .card__icon{
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  color: #7b1e3a;
  font-size: 24px;
  border-radius: 20px;
  background: rgba(123, 30, 58, 0.08);
  box-shadow: inset 0 0 0 1px rgba(123, 30, 58, 0.08);
}

.contact-page .card__eyebrow{
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  color: #9f7f3c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-page .card__title{
  margin: 4px 0 10px;
  font-size: 15px;
  letter-spacing: 1.2px;
  font-weight: 800;
  color: #3b2c22;
}

.contact-page .card__text{
  margin: 0 auto 14px;
  max-width: 340px;
  color: #6c625b;
  font-size: 13.5px;
  line-height: 1.75;
}

.contact-page .card__meta{
  margin: 0;
  font-weight: 700;
  color: #7b1e3a;
  font-size: 13px;
}

.contact-page .link{
  color: #7b1e3a;
  text-decoration: none;
}
.contact-page .link:hover{ text-decoration: underline; }

/* FAQ */
.contact-page .faq{
  background: linear-gradient(180deg, #fff 0%, #fcf9f3 100%);
  padding: 26px 0 44px;
}

.contact-page .faq__wrap{
  max-width: 900px;
}

.contact-page .faq__title{
  margin: 0 0 16px;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: 0.3px;
  color: #3a4453;
}

.contact-page .faq-item{
  background: #fff;
  border: 1px solid #e6d9c6;
  border-radius: 12px;
  margin-bottom: 12px;
  padding: 0 16px;
  box-shadow: 0 6px 16px rgba(44, 24, 5, 0.05);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.contact-page .faq-item summary{
  position: relative;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: #7b1e3a;
  font-size: 15px;
  padding: 16px 34px 16px 0;
}

.contact-page .faq-item p{
  margin: 0 0 16px;
  color: #5a6575;
  font-size: 14px;
  line-height: 1.6;
}

.contact-page .faq-item summary::-webkit-details-marker{
  display: none;
}

.contact-page .faq-item summary::after{
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
  color: #7b1e3a;
}

.contact-page .faq-item[open]{
  border-color: #d2b48c;
  box-shadow: 0 10px 20px rgba(44, 24, 5, 0.09);
}

.contact-page .faq-item[open] summary::after{
  content: "−";
}

.contact-page .faq-item:hover{
  transform: translateY(-1px);
}

.contact-page .faq-item summary:focus-visible{
  outline: 2px solid #7b1e3a;
  outline-offset: 3px;
  border-radius: 6px;
}

/* MAP */
.contact-page .map{
  padding: 0 0 var(--section-gap);
  background: linear-gradient(180deg, #fcf9f3 0%, #fff 100%);
}

.contact-page .map__shell{
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  padding: 22px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(245, 232, 199, 0.55), transparent 24%),
    linear-gradient(180deg, #fffdf9 0%, #f8efe0 100%);
  border: 1px solid rgba(123, 30, 58, 0.08);
  box-shadow: 0 22px 54px rgba(44, 24, 5, 0.10);
}

.contact-page .map__intro{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 8px 18px 8px;
}

.contact-page .map__eyebrow{
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(123, 30, 58, 0.08);
  color: #9f7f3c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-page .map__title{
  margin: 0 0 12px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.02;
  color: #3b2c22;
}

.contact-page .map__text{
  margin: 0;
  color: #6c625b;
  line-height: 1.7;
}

.contact-page .map__link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 22px;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #7b1e3a;
  color: #fff6e8;
  text-decoration: none;
  font-weight: 700;
  transition: transform .25s ease, background-color .25s ease;
}

.contact-page .map__link:hover{
  transform: translateY(-2px);
  background: #5e1129;
}

.contact-page .map__frame{
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(123, 30, 58, 0.08);
  box-shadow: 0 16px 40px rgba(44, 24, 5, 0.10);
}

.contact-page .map iframe{
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: 0 !important;
  display: block;
}

.menu-tools{
  position: sticky;
  top: 0;
  z-index: 50;
  background: #f5e8c7;
  backdrop-filter: blur(8px);
  padding: 10px 12px;
}

.menu-search{
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #7b1e3a;
  background: #f5e8c7;
  outline: none;
  font-size: 16px;
}

.menu-filters{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
  align-items: center;
}

.chip, .chip-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid #7b1e3a;
  color: #7b1e3a;
  background: #f5e8c7;
  cursor: pointer;
  user-select: none;
}

.chip:hover{
  background: #7b1e3a;
  color: #f5e8c7;
}

.chip-btn:hover{
  background: #7b1e3a;
  color: #f5e8c7;
}

.menu-count{
  margin: 8px 0 0;
  font-size: 0.75rem;
  color: rgba(0,0,0,0.6);
}

.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;
}




/*Responsive κώδικας για κινητό*/
@media (max-width: 768px) {

  :root{
    --section-gap: 40px;
  }

  /* Το layout γίνεται κάθετο */
  .page-layout {
    flex-direction: row;
  }

  /* Το sidebar πιάνει όλο το πλάτος */
  .Cat {
    position: fixed;
    top: 0;
    left: 0;
    width: 65px;
    height: 100vh;
    border-right: 2px solid #7b1e3a;
    padding: 10px;
    overflow-y: auto;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
  }

  /* Το περιεχόμενο πιάνει όλη την οθόνη */
  .content {
    margin-left: 60px;
    min-width: none;
    flex: 1;
    padding: 15px;
    overflow-x: auto;
  }

  /* Επιτρέπει scroll στη σελίδα */
  body, html {
    overflow-x: hidden;
    overflow-y: auto;
  }

  header{
    position: fixed;
    flex-direction: column;
    align-items: center;
    height: auto;
  }
  
  .header-nav ul {
    margin-top: 25px;
    margin-bottom: 10px;
    align-items: center;
  }

  .header-nav a{
    border: 1px solid #003366;
    border-radius: 5px;
  }

  .site-footer {
    margin-top: 22px;
    padding: 14px 10px;
  }

  .photo-slider-container {
    max-width: 100%;
    border-radius: 24px;
    padding: 10px;
  }

  .photo-slider__frame {
    inset: 10px;
    border-radius: 18px;
  }

  .photo-slider__fade {
    inset: auto 10px 10px 10px;
    height: 110px;
    border-radius: 0 0 18px 18px;
  }

  .photo-slide {
    border-radius: 18px;
  }

  .slide-btn {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .slide-btn.left { left: 18px; }
  .slide-btn.right { right: 18px; }

  .dots {
    bottom: 24px;
    width: calc(100% - 20px);
  }

  .dot {
    width: 22px;
    height: 8px;
  }

  .site-footer__inner {
    padding: 16px 14px 14px;
    border-radius: 22px;
    gap: 14px;
  }

  .site-footer__brand p {
    font-size: 13px;
  }

  .site-footer__pill,
  .site-footer .footerLinks a {
    width: 52px;
  }

  .site-footer__meta {
    gap: 10px;
  }

  .site-footer__pill {
    width: auto;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 16px;
    font-size: 13px;
  }

  .site-footer__bottom {
    justify-content: center;
    text-align: center;
    font-size: 12px;
  }

  .MenuTitle{
    text-align: center;
  }

  .NAC{ /*non alcoholic cocktail*/
    text-align: center;
  }

  .header-logo{
    margin-bottom: 10px;
  }

  .indexMain{
    margin-top: 180px;
  }

  .hero{
    min-height: 94svh;
    padding-bottom: 108px;
  }
  
  .hero-title {
    font-size: 2rem !important; /* το !important αναγκάζει override */
    line-height: 1.2;
    letter-spacing: 1px;
  }

  .hero-inner {
    padding: 2rem 1rem !important;
  }

  .site-header {
    transition: background-color 0.3s ease, color 0.3s ease;
    padding: 8px 12px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .header-nav-index{
    margin: 0;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }

  #header-logo{
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .header-nav-index ul{
    width: max-content;
    margin: 0 auto;
    padding: 5px;
    gap: 6px;
  }

  .hero-content{
    margin-top: 142px;
  }

  .hero-slide-cue{
    position: absolute;
    left: 50%;
    bottom: max(22px, env(safe-area-inset-bottom));
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(28px, 8vw, 34px);
    height: clamp(54px, 14vw, 66px);
    border-radius: 999px;
    border: 1px solid rgba(245, 232, 199, 0.34);
    background: rgba(43, 27, 14, 0.18);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transform: translateX(-50%);
    text-decoration: none;
  }

  .hero-slide-cue__dot{
    position: absolute;
    top: 11px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(245, 232, 199, 0.72);
    box-shadow: 0 0 8px rgba(245, 232, 199, 0.36);
    animation: heroSlideDot 1.45s ease-in-out infinite;
  }

  .hero-slide-cue__chevron{
    position: absolute;
    bottom: 12px;
    width: 8px;
    height: 8px;
    border-right: 1.5px solid rgba(245, 232, 199, 0.72);
    border-bottom: 1.5px solid rgba(245, 232, 199, 0.72);
    transform: rotate(45deg);
  }

  .header-nav-index a{
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 9px 12px;
    font-size: 12.5px;
    white-space: nowrap;
  }

  .home-icon__svg{
    width: 16px;
    height: 16px;
  }

  .Cat a{
    border-radius: 10px;
    color:#7b1e3a;
    background: none;
    padding: 15px;
  }

  .Cat ul li a .icon {
    width: 20px;                 /* μέγεθος SVG */
    height: auto;
    color: #7b1e3a;       
  }

  .Cat ul li:hover a .icon {
    transform: translateY(-3px);
  }

  .Cat a:hover{
    background-color: #d3b98d;
  }

  .reviews-slider .slides {
    gap: 16px;
  }

  .reviews-slider{
    min-width: 80%;
    margin-right: 10px;
    padding: 0 20px;
  }
  
  .reviews-slider .review {
    min-width: 74vw;
    max-width: 74vw;
    min-height: auto;
    padding: 22px 18px 18px;
    border-radius: 22px;
  }

  .reviews-slider .review h4 {
    padding-top: 22px;
    margin-bottom: 12px;
    font-size: 1.02rem;
  }

  .reviews-slider .review h4::before {
    font-size: 11px;
    letter-spacing: 0.2em;
  }

  .reviews-slider .review p {
    font-size: 14px;
    line-height: 1.65;
  }

  .reviews-header{
    font-size: 28px;
  }

  .review-source{
    font-size: 11px;
    padding: 7px 12px;
  }

  .reviews-slider .prev,
  .reviews-slider .next {
    display: none;
  }

  .our-story__container {
    grid-template-columns: 1fr;
  }

  .our-story {
    padding: var(--section-gap) 0;
  }  

  .our-story__more{
    display: none;
  }

  .our-story__text.is-expanded .our-story__more{
    display: block;
  }

  .our-story__toggle{
    display: inline-block;
    margin-top: 4px;
    border: 1px solid #7b1e3a;
    background: transparent;
    color: #7b1e3a;
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 600;
  }

  .our-story__text.is-expanded .our-story__toggle{
    background: #7b1e3a;
    color: #fff;
  }

  .contact-page .hero {
    min-height: 560px;
    padding: 20px 0;
  }

  .contact-page .hero__title {
    font-size: 38px;
  }

  .contact-page .hero__subtitle {
    font-size: 14px;
    padding: 0 10px;
  }

  .contact-page .hero__content{
    padding: 116px 0 34px;
  }

  .contact-page .hero__actions{
    width: 100%;
  }

  .contact-page .hero__btn{
    width: 100%;
  }

  /* CONTACT CARDS */
  body.contact-page .cards__grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  body.contact-page .card {
    width: 100%;
    border-left: 1px solid rgba(123, 30, 58, 0.08);
    border-top: 1px solid rgba(123, 30, 58, 0.08);
    border-radius: 24px;
    padding: 26px 20px 22px;
  }

  body.contact-page .card:first-child {
    border-top: 1px solid rgba(123, 30, 58, 0.08);
  }

  body.contact-page .faq {
    padding: 24px 0 30px;
  }

  body.contact-page .faq-item {
    padding: 0 12px;
    border-radius: 10px;
  }

  body.contact-page .faq-item summary {
    font-size: 14px;
    padding: 14px 30px 14px 0;
  }

  body.contact-page .faq-item p {
    font-size: 13px;
    margin: 0 0 14px;
  }

  .contact-page .map{
    padding-bottom: 40px;
  }

  .contact-page .map__shell{
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 14px;
    border-radius: 24px;
  }

  .contact-page .map__intro{
    padding: 6px;
  }

  .contact-page .map__title{
    font-size: 30px;
  }

  .contact-page .map__link{
    width: 100%;
  }

  .contact-page .map__frame{
    border-radius: 20px;
  }

  .contact-page .map iframe{
    min-height: 320px;
  }
}

@keyframes heroSlideDot{
  0%,
  100%{
    opacity: 0.55;
    transform: translateY(0);
  }

  50%{
    opacity: 1;
    transform: translateY(18px);
  }
}


/* Back to top – scroll progress */
.toTop{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  cursor: pointer;

  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease, border-color .2s ease;

  background: #faefda;
  border: 1px solid #7b1e3a;
  z-index: 9999;
}

.toTop svg{
  stroke: #7b1e3a;
}

.toTop.is-show{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toTop__icon{
  width: 36px;
  height: 36px;
  fill: none;
}

/* progress ring */
.toTop__progress{
  stroke: var(--gold);
  stroke-width: 4;
  stroke-linecap: round;
  fill: none;

  stroke-dasharray: 264;
  stroke-dashoffset: 264;
  transition: stroke-dashoffset .15s linear;

  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

/* chevron */
.toTop__chevron{
  stroke: var(--gold);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.toTop:hover{
  border-color: rgba(182,139,47,.45);
  transform: translateY(-1px);
}
