.mistirio-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

/* IMAGE */
.mistirio-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* OVERLAY */
.mistirio-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,0.75) 0%,
        rgba(0,0,0,0.45) 40%,
        rgba(0,0,0,0.1) 100%
    );
    z-index: 1;
}

/* 🔥 MAIN CONTENT CENTER */
.mistirio-hero__content {
    position: relative;
    z-index: 2;

    height: 100%;
    display: flex;
    flex-direction: column;

    justify-content: center;   /* κάθετα */
    align-items: center;       /* οριζόντια */

    text-align: center;
    padding: 0 20px;
}

/* TEXT */
.mistirio-hero__eyebrow {
    margin-bottom: 20px;
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

.mistirio-hero__title {
    font-size: clamp(46px, 6vw, 76px);
    line-height: 1.05;
    color: #fff;
    margin-bottom: 25px;
}

.mistirio-hero__text {
    max-width: 500px;
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}

/* BUTTONS */
.mistirio-hero__actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.mistirio-btn {
    padding: 14px 32px;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s;
}

/* GOLD */
.mistirio-btn--gold {
    background: #c8a96a;
    color: #111;
}

.mistirio-btn--gold:hover {
    background: #fff;
}

/* OUTLINE */
.mistirio-btn--outline {
    border: 1px solid rgba(255,255,255,0.6);
    color: #fff;
}

.mistirio-btn--outline:hover {
    background: #fff;
    color: #111;
}



.mistirio-hero__content {
    position: relative;
    z-index: 2;

    height: 100%;
    display: flex;
    flex-direction: column;

    justify-content: center;   /* κάθετα center */
    align-items: flex-start;   /* 👉 αριστερά */

    text-align: left;          /* 👉 text left */
    padding-left: 8%;
    padding-right: 20px;
}

.mistirio-hero__content {
    padding-left: 7.5%;
    transform: translateY(4%);
}

.mistirio-hero__title {
    font-size: clamp(42px, 5.2vw, 74px);
    line-height: 1.04;
}

.mistirio-hero__text {
    margin-bottom: 34px;
}



/* ===================================
   MISTIRIO – SECTION 2 (EXPERIENCE)
====================================== */

.mistirio-experience {
    padding: 120px 0;
    background: #f4efe8; /* warm light background */
    position: relative;
}

/* subtle depth */
.mistirio-experience::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.04), transparent);
}

/* IMAGE */
.mistirio-experience__image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.mistirio-experience__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: all 0.6s ease;
}

/* subtle hover (premium feel) */
.mistirio-experience__image-wrapper:hover img {
    transform: scale(1.08);
}

/* soft shadow */
.mistirio-experience__image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    border-radius: 16px;
    pointer-events: none;
}


/* CONTENT */
.mistirio-experience__content {
    padding-left: 60px;
}

@media (max-width: 992px) {
    .mistirio-experience__content {
        padding-left: 0;
    }
}

/* EYEBROW */
.mistirio-experience__eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #b89a5f; /* gold */
    margin-bottom: 20px;
    font-weight: 500;
}

/* TITLE */
.mistirio-experience__title {
    font-size: 52px;
    line-height: 1.15;
    color: #1c1c1c;
    margin-bottom: 25px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .mistirio-experience__title {
        font-size: 36px;
    }
}

/* TEXT */
.mistirio-experience__text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    max-width: 480px;
    margin-bottom: 35px;
}


/* BUTTON (gold) */
.mistirio-btn--gold {
    background: #c6a46c;
    color: #fff;
    padding: 14px 28px;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: inline-block;
}

.mistirio-btn--gold:hover {
    background: #b8955c;
    color: #fff;
}







/* NAV LINKS WHITE */
header .nav-link,
header .navbar-nav .nav-link {

}

/* HOVER */
header .nav-link:hover {
    color: #c8a96a !important;
}

/* LOGO TEXT (αν υπάρχει text logo) */
header .logo-text {
    color: #ffffff !important;
}

/* ICONS (π.χ. reservation icon) */
header i,
header svg {
    color: #ffffff !important;
    fill: #ffffff !important;
}

/* LIGHT SECTION */
.mistirio-ritual.light {
    padding: 120px 0;
    background: #f5f2ec; /* όχι άσπρο – πιο premium */
    color: #111;
}

/* HEADER */
.mistirio-ritual.light .mistirio-ritual__eyebrow {
    font-size: 12px;
    letter-spacing: 2px;
    color: #c8a96a;
    text-transform: uppercase;
}

.mistirio-ritual.light .mistirio-ritual__title {
    font-size: 42px;
    margin-top: 15px;
}

