/* ============================================================
   Ethos Greek Bistro Detail Page — Shared layout
   ============================================================ */

.main-div,
.ethos-strip,
.ethos-about,
.ethos-info,
.ethos-special,
.ethos-try,
.ethos-dining,
.ethos-gallery,
.ethos-plan,
.ethos-cta {
    box-sizing: border-box;
}

.main-div > .container,
.ethos-strip > .container,
.ethos-about > .container,
.ethos-info > .container,
.ethos-special > .container,
.ethos-try > .container,
.ethos-dining > .container,
.ethos-gallery > .container,
.ethos-plan > .container,
.ethos-cta > .container {
    padding-left: 15px;
    padding-right: 15px;
}

.main-div__inner,
.ethos-about__inner,
.ethos-info__inner,
.ethos-special__inner,
.ethos-try__inner,
.ethos-dining__inner,
.ethos-gallery__inner,
.ethos-plan__inner,
.ethos-cta__inner {
    width: 100%;
}

/* ============================================================
   Hero
   ============================================================ */

.ethos-hero {
    position: relative;
    width: 100%;
    background: #fff;
}

.main-div {
    width: 100%;
    padding: 24px 0 0;
}

.main-div__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    width: 100%;
    min-height: 500px;
    padding: 32px 45px 120px;
    gap: 16px;
    background-image: url("../images/restaurents/ethos-greek-bistro.webp");
    background-size: cover;
    background-position: center 37%;
    background-repeat: no-repeat;
    border-radius: 16px;
    overflow: hidden;
}

.main-div__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.35) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.main-div__badge,
.main-div__title,
.main-div__description,
.main-div__actions {
    position: relative;
    z-index: 2;
}

.main-div__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    max-width: 100%;
    padding: 8px 18px;
    border: 1px solid #fff;
    border-radius: 9999px;
    background: rgba(0, 0, 0, 0.35);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.08em;
    color: #fff;
    white-space: nowrap;
}

.main-div__badge img {
    display: block;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.main-div__title {
    margin: 0;
    max-width: 100%;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.1;
    color: #fff;
}

.main-div__description {
    margin: 0;
    max-width: 560px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: #fff;
}

.main-div__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.main-div__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-sizing: border-box;
    border: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    padding: 14px 20px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.main-div__btn img {
    display: block;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.main-div__btn--order {
    background: rgba(240, 100, 40, 1);
    color: #fff;
}

.main-div__btn--menu,
.main-div__btn--direction {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

/* ── Feature Strip ─────────────────────────────────────────── */

.ethos-strip {
    position: relative;
    z-index: 3;
    width: 100%;
    margin-top: 0;
    background: transparent;
}

.ethos-strip > .container {
    display: flex;
    justify-content: center;
}

.ethos-strip__inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    width: 92%;
    max-width: 92%;
    margin: 0 auto;
    padding: 24px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-50%);
}

.ethos-strip__item {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.ethos-strip__icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fdeee6;
}

.ethos-strip__icon-wrap img {
    display: block;
}

.ethos-strip__copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.ethos-strip__title {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    color: #1a1a1a;
}

.ethos-strip__text {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.4;
    color: rgba(118, 114, 114, 1);
}

/* ── About Section ─────────────────────────────────────────── */

.ethos-about {
    width: 100%;
    background: #fff;
    padding: 24px 0 48px;
}

.ethos-about__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

.ethos-about__media {
    width: 699.4px;
    height: 528.28px;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    border-radius: 16px;
}

.ethos-about__image {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.ethos-about__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    min-width: 0;
    align-self: start;
}

.ethos-about__badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 10px;
    padding: 8px 16px;
    border: 1px solid rgba(240, 100, 40, 0.5);
    border-radius: 9999px;
    background: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(240, 100, 40, 1);
    white-space: nowrap;
}