/* ITEMS */
.mistirio-ritual.light .mistirio-ritual__item {
    text-align: center;
    padding: 10px;
}

/* IMAGE */
.mistirio-ritual.light .mistirio-ritual__item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    margin-bottom: 25px;
    border-radius: 6px;
    transition: 0.4s;
}

/* TEXT */
.mistirio-ritual.light .mistirio-ritual__item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #111;
}

.mistirio-ritual.light .mistirio-ritual__item p {
    font-size: 14px;
    color: #666;
}

/* HOVER */
.mistirio-ritual.light .mistirio-ritual__item:hover img {
    transform: scale(1.03);
}

/* OPTIONAL luxury detail */
.mistirio-ritual.light .mistirio-ritual__item h3::after {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background: #c8a96a;
    margin: 10px auto 0;
}


/* SECTION */
.mistirio-food {
    padding: 120px 0;
    background: #ffffff;
}

/* HEADER */
.mistirio-food__eyebrow {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c8a96a;
}

.mistirio-food__title {
    font-size: 42px;
    margin-top: 15px;
}

/* GRID */
.mistirio-food__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 60px;
}

/* ITEMS */
.mistirio-food__item {
    overflow: hidden;
}

.mistirio-food__item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: 0.4s;
}

/* HOVER */
.mistirio-food__item:hover img {
    transform: scale(1.05);
}

/* CTA */
.mistirio-food__cta {
    margin-top: 50px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .mistirio-food__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .mistirio-food__grid {
        grid-template-columns: 1fr;
    }
}


/* SECTION 4 - NARRATIVE */

.mistirio-narrative {
  padding: 140px 0;
  background: #f6f4f1;
}

/* GRID */
.mistirio-narrative__grid {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

/* IMAGE */
.mistirio-narrative__image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

/* OVERLAY CARD */
.mistirio-narrative__content {
  position: absolute;
  bottom: -160px;
  left: 60px;
  background: #ffffff;
  padding: 50px 55px;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 25px 80px rgba(0,0,0,0.08);
}

/* TEXT */
.mistirio-narrative__eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #bfa37a;
  display: block;
  margin-bottom: 12px;
}

.mistirio-narrative__title {
  font-family: var(--alt-font);
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.mistirio-narrative__text {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* DETAILS */
.mistirio-narrative__details {
  margin-top: 140px;
  display: flex;
  gap: 40px;
  justify-content: center;
}

.mistirio-narrative__item {
  text-align: center;
  max-width: 280px;
}

.mistirio-narrative__item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 14px;
}

.mistirio-narrative__item span {
  font-size: 14px;
  color: #666;
}



.mistirio-footer {
    position: relative;
    padding: 160px 0 60px;
    background: #0f0f0f;
    color: #fff;
    overflow: hidden;
}

/* SOFT GLOW BACKGROUND */
.mistirio-footer__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(198,164,108,0.12), transparent 50%);
    pointer-events: none;
}

/* TOP */
.mistirio-footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 100px;
}

/* LOGO */
.mistirio-footer__logo {
    max-width: 180px;
}

/* CTA BLOCK */
.mistirio-footer__headline {
    font-size: 48px;
    font-family: var(--alt-font);
    margin-bottom: 20px;
}

/* CTA LINK (premium underline style) */
.mistirio-footer__cta {
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #c6a46c;
    position: relative;
}

.mistirio-footer__cta::after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background: #c6a46c;
    transition: 0.4s ease;
}

.mistirio-footer__cta:hover::after {
    width: 100%;
}

/* MIDDLE */
.mistirio-footer__middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

/* INFO */
.mistirio-footer__info p {
    margin-bottom: 8px;
    color: rgba(255,255,255,0.6);
}

/* SOCIALS */
.mistirio-footer__socials a {
    margin-left: 25px;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    position: relative;
}

/* underline animation */
.mistirio-footer__socials a::after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    background: #c6a46c;
    transition: 0.3s;
}

.mistirio-footer__socials a:hover {
    color: #fff;
}

.mistirio-footer__socials a:hover::after {
    width: 100%;
}

/* BOTTOM */
.mistirio-footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 20px;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    text-align: center;
}


/* ===============================
   HERO PATCH – Mistirio
   =============================== */

/* container */
.mistirio-hero {
    position: relative;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* background image */
.mistirio-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transform: scale(1.02); /* subtle cinematic zoom */
}

/* overlay (cinematic depth) */
.mistirio-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0.45) 35%, rgba(0,0,0,0.15) 65%, rgba(0,0,0,0) 100%),
        linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 100%);
}

/* content */
.mistirio-hero__content {
    position: relative;
    z-index: 3;
    max-width: 640px;
    padding-left: 80px;
    color: #fff;
}

/* eyebrow */
.mistirio-hero__eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.75);
}

/* title */
.mistirio-hero__title {
    font-size: clamp(44px, 5vw, 72px);
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

/* title variations */
.mistirio-hero__title-soft {
    font-weight: 400;
    opacity: 0.85;
}

.mistirio-hero__title-light {
    font-weight: 300;
    opacity: 0.65;
}

/* paragraph */
.mistirio-hero__text {
    font-size: 16px;
    line-height: 1.6;
    max-width: 520px;
    margin-bottom: 32px;
    color: rgba(255,255,255,0.85);
}

/* buttons */
.mistirio-hero__actions {
    display: flex;
    gap: 14px;
}

/* subtle hover upgrade */
.mistirio-btn--gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.mistirio-btn--outline:hover {
    background: rgba(255,255,255,0.08);
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 991px) {

    .mistirio-hero__content {
        padding-left: 40px;
        max-width: 90%;
    }

    .mistirio-hero__title {
        font-size: 42px;
    }

}

@media (max-width: 576px) {

    .mistirio-hero {
        min-height: 600px;
    }

    .mistirio-hero__content {
        padding: 0 20px;
    }

    .mistirio-hero__title {
        font-size: 34px;
    }

    .mistirio-hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* FOOTER BASE */
.mistirio-footer {
    position: relative;
    background: #0b0b0b;
    color: #fff;
    padding: 100px 0 40px;
}

/* subtle gradient */
.mistirio-footer__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(180,140,90,0.08), transparent 40%);
}

/* TOP */
.mistirio-footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

/* BRAND */
.mistirio-footer__logo {
    width: 140px;
    margin-bottom: 20px;
}

.mistirio-footer__tagline {
    max-width: 320px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
}

/* CTA */
.mistirio-footer__eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.mistirio-footer__headline {
    font-size: 42px;
    margin: 10px 0 20px;
}

.mistirio-footer__actions {
    display: flex;
    gap: 12px;
}

.mistirio-footer__cta {
    padding: 12px 22px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
}

.mistirio-footer__cta.primary {
    background: #c8a46a;
    color: #000;
}

.mistirio-footer__cta.secondary {
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
}

.mistirio-footer__cta:hover {
    transform: translateY(-2px);
}

/* divider */
.mistirio-footer__divider {
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 60px 0;
}

/* MIDDLE */
.mistirio-footer__middle {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* columns */
.mistirio-footer__col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mistirio-footer__label {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 10px;
}

.mistirio-footer__col a {
    color: #fff;
    text-decoration: none;
    opacity: 0.75;
}

.mistirio-footer__col a:hover {
    opacity: 1;
}

/* bottom */
.mistirio-footer__bottom {
    margin-top: 50px;
    font-size: 12px;
    opacity: 0.5;
    text-align: center;
}

/* responsive */
@media (max-width: 991px) {

    .mistirio-footer__top {
        flex-direction: column;
    }

    .mistirio-footer__middle {
        flex-direction: column;
    }

}

.mistirio-footer__description {
    max-width: 420px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin-top: 20px;
}


/* image depth */
.mistirio-experience__image-wrapper {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    transform: translateY(30px);
}

/* caption κάτω από image */
.mistirio-experience__caption {
    position: absolute;
    bottom: 14px;
    left: 18px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
}

/* text tighter */
.mistirio-experience__content {
    max-width: 480px;
}

/* better paragraph rhythm */
.mistirio-experience__text {
    line-height: 1.7;
    margin-top: 20px;
    margin-bottom: 28px;
    color: rgba(0,0,0,0.7);
}


.mistirio-experience__image-wrapper {
    border-radius: 24px 120px 24px 24px;
    overflow: hidden;
}

.mistirio-experience__image-wrapper {
    clip-path: polygon(
        0 0,
        100% 0,
        100% 85%,
        85% 100%,
        0 100%
    );
}

.mistirio-experience__image-wrapper {
    position: relative;
}

.mistirio-experience__image-wrapper::after {
    content: "";
    position: absolute;
    inset: -20px;
    border: 1px solid rgba(0,0,0,0.08);
    z-index: -1;
}

.mistirio-experience__image-wrapper img {
    transform: scale(1.03);
}

.mistirio-experience__image-wrapper {
    width: 135%;
    margin-left: -45%;
}


/* ===============================
   SECTION 4 - THE CONCEPT
================================ */

.mistirio-concept {
    position: relative;
    padding: 140px 0;
    background: #f4efe8;
    overflow: hidden;
}

/* INTRO */
.mistirio-concept__intro {
    max-width: 760px;
    margin-bottom: 80px;
}

.mistirio-concept__eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #b8955c;
    margin-bottom: 22px;
}