.ethos-about__badge img {
    display: block;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.ethos-about__title {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 42px;
    line-height: 1.15;
    color: #1a1a1a;
}

.ethos-about__text {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(118, 114, 114, 1);
}

.ethos-about__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    gap: 8px;
    padding: 14px 24px;
    border: 1px solid rgba(240, 100, 40, 1);
    border-radius: 8px;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    color: rgba(240, 100, 40, 1);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ethos-info {
    width: 100%;
    background: #fff;
    padding: 0 0 48px;
}

.ethos-info__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.ethos-info__card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;
    align-items: stretch;
    min-width: 0;
    padding: 24px;
    border: 1px solid rgba(118, 114, 114, 0.35);
    border-radius: 12px;
    background: #fff;
}

.ethos-info__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
}

.ethos-info__title {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.2;
    color: rgba(240, 100, 40, 1);
}

.ethos-info__details {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ethos-info__detail {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.ethos-info__detail img {
    display: block;
    flex-shrink: 0;
    margin-top: 2px;
}

.ethos-info__detail-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.ethos-info__detail-label {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.3;
    color: #1a1a1a;
}

.ethos-info__detail-text {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(118, 114, 114, 1);
}

.ethos-info__text {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(118, 114, 114, 1);
}

.ethos-info__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.ethos-info__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    white-space: nowrap;
    box-sizing: border-box;
    text-decoration: none;
}

.ethos-info__btn img {
    display: block;
    flex-shrink: 0;
}

.ethos-info__btn--direction {
    border: none;
    background: rgba(240, 100, 40, 1);
    color: #fff;
}

.ethos-info__card--order .ethos-info__body {
    justify-content: flex-start;
}

.ethos-info__card--order .ethos-info__btn--order {
    align-self: flex-start;
    margin-top: auto;
    width: 159.67px;
    height: 46px;
    padding: 0 14px;
    border: none;
    background: rgba(240, 100, 40, 1);
    color: #fff;
    font-size: 15px;
    box-sizing: border-box;
}

.ethos-info__btn--order {
    border: none;
    background: rgba(240, 100, 40, 1);
    color: #fff;
}

.ethos-info__btn--call {
    border: 1px solid rgba(240, 100, 40, 1);
    background: transparent;
    color: rgba(240, 100, 40, 1);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ethos-info__btn--call img {
    transition: filter 0.2s ease;
}

.ethos-info__media {
    min-width: 0;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
}

.ethos-info__image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
}

/* ── What Makes Ethos Special ──────────────────────────────── */

.ethos-special {
    width: 100%;
    background: #fff;
    padding: 48px 0;
}

.ethos-special__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.ethos-special__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.ethos-special__badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 10px;
    padding: 8px 16px;
    border: 1px solid rgba(240, 100, 40, 0.5);
    border-radius: 9999px;
    background: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(240, 100, 40, 1);
    white-space: nowrap;
}

.ethos-special__badge img {
    display: block;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.ethos-special__title {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 42px;
    line-height: 1.15;
    color: #1a1a1a;
}

.ethos-special__cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
}

.ethos-special__card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-width: 0;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    border-radius: 16px;
    background: #fef7f2;
}

.ethos-special__card--featured {
    background: #F06428;
    border-color: #F06428;
}

.ethos-special__card-icon {
    display: block;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
}

.ethos-special__card-title {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    color: #1a1a1a;
}

.ethos-special__card-text {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(118, 114, 114, 1);
}

.ethos-special__card--featured .ethos-special__card-title,
.ethos-special__card--featured .ethos-special__card-text {
    color: #fff;
}

/* ── What to Try ─────────────────────────────────────────────── */

.ethos-try {
    width: 100%;
    background: #fff;
    padding: 48px 0;
}

.ethos-try__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.ethos-try__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 640px;
    text-align: center;
}

.ethos-try__badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 10px;
    padding: 8px 16px;
    border: 1px solid rgba(240, 100, 40, 0.5);
    border-radius: 9999px;
    background: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(240, 100, 40, 1);
    white-space: nowrap;
}

.ethos-try__badge img {
    display: block;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.ethos-try__title {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 42px;
    line-height: 1.15;
    color: #1a1a1a;
}

.ethos-try__subtitle {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.5;
    color: rgba(118, 114, 114, 1);
}

.ethos-try__slider {
    width: 100%;
}

.ethos-try__viewport {
    width: 100%;
}

.ethos-try__cards {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
}

.ethos-try__card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 360px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    box-sizing: border-box;
}