.mistirio-concept__title {
    font-size: clamp(48px, 6vw, 86px);
    line-height: 0.95;
    color: #171717;
    margin-bottom: 28px;
}

.mistirio-concept__lead {
    max-width: 620px;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(0,0,0,0.68);
}

/* MAIN GRID */
.mistirio-concept__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;
    align-items: end;
}

.mistirio-concept__main-image {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
}

.mistirio-concept__main-image img {
    width: 100%;
    height: 720px;
    object-fit: cover;
    display: block;
}

/* STORY */
.mistirio-concept__story {
    padding-bottom: 20px;
}

.mistirio-concept__line {
    border-top: 1px solid rgba(0,0,0,0.12);
    padding: 28px 0;
}

.mistirio-concept__line span {
    display: block;
    font-size: 12px;
    letter-spacing: 0.18em;
    color: #b8955c;
    margin-bottom: 14px;
}

.mistirio-concept__line h3 {
    font-size: 28px;
    line-height: 1.2;
    color: #171717;
    margin-bottom: 12px;
}

.mistirio-concept__line p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(0,0,0,0.62);
    max-width: 420px;
}

/* DETAILS */
.mistirio-concept__details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
    max-width: 760px;
    margin: 70px 0 0 auto;
}

.mistirio-concept__details figure {
    margin: 0;
}

.mistirio-concept__details img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.mistirio-concept__details figcaption {
    margin-top: 14px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.55);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .mistirio-concept {
        padding: 100px 0;
    }

    .mistirio-concept__grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .mistirio-concept__main-image img {
        height: 520px;
    }

    .mistirio-concept__details {
        grid-template-columns: 1fr;
        margin-left: 0;
    }
}

@media (max-width: 576px) {
    .mistirio-concept__main-image img {
        height: 420px;
    }

    .mistirio-concept__details img {
        height: 220px;
    }
}


/* MENU HERO SECTION */

.mistirio-menu-hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px;
  overflow: hidden;
  background:
    linear-gradient(rgba(10, 8, 6, 0.45), rgba(10, 8, 6, 0.78)),
    url("/imgs/mistirio-santorini.jpg") center/cover no-repeat;
  color: #fff;
}

.mistirio-menu-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.08), transparent 38%),
    linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.75));
  pointer-events: none;
}

.mistirio-menu-hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.mistirio-menu-hero__eyebrow {
  display: inline-block;
  margin-bottom: 22px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d8b46a;
}

.mistirio-menu-hero__title {
  margin: 0;
  font-size: clamp(46px, 8vw, 112px);
  line-height: 0.92;
  font-weight: 400;
  letter-spacing: -0.055em;
  color: #fff;
}

.mistirio-menu-hero__text {
  max-width: 620px;
  margin: 32px auto 0;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.65;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
}

.mistirio-menu-hero__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 42px;
}

.mistirio-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.35s ease;
}

.mistirio-btn--light {
  background: #d8b46a;
  color: #111;
  border: 1px solid #d8b46a;
}

.mistirio-btn--light:hover {
  background: #fff;
  border-color: #fff;
  color: #111;
}

.mistirio-btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.45);
}

.mistirio-btn--outline:hover {
  background: #fff;
  color: #111;
  border-color: #fff;
}

@media (max-width: 767px) {
  .mistirio-menu-hero {
    min-height: 72vh;
    padding: 100px 20px;
  }

  .mistirio-menu-hero__title {
    letter-spacing: -0.04em;
  }

  .mistirio-menu-hero__text {
    margin-top: 24px;
  }

  .mistirio-menu-hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .mistirio-btn {
    width: 100%;
    max-width: 280px;
  }
}


/* MENU PREVIEW / LIGHT SECTION */

.mistirio-menu-preview {
  position: relative;
  padding: 110px 24px;
  background: #f4efe7;
  color: #17120d;
  overflow: hidden;
}

.mistirio-menu-preview::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(216, 180, 106, 0.28), transparent 68%);
  pointer-events: none;
}

.mistirio-menu-preview__head {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.mistirio-menu-preview__eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9b7332;
}

.mistirio-menu-preview__title {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.045em;
  color: #17120d;
}

.mistirio-menu-preview__text {
  max-width: 620px;
  margin: 26px auto 0;
  font-size: 18px;
  line-height: 1.75;
  font-weight: 300;
  color: rgba(23, 18, 13, 0.72);
}

.mistirio-menu-preview__grid {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 70px;
}

.mistirio-menu-preview__column {
  display: flex;
  flex-direction: column;
}

.mistirio-menu-item {
  padding: 28px 0;
  border-top: 1px solid rgba(23, 18, 13, 0.16);
}

.mistirio-menu-preview__column .mistirio-menu-item:last-child {
  border-bottom: 1px solid rgba(23, 18, 13, 0.16);
}

.mistirio-menu-item h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #17120d;
}

.mistirio-menu-item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
  color: rgba(23, 18, 13, 0.68);
}

.mistirio-menu-preview__actions {
  position: relative;
  z-index: 2;
  margin-top: 56px;
  text-align: center;
}

.mistirio-menu-preview__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 16px 32px;
  border-radius: 999px;
  background: #17120d;
  border: 1px solid #17120d;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.35s ease;
}

.mistirio-menu-preview__btn:hover {
  background: #d8b46a;
  border-color: #d8b46a;
  color: #17120d;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .mistirio-menu-preview {
    padding: 80px 20px;
  }

  .mistirio-menu-preview__head {
    margin-bottom: 44px;
  }

  .mistirio-menu-preview__text {
    font-size: 16px;
  }

  .mistirio-menu-preview__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .mistirio-menu-item h3 {
    font-size: 22px;
  }

  .mistirio-menu-preview__btn {
    width: 100%;
    max-width: 300px;
  }
}


/* WINES PREVIEW / DARK SECTION */

.mistirio-wines-preview {
  position: relative;
  padding: 120px 24px;
  background: #0b0907;
  color: #fff;
  overflow: hidden;
}

.mistirio-wines-preview::before {
  content: "";
  position: absolute;
  top: -180px;
  left: 50%;
  width: 540px;
  height: 540px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(216,180,106,0.16), transparent 68%);
  pointer-events: none;
}

.mistirio-wines-preview__head {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto 72px;
  text-align: center;
}

.mistirio-wines-preview__eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d8b46a;
}

.mistirio-wines-preview__title {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -0.045em;
  color: #fff;
}

.mistirio-wines-preview__text {
  max-width: 620px;
  margin: 26px auto 0;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 300;
  color: rgba(255,255,255,0.68);
}

.mistirio-wines-preview__grid {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 90px;
}

.mistirio-wines-preview__column {
  display: flex;
  flex-direction: column;
  gap: 46px;
}

.mistirio-wine-group {
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 28px;
}

.mistirio-wine-group h3 {
  margin: 0 0 24px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  color: #d8b46a;
}

.mistirio-wine-item {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mistirio-wine-item h4 {
  margin: 0 0 7px;
  font-size: 20px;
  line-height: 1.28;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: #fff;
}

.mistirio-wine-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  font-weight: 300;
  color: rgba(255,255,255,0.58);
}

.mistirio-wines-preview__actions {
  position: relative;
  z-index: 2;
  margin-top: 64px;
  text-align: center;
}

.mistirio-wines-preview__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 15px 32px;
  border-radius: 999px;
  background: #d8b46a;
  border: 1px solid #d8b46a;
  color: #111;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.35s ease;
}

.mistirio-wines-preview__btn:hover {
  background: #fff;
  border-color: #fff;
  color: #111;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .mistirio-wines-preview {
    padding: 85px 20px;
  }

  .mistirio-wines-preview__head {
    margin-bottom: 48px;
  }

  .mistirio-wines-preview__grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .mistirio-wine-item h4 {
    font-size: 18px;
  }

  .mistirio-wines-preview__btn {
    width: 100%;
    max-width: 300px;
  }
}



.mistirio-drinks-preview {
  padding: 120px 24px;
  background: #ffffff;
  color: #111;
}

.mistirio-drinks-preview__head {
  max-width: 760px;
  margin: 0 auto 70px;
  text-align: center;
}

.mistirio-drinks-preview__eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b89652;
}

.mistirio-drinks-preview__title {
  margin-top: 10px;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.045em;
  color: #111;
}

.mistirio-drinks-preview__text {
  margin-top: 20px;
  font-size: 16px;
  color: rgba(0,0,0,0.6);
}

.mistirio-drinks-preview__grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 90px;
}

.mistirio-drink-group {
  margin-bottom: 50px;
}

.mistirio-drink-group h3 {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b89652;
  margin-bottom: 20px;
}

.mistirio-drink-item {
  padding: 18px 0;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.mistirio-drink-item h4 {
  font-size: 20px;
  margin-bottom: 6px;
  font-weight: 400;
}

.mistirio-drink-item p {
  font-size: 14px;
  color: rgba(0,0,0,0.6);
}

.mistirio-drinks-preview__actions {
  margin-top: 60px;
  text-align: center;
}

.mistirio-drinks-preview__btn {
  padding: 14px 30px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
}

.mistirio-drinks-preview__btn:hover {
  background: #d8b46a;
  color: #111;
}

.mistirio-menu-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.mistirio-menu-hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.mistirio-menu-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mistirio-menu-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(10,8,6,0.45), rgba(10,8,6,0.75));
  z-index: 1;
}