.ethos-try__media {
    flex-shrink: 0;
    width: 100%;
    height: 240px;
    background: #f3f3f3;
    border-radius: 12px 12px 0 0;
}

.ethos-try__media img,
.ethos-try__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ethos-try__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 108px;
    gap: 6px;
    padding: 16px;
}

.ethos-try__card-title {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    color: #1a1a1a;
}

.ethos-try__card-text {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(118, 114, 114, 1);
    overflow: hidden;
}

.ethos-try__dots {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.ethos-try__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #fdeee6;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.ethos-try__dot--active {
    background: rgba(240, 100, 40, 1);
    transform: scale(1.15);
}

/* ── Dining Experiences ──────────────────────────────────────── */

.ethos-dining {
    width: 100%;
    background: #fff;
    padding: 48px 0;
}

.ethos-dining__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.ethos-dining__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 720px;
    text-align: center;
}

.ethos-dining__badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 10px;
    padding: 8px 16px;
    border: 1px solid rgba(240, 100, 40, 0.5);
    border-radius: 9999px;
    background: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(240, 100, 40, 1);
    white-space: nowrap;
}

.ethos-dining__badge img {
    display: block;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.ethos-dining__title {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 42px;
    line-height: 1.15;
    color: #1a1a1a;
}

.ethos-dining__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
}

.ethos-dining__card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    box-sizing: border-box;
}

.ethos-dining__media {
    flex-shrink: 0;
    width: 100%;
    height: 240px;
    background: #f3f3f3;
    border-radius: 12px 12px 0 0;
}

.ethos-dining__media img,
.ethos-dining__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ethos-dining__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 10px;
    padding: 20px;
}

.ethos-dining__card-title {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    color: #1a1a1a;
}

.ethos-dining__card-text {
    margin: 0;
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(118, 114, 114, 1);
}

/* ── Plan Your Visit ─────────────────────────────────────────── */

.ethos-plan {
    width: 100%;
    background: #fff;
    padding: 48px 0;
}

.ethos-plan__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 20px;
}

.ethos-plan__panel {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
    background: transparent;
    box-sizing: border-box;
    overflow: visible;
}

.ethos-plan__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0 0 -14px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.ethos-plan__frame {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 40px 32px 32px;
    border: 1px solid rgba(118, 114, 114, 0.35);
    border-radius: 16px;
    background: #fff;
    box-sizing: border-box;
}

.ethos-plan__badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 10px;
    padding: 8px 16px;
    margin-bottom: 50px;
    border: 1px solid rgba(240, 100, 40, 0.5);
    border-radius: 9999px;
    background: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(240, 100, 40, 1);
    white-space: nowrap;
    position: relative;
    z-index: 3;
}

.ethos-plan__badge img {
    display: block;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.ethos-plan__title-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    transform: translateY(-50%);
    padding: 0 16px;
    box-sizing: border-box;
}

.ethos-plan__border-line {
    flex: 1;
    height: 1px;
}

.ethos-plan__title {
    flex-shrink: 0;
    margin: 0;
    padding: 0 24px;
    background: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 42px;
    line-height: 1.15;
    color: #1a1a1a;
    white-space: nowrap;
}

.ethos-plan__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    width: 100%;
    padding: 0;
    margin: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-sizing: border-box;
}

.ethos-plan__details {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: 100%;
}

.ethos-plan__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-width: 0;
    padding: 0 16px;
    text-align: center;
}

.ethos-plan__item:not(:last-child) {
    border-right: 1px solid rgba(118, 114, 114, 0.25);
}

.ethos-plan__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
}

.ethos-plan__icon img {
    display: block;
    width: 47px;
    height: 47px;
}

.ethos-plan__item-title {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.2;
    color: #1a1a1a;
}

.ethos-plan__item-text {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.4;
    color: rgba(118, 114, 114, 1);
}