.mistirio-menu-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.mistirio-menu-visual {
    margin: 80px 0;
    text-align: center;
}

.mistirio-menu-visual img {
    width: 100%;
    max-width: 900px;
    border-radius: 20px;
}

.mistirio-menu-visual--secondary img {
    max-width: 700px;
}


.mistirio-hero-1 {
    position: relative;
    height: 85vh;

    overflow: hidden;
}


/* EXPERIENCE ARRIVAL SECTION */

.mistirio-arrival {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 720px;
    background: #efe2d2;
    overflow: hidden;
}

.mistirio-arrival__image {
    position: relative;
    min-height: 720px;
}

.mistirio-arrival__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.05) saturate(0.9);
}

.mistirio-arrival__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 90px 9vw;
    color: #211915;
}

.mistirio-arrival__eyebrow {
    display: block;
    margin-bottom: 24px;
    font-size: 12px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #9a7a4a;
    font-weight: 500;
}

.mistirio-arrival__title {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(56px, 7vw, 108px);
    line-height: 0.9;
    font-weight: 400;
    color: #1e1713;
}

.mistirio-arrival__line {
    width: 90px;
    height: 2px;
    background: #9a7a4a;
    margin: 42px 0 38px;
}

.mistirio-arrival__content p {
    max-width: 470px;
    margin: 0 0 28px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 22px;
    line-height: 1.42;
    color: #2b211c;
}

.mistirio-arrival__note {
    margin-top: 28px;
    width: min(430px, 100%);
    background: #17120f;
    color: #b99355;
    padding: 34px 42px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 12px;
    line-height: 1.8;
}

.mistirio-arrival__note::before {
    content: "";
    width: 58px;
    height: 1px;
    background: #b99355;
    display: block;
    margin-bottom: 10px;
}

/* RESPONSIVE */

@media (max-width: 991px) {
    .mistirio-arrival {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .mistirio-arrival__image {
        min-height: 520px;
    }

    .mistirio-arrival__content {
        padding: 70px 8vw;
    }
}

@media (max-width: 575px) {
    .mistirio-arrival__image {
        min-height: 420px;
    }

    .mistirio-arrival__content {
        padding: 58px 28px;
    }

    .mistirio-arrival__title {
        font-size: 56px;
    }

    .mistirio-arrival__content p {
        font-size: 19px;
    }

    .mistirio-arrival__note {
        padding: 28px 26px;
        font-size: 10px;
        letter-spacing: 0.22em;
    }
}



.mistirio-passage {
    padding: 140px 0;
    background: #17120f;
    color: #e8d8c7;
    text-align: center;
}

.mistirio-passage__inner {
    max-width: 720px;
    margin: 0 auto 80px;
}

.mistirio-passage__eyebrow {
    display: block;
    margin-bottom: 20px;
    font-size: 12px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #b99355;
}

.mistirio-passage__title {
    font-family: Georgia, serif;
    font-size: 72px;
    margin-bottom: 30px;
}

.mistirio-passage__text {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 20px;
    color: #d6c3b0;
}

.mistirio-passage__gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: min(1100px, 90%);
    margin: 0 auto;
}

.mistirio-passage__gallery img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

/* responsive */
@media (max-width: 768px) {
    .mistirio-passage__gallery {
        grid-template-columns: 1fr;
    }

    .mistirio-passage__gallery img {
        height: 300px;
    }
}



.mistirio-immersion {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    min-height: 760px;
    background: #201612;
    color: #ead9c7;
    overflow: hidden;
}

.mistirio-immersion__media {
    position: relative;
    min-height: 760px;
}

.mistirio-immersion__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: contrast(1.08) saturate(0.86) brightness(0.9);
}

.mistirio-immersion__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 9vw;
}

.mistirio-immersion__eyebrow {
    display: block;
    margin-bottom: 24px;
    font-size: 12px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #b99355;
}

.mistirio-immersion__title {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(56px, 7vw, 104px);
    line-height: 0.9;
    font-weight: 400;
    color: #f0dfcc;
}

.mistirio-immersion__line {
    width: 90px;
    height: 2px;
    background: #b99355;
    margin: 42px 0 38px;
}

.mistirio-immersion__content p {
    max-width: 520px;
    margin: 0 0 26px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 22px;
    line-height: 1.45;
    color: #d7c3af;
}

.mistirio-immersion__link {
    display: inline-flex;
    width: fit-content;
    margin-top: 18px;
    padding: 15px 28px;
    border: 1px solid #b99355;
    color: #b99355;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 11px;
    transition: all 0.3s ease;
}

.mistirio-immersion__link:hover {
    background: #b99355;
    color: #201612;
}

@media (max-width: 991px) {
    .mistirio-immersion {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .mistirio-immersion__media {
        min-height: 520px;
    }

    .mistirio-immersion__content {
        padding: 70px 8vw;
    }
}

@media (max-width: 575px) {
    .mistirio-immersion__media {
        min-height: 420px;
    }

    .mistirio-immersion__content {
        padding: 58px 28px;
    }

    .mistirio-immersion__content p {
        font-size: 19px;
    }
}


.mistirio-return {
    padding: 160px 0;
    background: #f4ebe1;
    text-align: center;
    color: #2a1f1a;
}

.mistirio-return__inner {
    max-width: 720px;
    margin: 0 auto;
}

.mistirio-return__eyebrow {
    display: block;
    margin-bottom: 20px;
    font-size: 12px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #9a7a4a;
}

.mistirio-return__title {
    font-family: Georgia, serif;
    font-size: 72px;
    margin-bottom: 30px;
}

.mistirio-return__line {
    width: 80px;
    height: 2px;
    background: #9a7a4a;
    margin: 30px auto;
}

.mistirio-return p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
}



.mistirio-contact-hero {
    padding: 120px 0 80px;
    background: #f4ebe1; /* soft sand */
    text-align: center;
}

.mistirio-contact-hero__eyebrow {
    display: block;
    font-size: 12px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #b99355;
    margin-bottom: 20px;
}

.mistirio-contact-hero__title {
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.1;
    color: #1e1713;
    margin-bottom: 25px;
}

.mistirio-contact-hero__text {
    max-width: 520px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    color: #5a4a3f;
}



.mistirio-contact-info {
    padding: 90px 0 110px;
    background: #f4ebe1;
}

.mistirio-contact-info__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.mistirio-contact-card {
    background: #fffaf4;
    padding: 42px 34px;
    min-height: 230px;
    border: 1px solid rgba(30, 23, 19, 0.08);
}

.mistirio-contact-card__label {
    display: block;
    margin-bottom: 22px;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #b99355;
}

.mistirio-contact-card h3 {
    margin: 0 0 16px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 28px;
    font-weight: 400;
    color: #1e1713;
}

.mistirio-contact-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    color: #5a4a3f;
}

.mistirio-contact-card a {
    color: #1e1713;
    text-decoration: none;
    border-bottom: 1px solid rgba(185, 147, 85, 0.7);
}

.mistirio-contact-card a:hover {
    color: #b99355;
}

@media (max-width: 991px) {
    .mistirio-contact-info__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .mistirio-contact-info {
        padding: 60px 0 80px;
    }

    .mistirio-contact-info__grid {
        grid-template-columns: 1fr;
    }

    .mistirio-contact-card {
        padding: 34px 28px;
    }
}


.mistirio-contact-map {
    background: #17120f;
    color: #ead9c7;
}

.mistirio-contact-map__intro {
    max-width: 760px;
    margin: 0 auto;
    padding: 110px 30px 70px;
    text-align: center;
}

.mistirio-contact-map__eyebrow {
    display: block;
    margin-bottom: 18px;
    font-size: 12px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #b99355;
}

.mistirio-contact-map__title {
    margin: 0 0 22px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 400;
    line-height: 1.05;
    color: #f0dfcc;
}

.mistirio-contact-map__text {
    max-width: 540px;
    margin: 0 auto 34px;
    font-size: 18px;
    line-height: 1.65;
    color: #cdbba7;
}

.mistirio-contact-map__button {
    display: inline-flex;
    padding: 15px 28px;
    border: 1px solid #b99355;
    color: #b99355;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 11px;
    transition: all 0.3s ease;
}

.mistirio-contact-map__button:hover {
    background: #b99355;
    color: #17120f;
}

.mistirio-contact-map__frame {
    width: 100%;
    height: 620px;
    overflow: hidden;
}

.mistirio-contact-map__frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(20%) contrast(1.05);
}

@media (max-width: 575px) {
    .mistirio-contact-map__intro {
        padding: 80px 26px 55px;
    }

    .mistirio-contact-map__frame {
        height: 420px;
    }
}




.mistirio-contact-cta {
    padding: 120px 0;
    background: #f4ebe1;
    text-align: center;
}

.mistirio-contact-cta__eyebrow {
    display: block;
    margin-bottom: 18px;
    font-size: 12px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #b99355;
}

.mistirio-contact-cta__title {
    margin: 0 0 22px;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1.1;
    color: #1e1713;
}