.ethos-plan__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.ethos-plan__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    white-space: nowrap;
    box-sizing: border-box;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ethos-plan__btn--direction {
    border: none;
    background: rgba(240, 100, 40, 1);
    color: #fff;
}

.ethos-plan__btn--direction:hover,
.ethos-plan__btn--direction:focus,
.ethos-plan__btn--direction:active,
.ethos-plan__btn--direction:visited {
    color: #fff;
    text-decoration: none;
}

.ethos-plan__btn--hours {
    border: 1px solid rgba(240, 100, 40, 1);
    background: transparent;
    color: rgba(240, 100, 40, 1);
}

.ethos-plan__btn--hours:hover,
.ethos-plan__btn--hours:focus,
.ethos-plan__btn--hours:active {
    background: rgba(240, 100, 40, 1);
    border-color: rgba(240, 100, 40, 1);
    color: #fff;
    text-decoration: none;
}

.ethos-plan__btn--hours:visited {
    color: rgba(240, 100, 40, 1);
}

.ethos-plan__btn--hours:hover:visited,
.ethos-plan__btn--hours:focus:visited,
.ethos-plan__btn--hours:active:visited {
    color: #fff;
}

/* ── Gallery Slider ──────────────────────────────────────────── */

.ethos-gallery {
    width: 100%;
    background: #fff;
    padding: 48px 0;
}

.ethos-gallery__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    overflow: hidden;
}

.ethos-gallery__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.ethos-gallery__badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    gap: 10px;
    padding: 8px 16px;
    border: 1px solid rgba(240, 100, 40, 0.5);
    border-radius: 9999px;
    background: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(240, 100, 40, 1);
    white-space: nowrap;
}

.ethos-gallery__badge img {
    display: block;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.ethos-gallery__title {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 42px;
    line-height: 1.15;
    color: #1a1a1a;
}

.ethos-gallery__slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 16px 0;
}

.ethos-gallery__arrow {
    position: absolute;
    top: 50%;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    padding: 0;
    border: 1px solid rgba(240, 100, 40, 0.35);
    border-radius: 50%;
    background: #fff;
    color: rgba(240, 100, 40, 1);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-50%);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.ethos-gallery__arrow:hover,
.ethos-gallery__arrow:focus-visible {
    background: rgba(240, 100, 40, 1);
    border-color: rgba(240, 100, 40, 1);
    color: #fff;
    outline: none;
}

.ethos-gallery__arrow--prev {
    left: 12px;
}

.ethos-gallery__arrow--prev svg {
    transform: rotate(180deg);
    transform-origin: center center;
}

.ethos-gallery__arrow--next {
    right: 12px;
}

.ethos-gallery__arrow svg {
    display: block;
    flex-shrink: 0;
    width: 10px;
    height: 14px;
    margin: 0;
}

.ethos-gallery__track {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    min-height: 520px;
    gap: 0;
}

.ethos-gallery__slide {
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
    border-radius: 16px;
    box-sizing: border-box;
    transition: width 0.35s ease, height 0.35s ease, opacity 0.35s ease, box-shadow 0.35s ease;
}

.ethos-gallery__slide:not(:first-child) {
    margin-left: -90px;
}

.ethos-gallery__slide--offset-0 {
    width: 380px;
    height: 520px;
    z-index: 5;
    opacity: 1;
    overflow: visible;
    border: none;
    box-shadow: none;
}

.ethos-gallery__slide--offset-0 .ethos-gallery__image {
    box-shadow:
        0 0 0 6px rgba(255, 255, 255, 1),
        0 0 16px rgba(0, 0, 0, 0.85);
}

.ethos-gallery__slide--offset-1 {
    width: 300px;
    height: 440px;
    z-index: 3;
    opacity: 1;
}

.ethos-gallery__slide--offset-2 {
    width: 300px;
    height: 380px;
    z-index: 1;
    opacity: 1;
}

.ethos-gallery__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: box-shadow 0.35s ease;
}

.ethos-gallery__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ethos-gallery__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #fdeee6;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.ethos-gallery__dot--active {
    background: rgba(240, 100, 40, 1);
    transform: scale(1.15);
}