.mistirio-contact-cta__text {
    max-width: 520px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.6;
    color: #5a4a3f;
}

.mistirio-contact-cta__actions {
    margin-top: 10px;
}


.mistirio-parallax {
    position: relative;
    height: 60vh;
    background-image: url('../imgs/mistirio-santorini.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mistirio-parallax__overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 15, 10, 0.5);
}

.mistirio-parallax__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.mistirio-parallax__content h2 {
    color: #f0dfcc;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.2;
}

@media (max-width: 768px) {
    .mistirio-parallax {
        background-attachment: scroll;
    }
}



.mistirio-contact-hero {
    padding: 100px 0 45px;
}

.mistirio-contact-info {
    padding: 40px 0 95px;
}

.mistirio-contact-card h3 {
    font-size: 26px;
    line-height: 1.25;
}

.mistirio-contact-hero::before,
.mistirio-contact-hero::after {
    display: none;
}

.mistirio-contact-hero::before,
.mistirio-contact-hero::after {
    display: none !important;
}


.mistirio-contact-map__intro {
    padding: 80px 30px 55px;
}

.mistirio-contact-map__title {
    font-size: clamp(38px, 4vw, 58px);
}

.mistirio-contact-map__text {
    margin-bottom: 28px;
}

.mistirio-contact-map__frame {
    height: 460px;
    line-height: 0;
}

.mistirio-contact-map__frame iframe {
    display: block;
}



.scroll-progress,
.scroll-indicator,
.scroll-down {
    display: none !important;
}



.mistirio-reservations-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #17120f;
}

.mistirio-reservations-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('../imgs/mistirio-santorini.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
}

.mistirio-reservations-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(23, 18, 15, 0.45),
            rgba(23, 18, 15, 0.78)
        );
}

.mistirio-reservations-hero .container {
    position: relative;
    z-index: 2;
}

.mistirio-reservations-hero__eyebrow {
    display: block;
    margin-bottom: 22px;
    font-size: 12px;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: #b99355;
}

.mistirio-reservations-hero__title {
    margin: 0;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(54px, 7vw, 104px);
    line-height: 0.95;
    font-weight: 400;
    color: #f4ebe1;
}

.mistirio-reservations-hero__text {
    max-width: 620px;
    margin: 30px auto 0;
    font-size: 19px;
    line-height: 1.7;
    color: #ead9c7;
}

.mistirio-reservations-hero__actions {
    margin-top: 42px;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .mistirio-reservations-hero {
        min-height: 680px;
        padding: 120px 0 80px;
    }
}


.mistirio-reservation-experience {
    padding: 110px 0;
    background: #f4ebe1;
}

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

.mistirio-experience-card {
    background: #fffaf4;
    padding: 50px 40px;
    border: 1px solid rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.3s ease;
}

.mistirio-experience-card:hover {
    transform: translateY(-6px);
    border-color: rgba(185,147,85,0.4);
}

.mistirio-experience-card span {
    display: block;
    margin-bottom: 18px;
    font-size: 12px;
    letter-spacing: 0.3em;
    color: #b99355;
    text-transform: uppercase;
}

.mistirio-experience-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1e1713;
}

.mistirio-experience-card p {
    color: #5a4a3f;
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .mistirio-experience-grid {
        grid-template-columns: 1fr;
    }
}


.mistirio-reservation-action {
    padding: 110px 0;
    background: #17120f;
    color: #ead9c7;
}

.mistirio-booking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mistirio-booking-card {
    background: transparent;
    border: 1px solid rgba(185,147,85,0.4);
    padding: 50px;
    text-align: center;
    transition: all 0.3s ease;
}

.mistirio-booking-card:hover {
    border-color: #b99355;
    transform: translateY(-5px);
}

.mistirio-booking-card h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #f4ebe1;
}

.mistirio-booking-card p {
    margin-bottom: 20px;
    color: #cdbba7;
}

.mistirio-booking-card a {
    font-size: 20px;
    color: #b99355;
    text-decoration: none;
    border-bottom: 1px solid rgba(185,147,85,0.6);
}

@media (max-width: 768px) {
    .mistirio-booking-grid {
        grid-template-columns: 1fr;
    }
}


.mistirio-expect {
    padding: 110px 0;
    background: #f4ebe1;
}

.mistirio-expect__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mistirio-expect__content {
    max-width: 520px;
}

.mistirio-expect__image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 991px) {
    .mistirio-expect__grid {
        grid-template-columns: 1fr;
    }
}


.mistirio-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: rgba(255,255,255,0.5);
}

.mistirio-footer__credit a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
}

.mistirio-footer__credit a:hover {
    color: #b99355;
}