/* ── CTA Banner ──────────────────────────────────────────────── */

.ethos-cta {
    width: 100%;
    background: #fff;
    padding: 48px 0 64px;
    overflow: visible;
}

.ethos-cta__inner {
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 400px;
}

.ethos-cta__content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 48px;
    border-radius: 24px;
    background-color: rgba(240, 100, 40, 1);
    background-image: url("../images/ethos-greek-bistro/last-background.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.ethos-cta__title {
    margin: 0;
    max-width: 561px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.15;
    color: #fff;
}

.ethos-cta__text {
    margin: 0;
    max-width: 766px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
}

.ethos-cta__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.ethos-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    white-space: nowrap;
    box-sizing: border-box;
    transition: opacity 0.2s ease;
    text-decoration: none;
}

.ethos-cta__btn:hover {
    opacity: 0.92;
}

.ethos-cta__btn img {
    display: block;
    flex-shrink: 0;
}

.ethos-cta__btn--order {
    border: none;
    background: #fff;
    color: rgba(240, 100, 40, 1);
}

.ethos-cta__btn--order img {
    filter: brightness(0) saturate(100%) invert(55%) sepia(72%) saturate(2476%) hue-rotate(346deg) brightness(98%) contrast(95%);
}

.ethos-cta__btn--direction {
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
}

.ethos-cta__media {
    position: absolute;
    top: 50%;
    right: 0px;
    z-index: 2;
    width: 42%;
    max-width: 460px;
    transform: translateY(-57%);
    border-radius: 24px;
    overflow: hidden;
}

.ethos-cta__image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 604 / 622;
    border-radius: 24px;
    object-fit: cover;
    object-position: center;
}

/* Button links */
.main-div__btn:hover,
.main-div__btn:focus,
.main-div__btn:visited,
.main-div__btn:active,
.ethos-about__btn:hover,
.ethos-about__btn:focus,
.ethos-about__btn:visited,
.ethos-about__btn:active,
.ethos-info__btn:hover,
.ethos-info__btn:focus,
.ethos-info__btn:visited,
.ethos-info__btn:active,
.ethos-cta__btn:hover,
.ethos-cta__btn:focus,
.ethos-cta__btn:visited,
.ethos-cta__btn:active {
    text-decoration: none;
}

.main-div__btn--order:hover,
.main-div__btn--order:focus,
.main-div__btn--order:visited,
.main-div__btn--order:active {
    color: #fff;
}

.main-div__btn--menu:hover,
.main-div__btn--menu:focus,
.main-div__btn--menu:active,
.main-div__btn--direction:hover,
.main-div__btn--direction:focus,
.main-div__btn--direction:active {
    background: rgba(240, 100, 40, 1);
    border-color: rgba(240, 100, 40, 1);
    color: #fff;
}

.main-div__btn--menu:visited,
.main-div__btn--direction:visited {
    color: #fff;
}

.ethos-about__btn:hover,
.ethos-about__btn:focus,
.ethos-about__btn:active {
    background: rgba(240, 100, 40, 1);
    border-color: rgba(240, 100, 40, 1);
    color: #fff;
}

.ethos-info__btn--direction:hover,
.ethos-info__btn--direction:focus,
.ethos-info__btn--direction:visited,
.ethos-info__btn--direction:active,
.ethos-info__btn--order:hover,
.ethos-info__btn--order:focus,
.ethos-info__btn--order:visited,
.ethos-info__btn--order:active {
    color: #fff;
}

.ethos-info__btn--call:hover,
.ethos-info__btn--call:focus,
.ethos-info__btn--call:active {
    background: rgba(240, 100, 40, 1);
    border-color: rgba(240, 100, 40, 1);
    color: #fff;
}

.ethos-info__btn--call:hover img,
.ethos-info__btn--call:focus img,
.ethos-info__btn--call:active img {
    filter: brightness(0) invert(1);
}

.ethos-info__btn--call:visited {
    color: rgba(240, 100, 40, 1);
}

.ethos-cta__btn--order:hover,
.ethos-cta__btn--order:focus,
.ethos-cta__btn--order:visited,
.ethos-cta__btn--order:active {
    color: rgba(240, 100, 40, 1);
}

.ethos-cta__btn--direction:hover,
.ethos-cta__btn--direction:focus,
.ethos-cta__btn--direction:visited,
.ethos-cta__btn--direction:active {
    color: #fff;
}

/* ── Tablet ─────────────────────────────────────────────────── */

@media (max-width: 1200px) {
    .ethos-strip__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ethos-special__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ethos-gallery__track {
        min-height: 440px;
        transform: scale(0.9);
        transform-origin: center center;
    }

    .ethos-cta__media {
        width: 38%;
        max-width: 360px;
    }

    .ethos-cta__title {
        font-size: 34px;
    }
}

@media (max-width: 992px) {
    .ethos-about__inner,
    .ethos-info__inner {
        grid-template-columns: 1fr;
    }

    .ethos-info__card {
        grid-template-columns: 1fr;
    }

    .ethos-info__media {
        order: -1;
    }

    .ethos-cta__inner {
        flex-direction: column;
        min-height: 0;
    }

    .ethos-cta__media {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        width: 100%;
        max-width: 100%;
        order: -1;
        margin-bottom: -40px;
    }

    .ethos-cta__content {
        padding-top: 200px;
    }
}

/* ── Mobile ─────────────────────────────────────────────────── */

@media (max-width: 768px) {
    .main-div {
        padding: 20px 0 0;
    }

    .main-div__inner {
        min-height: 360px;
        padding: 28px 20px 80px;
        border-radius: 12px;
        align-items: center;
        text-align: center;
    }

    .main-div__badge {
        align-self: center;
        font-size: 12px;
        padding: 8px 14px;
    }

    .main-div__title {
        font-size: 32px;
        text-align: center;
    }

    .main-div__description {
        font-size: 16px;
        text-align: center;
    }

    .main-div__actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .main-div__btn {
        width: 100%;
        justify-content: center;
        font-size: 16px;
    }

    .ethos-strip__inner {
        width: 90%;
        max-width: 90%;
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 20px 16px;
        transform: translateY(-10%);
    }

    .ethos-about,
    .ethos-special,
    .ethos-try,
    .ethos-dining,
    .ethos-gallery,
    .ethos-plan,
    .ethos-cta {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .ethos-info {
        padding-bottom: 32px;
    }

    .ethos-about__inner {
        gap: 24px;
    }

    .ethos-about__media {
        width: 100%;
        height: auto;
        aspect-ratio: 699.4 / 520;
    }

    .ethos-about__content {
        align-items: center;
        text-align: center;
    }

    .ethos-about__badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .ethos-about__title,
    .ethos-special__title,
    .ethos-try__title,
    .ethos-dining__title,
    .ethos-gallery__title,
    .ethos-plan__title {
        font-size: 32px;
    }

    .ethos-plan__frame {
        padding: 36px 20px 24px;
    }

    .ethos-plan__title-border {
        padding: 0 12px;
    }

    .ethos-plan__content {
        gap: 24px;
    }

    .ethos-plan__details {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ethos-plan__item {
        padding: 0;
    }

    .ethos-plan__item:not(:last-child) {
        border-right: none;
        padding-bottom: 24px;
        border-bottom: 1px solid rgba(118, 114, 114, 0.25);
    }

    .ethos-plan__actions {
        flex-direction: column;
        width: 100%;
    }

    .ethos-plan__btn {
        width: 100%;
    }

    .ethos-plan__title {
        padding: 0 16px;
        font-size: 32px;
        white-space: normal;
    }

    .ethos-plan__header {
        gap: 10px;
    }

    .ethos-dining__cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ethos-dining__body {
        padding: 16px;
    }

    .ethos-dining__card-title {
        font-size: 18px;
    }

    .ethos-dining__card-text {
        font-size: 14px;
    }

    .ethos-try__subtitle {
        font-size: 16px;
    }

    .ethos-try__viewport {
        overflow: hidden;
    }

    .ethos-try__cards {
        display: flex;
        gap: 0;
        transition: transform 0.35s ease;
        will-change: transform;
    }

    .ethos-try__card {
        flex: 0 0 100%;
        width: 100%;
        height: 348px;
    }

    .ethos-try__dots {
        display: flex;
    }

    .ethos-try__media {
        height: 240px;
    }

    .ethos-try__body {
        padding: 10px;
    }

    .ethos-try__card-title {
        font-size: 18px;
    }

    .ethos-try__card-text {
        font-size: 14px;
    }

    .ethos-about__text {
        font-size: 16px;
    }

    .ethos-about__btn {
        font-size: 15px;
        padding: 12px 20px;
    }

    .ethos-info__card {
        padding: 20px;
    }

    .ethos-info__title {
        font-size: 20px;
    }

    .ethos-info__detail-label {
        font-size: 15px;
    }

    .ethos-info__detail-text,
    .ethos-info__text {
        font-size: 14px;
    }

    .ethos-info__image {
        min-height: 200px;
    }

    .ethos-special__cards {
        grid-template-columns: 1fr;
    }

    .ethos-special__card-title {
        font-size: 18px;
    }

    .ethos-special__card-text {
        font-size: 14px;
    }

    .ethos-gallery__slider {
        max-width: 100%;
        padding: 12px 0 4px;
    }

    .ethos-gallery__arrow {
        width: 40px;
        height: 40px;
    }

    .ethos-gallery__arrow--prev {
        left: 4px;
    }

    .ethos-gallery__arrow--next {
        right: 4px;
    }

    .ethos-gallery__track {
        min-height: 240px;
        transform: none;
    }

    .ethos-gallery__slide:not(:first-child) {
        margin-left: -79px;
    }

    .ethos-gallery__slide--offset-0 {
        width: 167px;
        height: 240px;
        border-radius: 5px;
    }

    .ethos-gallery__slide--offset-0 .ethos-gallery__image {
        border-radius: 5px;
        box-shadow:
            0 0 0 2px rgba(255, 255, 255, 1),
            0 0 12px rgba(0, 0, 0, 0.85);
    }

    .ethos-gallery__slide--offset-1 {
        width: 129px;
        height: 210px;
        border-radius: 5px;
    }

    .ethos-gallery__slide--offset-2 {
        width: 129px;
        height: 183px;
        border-radius: 5px;
    }

    .ethos-gallery__image {
        border-radius: 5px;
    }

    .ethos-gallery {
        padding-top: 32px;
        padding-bottom: 48px;
    }

    .ethos-cta {
        padding-top: 48px;
        padding-bottom: 32px;
    }

    .ethos-cta__content {
        align-items: center;
        text-align: center;
        padding: 260px 20px 28px;
        min-height: 0;
    }

    .ethos-cta__media {
        position: absolute;
        top: -60px;
        left: 50%;
        width: 280px;
        max-width: calc(100% - 40px);
        margin: 0;
        transform: translateX(-50%);
    }

    .ethos-cta__title {
        font-size: 28px;
        max-width: 100%;
    }

    .ethos-cta__text {
        font-size: 16px;
        max-width: 100%;
    }

    .ethos-cta__actions {
        flex-direction: column;
        width: 100%;
    }

    .ethos-cta__btn {
        width: 100%;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .ethos-about__title,
    .ethos-special__title,
    .ethos-try__title,
    .ethos-dining__title,
    .ethos-gallery__title,
    .ethos-plan__title {
        font-size: 28px;
    }

    .ethos-cta__title {
        font-size: 24px;
    }
}

@media (max-width: 374px) {
    .ethos-info__actions {
        flex-wrap: nowrap;
        gap: 8px;
    }

    .ethos-info__actions .ethos-info__btn {
        flex: 1 1 0;
        min-width: 0;
        padding: 10px 8px;
        font-size: 13px;
        gap: 6px;
    }

    .ethos-info__actions .ethos-info__btn img {
        width: 18px;
        height: 18px;
    }
}
